<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:series="https://publishpress.com/"
	>

<channel>
	<title>Linglom.com</title>
	<atom:link href="https://www.linglom.com/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.linglom.com/</link>
	<description>Just another IT weblog</description>
	<lastBuildDate>Fri, 09 Oct 2020 03:54:40 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.5</generator>
<site xmlns="com-wordpress:feed-additions:1">49157425</site>	<item>
		<title>[Fix] Device is unreachable when you transfer files from iPad to Windows</title>
		<link>https://www.linglom.com/it-support/fix-device-is-unreachable-when-you-transfer-files-from-ipad-to-windows/</link>
					<comments>https://www.linglom.com/it-support/fix-device-is-unreachable-when-you-transfer-files-from-ipad-to-windows/#comments</comments>
		
		<dc:creator><![CDATA[linglom]]></dc:creator>
		<pubDate>Thu, 08 Oct 2020 06:25:51 +0000</pubDate>
				<category><![CDATA[IT Support]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<guid isPermaLink="false">https://www.linglom.com/?p=5132</guid>

					<description><![CDATA[<p>When you&#8217;re transferring photos and videos from iPad/iPhone to Windows using File Explorer, you may get these error messages: The device is unreachable. Or this error message: A device attached to the system is not functioning. And the transferring process is aborted. To fix this problem, follow these steps: Open Settings on your iPad/iPhone. Scroll down to Photos and select Keep Originals under Transfer to Mac or PC section. On iPhone, the steps is similar as iPad. Now you can transfer media files.</p>
<p>The post <a href="https://www.linglom.com/it-support/fix-device-is-unreachable-when-you-transfer-files-from-ipad-to-windows/">[Fix] Device is unreachable when you transfer files from iPad to Windows</a> appeared first on <a href="https://www.linglom.com">Linglom.com</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.linglom.com/it-support/fix-device-is-unreachable-when-you-transfer-files-from-ipad-to-windows/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">5132</post-id>	</item>
		<item>
		<title>Accessing MariaDB on NetBeans 8.2 using JDBC, Part 3: Perform SQL Operations</title>
		<link>https://www.linglom.com/programming/java/accessing-mariadb-on-netbeans-8-2-using-jdbc-part-3-perform-sql-operations/</link>
					<comments>https://www.linglom.com/programming/java/accessing-mariadb-on-netbeans-8-2-using-jdbc-part-3-perform-sql-operations/#comments</comments>
		
		<dc:creator><![CDATA[linglom]]></dc:creator>
		<pubDate>Wed, 10 Oct 2018 07:09:25 +0000</pubDate>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[NetBeans]]></category>
		<category><![CDATA[MariaDB]]></category>
		<guid isPermaLink="false">https://www.linglom.com/?p=4966</guid>

					<description><![CDATA[<p>From Part 2, I have established a connection to employees database on MariaDB. Now, I&#8217;ll show how to retrieve and modify data from the database. Retrieve data from a table Insert record to a table Update data on a table Retrieve data from a table To get data, I send query to MariaDB server and get result back. First, I create stmt (Statement object) and execute SQL query. Then I store the result on ResultSet object and iterative show the result on output window. Statement stmt = null; ResultSet rs = null; //SQL query command String SQL = "SELECT * </p>
<p>The post <a href="https://www.linglom.com/programming/java/accessing-mariadb-on-netbeans-8-2-using-jdbc-part-3-perform-sql-operations/">Accessing MariaDB on NetBeans 8.2 using JDBC, Part 3: Perform SQL Operations</a> appeared first on <a href="https://www.linglom.com">Linglom.com</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.linglom.com/programming/java/accessing-mariadb-on-netbeans-8-2-using-jdbc-part-3-perform-sql-operations/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		
		<series:name><![CDATA[Accessing MariaDB on NetBeans 8.2 using JDBC]]></series:name>
<post-id xmlns="com-wordpress:feed-additions:1">4966</post-id>	</item>
		<item>
		<title>Accessing MariaDB on NetBeans 8.2 using JDBC, Part 2: Create a connection</title>
		<link>https://www.linglom.com/programming/java/accessing-mariadb-on-netbeans-8-2-using-jdbc-part-2-create-a-connection/</link>
					<comments>https://www.linglom.com/programming/java/accessing-mariadb-on-netbeans-8-2-using-jdbc-part-2-create-a-connection/#respond</comments>
		
		<dc:creator><![CDATA[linglom]]></dc:creator>
		<pubDate>Tue, 02 Oct 2018 10:27:28 +0000</pubDate>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[NetBeans]]></category>
		<category><![CDATA[MariaDB]]></category>
		<guid isPermaLink="false">https://www.linglom.com/?p=4953</guid>

					<description><![CDATA[<p>From part 1, I already installed MariaDB using XAMPP and import employees sample database. Now I&#8217;m ready to write JAVA code to establish a connection to the database from NetBeans. Requirements NetBeans 8.2 MySQL Connector/J Part 2: Create a connection Download and install NetBeans 8.2. Download MySQL Connector/J Open web browser to https://dev.mysql.com/downloads/connector/j/8.0.html Select Platform Independent in Operating System drop down option. Click Download for Platform Independent (Architecture Independent), ZIP Archive Extract the zip file to a folder, you’ll see mysql-connector-java-8.0.12.jar which is the library file that we want. Just copy the file to a library folder, for example to </p>
<p>The post <a href="https://www.linglom.com/programming/java/accessing-mariadb-on-netbeans-8-2-using-jdbc-part-2-create-a-connection/">Accessing MariaDB on NetBeans 8.2 using JDBC, Part 2: Create a connection</a> appeared first on <a href="https://www.linglom.com">Linglom.com</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.linglom.com/programming/java/accessing-mariadb-on-netbeans-8-2-using-jdbc-part-2-create-a-connection/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		
		<series:name><![CDATA[Accessing MariaDB on NetBeans 8.2 using JDBC]]></series:name>
<post-id xmlns="com-wordpress:feed-additions:1">4953</post-id>	</item>
		<item>
		<title>Accessing MariaDB on NetBeans 8.2 using JDBC, Part 1: Install Employees sample database and grant permission</title>
		<link>https://www.linglom.com/programming/java/accessing-mariadb-on-netbeans-8-2-using-jdbc-part-1-install-employees-sample-database-and-grant-permission/</link>
					<comments>https://www.linglom.com/programming/java/accessing-mariadb-on-netbeans-8-2-using-jdbc-part-1-install-employees-sample-database-and-grant-permission/#comments</comments>
		
		<dc:creator><![CDATA[linglom]]></dc:creator>
		<pubDate>Sun, 23 Sep 2018 05:53:35 +0000</pubDate>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[NetBeans]]></category>
		<category><![CDATA[MariaDB]]></category>
		<guid isPermaLink="false">https://www.linglom.com/?p=4928</guid>

					<description><![CDATA[<p>This series shows how to access MariaDB on NetBeans 8.2 using MySQL Connector/J 8.0 on Windows. I’ll divide into 3 parts: Part 1: Install Employees sample database and grant permission This part, which you&#8217;re reading, shows how to install sample database, Employees, on MariaDB. Part 2: Create a connection This part shows how to establish a connection between NetBeans and MariaDB. Part 3: Perform SQL Operations This part show how to perform basic operations from NetBeans to MariaDB. For instance, send querys as SELECT, INSERT, UPDATE to a database. In this post, I&#8217;ve just installed MariaDB 10.1.34 using XAMPP, but </p>
<p>The post <a href="https://www.linglom.com/programming/java/accessing-mariadb-on-netbeans-8-2-using-jdbc-part-1-install-employees-sample-database-and-grant-permission/">Accessing MariaDB on NetBeans 8.2 using JDBC, Part 1: Install Employees sample database and grant permission</a> appeared first on <a href="https://www.linglom.com">Linglom.com</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.linglom.com/programming/java/accessing-mariadb-on-netbeans-8-2-using-jdbc-part-1-install-employees-sample-database-and-grant-permission/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		
		<series:name><![CDATA[Accessing MariaDB on NetBeans 8.2 using JDBC]]></series:name>
<post-id xmlns="com-wordpress:feed-additions:1">4928</post-id>	</item>
		<item>
		<title>Fix Unsafe File Name when run ffmpeg command</title>
		<link>https://www.linglom.com/it-support/fix-unsafe-file-name-when-run-ffmpeg-command/</link>
					<comments>https://www.linglom.com/it-support/fix-unsafe-file-name-when-run-ffmpeg-command/#comments</comments>
		
		<dc:creator><![CDATA[linglom]]></dc:creator>
		<pubDate>Tue, 11 Sep 2018 02:35:51 +0000</pubDate>
				<category><![CDATA[IT Support]]></category>
		<category><![CDATA[ffmpeg]]></category>
		<guid isPermaLink="false">https://www.linglom.com/?p=4920</guid>

					<description><![CDATA[<p>When you&#8217;re run ffmpeg command and receive an error message similar to the following: Unsafe file name '00 M00S.mp4' mylist.txt: Operation not permitted This is because there is space in target filename in the text file. To fix this issue, add -safe 0 before -i If you have this issue from Combine MP4 files using FFMPEG on Windows (without re-encoding), simply replace command in step 7 to the following: ffmpeg -f concat -safe 0 -i mylist.txt -c copy output.mp4</p>
<p>The post <a href="https://www.linglom.com/it-support/fix-unsafe-file-name-when-run-ffmpeg-command/">Fix Unsafe File Name when run ffmpeg command</a> appeared first on <a href="https://www.linglom.com">Linglom.com</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.linglom.com/it-support/fix-unsafe-file-name-when-run-ffmpeg-command/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">4920</post-id>	</item>
		<item>
		<title>Disable “These files might be harmful to your computer” on Windows</title>
		<link>https://www.linglom.com/it-support/disable-these-files-might-be-harmful-to-your-computer-on-windows/</link>
					<comments>https://www.linglom.com/it-support/disable-these-files-might-be-harmful-to-your-computer-on-windows/#comments</comments>
		
		<dc:creator><![CDATA[linglom]]></dc:creator>
		<pubDate>Sat, 01 Sep 2018 00:52:36 +0000</pubDate>
				<category><![CDATA[IT Support]]></category>
		<category><![CDATA[Local intranet]]></category>
		<guid isPermaLink="false">https://www.linglom.com/?p=4867</guid>

					<description><![CDATA[<p>When you try to transfer files between your computer and a network computer which is accessed by IP address, you will get this warning message: These files might be harmful to your computer Your Internet Security settings suggest that one or more files may be harmful. Do you want to use it anyway? You can always click OK to continue the operation, but it will keep asking the message every time. If you frequently transfer files with this method and the network is trust, you may want to disable the warning message by add these network computers to local intranet </p>
<p>The post <a href="https://www.linglom.com/it-support/disable-these-files-might-be-harmful-to-your-computer-on-windows/">Disable “These files might be harmful to your computer” on Windows</a> appeared first on <a href="https://www.linglom.com">Linglom.com</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.linglom.com/it-support/disable-these-files-might-be-harmful-to-your-computer-on-windows/feed/</wfw:commentRss>
			<slash:comments>14</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">4867</post-id>	</item>
		<item>
		<title>Remove or forget wireless network profile in Windows 7</title>
		<link>https://www.linglom.com/networking/remove-or-forget-wireless-network-profile-in-windows-7/</link>
					<comments>https://www.linglom.com/networking/remove-or-forget-wireless-network-profile-in-windows-7/#comments</comments>
		
		<dc:creator><![CDATA[linglom]]></dc:creator>
		<pubDate>Tue, 21 Aug 2018 06:55:52 +0000</pubDate>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[Windows 7]]></category>
		<guid isPermaLink="false">https://www.linglom.com/?p=4789</guid>

					<description><![CDATA[<p>If you change router, or modify wireless settings on the router, the wireless network profile that saved on Windows may be outdated and you may not be able to connect to the network and receive this message: The settings saved on this computer for the network do not match the requirements of the network. To fix this problem, you can try to remove or forget the current wireless network profile. In this article, I will show 2 methods to remove or forget a wireless network profile in Windows 7. Forget wireless network profile from Network menu Remove wireless network profile </p>
<p>The post <a href="https://www.linglom.com/networking/remove-or-forget-wireless-network-profile-in-windows-7/">Remove or forget wireless network profile in Windows 7</a> appeared first on <a href="https://www.linglom.com">Linglom.com</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.linglom.com/networking/remove-or-forget-wireless-network-profile-in-windows-7/feed/</wfw:commentRss>
			<slash:comments>7</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">4789</post-id>	</item>
		<item>
		<title>Fix Blue Screen 0xc000000e on Windows 8/10</title>
		<link>https://www.linglom.com/it-support/fix-blue-screen-0xc000000e-on-windows-810/</link>
					<comments>https://www.linglom.com/it-support/fix-blue-screen-0xc000000e-on-windows-810/#respond</comments>
		
		<dc:creator><![CDATA[linglom]]></dc:creator>
		<pubDate>Mon, 20 Nov 2017 06:51:26 +0000</pubDate>
				<category><![CDATA[IT Support]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Blue Screen]]></category>
		<guid isPermaLink="false">https://www.linglom.com/?p=4747</guid>

					<description><![CDATA[<p>If you get this blue screen error: A required device isn't connected or can't be accessed. Error code: 0xc000000e Or this error message: The application or operating system couldnงt be loaded because a required file is missing or contains errors. File:\Windows\system32\winload.exe Error code: 0xc000000e This could happen if Windows boot file is damaged or corrupted by various reasons, for example, unexpected system shutdown, virus, hardware failure, etc. You can try to fix this issue by follow this guide. In this article, I will show how to fix blue screen 0xc000000e with Startup Repair and bootrec.exe command. Note: You need Windows </p>
<p>The post <a href="https://www.linglom.com/it-support/fix-blue-screen-0xc000000e-on-windows-810/">Fix Blue Screen 0xc000000e on Windows 8/10</a> appeared first on <a href="https://www.linglom.com">Linglom.com</a>.</p>
]]></description>
		
					<wfw:commentRss>https://www.linglom.com/it-support/fix-blue-screen-0xc000000e-on-windows-810/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">4747</post-id>	</item>
	</channel>
</rss>
