محبوس يا طيـــــــــــــر الحق

محبوس يا طيـــــــــــــر الحق قفصك حزين و لعين قضبانه لا بتنطق ولا تفهم المساجين قضبانه لا بتعرف ولا تفهم الإنســـــــــــــــــــــان ولا الحديد ينــــــــــــــــــــــزف لو تنزف الاوطان بين العتمة هنا وبين النور هناك حابسانى ويا الغنا قضبان على شبــــــــــــــــــــــاك زنزانتى لو أضــــــــــــــــــــــيق أنا أقوى م السجـــــــــــــــــــــان ف العتمة بتشعلـق حتى على الدخــان وأغنى بدموعى .. لضحكة [...]

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: , , ,