Author: zakilive

13
Jul
2016

After a long time some remix listened

After a long time one remix got my adrenaline high…. https://www.youtube.com/watch?v=UcHJtgljXEo

30
Jun
2016

How to count numbers from string ?

code: #include<stdio.h> #include<stdlib.h> int main(){ char line[]=”1 -2 10000 -50 20 7 445 -4″; char *p,*e; long…

25
Jun
2016

Blink Without Delay – Arduino

Code int ledpin=13; int value=LOW; long previousmillis=0; long interval = 100; void setup() { // put your…

23
Jun
2016

Swap in C

Swap in C #include<stdio.h> int main() { int x,y,z; x=5; y=7; printf(“Before x=%d y=%d\n”,x,y); z=x; x=y; y=z;…

03
Jun
2016

There is no shortcut !

If you want to be master at something there is no shortcut !

31
May
2016

Some data mining tuts

http://people.sabanciuniv.edu/berrin/cs512/lectures/WEKA/WEKA%20Explorer%20Tutorial-REFERENCE.pdf How to Run Your First Classifier in Weka   https://www.ibm.com/developerworks/library/os-weka2/