I just started to complete challenges over at HackerRank and this is the first challenge, Arrays – DS, under Data Structures > Arrays. I will be posting my solutions as I compete them. (Whenever I have time to actually work on them, haha)
Simple Wedding RSVP Ruby on Rails App
Well, I’m getting married in a exactly three weeks from today (June 4, 2016) and for my wedding RSVP I decided to create a RSVP wedding app in Ruby on Rails. App is freely available in GitHub. Link to repo at the end…
Flatten PDF Form Fields with iTextSharp – Two Methods – ASP.NET
I will show two methods to flatten editable form fields in a PDF file. Method 1 is true form flattening and method 2 is just making the editable fields read only. Personally I was using method 1 for some time, however in some instances (more specifically when merging images into a PDF file and messing […]
ASP.NET Controls / AJAX Extensions Not Working in iOS 8 or Safari 8 – Telerik Controls
Some time back I noticed my ASP.NET Telerik controls were not working in iOS 8 nor Safari 8, so I did a little research and I discovered that I needed to add a new browser file to my application be cause of a major version-change to AppleWebKit/600. Below is solution I found in StackOverflow.
How to Access ASP.NET Controls Inside An Outer And An Inner ASP Repeaters (Controls Inside Two ASP Repeaters)
Working with ASP.NET repeaters can be a little bit tricky if you do not fully understand them. In plain words, you have to find the outer repeater, then from here find the inner repeater, then from this inner repeater find the control(s). If I haven’t confused you enough, look at the examples, it will be […]
FullCalendar – jQuery Event Calendar in ASP.NET
This event calendar implements JQuery FullCalendar in ASP.NET.
Script to Rename Files in UNIX / Linux
This is a simple script that will rename files. Takes an absolute path as input, and looks for files with a specific string in its name. Will not traverse up the specified path. It will keep a log of the last run in the script’s directory. I have more than 500 files that need to […]
IntelliSense in Eclipse
By setting up some preferences in Eclipse, we can achieve an IntelliSense-like behavior in Eclipse. If you have ever used Microsoft Visual Studio, then let me explain what IntelliSense is. IntelliSense can speed up your coding by auto-completing your words as you type, lets say you have aVeryLongVariable in your code, as soon as you […]
Wait For Trigger File – Unix Shell Snippet
So recently I was doing doing some bash scripting and required a functionality that would allow my script to wait for for a trigger file in order to execute. After some thinking, I was able to some up with a function to perform the required action.
How to Send Email – Unix Shell Snippet
I’m sharing two code snippets that will send an email. These snippets accept three parameters: a subject, an email address and a text file containing the email message.