Skip to main content

Posts

Resume Builder

An online resume builder app would be great! Specially as the placement time is approaching. - just like they have on linkedin.com TODO: 1. UI : -display fields : name, objective, education, skill set, etc. -feed that input into a php file (POST) and generate an HTML page out of it. -use CSS to style various fields. refer free templates -use javascript to toggle between "Complete resume" and "Condensed 1 page resume" -output options as a)PDF b)HTML Code c)Text

Basic Linux Commands

xkillKills a running program exit Exits the terminal reboot Reboots the system halt Shutsdown the computer startx Starts xwindows from terminal man man(command)shows help files info info(command) shows help files --help (command)--help shows help files su Allow you to login as Super User ls "Lists" the contents of the directory pwd Displays "present working directory" cd cd (name) change directory TO:(name) mkdir mkdir (name) Makes new directory rmdir rmdir (name) Removes directory clear Clears the terminal window date Displays current date and time cal Displays a calander uptime Displays time since last reboot df Displays the disk usage on partitions du Displays disk usage of directory id Displays your identification to system groups Displays groups of current user ulimit -a Displays users limits uname Displays name of machine logged into who Displays "who" is logged on the system w Similar to "who" wall Sends message to all logged in users top ...

meriBhasha

Facebook + Transliteration = meriBhasha From google documentation : <pre> Transliteration API <post> Custom event handlers to post on FB stream <html>   <head>     <meta http-equiv = "Content-Type" content = "text/html; charset=utf-8" />     <script type = "text/javascript" src = "https://www.google.com/jsapi" >     </script>     <script type = "text/javascript" >       // Load the Google Transliterate API       google . load ( "elements" , "1" , {             packages : "transliteration"           });       var transliterationControl ;       function onLoad () {         var options = {             sourceLanguage : 'en' ,             destinationLanguage : [ 'ar' , 'h...

BE COMP OS Assignments

Palindrome http://www.ideone.com/gYTMA Menu driven http://www.ideone.com/svoiM Awk http://www.ideone.com/1waFr Fork http://www.ideone.com/AF4Ln Alarm http://www.ideone.com/MVrCt Fibonacci http://www.ideone.com/P2TQZ Unnamed pipe http://www.ideone.com/CwYPr Named pipe : Server : http://www.ideone.com/Rpe8e                        Client : http://www.ideone.com/bIMmi Semaphore : Not done File management : http://www.ideone.com/3NRHh ( not my code ) kernel module : http://www.ideone.com/4PK3O Paging :  http://ideone.com/mmdjF

jQuery $.getJSON

The classic example for understanding jQuery $.getJSON (and JSON format). Taken from jQuery documentation. This code displays images of cats from flickr. <!DOCTYPE html> <html> <head> <style>img{ height: 100px; float: left; }</style> <script src="http://code.jquery.com/jquery-latest.min.js"></script> </head> <body> <div id="images"> </div> <script> $.getJSON("http://api.flickr.com/services/feeds/photos_public.gne?jsoncallback=?", { tags: "cat", tagmode: "any", format: "json" }, function(data) { $.each(data.items, function(i,item){ $("<img/>").attr("src", item.media.m).appendTo("#images"); if ( i == 3 ) return false; }); });</script> </body> </html>

ideone

used ideone to test code. Its awesome http://ideone.com/Wmk1W Thinking of developing a desktop app for this. 1. create an ideone app that returns the status of submitted code 2. combine the paste with icode to get in under version control 3. this way I'll be harnessing power of both ideone as well as icode. 4. user does not need to have anything : he codes on ideone and stores on icode => zenith of saas dev