<?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/"
	>

<channel>
	<title>WebDevStudy</title>
	<atom:link href="https://www.webdevstudy.com/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.webdevstudy.com</link>
	<description>software engineer development experience</description>
	<lastBuildDate>Tue, 09 Dec 2025 05:39:57 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9</generator>

<image>
	<url>https://www.webdevstudy.com/wp-content/uploads/2023/04/logo-150x150.png</url>
	<title>WebDevStudy</title>
	<link>https://www.webdevstudy.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>How to Recover the MySQL 8.0 root Password on Ubuntu</title>
		<link>https://www.webdevstudy.com/2025/12/09/how-to-recover-the-mysql-8-0-root-password-on-ubuntu/</link>
					<comments>https://www.webdevstudy.com/2025/12/09/how-to-recover-the-mysql-8-0-root-password-on-ubuntu/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Tue, 09 Dec 2025 05:39:57 +0000</pubDate>
				<category><![CDATA[MySql]]></category>
		<category><![CDATA[mysql]]></category>
		<guid isPermaLink="false">https://www.webdevstudy.com/?p=324</guid>

					<description><![CDATA[]]></description>
		
					<wfw:commentRss>https://www.webdevstudy.com/2025/12/09/how-to-recover-the-mysql-8-0-root-password-on-ubuntu/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Get Current Timestamp  in Milliseconds in Java</title>
		<link>https://www.webdevstudy.com/2023/07/11/how-to-get-current-timestamp-in-milliseconds-in-java/</link>
					<comments>https://www.webdevstudy.com/2023/07/11/how-to-get-current-timestamp-in-milliseconds-in-java/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Tue, 11 Jul 2023 03:29:16 +0000</pubDate>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[JAVA]]></category>
		<guid isPermaLink="false">https://www.webdevstudy.com/?p=289</guid>

					<description><![CDATA[There are several ways to get the current timestamp in milliseconds in Java. An epoch is the difference, measured in milliseconds, between the current time and midnight, January 1, 1970 UTC (i.e.&#160;1970-01-01T00:00:00Z). All of the options below return the same timestamp. The various options are a result of the evolution of the Java date API. [&#8230;]]]></description>
		
					<wfw:commentRss>https://www.webdevstudy.com/2023/07/11/how-to-get-current-timestamp-in-milliseconds-in-java/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Match Columns that Contain a Substring in SQL</title>
		<link>https://www.webdevstudy.com/2023/07/11/how-to-match-columns-that-contain-a-substring-in-sql/</link>
					<comments>https://www.webdevstudy.com/2023/07/11/how-to-match-columns-that-contain-a-substring-in-sql/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Tue, 11 Jul 2023 03:21:21 +0000</pubDate>
				<category><![CDATA[MySql]]></category>
		<category><![CDATA[mysql]]></category>
		<guid isPermaLink="false">https://www.webdevstudy.com/?p=285</guid>

					<description><![CDATA[Suppose we’re querying a dataset from a SQL table. Let’s say we want to select all rows where a column contains the substring&#160;str. We can use a percent sign&#160;%&#160;with&#160;LIKE&#160;to check for substrings in any column. If you only want strings that end with the substring str, you can use %str. If you only want strings that start [&#8230;]]]></description>
		
					<wfw:commentRss>https://www.webdevstudy.com/2023/07/11/how-to-match-columns-that-contain-a-substring-in-sql/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Get Part of an Array or List in Java</title>
		<link>https://www.webdevstudy.com/2023/07/11/how-to-get-part-of-an-array-or-list-in-java/</link>
					<comments>https://www.webdevstudy.com/2023/07/11/how-to-get-part-of-an-array-or-list-in-java/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Tue, 11 Jul 2023 03:14:52 +0000</pubDate>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[JAVA]]></category>
		<guid isPermaLink="false">https://www.webdevstudy.com/?p=282</guid>

					<description><![CDATA[Let’s see how we can obtain a part of an array or list (i.e. subarray or sublist). 1. Obtain subarray 1.1. Using&#160;Arrays::copyOfRange We can use&#160;Arrays::copyOfRange&#160;to copy the contents within a specified range of an array into another array. The&#160;start&#160;index is inclusive. The&#160;stop&#160;index is exclusive and can be greater than the length of the array. All [&#8230;]]]></description>
		
					<wfw:commentRss>https://www.webdevstudy.com/2023/07/11/how-to-get-part-of-an-array-or-list-in-java/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Set JVM Arguments (VM Options) in AWS Lambda</title>
		<link>https://www.webdevstudy.com/2023/07/08/how-to-set-jvm-arguments-vm-options-in-aws-lambda/</link>
					<comments>https://www.webdevstudy.com/2023/07/08/how-to-set-jvm-arguments-vm-options-in-aws-lambda/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Sat, 08 Jul 2023 02:14:58 +0000</pubDate>
				<category><![CDATA[Cloud]]></category>
		<category><![CDATA[AWS]]></category>
		<guid isPermaLink="false">https://www.webdevstudy.com/?p=280</guid>

					<description><![CDATA[You can easily set JVM arguments (e.g. system properties) in our AWS Lambda function through a single environment variable. Let’s say we have a JAR file that we want to run within an AWS Lambda function. Example: IntelliJ’s&#160;VM Options In IntelliJ, we might use&#160;VM Options&#160;to specify JVM attributes such as stack/heap memory allocation, system properties, [&#8230;]]]></description>
		
					<wfw:commentRss>https://www.webdevstudy.com/2023/07/08/how-to-set-jvm-arguments-vm-options-in-aws-lambda/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Convert an InputStream to a File in Java</title>
		<link>https://www.webdevstudy.com/2023/07/08/convert-an-inputstream-to-a-file-in-java/</link>
					<comments>https://www.webdevstudy.com/2023/07/08/convert-an-inputstream-to-a-file-in-java/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Sat, 08 Jul 2023 02:11:15 +0000</pubDate>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[JAVA]]></category>
		<guid isPermaLink="false">https://www.webdevstudy.com/?p=278</guid>

					<description><![CDATA[Let’s learn how we convert an InputStream to a File in Java. 1.&#160;InputStream::transferTo&#160;(Java 9) In Java 9, you can copy bytes from an input stream to an output stream using InputStream::transferTo. 2.&#160;Files::copy&#160;(Java 7) In Java 7, you can use Files::copy to copy bytes from an input stream to a file. 3.&#160;IOUtils::copy&#160;(Apache Commons IO) With&#160;commons-io&#160;we have access to&#160;IOUtils::copy, which will allow us to [&#8230;]]]></description>
		
					<wfw:commentRss>https://www.webdevstudy.com/2023/07/08/convert-an-inputstream-to-a-file-in-java/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Get Rows or Columns with NaN (null) Values in  Pandas DataFrame</title>
		<link>https://www.webdevstudy.com/2023/07/08/how-to-get-rows-or-columns-with-nan-null-values-in-pandas-dataframe/</link>
					<comments>https://www.webdevstudy.com/2023/07/08/how-to-get-rows-or-columns-with-nan-null-values-in-pandas-dataframe/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Sat, 08 Jul 2023 02:06:30 +0000</pubDate>
				<category><![CDATA[Python]]></category>
		<guid isPermaLink="false">https://www.webdevstudy.com/?p=276</guid>

					<description><![CDATA[Let’s learn how to get rows or columns with one or more NaN values in a Pandas DataFrame. 1. Get rows with NaN You can use isna() or isnull() to get all rows with NaN values. isnull()&#160;is an&#160;alias of&#160;isna(). Many prefer&#160;isna()&#160;for semantic consistency (e.g.&#160;np.isnan(),&#160;dropna(), and&#160;fillna()&#160;all handle missing values). 2. Get columns with&#160;NaN Let’s retrieve all rows of all columns that contain a&#160;NaN&#160;value. [&#8230;]]]></description>
		
					<wfw:commentRss>https://www.webdevstudy.com/2023/07/08/how-to-get-rows-or-columns-with-nan-null-values-in-pandas-dataframe/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How can I Convert an Iterator to Set in Java</title>
		<link>https://www.webdevstudy.com/2023/07/06/how-can-i-convert-an-iterator-to-set-in-java/</link>
					<comments>https://www.webdevstudy.com/2023/07/06/how-can-i-convert-an-iterator-to-set-in-java/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Thu, 06 Jul 2023 03:49:16 +0000</pubDate>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[JAVA]]></category>
		<guid isPermaLink="false">https://www.webdevstudy.com/?p=274</guid>

					<description><![CDATA[How can I convert an Iterator into a Set in Java? Suppose I have an iterator iter and a set set. 1. Using&#160;for&#160;loops Iterators provide a way to access the elements of an object sequentially without exposing its underlying representation. Naturally, we can sequentially access each element and add it to a set. 2. Using Guava We can also use&#160;Guava’s&#160;Sets.newHashSet()&#160;to create a [&#8230;]]]></description>
		
					<wfw:commentRss>https://www.webdevstudy.com/2023/07/06/how-can-i-convert-an-iterator-to-set-in-java/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Add Script Tag to HTML DOM</title>
		<link>https://www.webdevstudy.com/2023/07/06/how-to-add-script-tag-to-html-dom/</link>
					<comments>https://www.webdevstudy.com/2023/07/06/how-to-add-script-tag-to-html-dom/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Thu, 06 Jul 2023 03:40:18 +0000</pubDate>
				<category><![CDATA[Front-end development]]></category>
		<category><![CDATA[javascript]]></category>
		<guid isPermaLink="false">https://www.webdevstudy.com/?p=272</guid>

					<description><![CDATA[How can I add a script tag to the HTML DOM from JavaScript? I needed to inject a script tag into the DOM. This only requires a few steps. Here&#8217;s the code: You can append to the&#160;&#60;head&#62;&#160;just as easily with&#160;document.head.appendChild(script).]]></description>
		
					<wfw:commentRss>https://www.webdevstudy.com/2023/07/06/how-to-add-script-tag-to-html-dom/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How can I Add List to Set in Python</title>
		<link>https://www.webdevstudy.com/2023/07/06/how-can-i-add-list-to-set-in-python/</link>
					<comments>https://www.webdevstudy.com/2023/07/06/how-can-i-add-list-to-set-in-python/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Thu, 06 Jul 2023 03:29:44 +0000</pubDate>
				<category><![CDATA[Python]]></category>
		<guid isPermaLink="false">https://www.webdevstudy.com/?p=270</guid>

					<description><![CDATA[We have several ways of adding the elements of a list to a set in Python. If we want to add the elements of curr_list into curr_set to create a set of { 1, 2, 3 }. if we want to add the entire list as a single element to the set, we’ll have to first convert it to a tuple. To [&#8230;]]]></description>
		
					<wfw:commentRss>https://www.webdevstudy.com/2023/07/06/how-can-i-add-list-to-set-in-python/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Convert a List to List in Java (or vice versa!)</title>
		<link>https://www.webdevstudy.com/2023/07/06/convert-a-list-to-list-in-java-or-vice-versa/</link>
					<comments>https://www.webdevstudy.com/2023/07/06/convert-a-list-to-list-in-java-or-vice-versa/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Thu, 06 Jul 2023 03:17:45 +0000</pubDate>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[JAVA]]></category>
		<guid isPermaLink="false">https://www.webdevstudy.com/?p=268</guid>

					<description><![CDATA[Let us convert between List&#60;Long> and List&#60;Integer> in Java. If we’re working with the following lists: We’ll be using Long::intValue and Integer::longValue to convert between the two types. 1. Using Java 8 streams You can convert a List&#60;Long> to a List&#60;Integer> using map(Long::intValue) in a stream. And of course, you can convert a List&#60;Integer> to a List&#60;Long> using map(Integer::longValue). 2. Using a for loop You can also use a traditional for loop to convert between the two types. [&#8230;]]]></description>
		
					<wfw:commentRss>https://www.webdevstudy.com/2023/07/06/convert-a-list-to-list-in-java-or-vice-versa/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Remove the Last Character from a String in JavaScript</title>
		<link>https://www.webdevstudy.com/2023/07/06/remove-the-last-character-from-a-string-in-javascript/</link>
					<comments>https://www.webdevstudy.com/2023/07/06/remove-the-last-character-from-a-string-in-javascript/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Thu, 06 Jul 2023 02:52:45 +0000</pubDate>
				<category><![CDATA[Javascript]]></category>
		<guid isPermaLink="false">https://www.webdevstudy.com/?p=266</guid>

					<description><![CDATA[Use substring() and slice() to remove the last character from a string in JavaScript. 1. Using substring() The substring() method will return the string between the specified start and end indexes. 2. Using slice() The slice() method will also return the string between the specified start and end indexes. A negative index can be used to indicate an offset from the end of the sequence. -1 would indicate that [&#8230;]]]></description>
		
					<wfw:commentRss>https://www.webdevstudy.com/2023/07/06/remove-the-last-character-from-a-string-in-javascript/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>node.js express art-template rendering html pages slowly, how to speed up?</title>
		<link>https://www.webdevstudy.com/2023/07/05/node-js-express-art-template-rendering-html-pages-slowly-how-to-speed-up/</link>
					<comments>https://www.webdevstudy.com/2023/07/05/node-js-express-art-template-rendering-html-pages-slowly-how-to-speed-up/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Wed, 05 Jul 2023 04:04:38 +0000</pubDate>
				<category><![CDATA[Web development]]></category>
		<category><![CDATA[express]]></category>
		<category><![CDATA[nodejs]]></category>
		<guid isPermaLink="false">https://www.webdevstudy.com/?p=264</guid>

					<description><![CDATA[node.js express art-template rendering html pages slowly, how to speed up? My blog tech stack is: node.jsexpressart-templateEach time you switch pages or click to view an article you have to wait 1-3 seconds. I feel that the rendering is slow and a little stuck (I don&#8217;t know if this is the reason), and I don&#8217;t [&#8230;]]]></description>
		
					<wfw:commentRss>https://www.webdevstudy.com/2023/07/05/node-js-express-art-template-rendering-html-pages-slowly-how-to-speed-up/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How can flutter TextField input boxes prefix and suffix be displayed without getting focus?</title>
		<link>https://www.webdevstudy.com/2023/07/05/how-can-flutter-textfield-input-boxes-prefix-and-suffix-be-displayed-without-getting-focus/</link>
					<comments>https://www.webdevstudy.com/2023/07/05/how-can-flutter-textfield-input-boxes-prefix-and-suffix-be-displayed-without-getting-focus/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Wed, 05 Jul 2023 03:53:10 +0000</pubDate>
				<category><![CDATA[Software development]]></category>
		<category><![CDATA[flutter]]></category>
		<guid isPermaLink="false">https://www.webdevstudy.com/?p=261</guid>

					<description><![CDATA[How can flutter TextField input boxes prefix and suffix be displayed without getting focus? How can flutter TextField input boxes prefix and suffix be displayed without getting focus?I have a mobile phone verification code login page, the front of the mobile phone number is displayed +86 by default, and the verification code input box is [&#8230;]]]></description>
		
					<wfw:commentRss>https://www.webdevstudy.com/2023/07/05/how-can-flutter-textfield-input-boxes-prefix-and-suffix-be-displayed-without-getting-focus/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How do js remove duplicate values from two arrays?</title>
		<link>https://www.webdevstudy.com/2023/07/05/how-do-js-remove-duplicate-values-from-two-arrays/</link>
					<comments>https://www.webdevstudy.com/2023/07/05/how-do-js-remove-duplicate-values-from-two-arrays/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Wed, 05 Jul 2023 02:45:45 +0000</pubDate>
				<category><![CDATA[Javascript]]></category>
		<guid isPermaLink="false">https://www.webdevstudy.com/?p=259</guid>

					<description><![CDATA[How do js remove duplicate values from two arrays? As shown below: a Only [1,2] Answer:]]></description>
		
					<wfw:commentRss>https://www.webdevstudy.com/2023/07/05/how-do-js-remove-duplicate-values-from-two-arrays/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
