<?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>Debiprasad</title>
	<atom:link href="https://debiprasad.net/feed/" rel="self" type="application/rss+xml" />
	<link>https://debiprasad.net/</link>
	<description>everything from my heart</description>
	<lastBuildDate>Fri, 03 Nov 2023 14:21:42 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
<site xmlns="com-wordpress:feed-additions:1">8934328</site>	<item>
		<title>Recommended way to access session in Laravel Views</title>
		<link>https://debiprasad.net/recommended-way-to-access-session-in-laravel-views/</link>
					<comments>https://debiprasad.net/recommended-way-to-access-session-in-laravel-views/#respond</comments>
		
		<dc:creator><![CDATA[Debiprasad]]></dc:creator>
		<pubDate>Fri, 03 Nov 2023 14:21:37 +0000</pubDate>
				<category><![CDATA[Coding and Logic]]></category>
		<category><![CDATA[Answers by Lary AI]]></category>
		<category><![CDATA[Laravel]]></category>
		<category><![CDATA[PHP]]></category>
		<guid isPermaLink="false">https://debiprasad.net/?p=980</guid>

					<description><![CDATA[<p>I noticed Session::get('error') in a Laravel view file. Using classes directly in the view is not a good practice. So, I asked Lary to confirm. Q: Is accessing sessions in Laravel views with Session::get('error') good or is there any better way? Lary: In Laravel, accessing the session in views using&#160;Session::get('error')&#160;is a valid approach. However, Laravel provides [&#8230;]</p>
<p>The post <a href="https://debiprasad.net/recommended-way-to-access-session-in-laravel-views/">Recommended way to access session in Laravel Views</a> appeared first on <a href="https://debiprasad.net">Debiprasad</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<details class="wp-block-details is-layout-flow wp-block-details-is-layout-flow"><summary>This is an answer from <a href="https://laracasts.com/@LaryAI">Lary &#8220;Quickdraw&#8221; A.I.</a> What is that?</summary>
<p>Lary &#8220;Quickdraw&#8221; A.I. is an AI Assistant at Laracasts. Laracasts has a feature to chat with Lary. I often use this feature to improve my knowledge and write better code. I ask from simple questions to complicated test cases to Lary and it often comes with good answers. Scrolling through all the old answers is overwhelming. So, I decided to write separate posts for all the questions I have asked Lary so that everyone can access them easily here. </p>



<p></p>
</details>



<p>I noticed <code>Session::get('error')</code> in a Laravel view file. Using classes directly in the view is not a good practice. So, I asked Lary to confirm.</p>



<p><strong>Q: Is accessing sessions in Laravel views with <code>Session::get('error')</code> good or is there any better way?</strong></p>



<p><strong>Lary</strong>:</p>



<p>In Laravel, accessing the session in views using&nbsp;<code>Session::get('error')</code>&nbsp;is a valid approach. However, Laravel provides a more convenient and expressive way to access session data directly in views using the&nbsp;<code>session()</code>&nbsp;helper function.</p>



<p>Instead of using&nbsp;<code>Session::get('error')</code>, you can simply use&nbsp;<code>session('error')</code>&nbsp;to retrieve the value of the &#8216;error&#8217; key from the session. This helper function provides a more concise syntax and is the recommended way to access session data in views.</p>



<p>Here&#8217;s an example of how you can use the&nbsp;<code>session()</code>&nbsp;helper function in a Laravel view:</p>



<pre class="wp-block-code"><code>@if(session('error'))
    &lt;div class="alert alert-danger">
        {{ session('error') }}
    &lt;/div>
@endif</code></pre>



<p>In this example, the&nbsp;<code>session('error')</code>&nbsp;function is used to check if the &#8216;error&#8217; key exists in the session. If it does, it will display the error message within a div with the &#8220;alert-danger&#8221; class.</p>



<p>Using the&nbsp;<code>session()</code>&nbsp;helper function not only provides a cleaner syntax but also makes your code more readable and easier to understand.</p>



<p>Therefore, it is recommended to use the&nbsp;<code>session()</code>&nbsp;helper function to access session data in Laravel views.</p>
<p>The post <a href="https://debiprasad.net/recommended-way-to-access-session-in-laravel-views/">Recommended way to access session in Laravel Views</a> appeared first on <a href="https://debiprasad.net">Debiprasad</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://debiprasad.net/recommended-way-to-access-session-in-laravel-views/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">980</post-id>	</item>
		<item>
		<title>Bad programming due to lack of basic knowledge</title>
		<link>https://debiprasad.net/bad-programming-due-to-lack-of-basic-knowledge/</link>
					<comments>https://debiprasad.net/bad-programming-due-to-lack-of-basic-knowledge/#respond</comments>
		
		<dc:creator><![CDATA[Debiprasad]]></dc:creator>
		<pubDate>Tue, 07 Jun 2022 18:42:53 +0000</pubDate>
				<category><![CDATA[Coding and Logic]]></category>
		<category><![CDATA[PHP]]></category>
		<guid isPermaLink="false">https://debiprasad.net/?p=969</guid>

					<description><![CDATA[<p>Even though I have 15 years of experience as a full-stack developer, I make mistakes. Sometimes, silly mistakes. I am good at solving problems and providing solutions to complex business requirements. But I don&#8217;t know everything, even some basic things. Recently, my client asked me to add a feature to attach a file to the [&#8230;]</p>
<p>The post <a href="https://debiprasad.net/bad-programming-due-to-lack-of-basic-knowledge/">Bad programming due to lack of basic knowledge</a> appeared first on <a href="https://debiprasad.net">Debiprasad</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Even though I have 15 years of experience as a full-stack developer, I make mistakes. Sometimes, silly mistakes. I am good at solving problems and providing solutions to complex business requirements. But I don&#8217;t know everything, even some basic things.</p>



<p>Recently, my client asked me to add a feature to attach a file to the emails they send from the application. As I use Laravel in the application, I simply added a file input to the form and added a few lines of code to attach the file to the email. It worked fine in my local env.</p>



<p>I deployed it on the live servers and I did not test this feature there as I thought I need to send an email to someone else to test it. I have forgotten that I also have an account on the production app which can be used for testing.&nbsp;</p>



<p>Apart from that, I thought that this works on my machine and I don&#8217;t need to test it on production for such a small feature addition. But no one realized that I have broken the complete feature.</p>



<p>We don&#8217;t track all the error logs on this project. Whenever there is some complaint that something is not working, I check the logs to find out the issue and fix it.&nbsp;</p>



<p>While working on another feature, I ended up seeing the log and saw that it was full of errors.</p>



<p>When I investigated I realized that client had tried to send a bulk email to many users with an attachment. As the emails are added to a queue, she did not see any error. But when the queue started to run the jobs, it did not work and threw errors.&nbsp;</p>



<p>The error was</p>



<pre class="wp-block-code"><code>&#91;Swift_IoException]<br />Unable to open file for reading &#91;/tmp/phphwnWbB]</code></pre>



<p>First I thought it might be an issue with permissions. But file uploads work fine on the app. It should not be an issue with permission. I tried to find the file in /tmp/ but did not get it.</p>



<p>It took me really long to understand why it was not working. I suspected that the temp file might not be available when the job executes from the queue even though it runs pretty quickly. Soon, I realized that I have made a blunder by designing a feature like this.</p>



<p>I should not depend on a temp file to be used by jobs that run on a separate process. First, I need to handle the temp file and then make it usable by other processes. But I was still thinking about how does it work in my local dev environment.&nbsp;</p>



<p>Then I realized that in my local dev environment, I don&#8217;t run a real queue. The queue is sync. It runs in the same request cycle. Then I tried to find how much time the file stays in the temporary storage. I realized that the file is deleted at the end of the request.</p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow"><p>The file will be deleted from the temporary directory at the end of the request if it has not been moved away or renamed.</p><cite><a href="https://www.php.net/manual/en/features.file-upload.post-method.php">https://www.php.net/manual/en/features.file-upload.post-method.php</a></cite></blockquote>



<p>I did not know that even though it was basic. As a result, I end up programming the feature badly and we ended up with the issue.</p>
<p>The post <a href="https://debiprasad.net/bad-programming-due-to-lack-of-basic-knowledge/">Bad programming due to lack of basic knowledge</a> appeared first on <a href="https://debiprasad.net">Debiprasad</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://debiprasad.net/bad-programming-due-to-lack-of-basic-knowledge/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">969</post-id>	</item>
		<item>
		<title>A bad UI?</title>
		<link>https://debiprasad.net/a-bad-ui/</link>
					<comments>https://debiprasad.net/a-bad-ui/#respond</comments>
		
		<dc:creator><![CDATA[Debiprasad]]></dc:creator>
		<pubDate>Sun, 30 May 2021 19:33:28 +0000</pubDate>
				<category><![CDATA[UI and UX]]></category>
		<category><![CDATA[Dream]]></category>
		<category><![CDATA[dream journaling]]></category>
		<category><![CDATA[journaling]]></category>
		<category><![CDATA[mobile apps]]></category>
		<category><![CDATA[ui]]></category>
		<category><![CDATA[ux]]></category>
		<guid isPermaLink="false">https://debiprasad.net/?p=963</guid>

					<description><![CDATA[<p>I was talking about a dream I saw to a friend who was a character in that dream. But I forgot an important character of that dream. A few weeks ago, while watching a video about lucid dreaming, I learned that journaling your dreams after waking up helps remembering your dreams. So, I decided to [&#8230;]</p>
<p>The post <a href="https://debiprasad.net/a-bad-ui/">A bad UI?</a> appeared first on <a href="https://debiprasad.net">Debiprasad</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>I was talking about a dream I saw to a friend who was a character in that dream. But I forgot an important character of that dream. A few weeks ago, while watching a video about lucid dreaming, I learned that journaling your dreams after waking up helps remembering your dreams. So, I decided to journal my dreams and wanted to use a mobile app for that. I opened App Store and searched “dream journal”. A lot of apps appeared on the result but it was difficult to choose one as none are popular. So, I picked one based on the UI in the photos.</p>



<p>In the morning, I started journaling a dream I saw last night. After writing the dream when I tried to save it, it showed me an alert that I have not selected the dream type. I could not find where to select the dream type. But I discovered that I can add additional informations like characters, emotions and activities. I added the characters and selected emotions and activities from a lot of options. But when I tried to save it, it showed the same alert that I have to select the dream type. As I could not find it in the UI, out of frustration I tapped on the back button. It did not ask me whether I would like to store it as a draft. It even did not alert me that I will lose what have written so far. I lost everything I had written.</p>



<p>Then I tried to add a new journal again. Then I realised that there is a drop down list disguised as a label or help-text. Look at the screenshots below.</p>



<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-28f84493 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-large"><img fetchpriority="high" decoding="async" width="750" height="694" data-attachment-id="964" data-permalink="https://debiprasad.net/a-bad-ui/img_3193/" data-orig-file="https://debiprasad.net/wp-content/uploads/2021/05/IMG_3193.jpg" data-orig-size="750,694" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="IMG_3193" data-image-description="" data-image-caption="" data-large-file="https://debiprasad.net/wp-content/uploads/2021/05/IMG_3193.jpg" src="https://debiprasad.net/wp-content/uploads/2021/05/IMG_3193.jpg" alt="" class="wp-image-964" srcset="https://debiprasad.net/wp-content/uploads/2021/05/IMG_3193.jpg 750w, https://debiprasad.net/wp-content/uploads/2021/05/IMG_3193-300x278.jpg 300w, https://debiprasad.net/wp-content/uploads/2021/05/IMG_3193-640x592.jpg 640w" sizes="(max-width: 750px) 100vw, 750px" /></figure>
</div>



<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<figure class="wp-block-image size-large"><img decoding="async" width="750" height="675" data-attachment-id="965" data-permalink="https://debiprasad.net/a-bad-ui/img_3192/" data-orig-file="https://debiprasad.net/wp-content/uploads/2021/05/IMG_3192.jpg" data-orig-size="750,675" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;1&quot;}" data-image-title="IMG_3192" data-image-description="" data-image-caption="" data-large-file="https://debiprasad.net/wp-content/uploads/2021/05/IMG_3192.jpg" src="https://debiprasad.net/wp-content/uploads/2021/05/IMG_3192.jpg" alt="" class="wp-image-965" srcset="https://debiprasad.net/wp-content/uploads/2021/05/IMG_3192.jpg 750w, https://debiprasad.net/wp-content/uploads/2021/05/IMG_3192-300x270.jpg 300w, https://debiprasad.net/wp-content/uploads/2021/05/IMG_3192-640x576.jpg 640w" sizes="(max-width: 750px) 100vw, 750px" /></figure>
</div>
</div>



<p>On that UI (image 1), &#8220;Select dream type&#8221; is a label for Dream Type drop down list. But I mistook it as a label/help-text for the title, which already have its label as the placeholder text. Now, when I tapped on the label &#8220;Select dream type&#8221;, it showed me the options for the drop down list (image 2).</p>



<p>I consider this a bad UI. So, what are the takeaways from here? Never design any element of the UI which can create confusion. A drop down list should look like a drop down list. It should not look like a text label. It should not look like a part of another element which is near it. And follow a good design system. </p>



<p>Some other takeaways are here which are not related to the UI but the UX. Alert the user that they may lose the data they have entered but not saved if the try to navigate away. Make it possible to save the unsaved data as draft. Autosave unsaved data as draft.</p>



<p>After losing the data I had entered, I did not have any patient to type those again. My goal was to remember the dream by journaling. And I felt that I achieved it by typing the dream. How I write it, where I write it are not much important. However, I will continue using the app to journal more dreams. I am also planning try other dream journal apps.</p>



<p>The name of the app is <a href="https://www.dreamli.app">Dreamli</a>. I may not use it longer as it&#8217;s a costly app. I can journal only 15 dreams for free. Then I need buy &#8220;dream cards&#8221; to journal more dreams. Also, in the options for dream type dropdown list, they don&#8217;t have all the options. If you need those dream types, you need to buy each dream type individually. I guess I am seeing someone selling dropdown options for the first time <img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f600.png" alt="😀" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
<p>The post <a href="https://debiprasad.net/a-bad-ui/">A bad UI?</a> appeared first on <a href="https://debiprasad.net">Debiprasad</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://debiprasad.net/a-bad-ui/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">963</post-id>	</item>
		<item>
		<title>Investing during COVID-19 Pandemic</title>
		<link>https://debiprasad.net/investing-during-covid19/</link>
					<comments>https://debiprasad.net/investing-during-covid19/#respond</comments>
		
		<dc:creator><![CDATA[Debiprasad]]></dc:creator>
		<pubDate>Wed, 10 Jun 2020 08:06:16 +0000</pubDate>
				<category><![CDATA[Investment]]></category>
		<guid isPermaLink="false">https://debiprasad.net/?p=951</guid>

					<description><![CDATA[<p>Due to the bad economy caused by the COVID-19 pandemic, the interest rates on different types of savings have gone down. On a fixed deposit for 1 year to 2 years the interest rate is just 5.6%. So, should you save money in a fixed deposit or invest in mutual funds? Currently, NIFTY 50 is [&#8230;]</p>
<p>The post <a href="https://debiprasad.net/investing-during-covid19/">Investing during COVID-19 Pandemic</a> appeared first on <a href="https://debiprasad.net">Debiprasad</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>Due to the bad economy caused by the COVID-19 pandemic, the interest rates on different types of savings have gone down. On a fixed deposit for 1 year to 2 years the interest rate is just 5.6%. So, should you save money in a fixed deposit or invest in mutual funds?</p>



<p>Currently, NIFTY 50 is 20% less than its 52 weeks high. Let’s assume that it takes 1 year for it to get that 52 weeks high index. So, if you invest in an index fund today, after 1 year you will get around a 23% return. </p>



<p>Let’s assume that it takes 2 years for it to get that 52 weeks high index. In that case,​ you are still getting more than a 10% annual return on your investments.</p>



<p>I use&nbsp;Groww to invest in mutual funds, stocks, and (digital) gold. You can also <a href="https://groww.app.link/refe/debiprasad195062">join Groww</a> and start investing in index mutual funds.</p>



<p>Mutual fund investments are subject to market risk. But I am optimistic enough that it will give a <g class="gr_ gr_4 gr-alert gr_gramm gr_inline_cards gr_disable_anim_appear Grammar only-ins replaceWithoutSep" id="4" data-gr-id="4">better</g> <g class="gr_ gr_5 gr-alert gr_gramm gr_inline_cards gr_disable_anim_appear Grammar multiReplace" id="5" data-gr-id="5">return</g> than FDs in the next 2 years.</p>
<p>The post <a href="https://debiprasad.net/investing-during-covid19/">Investing during COVID-19 Pandemic</a> appeared first on <a href="https://debiprasad.net">Debiprasad</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://debiprasad.net/investing-during-covid19/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">951</post-id>	</item>
		<item>
		<title>My favorite ​overnight oats recipe</title>
		<link>https://debiprasad.net/overnight-oats-recipe/</link>
					<comments>https://debiprasad.net/overnight-oats-recipe/#respond</comments>
		
		<dc:creator><![CDATA[Debiprasad]]></dc:creator>
		<pubDate>Tue, 15 Oct 2019 12:48:58 +0000</pubDate>
				<category><![CDATA[From My Kitchen]]></category>
		<category><![CDATA[Breakfast]]></category>
		<category><![CDATA[Diet]]></category>
		<category><![CDATA[Health]]></category>
		<category><![CDATA[Lose Weight]]></category>
		<category><![CDATA[Oats]]></category>
		<category><![CDATA[Recipes]]></category>
		<guid isPermaLink="false">https://debiprasad.net/?p=918</guid>

					<description><![CDATA[<p>After trying some oats recipes with quick oats and steel-cut oats, I came across overnight oats. I already had rolled oats with me which is the main ingredient of the recipe though I had not used those rolled oats before this. So, it was a good opportunity to use these oats in the overnight oats [&#8230;]</p>
<p>The post <a href="https://debiprasad.net/overnight-oats-recipe/">My favorite ​overnight oats recipe</a> appeared first on <a href="https://debiprasad.net">Debiprasad</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>After trying some oats recipes with quick oats and steel-cut oats, I came across overnight oats. I already had rolled oats with me which is the main ingredient of the recipe though I had not used those rolled oats before this. So, it was a good opportunity to use these oats in the overnight oats recipe. After a good search, I came across <a href="https://wholefully.com/8-classic-overnight-oats-recipes-you-should-try/">this Overnight Oats recipe</a>. </p>



<p>When I read the recipe, I tried to ensure that I have all the ingredients available. Or at least all the ingredients are available locally. The recipe has 8 variants. I figured it out that I can easily make at least two variants: Classic Vanilla Overnight Oats and Chocolate Peanut Butter Overnight Oats. I tried Classic Vanilla Overnight Oats first and after successful and amazing experience I also tried Chocolate Peanut Butter Overnight Oats. It was even better than the previous one. I am interested to try all other variants as well but did not put any efforts towards it. Two of the variants need softened cream cheese. Cream cheese is not easily available in my city Bhubaneswar. Once I found it at a store but it was very costly. So, I am not trying those variants. One variant needs plain pumpkin puree. I guess pumpkin puree is not easily available in India. So, I will skip this too. For the other three variants, I need to buy some ingredients and I am a little lazy for that. </p>



<p>The best thing about the overnight oats is that you can make it in the evening or night and you don&#8217;t need to do anything in the morning apart from eating it. So, if you always have a busy morning, having overnight oats won&#8217;t let you skip your breakfast. I don&#8217;t need to tell you how healthy it is. It&#8217;s filled with dietary fibres, complex carbohydrates, good fats and protein. If you make the variants which use good fresh fruits, then you get more vitamins and more dietary fibres. It is important to have a good breakfast in the morning. And a serving of overnight oats is a complete breakfast. The quantity of Classic Vanilla Overnight Oats is around 300 ml. The quantity of Chocolate Peanut Butter Overnight Oats is around 350 ml. This is enough for most to keep you full for 3-4 hours, enough time between breakfast and lunch. You can also add a couple of eggs as you prefer to your breakfast to add more protein and keep you full even longer. Chocolate Peanut Butter Overnight Oats even has more fibre and protein as compared Classic Vanilla Overnight Oats and it even keeps you full longer as it is more in quantity. My favourite among these two is Chocolate Peanut Butter Overnight Oats.</p>



<p>Another good thing is that you can make multiple batches of overnight oats at once and eat it for a week. Saves a lot of time and helps you in your meal prep.</p>



<p>You don&#8217;t need to strictly follow the recipes. You can be a little creative and add things which you like and can go well. For example, I sometimes add fruits like bananas, apple, grapes etc., dry fruits like raisins, cashew nuts, almonds, walnuts etc. to the oats and enjoy it.</p>



<p>I think it will be easy you if I will link to all the products and ingredients I use so that you can easily buy most the ingredients sitting at home and enjoy your overnight oats.</p>



<p>You can store your overnight oats in any glass jar or any good reusable plastic container. But I love <a href="https://amzn.to/2pqHB5H">these borosilicate glass jars</a>. It&#8217;s large enough to mix all the ingredients in this jar itself and store. </p>



<p><strong>Rolled oats:</strong><br />True Elements Rolled Oats 1kg pouch &#8211; <a href="https://amzn.to/2oHEGFO">https://amzn.to/2oHEGFO</a><br />True Elements Rolled Oats 1.2kg jar &#8211; <a href="https://amzn.to/2pkVNgQ">https://amzn.to/2pkVNgQ</a></p>



<p><strong>Chia seeds or Flaxseeds:</strong><br />True Elements Raw Chia Seeds, 500g &#8211; <a href="https://amzn.to/2OVvrgd">https://amzn.to/2OVvrgd</a><br />24 Mantra Organic Flax Seeds, 200g (Pack of 4) &#8211; <a href="https://www.amazon.in/dp/B07B18Z58D/">https://www.amazon.in/dp/B07B18Z58D/</a><br />You can use either one of these or both as per your choice.</p>



<p><strong>Vanilla extract</strong>:<br /><g class="gr_ gr_18 gr-alert gr_spell gr_inline_cards gr_disable_anim_appear ContextualSpelling ins-del multiReplace" id="18" data-gr-id="18">Ossoro</g> French Vanilla Flavour, 30 ml &#8211; <a href="https://amzn.to/31hVHUq">https://amzn.to/31hVHUq</a><br />If you are using this product, then use 1/4 tsp instead of 1/2 tsp as it is highly concentrated. You may increase or decrease the quantity as per your preference. </p>



<p><strong>Honey and Maple Syrup:</strong><br />Dabur Honey Squeezy Pack 400g (easy to pour) &#8211; <a href="https://amzn.to/2VNb7if">https://amzn.to/2VNb7if</a><br />Apis Himalaya Honey, 500g &#8211; <a href="https://amzn.to/2Bbp7ZK">https://amzn.to/2Bbp7ZK</a><br />MacDonald&#8217;s Maple Syrup, 370 ml &#8211; <a href="https://amzn.to/32hApHD">https://amzn.to/32hApHD</a><br />Maple Joe Canadian Grade A Maple Syrup, 250g &#8211; <a href="https://www.amazon.in/dp/B00B5SLEN8/">https://www.amazon.in/dp/B00B5SLEN8/</a></p>



<p><strong>Peanut Butter:</strong><br />Buy unsweetened peanut butter.<br /><g class="gr_ gr_51 gr-alert gr_spell gr_inline_cards gr_disable_anim_appear ContextualSpelling ins-del multiReplace" id="51" data-gr-id="51">Pintola</g> All Natural Creamy Peanut Butter, 1Kg&nbsp; &#8211; <a href="https://amzn.to/2OOxm63">https://amzn.to/2OOxm63</a><br />Alpino Natural Peanut Butter Smooth 1Kg (Unsweetened) &#8211; <a href="https://amzn.to/2OPkix7">https://amzn.to/2OPkix7</a><br />The Butternut Co. Peanut Butter Unsweetened Creamy Jar, 1 kg &#8211; <a href="https://amzn.to/2qhXiNh">https://amzn.to/2qhXiNh</a><br />DiSano All Natural Peanut Butter, Creamy, Unsweetened 1 kg &#8211; <a href="https://amzn.to/2qi5kpv">https://amzn.to/2qi5kpv</a><br />You can also use <a href="https://amzn.to/33tDm8c">organic</a> or <a href="https://amzn.to/2BbrjQP">crunchy</a> (<a href="https://www.amazon.in/dp/B071J53T7M/">organic</a>) versions as well.</p>



<p><strong>Unsweetened cocoa powder:</strong><br />Hershey&#8217;s Cocoa Powder, 225g &#8211; <a href="https://amzn.to/2MjAncV">https://amzn.to/2MjAncV</a></p>



<p><strong>Measuring Cups and Spoons</strong><br />Bulfyss Popular Combo &#8211; 8Pcs Black Measuring Cups and Spoons Set, Silicone Series Spatula and Brush Set &#8211; <a href="https://amzn.to/2J4MpEY">https://amzn.to/2J4MpEY</a></p>



<p>I have added affiliate links above. Which means if you buy those products by clicking on the links above, I will earn some commission. But my recommendations are based on my own use and not sponsored.</p>
<p>The post <a href="https://debiprasad.net/overnight-oats-recipe/">My favorite ​overnight oats recipe</a> appeared first on <a href="https://debiprasad.net">Debiprasad</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://debiprasad.net/overnight-oats-recipe/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">918</post-id>	</item>
		<item>
		<title>Should you get iPhone 7 from Airtel?</title>
		<link>https://debiprasad.net/iphone-7-airtel/</link>
					<comments>https://debiprasad.net/iphone-7-airtel/#respond</comments>
		
		<dc:creator><![CDATA[Debiprasad]]></dc:creator>
		<pubDate>Fri, 20 Oct 2017 09:25:26 +0000</pubDate>
				<category><![CDATA[Online Shopping]]></category>
		<category><![CDATA[Airtel]]></category>
		<category><![CDATA[Amazon]]></category>
		<category><![CDATA[Amazon.in]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iPhone 7]]></category>
		<guid isPermaLink="false">https://debiprasad.net/?p=908</guid>

					<description><![CDATA[<p>I have not written anything on this blog since over a year. So, I have decided to write something today. One thing that had caught my notice recently is iPhone 7 offer from Airtel. Is it worth it to buy iPhone from Airtel? Find it out. So, Airtel offers iPhone 7 32 GB for a [&#8230;]</p>
<p>The post <a href="https://debiprasad.net/iphone-7-airtel/">Should you get iPhone 7 from Airtel?</a> appeared first on <a href="https://debiprasad.net">Debiprasad</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>I have not written anything on this blog since over a year. So, I have decided to write something today. One thing that had caught my notice recently is iPhone 7 offer from Airtel. Is it worth it to buy iPhone from Airtel? Find it out.</p>
<p><img decoding="async" data-attachment-id="909" data-permalink="https://debiprasad.net/iphone-7-airtel/screen-shot-2017-10-20-at-1-24-03-pm/" data-orig-file="https://debiprasad.net/wp-content/uploads/2017/10/Screen-Shot-2017-10-20-at-1.24.03-PM.png" data-orig-size="1203,358" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="iPhone 7 from Airtel" data-image-description="" data-image-caption="" data-large-file="https://debiprasad.net/wp-content/uploads/2017/10/Screen-Shot-2017-10-20-at-1.24.03-PM-1024x305.png" class="aligncenter size-large wp-image-909" src="https://debiprasad.net/wp-content/uploads/2017/10/Screen-Shot-2017-10-20-at-1.24.03-PM-1024x305.png" alt="" width="920" height="274" srcset="https://debiprasad.net/wp-content/uploads/2017/10/Screen-Shot-2017-10-20-at-1.24.03-PM-1024x305.png 1024w, https://debiprasad.net/wp-content/uploads/2017/10/Screen-Shot-2017-10-20-at-1.24.03-PM-300x89.png 300w, https://debiprasad.net/wp-content/uploads/2017/10/Screen-Shot-2017-10-20-at-1.24.03-PM-768x229.png 768w, https://debiprasad.net/wp-content/uploads/2017/10/Screen-Shot-2017-10-20-at-1.24.03-PM-920x274.png 920w, https://debiprasad.net/wp-content/uploads/2017/10/Screen-Shot-2017-10-20-at-1.24.03-PM.png 1203w" sizes="(max-width: 920px) 100vw, 920px" /></p>
<p>So, Airtel offers iPhone 7 32 GB for a downpayment of Rs. 7,777 and you need to be on a postpaid plan of Rs. 2,499 per month for 24 months. On Airtel website, the cost of the iPhone is Rs. 47,777. As Rs. 7,777 is the downpayment, the loan amount is Rs. 40,000 and you need to pay for it in 24 EMIs. If you get a loan of Rs. 40,000 at 14% interest rate for 24 months EMI then the EMI will be Rs. 1,921. So, here you are paying Rs. 578 for the postpaid plan and Handset Damage Protection which costs Rs. 49. So, you are paying effectively Rs. 529 for the postpaid plan. Normally, that post plan costs Rs. 649. So, that&#8217;s a saving of Rs. 120.</p>
<p>But here is the catch. iPhone 7 32 GB are much cheaper than Airtel price. You can <a href="http://amzn.to/2gwqdZB">get those as low as Rs. 38,999.00 at Amazon.in</a>. You can also buy it on an EMI if you have a credit card or a Bajaj Loan Card. And get a prepaid or postpaid plan as you wish or stay with your current plan. Save money.</p>
<p>The post <a href="https://debiprasad.net/iphone-7-airtel/">Should you get iPhone 7 from Airtel?</a> appeared first on <a href="https://debiprasad.net">Debiprasad</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://debiprasad.net/iphone-7-airtel/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">908</post-id>	</item>
		<item>
		<title>Why uberAUTO is no evil</title>
		<link>https://debiprasad.net/uber-auto-bhubaneswar/</link>
					<comments>https://debiprasad.net/uber-auto-bhubaneswar/#respond</comments>
		
		<dc:creator><![CDATA[Debiprasad]]></dc:creator>
		<pubDate>Sat, 02 Apr 2016 07:09:31 +0000</pubDate>
				<category><![CDATA[Temple City Bhubaneswar]]></category>
		<category><![CDATA[Bhubaneswar]]></category>
		<category><![CDATA[transportation]]></category>
		<category><![CDATA[uber]]></category>
		<category><![CDATA[uberauto]]></category>
		<category><![CDATA[urbanmobility]]></category>
		<guid isPermaLink="false">http://debiprasad.net/?p=879</guid>

					<description><![CDATA[<p>Yesterday I was present at the uberAUTO launch in Bhubaneswar. At the event, Shri Anant Narayan Jena, Mayor of Bhubaneswar, told that Uber should work towards making auto rickshaw unions happy. As the tariff of uberAUTO in Bhubaneswar is almost one-third of the tariff decided by the Govt. Otherwise, they may go on a strike. When it comes [&#8230;]</p>
<p>The post <a href="https://debiprasad.net/uber-auto-bhubaneswar/">Why uberAUTO is no evil</a> appeared first on <a href="https://debiprasad.net">Debiprasad</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Yesterday I was present at the uberAUTO launch in Bhubaneswar. At the event, Shri Anant Narayan Jena, Mayor of Bhubaneswar, told that Uber should work towards making auto rickshaw unions happy. As the tariff of uberAUTO in Bhubaneswar is almost one-third of the tariff decided by the Govt. Otherwise, they may go on a strike. When it comes to the public transportation in Bhubaneswar, auto rickshaws are a staple. So, if auto rickshaw unions go on a strike, it will be a problem.</p>
<p>I don&#8217;t agree with the mayor that uberAUTO&#8217;s tariff is almost one-third of the Govt. tariff. If you are riding with uberAUTO, then you need to pay Rs. 15 as base fare and pay Rs. 1 per minute during your ride. Only the Rs. 3/KM sounds cheaper. So, uberAUTO&#8217;s tariff model is more complicated than normal auto rickshaw tariff prescribed by the Govt. So, it might not be one-third of the Govt. rate. I am trying to find the tariff prescribed by Govt. Once I find that I will update this section. I guess you understand why it&#8217;s hard for me to know Govt. prescribed rate. I will talk about it next.</p>
<p>It&#8217;s good to know that the mayor has some concerns about auto rickshaw unions and looking for a healthy competition. But when was the last time you saw an auto rickshaw with a working meter? When was the last time an auto rickshaw charged you as per the Govt. tariff? Has the mayor taken any step to make sure that all auto rickshaws use meter and charge customers as per the Govt. tariff? So, the mayor is not concerned about citizens of the city, but the auto rickshaw unions.</p>
<p>Normally, auto rickshaws in Bhubaneswar charge double the amount of the actual fare as per the Govt. tariff. So, it was very hard to negotiate and hire an auto for anything. So, when Ola launched its service in Bhubaneswar, it was a relief. Even Ola costs cheaper than a traditional auto rickshaw. And it comes with many advantages. Four people can travel comfortably in an air conditioned car. And the best part is you don&#8217;t need to go to auto stand and negotiate, pay less than the average auto fare. But auto rickshaw unions never liked this idea. They attacked Ola drivers. Then Uber launched. And then there came Jugnoo. Jugnoo is like Ola/Uber for auto rickshaws only. Jugnoo is cheaper than Ola or Uber.</p>
<p>Now Uber launched its service for auto rickshaws in Bhubaneswar. If the auto rickshaws would have used the meter and charged customers as per the Govt. tariff, the suggestion by the mayor would have made any sense. Almost a year ago, when Uber launched uberAUTO in Delhi, the customer needed to pay the fare as per the Govt. rate in cash directly to the driver. That model could have been applied here in Bhubaneswar without much complaint.</p>
<p>On the other hand, shared auto service works well in Bhubaneswar and no service available now can harm it.</p>
<p>If you have not signed up for Uber yet, then sign up with code debiprasads20ue and get the first ride free up to Rs. 100. <a href="http://bit.ly/uber-dps" target="_blank">Sign up here or download</a> the app.</p>
<p>Yesterday, Ola also launched its auto rickshaw service. It looked like they launched it in a hurry, as Uber launched its uberAUTO. If you are already using Ola, then you can get your first auto ride free*. If not, then sign up with code 7EE6YM and get a Rs. 50 coupon. <a href="http://bit.ly/ola-dps" target="_blank">Download</a> the app here.</p>
<p>Sometimes, you may like to use Jugnoo for some reason or the other instead of using Uber or Ola. If you have not installed Jugnoo, then sign up with code DEBIPRASAD585515 and get 100%* cashback on your ride. <a href="http://bit.ly/jugnoo-dps" target="_blank">Sign up here or download</a> the app.</p>
<p>The post <a href="https://debiprasad.net/uber-auto-bhubaneswar/">Why uberAUTO is no evil</a> appeared first on <a href="https://debiprasad.net">Debiprasad</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://debiprasad.net/uber-auto-bhubaneswar/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">879</post-id>	</item>
		<item>
		<title>Thought Processes of an Engineer</title>
		<link>https://debiprasad.net/engineer-thought-processes/</link>
					<comments>https://debiprasad.net/engineer-thought-processes/#respond</comments>
		
		<dc:creator><![CDATA[Debiprasad]]></dc:creator>
		<pubDate>Wed, 30 Sep 2015 07:34:47 +0000</pubDate>
				<category><![CDATA[Random Stuff]]></category>
		<category><![CDATA[Digital India]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[Internet.org]]></category>
		<category><![CDATA[Mark Zuckerberg]]></category>
		<guid isPermaLink="false">http://debiprasad.net/?p=867</guid>

					<description><![CDATA[<p>I am an engineer. I code for a living. The word &#8220;pride&#8221; is associated with LGBT Pride. Facebook had created an application to celebrate and show your support for the LGBT community, by adding a rainbow filter to your profile picture. It&#8217;s recommended to reuse the code. I will reuse the code of a good application [&#8230;]</p>
<p>The post <a href="https://debiprasad.net/engineer-thought-processes/">Thought Processes of an Engineer</a> appeared first on <a href="https://debiprasad.net">Debiprasad</a>.</p>
]]></description>
										<content:encoded><![CDATA[<ul>
<li>I am an engineer.</li>
<li>I code for a living.</li>
<li>The word &#8220;<a href="https://www.google.co.in/search?q=pride&amp;es_sm=91&amp;source=lnms&amp;tbm=isch&amp;sa=X&amp;ved=0CAcQ_AUoAWoVChMIlLat-JieyAIVykCOCh2Wtg39&amp;biw=1280&amp;bih=701" target="_blank">pride</a>&#8221; is associated with LGBT Pride.</li>
<li>Facebook had created an <a href="https://www.facebook.com/celebratepride" target="_blank">application</a> to celebrate and show your support for the LGBT community, by adding a rainbow filter to your profile picture.</li>
<li>It&#8217;s recommended to reuse the code.</li>
<li>I will reuse the code of a good application which was developed recently to build a similar application, provided the license of the code allows that.</li>
<li>Engineers improve by experience.</li>
<li>It&#8217;s difficult to name properly to all variables, classes, methods, IDs etc. in a code.</li>
<li>If I am developing an application for cats, I don&#8217;t think I will use the name &#8216;tiger&#8217; in a class or id.</li>
<li>Engineers can be wrong.</li>
</ul>
<p>The post <a href="https://debiprasad.net/engineer-thought-processes/">Thought Processes of an Engineer</a> appeared first on <a href="https://debiprasad.net">Debiprasad</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://debiprasad.net/engineer-thought-processes/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">867</post-id>	</item>
		<item>
		<title>Beware of OnePlus Two Scams</title>
		<link>https://debiprasad.net/beware-of-oneplus-two-scams/</link>
					<comments>https://debiprasad.net/beware-of-oneplus-two-scams/#comments</comments>
		
		<dc:creator><![CDATA[Debiprasad]]></dc:creator>
		<pubDate>Sun, 06 Sep 2015 05:57:06 +0000</pubDate>
				<category><![CDATA[Internet and the Web]]></category>
		<guid isPermaLink="false">http://debiprasad.net/?p=862</guid>

					<description><![CDATA[<p>Few days ago a friend asked me whether I can arrange a OnePlus One invite for her. After a couple of days I received an email with an OnePlus Two invite. When I waked up in the morning I saw that email and got a little surprised and a little excited to get an OnePlus [&#8230;]</p>
<p>The post <a href="https://debiprasad.net/beware-of-oneplus-two-scams/">Beware of OnePlus Two Scams</a> appeared first on <a href="https://debiprasad.net">Debiprasad</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Few days ago a friend asked me whether I can arrange a OnePlus One invite for her. After a couple of days I received an email with an OnePlus Two invite. When I waked up in the morning I saw that email and got a little surprised and a little excited to get an OnePlus Two invite so early. Either I was not fully waked up or due to the excitement, I missed to read this on the email: &#8220;We have tied up with Aliexpress and we ship worldwide through Aliexpress only&#8221;. What I read on that email is &#8220;We will not be able to offer country specific invites anymore<br />
All phones come with an international warranty&#8221; and I translated it into &#8220;This is not a country specific invite, which comes with an international warranty&#8221;. The email looks so legitimate that I immediately shared it with the friend.</p>
<p><a href="http://debiprasad.net/wp-content/uploads/2015/09/Screenshot_2015-09-04-08-16-15.png" rel="lightbox[862]"><img loading="lazy" decoding="async" data-attachment-id="863" data-permalink="https://debiprasad.net/beware-of-oneplus-two-scams/screenshot_2015-09-04-08-16-15/" data-orig-file="https://debiprasad.net/wp-content/uploads/2015/09/Screenshot_2015-09-04-08-16-15.png" data-orig-size="1080,1920" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="OnePlus Two fake invite" data-image-description="" data-image-caption="" data-large-file="https://debiprasad.net/wp-content/uploads/2015/09/Screenshot_2015-09-04-08-16-15-576x1024.png" src="http://debiprasad.net/wp-content/uploads/2015/09/Screenshot_2015-09-04-08-16-15-576x1024.png" alt="OnePlus Two fake invite" width="576" height="1024" class="aligncenter size-large wp-image-863" srcset="https://debiprasad.net/wp-content/uploads/2015/09/Screenshot_2015-09-04-08-16-15-576x1024.png 576w, https://debiprasad.net/wp-content/uploads/2015/09/Screenshot_2015-09-04-08-16-15-169x300.png 169w, https://debiprasad.net/wp-content/uploads/2015/09/Screenshot_2015-09-04-08-16-15-300x533.png 300w, https://debiprasad.net/wp-content/uploads/2015/09/Screenshot_2015-09-04-08-16-15-920x1636.png 920w, https://debiprasad.net/wp-content/uploads/2015/09/Screenshot_2015-09-04-08-16-15.png 1080w" sizes="auto, (max-width: 576px) 100vw, 576px" /></a></p>
<p>Later in the day, I got little suspicious as how I got the invite so soon. Then I checked the email sender and found that it&#8217;s from invites@oneplus2.co. Then I clicked on the link and found that it goes to Aliexpress. (I even did not read the email properly then. I read it properly while writing this post. I noticed &#8220;We have tied up with Aliexpress and we ship worldwide through Aliexpress only&#8221; just while I started writing this post.) I realised that it&#8217;s a scam and I have made a mistake by sharing this with my friend. I immediately informed her not to purchase the phone from that link and luckily she had not purchased it by then.</p>
<p>A couple of weeks ago, I saw an ad on Facebook regarding OnePlus Two invites giveaway. I did not feel much suspicious as it looked so legitimate. And I submitted my name and email ID. Normally, I don&#8217;t fear spam, so I don&#8217;t think much before sharing my email ID. But this one was more of a stupid act of mine. On the next page, when it asked me to share this with my friends on Whatsapp, I got suspicious and realised that it&#8217;s a scam and I was so stupid to come this far. But I also saw similar ad on Facebook one more time. I clicked again to see what does it say this time. It recognised me as a returning visitor who has already provided his name and email ID before. So, it showed me some interactive stuff to win OnePlus Two as a prize and share it with more friends. I thought I should write about this scam. But I was so lazy to do that and later I even become more stupid to share the email from them.</p>
<p><figure id="attachment_864" aria-describedby="caption-attachment-864" style="width: 576px" class="wp-caption aligncenter"><a href="http://debiprasad.net/wp-content/uploads/2015/09/Screenshot_2015-09-02-13-04-04.png" rel="lightbox[862]"><img loading="lazy" decoding="async" data-attachment-id="864" data-permalink="https://debiprasad.net/beware-of-oneplus-two-scams/screenshot_2015-09-02-13-04-04/" data-orig-file="https://debiprasad.net/wp-content/uploads/2015/09/Screenshot_2015-09-02-13-04-04.png" data-orig-size="1080,1920" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="OnePlus 2 scam ad on Facebook" data-image-description="" data-image-caption="&lt;p&gt;OnePlus 2 scam ad on Facebook&lt;/p&gt;
" data-large-file="https://debiprasad.net/wp-content/uploads/2015/09/Screenshot_2015-09-02-13-04-04-576x1024.png" src="http://debiprasad.net/wp-content/uploads/2015/09/Screenshot_2015-09-02-13-04-04-576x1024.png" alt="OnePlus 2 scam ad on Facebook" width="576" height="1024" class="size-large wp-image-864" srcset="https://debiprasad.net/wp-content/uploads/2015/09/Screenshot_2015-09-02-13-04-04-576x1024.png 576w, https://debiprasad.net/wp-content/uploads/2015/09/Screenshot_2015-09-02-13-04-04-169x300.png 169w, https://debiprasad.net/wp-content/uploads/2015/09/Screenshot_2015-09-02-13-04-04-300x533.png 300w, https://debiprasad.net/wp-content/uploads/2015/09/Screenshot_2015-09-02-13-04-04-920x1636.png 920w, https://debiprasad.net/wp-content/uploads/2015/09/Screenshot_2015-09-02-13-04-04.png 1080w" sizes="auto, (max-width: 576px) 100vw, 576px" /></a><figcaption id="caption-attachment-864" class="wp-caption-text">OnePlus 2 scam ad on Facebook</figcaption></figure></p>
<p>Facebook is so greedy that it does not verify ads for scams.</p>
<p>Today I decided to look under the hood as I thought to do previously. I found that this scam is run by a person named Rajesh Patel from Gujarat, India (as per the <a href="http://who.is/whois/oneplus2.co" target="_blank">Whois info of the domain oneplus2.co</a>). So, friends beware of such scams.</p>
<p>The post <a href="https://debiprasad.net/beware-of-oneplus-two-scams/">Beware of OnePlus Two Scams</a> appeared first on <a href="https://debiprasad.net">Debiprasad</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://debiprasad.net/beware-of-oneplus-two-scams/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">862</post-id>	</item>
		<item>
		<title>How WikiPedia and Google can fight against vandalism?</title>
		<link>https://debiprasad.net/vandalism-on-wikipedia/</link>
					<comments>https://debiprasad.net/vandalism-on-wikipedia/#respond</comments>
		
		<dc:creator><![CDATA[Debiprasad]]></dc:creator>
		<pubDate>Thu, 07 Aug 2014 12:21:00 +0000</pubDate>
				<category><![CDATA[Internet and the Web]]></category>
		<guid isPermaLink="false">http://debiprasad.net/?p=853</guid>

					<description><![CDATA[<p>I wanted to find some information about Marissa Mayer and what could be better option than searching on Google? But I got amazed when the saw something unbelievable in Google Knowledge Graph. It says &#8220;Marissa Ann Mayer is the current president and CEO of KD Interactive since August 2014.&#8221;. She recently completed 2 years as [&#8230;]</p>
<p>The post <a href="https://debiprasad.net/vandalism-on-wikipedia/">How WikiPedia and Google can fight against vandalism?</a> appeared first on <a href="https://debiprasad.net">Debiprasad</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>I wanted to find some information about Marissa Mayer and what could be better option than searching on Google? But I got amazed when the saw something unbelievable in Google Knowledge Graph. It says &#8220;Marissa Ann Mayer is the current president and CEO of KD Interactive since August 2014.&#8221;. She recently completed 2 years as CEO of Yahoo! Inc.. When did she move to KD Interactive? WTF is KD Interactive?</p>
<p><img loading="lazy" decoding="async" data-attachment-id="854" data-permalink="https://debiprasad.net/vandalism-on-wikipedia/screenshot-2014-08-07-17-24-48/" data-orig-file="https://debiprasad.net/wp-content/uploads/2014/08/Screenshot-2014-08-07-17.24.48.png" data-orig-size="482,351" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Screenshot of Google Knowledge Graph displaying Marissa Mayer" data-image-description="" data-image-caption="" data-large-file="https://debiprasad.net/wp-content/uploads/2014/08/Screenshot-2014-08-07-17.24.48.png" src="http://debiprasad.net/wp-content/uploads/2014/08/Screenshot-2014-08-07-17.24.48.png" alt="Screenshot of Google Knowledge Graph displaying Marissa Mayer" width="482" height="351" class="aligncenter size-full wp-image-854" srcset="https://debiprasad.net/wp-content/uploads/2014/08/Screenshot-2014-08-07-17.24.48.png 482w, https://debiprasad.net/wp-content/uploads/2014/08/Screenshot-2014-08-07-17.24.48-300x218.png 300w" sizes="auto, (max-width: 482px) 100vw, 482px" /></p>
<p>WikiPedia is perhaps the quickest source of knowledge. Anyone, even your neighbour&#8217;s dog or a monkey in the jungle can edit WikiPedia. So, someone had vandalised the information on the WikiPedia page about Marissa Mayer. And Google was too quick to index WikiPedia and update its Knowledge Graph. </p>
<p>As anyone can edit WikiPedia, I undid those couple of vandalisms. But this incident raises some questions. Open Source software can be contributed by anyone. But the community takes care so that no one can harm the software. Similarly, the community of WikiPedia should be stronger to act again vandalism. And Google should get some intelligence, instead of blindly copying content for knowledge. Knowledge can&#8217;t be gained by just copying something. You need to understand it.</p>
<p>The post <a href="https://debiprasad.net/vandalism-on-wikipedia/">How WikiPedia and Google can fight against vandalism?</a> appeared first on <a href="https://debiprasad.net">Debiprasad</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://debiprasad.net/vandalism-on-wikipedia/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">853</post-id>	</item>
	</channel>
</rss>
