-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.xml
99 lines (99 loc) · 29 KB
/
index.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Posts on Yogendra Rampuria</title><link>https://yogendra.github.io/posts/</link><description>Recent content in Posts on Yogendra Rampuria</description><generator>Hugo -- gohugo.io</generator><language>en</language><copyright>Copyright © 2012–2024, Yogendra Rampuria; all rights reserved.</copyright><lastBuildDate>Thu, 23 May 2024 00:28:38 +0800</lastBuildDate><atom:link href="https://yogendra.github.io/posts/index.xml" rel="self" type="application/rss+xml"/><item><title>YugabyteDB ♥️ Vault: Fun Times</title><link>https://yogendra.github.io/2024/05/23/yugabytedb-and-vault-fun-times/</link><pubDate>Thu, 23 May 2024 00:28:38 +0800</pubDate><guid>https://yogendra.github.io/2024/05/23/yugabytedb-and-vault-fun-times/</guid><description>
I have been working with YugabyteDB for a while now. I am always experimenting with YugabyteDB + (something). Today, its Vault.
I have also worked on Vault for a bit and did a a lightening talk earlier this year. That talks was primarily around the data masking. But today, I was exploring the database secret engine.
For the uninitiated, Vault provides you with ability to dynamically generate database credentials for your application.</description></item><item><title>Fun With Sensors' Data</title><link>https://yogendra.github.io/2022/04/11/fun-with-sensors-data/</link><pubDate>Mon, 11 Apr 2022 01:50:30 +0000</pubDate><guid>https://yogendra.github.io/2022/04/11/fun-with-sensors-data/</guid><description>
IoT is growing rapidly. I wanted to learn more about it from an enterprise and data centric aspect of it. Here are initial learnings</description></item><item><title>YugabyteDB - Row Level Geo Partitioning</title><link>https://yogendra.github.io/2022/03/17/yugabytedb-row-level-geo-partitioning/</link><pubDate>Thu, 17 Mar 2022 23:31:47 +0800</pubDate><guid>https://yogendra.github.io/2022/03/17/yugabytedb-row-level-geo-partitioning/</guid><description>
I have joined Yugabyte a while back. I have gone through many demos/samples. But one thing that caught my attention very early on was the geo-pinning the data.
This capability can simplify compliance of data privacy laws, data sovereignty laws, etc. It can make the overall architecture of the application very simple. Here is my stab at this feature. I followed the documentation for most part. I added only the cluster management parts to the whole guide for a quick self-drive.</description></item><item><title>IDD Dialer V2</title><link>https://yogendra.github.io/2022/02/17/idd-dialer-v2/</link><pubDate>Thu, 17 Feb 2022 10:44:29 +0000</pubDate><guid>https://yogendra.github.io/2022/02/17/idd-dialer-v2/</guid><description>
I have release IDD Dialer v2. Complete rewrite of v1. It uses the standard Android call management service to dial IDD numbers. Check out the [project page][idd-dialer]
Why IDD Dialer? I created IDD Dialer out of personal need in mid 2010s. How to make it easily to call people using the IDD service.
This generally requires adding few digits in front of the country code in the phone number. Price difference is significant between regular rates and IDD rates.</description></item><item><title>Sudo With Touch ID</title><link>https://yogendra.github.io/2022/01/20/sudo-with-touch-id/</link><pubDate>Thu, 20 Jan 2022 03:43:49 +0000</pubDate><guid>https://yogendra.github.io/2022/01/20/sudo-with-touch-id/</guid><description>
Security and convenience are not best of the friends. Good password/pin practices are not convenience (long, different for each system, random). Biometric authentication is somewhat a good compromise.
Logging into your machine is a very repetitive task. I do it enough time is a day to be annoyed of long passwords. Additionally, I work a lot on command line so I do find myself running commands with sudo a lot. Here is something that help me reduce some annoyance out of these.</description></item><item><title>Migration Guide</title><link>https://yogendra.github.io/2021/09/07/migration-guide/</link><pubDate>Tue, 07 Sep 2021 00:00:00 +0000</pubDate><guid>https://yogendra.github.io/2021/09/07/migration-guide/</guid><description>
From Hexo to Hugo Setup Hugo site with menu and theme etc.
Create site
1hugo new site . --force Add theme link
Configure _config.toml as per theme specs
Add Menus / Links / Social links Change author name Page migration
Post Migration
Copy &lt;hexo_site&gt;/source/_posts/* to &lt;hugo_site&gt;/content/posts
Delete all the non Markdown files
1cd $SITE_ROOT/content/posts 2find . -type f | grep -v .md\$ --color=never | xargs rm Copy &lt;hexo_site&gt;/source/_posts/* to &lt;hugo_site&gt;/static</description></item><item><title>Right Abstraction</title><link>https://yogendra.github.io/2019/03/15/right-abstraction/</link><pubDate>Fri, 15 Mar 2019 22:25:31 +0000</pubDate><guid>https://yogendra.github.io/2019/03/15/right-abstraction/</guid><description>
Process of abstraction is as old as the mankind themselves. Whenever I brain looks at a problem, it tries to simplify by abstracting all the non-contextual aspect. In computer science as well, we follow the same process of hiding details through layering.
Get full Deck is here
Today we are seeing an increasing number of enterprises opting to transform themselves into a &quot;software driven business&quot;. They are recognizing software and software based services as a unique differentiator.</description></item><item><title>IDD Dialer - My First App</title><link>https://yogendra.github.io/2018/04/14/idd-dialer-my-first-app/</link><pubDate>Sat, 14 Apr 2018 15:05:12 +0000</pubDate><guid>https://yogendra.github.io/2018/04/14/idd-dialer-my-first-app/</guid><description>
A simple utility app to assist in international calling.
I have launched my first mobile app this week. It a simple tool for assisting in making IDD calls. It allows users to dial any prefixes needed make cheap internation calls.
Check out more details on the project page here</description></item><item><title>Mobile Sites Certification</title><link>https://yogendra.github.io/2018/01/26/mobile-sites-certification/</link><pubDate>Fri, 26 Jan 2018 00:45:53 +0000</pubDate><guid>https://yogendra.github.io/2018/01/26/mobile-sites-certification/</guid><description>
<p>First one in a while! I just (now) passed my Mobile Site Certifiation from
<a href="https://landing.google.com/academyforads">Academy for Ads</a></p></description></item><item><title>Puppeteer - No Strings Attached</title><link>https://yogendra.github.io/2017/10/28/puppeteer-no-strings-attached/</link><pubDate>Sat, 28 Oct 2017 23:52:08 +0000</pubDate><guid>https://yogendra.github.io/2017/10/28/puppeteer-no-strings-attached/</guid><description>
<p>I am a Co-Manager for <a href="https://www.gdg-sg.org">Google Developer Group - Singapore</a> (<a href="https://www.facebook.com/gdgsgorg">FB</a>). And today was our annual <a href="https://www.gdg-sg.org/2017/10/gdg-devfest-2017.html">GDG-SG DevFest 2017</a> event. Apart from being an organizer, I was also a speaker. I gave a short talk on <a href="https://github.com/GoogleChrome/puppeteer">Puppeteer</a>. This post is (almost) a transcript of my speech today. Slides can be found <a href="https://drive.google.com/open?id=0B6Mr-G5qbPLPT0JCTWl0N0w5M2s">here</a></p></description></item><item><title>Kotlin - Baby Steps</title><link>https://yogendra.github.io/2017/09/19/kotlin-baby-steps/</link><pubDate>Tue, 19 Sep 2017 22:49:47 +0000</pubDate><guid>https://yogendra.github.io/2017/09/19/kotlin-baby-steps/</guid><description>
<p>I was at <a href="https://www.meetup.com/kotlinsg/events/243293562/">Kotlin SG Meetup</a> tonight. It had a lot of content. I will post more about that later.</p>
<p>On my way back home (now), I started reading Kotlin website about various features (<a href="https://kotlinlang.org/docs/tutorials/">here</a>).</p></description></item><item><title>Diagrams In Blog</title><link>https://yogendra.github.io/2017/07/21/diagrams-in-blog/</link><pubDate>Fri, 21 Jul 2017 17:34:12 +0000</pubDate><guid>https://yogendra.github.io/2017/07/21/diagrams-in-blog/</guid><description>
I use a text to diagram tool called PlantUML. It's perfect! Now, I want to use it with my hugo site, through a short code. So, I I type a code like below, I should see out like as the image.
1@startuml 2A -&gt; B : Hello 3A &lt;- B : Hi There! 4@enduml Update: I spend many hours trying to work this out. Created a firebase function to process posting and converting and yada yada.</description></item><item><title>Migration Mania</title><link>https://yogendra.github.io/2017/07/20/migration-mania/</link><pubDate>Thu, 20 Jul 2017 22:13:49 +0000</pubDate><guid>https://yogendra.github.io/2017/07/20/migration-mania/</guid><description>
<p>I am embarking on this new journey to use <a href="https://www.staticgen.com/">Static Site Generator</a>.</p></description></item><item><title>The New Begining</title><link>https://yogendra.github.io/2017/07/19/the-new-begining/</link><pubDate>Wed, 19 Jul 2017 00:00:00 +0000</pubDate><guid>https://yogendra.github.io/2017/07/19/the-new-begining/</guid><description>
If its not working, try restarting it
An Engineer This is my attempt to restart. This is my 4th attempt to blog. I started blogging years ago. But something or the other always kept me from writing regularly.
Sometimes I was just lazy to write. But most of the times, I digressed into updating my core, plugins, themes, etc. After all I am a programmer, and I get more satisfaction in creating (read breaking) and fixing stuff.</description></item><item><title>Top 30 SSH shenanigans</title><link>https://yogendra.github.io/2016/11/09/top-30-ssh-shenanigans/</link><pubDate>Wed, 09 Nov 2016 22:52:49 +0000</pubDate><guid>https://yogendra.github.io/2016/11/09/top-30-ssh-shenanigans/</guid><description>
<p>Good list of commands to be SSH 'Yoda'. I like the tunnels and screen the most in these. They have been so useful over the years, for development and troubleshooting.</p></description></item><item><title>शुभ दीपावली</title><link>https://yogendra.github.io/2016/10/30/%E0%A4%B6%E0%A5%81%E0%A4%AD-%E0%A4%A6%E0%A5%80%E0%A4%AA%E0%A4%BE%E0%A4%B5%E0%A4%B2%E0%A5%80/</link><pubDate>Sun, 30 Oct 2016 16:47:35 +0000</pubDate><guid>https://yogendra.github.io/2016/10/30/%E0%A4%B6%E0%A5%81%E0%A4%AD-%E0%A4%A6%E0%A5%80%E0%A4%AA%E0%A4%BE%E0%A4%B5%E0%A4%B2%E0%A5%80/</guid><description>
<p>यह दिवाली आपकी...</p></description></item><item><title>मैंने दहेज़ नहीं माँगा</title><link>https://yogendra.github.io/2016/08/02/%E0%A4%AE%E0%A5%88%E0%A4%82%E0%A4%A8%E0%A5%87-%E0%A4%A6%E0%A4%B9%E0%A5%87%E0%A5%9B-%E0%A4%A8%E0%A4%B9%E0%A5%80%E0%A4%82-%E0%A4%AE%E0%A4%BE%E0%A4%81%E0%A4%97%E0%A4%BE/</link><pubDate>Tue, 02 Aug 2016 12:48:59 +0000</pubDate><guid>https://yogendra.github.io/2016/08/02/%E0%A4%AE%E0%A5%88%E0%A4%82%E0%A4%A8%E0%A5%87-%E0%A4%A6%E0%A4%B9%E0%A5%87%E0%A5%9B-%E0%A4%A8%E0%A4%B9%E0%A5%80%E0%A4%82-%E0%A4%AE%E0%A4%BE%E0%A4%81%E0%A4%97%E0%A4%BE/</guid><description>
<p>साहब मैं थाने नहीं आउंगा,
अपने इस घर से कहीं नहीं जाउंगा,
माना पत्नी से थोडा मन मुटाव था,
सोच में अन्तर और विचारों में खिंचाव था,
<strong>पर यकीन मानिए साहब ,“ मैंने दहेज़ नहीं माँगा ”</strong></p></description></item><item><title>Vagrant Docker Basebox for VMWare + Vagrant</title><link>https://yogendra.github.io/2016/02/05/vagrant-docker-basebox-for-vmware--vagrant/</link><pubDate>Fri, 05 Feb 2016 23:03:42 +0000</pubDate><guid>https://yogendra.github.io/2016/02/05/vagrant-docker-basebox-for-vmware--vagrant/</guid><description>
<p>Docker VMWare is a base box with all goodness. See full information on <a href="https://github.com/yogendra/docker-vmware">Github</a></p></description></item><item><title>Parenting Lessons !!</title><link>https://yogendra.github.io/2015/12/22/parenting-lessons/</link><pubDate>Tue, 22 Dec 2015 15:58:23 +0000</pubDate><guid>https://yogendra.github.io/2015/12/22/parenting-lessons/</guid><description>
<p>Lets connet with our little ones. Hope this helps you, as much as it helped me.</p></description></item><item><title>... And My Heart Skipped A Beat</title><link>https://yogendra.github.io/2015/04/29/...-and-my-heart-skipped-a-beat/</link><pubDate>Wed, 29 Apr 2015 19:02:56 +0000</pubDate><guid>https://yogendra.github.io/2015/04/29/...-and-my-heart-skipped-a-beat/</guid><description>
<p>27th April 2015, Monday - A date that has become even more special. Its Srishti's (my niece) birthday. She turned 4. Everyone who knows me, know it well, how special she is to me. But God had his own plans to take this to a whole new level.
test</p></description></item><item><title>40 Ways to Stay Creative</title><link>https://yogendra.github.io/2015/04/25/40-ways-to-stay-creative/</link><pubDate>Sat, 25 Apr 2015 16:00:58 +0000</pubDate><guid>https://yogendra.github.io/2015/04/25/40-ways-to-stay-creative/</guid><description>
<p>We all need some ways to stay creative, isn't it?</p></description></item><item><title>Data Structure Operation</title><link>https://yogendra.github.io/2015/04/13/data-structure-operation/</link><pubDate>Mon, 13 Apr 2015 00:58:00 +0000</pubDate><guid>https://yogendra.github.io/2015/04/13/data-structure-operation/</guid><description>
I always find myself pondering about this</description></item><item><title>Operation Raahat</title><link>https://yogendra.github.io/2015/04/11/operation-raahat/</link><pubDate>Sat, 11 Apr 2015 13:10:58 +0000</pubDate><guid>https://yogendra.github.io/2015/04/11/operation-raahat/</guid><description>
<p>In the past six months, a war for political dominance between the two sects of Muslims—Sunni and Zaidi Shia has intensified in Yemen, the Arab country in southwest Asia that has been imploding since 2011.</p></description></item><item><title>राजस्थान दिवस री बधाई हो सा</title><link>https://yogendra.github.io/2015/03/30/%E0%A4%B0%E0%A4%BE%E0%A4%9C%E0%A4%B8%E0%A5%8D%E0%A4%A5%E0%A4%BE%E0%A4%A8-%E0%A4%A6%E0%A4%BF%E0%A4%B5%E0%A4%B8-%E0%A4%B0%E0%A5%80-%E0%A4%AC%E0%A4%A7%E0%A4%BE%E0%A4%88-%E0%A4%B9%E0%A5%8B-%E0%A4%B8%E0%A4%BE/</link><pubDate>Mon, 30 Mar 2015 21:14:40 +0000</pubDate><guid>https://yogendra.github.io/2015/03/30/%E0%A4%B0%E0%A4%BE%E0%A4%9C%E0%A4%B8%E0%A5%8D%E0%A4%A5%E0%A4%BE%E0%A4%A8-%E0%A4%A6%E0%A4%BF%E0%A4%B5%E0%A4%B8-%E0%A4%B0%E0%A5%80-%E0%A4%AC%E0%A4%A7%E0%A4%BE%E0%A4%88-%E0%A4%B9%E0%A5%8B-%E0%A4%B8%E0%A4%BE/</guid><description>
<p>राजस्थान दिवस री बधाई हो सा</p></description></item><item><title>An Old Photo</title><link>https://yogendra.github.io/2015/03/30/an-old-photo/</link><pubDate>Mon, 30 Mar 2015 01:24:18 +0000</pubDate><guid>https://yogendra.github.io/2015/03/30/an-old-photo/</guid><description>
Lol</description></item><item><title>Linux Performance Observability Tools</title><link>https://yogendra.github.io/2015/03/29/linux-performance-observability-tools/</link><pubDate>Sun, 29 Mar 2015 21:04:29 +0000</pubDate><guid>https://yogendra.github.io/2015/03/29/linux-performance-observability-tools/</guid><description>
<p>I use linux for all production deployments (Obviously). Here is a quick one image run down for all optimizations.</p></description></item><item><title>Some Golden Thoughts Of Thiruvalluvar</title><link>https://yogendra.github.io/2015/03/10/some-golden-thoughts-of-thiruvalluvar/</link><pubDate>Tue, 10 Mar 2015 07:22:52 +0000</pubDate><guid>https://yogendra.github.io/2015/03/10/some-golden-thoughts-of-thiruvalluvar/</guid><description>
Tirukkural by Tiruvalluvar (A Tamil - poet/writer) was written more than 5000 yrs ago. It’s one of the ancient science on Human behavior, which has not changed dispite of modern education &amp; technology
If your child lies to you often, it is because you over-react too harshly to their inappropriate behavior.
If your child is not taught to confide in you about their mistakes, you’ve lost them.
If your child had poor self-esteem, it is because you advice them more than you encourage them.</description></item><item><title>पैसे नहीं रिश्ते बनाओ</title><link>https://yogendra.github.io/2015/01/03/%E0%A4%AA%E0%A5%88%E0%A4%B8%E0%A5%87-%E0%A4%A8%E0%A4%B9%E0%A5%80%E0%A4%82-%E0%A4%B0%E0%A4%BF%E0%A4%B6%E0%A5%8D%E0%A4%A4%E0%A5%87-%E0%A4%AC%E0%A4%A8%E0%A4%BE%E0%A4%93/</link><pubDate>Sat, 03 Jan 2015 12:08:48 +0000</pubDate><guid>https://yogendra.github.io/2015/01/03/%E0%A4%AA%E0%A5%88%E0%A4%B8%E0%A5%87-%E0%A4%A8%E0%A4%B9%E0%A5%80%E0%A4%82-%E0%A4%B0%E0%A4%BF%E0%A4%B6%E0%A5%8D%E0%A4%A4%E0%A5%87-%E0%A4%AC%E0%A4%A8%E0%A4%BE%E0%A4%93/</guid><description>
<p>बात बहुत पुरानी है। आठ-दस साल पहले की। मैं अपने एक मित्र का पासपोर्ट बनवाने के लिए दिल्ली के पासपोर्ट ऑफिस गया था। उन दिनों इंटरनेट पर फार्म भरने की सुविधा नहीं थी। पासपोर्ट दफ्तर में दलालों का बोलबाला था और खुलेआम दलाल पैसे लेकर पासपोर्ट के फार्म बेचने से लेकर उसे भरवाने, जमा करवाने और पासपोर्ट बनवाने का काम करते थे।</p></description></item><item><title>Happy New Year 2015</title><link>https://yogendra.github.io/2015/01/01/happy-new-year-2015/</link><pubDate>Thu, 01 Jan 2015 00:58:51 +0000</pubDate><guid>https://yogendra.github.io/2015/01/01/happy-new-year-2015/</guid><description>
Happy New Year to All
-- Rampuria Family</description></item><item><title> yogendra/trusty32 - Announcing my first vagrant box</title><link>https://yogendra.github.io/2014/12/11/yogendra/trusty32-announcing-my-first-vagrant-box/</link><pubDate>Thu, 11 Dec 2014 23:08:49 +0000</pubDate><guid>https://yogendra.github.io/2014/12/11/yogendra/trusty32-announcing-my-first-vagrant-box/</guid><description>
<p>I have finally released my first vagrant box. Its been a long time coming, but it's here now. How to get it?</p></description></item><item><title>HOLI! Colours of joy and happiness</title><link>https://yogendra.github.io/2014/03/16/holi-colours-of-joy-and-happiness/</link><pubDate>Sun, 16 Mar 2014 23:03:13 +0000</pubDate><guid>https://yogendra.github.io/2014/03/16/holi-colours-of-joy-and-happiness/</guid><description>
<p>Colours of JOY - Best Moments in life...... Just Happen!</p></description></item><item><title>JDK - No Install Needed</title><link>https://yogendra.github.io/2014/01/10/jdk-no-install-needed/</link><pubDate>Fri, 10 Jan 2014 10:09:46 +0000</pubDate><guid>https://yogendra.github.io/2014/01/10/jdk-no-install-needed/</guid><description>
<p>I don't like the whole concept of installers for my development tools like JDK, Eclipse, Netbeans, etc. I just keep a batch/shell script to setup my environment variables for JAVA_HOME, PATH and aliases.</p></description></item><item><title>साल कैसा रहा यारों</title><link>https://yogendra.github.io/2014/01/06/%E0%A4%B8%E0%A4%BE%E0%A4%B2-%E0%A4%95%E0%A5%88%E0%A4%B8%E0%A4%BE-%E0%A4%B0%E0%A4%B9%E0%A4%BE-%E0%A4%AF%E0%A4%BE%E0%A4%B0%E0%A5%8B%E0%A4%82/</link><pubDate>Mon, 06 Jan 2014 21:00:55 +0000</pubDate><guid>https://yogendra.github.io/2014/01/06/%E0%A4%B8%E0%A4%BE%E0%A4%B2-%E0%A4%95%E0%A5%88%E0%A4%B8%E0%A4%BE-%E0%A4%B0%E0%A4%B9%E0%A4%BE-%E0%A4%AF%E0%A4%BE%E0%A4%B0%E0%A5%8B%E0%A4%82/</guid><description>
<p>फिर कोई पत्ता पेड़ से झड़ गया यारों,
कौनसा फर्क किसी को पड़ गया यारों।</p></description></item><item><title>Google App Engine & Maven - Works For Me</title><link>https://yogendra.github.io/2014/01/04/google-app-engine-maven-works-for-me/</link><pubDate>Sat, 04 Jan 2014 02:23:58 +0000</pubDate><guid>https://yogendra.github.io/2014/01/04/google-app-engine-maven-works-for-me/</guid><description>
<p>Google has released its App Engine SDK on Maven central as a zip. But its very large and causes a &quot;<strong>Error 503 backend read error</strong>&quot;.</p></description></item><item><title>Cricket is just a sport now, coz God has Left Cricket</title><link>https://yogendra.github.io/2013/11/16/cricket-is-just-a-sport-now-coz-god-has-left-cricket/</link><pubDate>Sat, 16 Nov 2013 16:21:54 +0000</pubDate><guid>https://yogendra.github.io/2013/11/16/cricket-is-just-a-sport-now-coz-god-has-left-cricket/</guid><description>
<blockquote>
<p>Yogendra,
Your expressions have brought joy to my heart &amp; at times a tear to my eyes</p>
<footer>
<strong>Sachin R. Tendulkar</strong>
</footer>
</blockquote></description></item><item><title>Michhami Dukkadam</title><link>https://yogendra.github.io/2013/09/10/michhami-dukkadam/</link><pubDate>Tue, 10 Sep 2013 14:43:21 +0000</pubDate><guid>https://yogendra.github.io/2013/09/10/michhami-dukkadam/</guid><description>
<p><strong><a href="https://en.wikipedia.org/wiki/Micchami_Dukkadam">Micchāmi Dukkaḍaṃ (मिच्छामि दुक्कडम्)</a></strong> - may all the evil that has been done be fruitless</p></description></item><item><title>Happy Independence Day</title><link>https://yogendra.github.io/2013/08/15/happy-independence-day/</link><pubDate>Thu, 15 Aug 2013 15:17:40 +0000</pubDate><guid>https://yogendra.github.io/2013/08/15/happy-independence-day/</guid><description>
<p>Happy Independence Data to All Indians.</p></description></item><item><title>C++ 11 Style : A Touch of Class</title><link>https://yogendra.github.io/2013/07/31/c-11-style-a-touch-of-class/</link><pubDate>Wed, 31 Jul 2013 14:41:38 +0000</pubDate><guid>https://yogendra.github.io/2013/07/31/c-11-style-a-touch-of-class/</guid><description>
<p>C++11 is the latest specification for C++. Have a look at some of the cool new features in it.</p></description></item><item><title>Netbeans OS X Launcher : My First Open Source Project</title><link>https://yogendra.github.io/2013/04/26/netbeans-os-x-launcher-my-first-open-source-project/</link><pubDate>Fri, 26 Apr 2013 20:17:10 +0000</pubDate><guid>https://yogendra.github.io/2013/04/26/netbeans-os-x-launcher-my-first-open-source-project/</guid><description>
After many many years of open source advocacy, I have finally created my own first open source project. I have really started small. Too small actually.
Netbeans So whats this all about?
This application is a simple launcher for Netbeans. I have no prior experience in Mac OS X application development. This is not even a full blown application, per say. Its just an Automator workflow.
Where is it?
Github</description></item><item><title>Sunset at Nariman Point</title><link>https://yogendra.github.io/2013/04/19/sunset-at-nariman-point/</link><pubDate>Fri, 19 Apr 2013 18:40:44 +0000</pubDate><guid>https://yogendra.github.io/2013/04/19/sunset-at-nariman-point/</guid><description>
Whenever I see this pic, it brings a sense of great nostaligia to me. Don't know if its pure love for city or the majestic effect that it has on me.
Sunset at Nariman Point</description></item><item><title>House Building Trip - Phnom Penh, Cambodia</title><link>https://yogendra.github.io/2013/02/01/house-building-trip-phnom-penh-cambodia/</link><pubDate>Fri, 01 Feb 2013 19:30:00 +0000</pubDate><guid>https://yogendra.github.io/2013/02/01/house-building-trip-phnom-penh-cambodia/</guid><description>
A memorable journey.</description></item><item><title>India by C</title><link>https://yogendra.github.io/2013/01/05/india-by-c/</link><pubDate>Sat, 05 Jan 2013 16:54:11 +0000</pubDate><guid>https://yogendra.github.io/2013/01/05/india-by-c/</guid><description>
Map of India, drawn form C Code.
Going through social networks, I stumbled upon this code. It didn't make much sense to me, except for the fact that there were 2 loops doing something with a large string. But when I compiled it (with a tiny modification), it gave a great result. Here's code and result.
1 2// File: india.c 3// India by C 4#include &#34;stdio.h&#34; 5 6int main() 7{ 8 int a,b,c; 9 int count = 1; 10 printf(&#34;\n \n \t\t Welcome India \n&#34;); 11 for (b=c=10;a=&#34;- FIGURE?</description></item><item><title>Law of Garbage Truck</title><link>https://yogendra.github.io/2012/12/21/law-of-garbage-truck/</link><pubDate>Fri, 21 Dec 2012 16:07:09 +0000</pubDate><guid>https://yogendra.github.io/2012/12/21/law-of-garbage-truck/</guid><description>
<p>One day I hopped in a taxi and we took off for the airport.</p></description></item><item><title>SIII Advantage</title><link>https://yogendra.github.io/2012/09/25/siii-advantage/</link><pubDate>Tue, 25 Sep 2012 00:43:57 +0000</pubDate><guid>https://yogendra.github.io/2012/09/25/siii-advantage/</guid><description>
<p>With local telcos slimming data bundle with phone plans and charging extra S$2+ /gb, having radio on phone is great. Saves me 50megs a day. Or 1.5 gb a month.</p></description></item><item><title>What is this</title><link>https://yogendra.github.io/2012/09/20/what-is-this/</link><pubDate>Thu, 20 Sep 2012 23:10:03 +0000</pubDate><guid>https://yogendra.github.io/2012/09/20/what-is-this/</guid><description>
<p>Funky remote!</p></description></item><item><title>moBlog</title><link>https://yogendra.github.io/2012/09/12/moblog/</link><pubDate>Wed, 12 Sep 2012 09:41:03 +0000</pubDate><guid>https://yogendra.github.io/2012/09/12/moblog/</guid><description>
<p>I have been thinking about blogging regularly, but with amount of work, home chores and everything in between, idea just gets lost. Then again being lazy me is not easy.</p></description></item><item><title>Development Books</title><link>https://yogendra.github.io/2012/01/29/development-books/</link><pubDate>Sun, 29 Jan 2012 00:57:18 +0000</pubDate><guid>https://yogendra.github.io/2012/01/29/development-books/</guid><description>
<p>List of Books that I have been recommended and I would recommend</p></description></item><item><title>How to use UOB Internet Banking on Chrome/Safari on MAC OS X Lion</title><link>https://yogendra.github.io/2012/01/08/how-to-use-uob-internet-banking-on-chrome/safari-on-mac-os-x-lion/</link><pubDate>Sun, 08 Jan 2012 18:15:50 +0000</pubDate><guid>https://yogendra.github.io/2012/01/08/how-to-use-uob-internet-banking-on-chrome/safari-on-mac-os-x-lion/</guid><description>
<p>I have been suffering with login issues on <a href="https://www.uob.com.sg/personal/index.html">UOB</a> internet banking site for as long as I can remember. I had to use Windows on a virtual machine to always login on UOB internet banking site.</p></description></item><item><title>Need a stand for your phone .. under S$1 .. checkout this!</title><link>https://yogendra.github.io/2012/01/07/need-a-stand-for-your-phone-..-under-s1-..-checkout-this/</link><pubDate>Sat, 07 Jan 2012 01:13:58 +0000</pubDate><guid>https://yogendra.github.io/2012/01/07/need-a-stand-for-your-phone-..-under-s1-..-checkout-this/</guid><description>
<p>This one is an accidental discovery. I have been always looking for a good phone stand. One that could hold my phone in a good angle.</p></description></item><item><title>Launchers for Windows and Mac OS X</title><link>https://yogendra.github.io/2012/01/03/launchers-for-windows-and-mac-os-x/</link><pubDate>Tue, 03 Jan 2012 13:17:33 +0000</pubDate><guid>https://yogendra.github.io/2012/01/03/launchers-for-windows-and-mac-os-x/</guid><description>
<p>Stumbled upon these on internet. Good apps and good review vid.</p></description></item><item><title>OpenVPN on (Rooted) SGS2</title><link>https://yogendra.github.io/2012/01/02/openvpn-on-rooted-sgs2/</link><pubDate>Mon, 02 Jan 2012 00:59:22 +0000</pubDate><guid>https://yogendra.github.io/2012/01/02/openvpn-on-rooted-sgs2/</guid><description>
<p>Since mid-last year, I started using a VPN service. Good for me, my VPN provider has both <a href="https://goo.gl/8LTMa">L2TP</a> and <a href="https://goo.gl/jEe4k">OpenVPN</a> services. L2TP is very easy to configure on Android phones (newer ones). But I find it unstable (may be my provider's problem). So, I prefer OpenVPN as its stable.</p></description></item><item><title>Fond Farewell, Warm Welcome and Happy Housewarming</title><link>https://yogendra.github.io/2012/01/01/fond-farewell-warm-welcome-and-happy-housewarming/</link><pubDate>Sun, 01 Jan 2012 21:48:32 +0000</pubDate><guid>https://yogendra.github.io/2012/01/01/fond-farewell-warm-welcome-and-happy-housewarming/</guid><description>
<p>Its that time of the year when everyone looks back at the year gone by and look forward to the new year, in a new spirit. I too decided that I would make some changes and new commitments.</p></description></item></channel></rss>