C++ gurus and learners, we program ourselves :P all work is CC licensed

Sunday, December 14

The course has been completed but i was unable to make regular blog posts

23:21 By

...

Tuesday, October 28

Merge Sort MultiThreading in C#; multithreaded

13:03 By

int[] MergeSort(int[] input, int start, int end) { if (end - start < 2) { int[] result = new int[1]; result[0] = input[start]; return (result); ...

Monday, October 27

Merge Sort

13:11 By

Please find the source code for merge sort algorithm. I have made this implementation on my own after taking this class https://class.coursera.org/algo-006/lecture/2 I will appreciate any comment that you have. #include <iostream> using...

Sunday, October 26

Relaunching with a course on Design and Analysis of Algorithms from Stanford via Coursera

21:22 By

I will be relaunching this blog in sync with my quarter goal. I am working as an Assoc Software Engineer with Bentley Systems, which is a leading company in AEC infrastructure support. I love being there with all the people. As a part of my career...

Sunday, July 13

New domain name

18:55 By

I have acquired a new domain name. Www.umarqureshi....

Saturday, February 1

Windows Store App Created

01:17 By

Update: Bug Fixes have been made. The open sample file is not working as expected, a review on windows store :) I have created a windows store app but very small bug has been left out. It saves files with extension .docx but those files need to be...

Thursday, January 30

Andrew Solomon @ TED

12:46 By

"I felt a funeral in my brain, and mourners to and fro kept treading, treading till I felt that sense was breaking through. And when they all were seated, a service, like a drum, kept beating, beating, till I felt my mind was going numb. And then...

Setting the Tone New Beginnings

12:12 By

From: Ian Lawton Spiritual teacherof inner wisdom, divine love, deeper consciousness, oneness, peace, and abundance. Contact Ian: ian@soulseeds.com I like to get up early in the morning; the stillness is contagious and fills me with...

Career Choices

11:58 By

I am often asked for help about career choices from aspiring entrepreneurs, professionals or students. I try my best to share my insights on career choices but the following advice that I received from Mr. Richard Branson, sums it all up for everyone...

Tuesday, January 7

ARROW KEYS IN C++

00:09 By

WANT TO INCLUDE ARROW KEYS IN YOUR C++ PROGRAM !!! JUST copy this code in your compiler, execute and press arrow keys. .. this code is only for hint on how to use arrow keys oin your c++ program..... REMEMBER ASCII codes of arrow keys 1. Up key =...