User:Umar Sheikh

Revision as of 07:45, 12 January 2008 by Umar Sheikh (talk | contribs)

Introduction

I am Umar Muhammad Sheikh. Though jobbing is not the most significant part of my life yet, I can describe it in complete detail right now. This is my first day at AboutUs, and so far, the first hour has not yet expired. Period! My first task is to write my own second home page. The first one I made was in the first introductory computer science course, and I made it for getting a good grade. This is not much different!

Interests

Martial arts (2nd dan Black belt in Tae Kwon Do), graph theory (cleared PHD qualifiers), Scrabble, a bit of reading, and a lot of day dreaming

Religion

Islam

Conundrum

What happens when you run the following program:

copy the line below twice, the first time without quotes.

"copy the line below twice, the first time without quotes."

Answer?

ehehehehehe, so what is the answer!

When you do as instructed, you get a repeat of the two lines as they are now. The first line without quotes becomes a new instruction. Your interpreter then executes it again and so you get a never-ending program! This is obviously in pseudo-code though.

Pages I track

User:Umar_Sheikh/TechnologyLearning

Notes

Linux commands

more ~/.bash_history,

tail -f filename,

Vim commands

1 'CTRL+z' to send a task in the background, and 'fg' to bring it back. if there are more than one programs running, type 'jobs' to view them, and if you want a program called 'xyz' to run, there is a number next to the program 'xyz', example, n. type 'fg n' to run it. 2 'gg=G' to properly indent code (but this is by reaming in the command mode and not entering the : in the beginning) 3 '%s/ab/cd/g' to replace all occurences(the work of g) of ab with cd in a file u opened in vim. this option is given in the command mode 4 'CTRL+w+v' so that the same file opens again vertically next to itself

Irb commands

1 load "filename"

Tasks

Mon Aug 20

  • Create user page on AboutUs
  • Learn Vim
  • Reading Ruby Book
    • Reading Chapter 1
    • Reading Chapter 2
    • Reading Chapter 3


Tue Aug 21

  • Make a matrix class, which has the functionality to multiply two matrices. The matrices can be read from a file
  • Reading ruby book
    • reading chapter 4

Wed Aug 22

  • Make a matrix class, which has the functionality to multiply two matrices. The matrices can be read from a file
  • make a directory lister that indents correctly to display a directory and its contents recursively
  • Reading ruby book
    • reading chapter 4
    • reading chapter 5

Thu Aug 23

  • address parser
  • reading chapter 6

Fri Aug 24

  • Made a registrar parser that works on 62 percent of the cases of about 3000 files

Mon Aug 27

  • Miscellaneous tasks related to transcripts/degrees
  • Integrating a parser based on line separation in the original parser, if the parser fails in first iteration

Tue Aug 28

  • Finalized the line-based-parser with Arif
  • As the PTCL link was down, had no option but to wait for integration

Wed Aug 29

  • Committed the line-based parser
  • Looking at the "Distributed planning Game", "Development Team Priorities" and a bit of "git"
  • adding a new project called "a map for the internet" and thinking of its features

Thu Aug 30

  • partnered with Ghufran on the remaining country parsers
  • manually verifying the autogenerated test files

Fri Aug 31

  • manually verified about 65 autogenerated test files

Mon Sep 3

Tasks participated in @ AboutUs

Help

  • 1 I want to do a grep in all subdirectories of a given directory, but i want to exclude one subdirectory. How to do it? I know sth like "exclude=PATTERN" works, but i m not sure how. I have been trying sth like

grep -nri umar * --exclude=nimbus/ but it doesnt work.

Solutions

  • 1 sth like grep -r umar !(nimbus) works!

User:Umar sheikh/test