missing beneath the one hundred

the perfect ideology for the most unexplained fact is estranged and outcasted. for that those who apply it perfectly are missing, though we know they exist till the fact is inherited and that makes up our tragedy however all we need to do is to be radical with the doctrine and flexible with the rest [...]

Three Decision making methodologies in personal life

On daily basis one is all of the following three, but on long term is one of them only 1-Lucky and blessed: investigates one thing and he’s lucky enough that it’s the best for him. he doesn’t waste time, but sometimes wonder about other subjects/choices 2-Hardworker and plan freak: investigates (experiment or analyze) every possible [...]

Tags:

JClassLogger

Download from here JClassLogger is a simple logger that is used for logging the activity in a class all you need is to define it and it will create the log file in same class package directory with same name as class or your name of choice.

Yii in PHP Vs Java Eclipse Link Vs Ibatis (myBatis) Vs Hibernate

PHP Yii Currently learning and applying in an application at office It’s good but not very good, I think PHP is the reason I don’t like how php is a loosely typed language it’s very confusing and doesn’t help you with compile time error I think any loosely typed language is a huge mistake ! [...]

Tags: , , , ,

JANN 0.0.2 Was Released !

https://github.com/IsmailMarmoush/JANN

Tags: , ,

Java Long path folder problem in windows

Behind every software/Algorithm etc.. there is a story you can skip the next if you want.. Based on geek events: Well, I’ve been using Eclipse IDE for a while on Linux Ubuntu (laptop) and Windows on desktop, but recently I switched them both and first problem I faced was while I was using “windows” aka [...]

Tags: , ,

Baradie Vs HazemSalah

Reference: http://monitor.wildfireapp.com/comparisons/233644/fans_followers/-vs-mohamed-elbaradei-on-facebook#&data=cumulative&range=all

Tags: , , , ,

Sourceforge Vs Github 2011

Well, I’ve been in repository systems drama for a while now around 4 or 5 months but I’m no expert so the next is a very much Quick user comparison and will be updated constantly, You can RSS this page So let’s start with sourceforge: Sourceforge Version 1.0 Storage: unlimited  (Not sure) Repotypes: CVS or SVN [...]

Tags: , , ,

Two Dimensional Arrays

Two dimensional Arrays,  some legacy code #include <iostream.h> #include <math.h> void read(int a[3][5]); void print(int a[3][5]); void main() { int a[3][5]; read(a); print(a); } void read (int a[3][5]) { cout<<”enter 15 element ,5 per row:\n”; for (int i=0;i<3;i++) { cout<<”row”<<i<<”:”; for (int j=0;j<5;j++) cin>>a[i][j]; } } void print (int a[3][5]) {for (int i=0;i<3;i++) {for (int [...]

Solve Quadratic Equation using C++

Legacy code since college days for solving Quadratic equations using C++ #include<iostream.h> #include<math.h> void main() { float a,b,c; float z; cout<<”Enter values of a,b and c as the quadratic formula is ax^2+bx+c=0″<<endl; cin>>a>>b>>c; z=pow(b,2)-(4*a*c); if (a==0) cout<<”the equation is not quadratic and its solution is “<<-c/b<<endl; else { if (z<0) cout<<”the roots are imaginable”<<endl; else [...]

Tags: , , ,