Skip to main content

Posts

Pong Game With Unity

what i made is Pong Game I made it from scratch and that game under developing now and i hope you enjoy. Source Code : Link

Fun With Vectors - Python

i loved fun with vectors using pygame so i create object moving smoothly . and i working on make that a full game soon 😎 project: GitHub

Python-Snake Game(Auto Play)

I made game with algorithm play snake game while i learning Machine Learning Download: SourceCode

XMarket V1.0 (Small Business)

XMarket For Small Business *FREE* *OPEN SOURCE* *FAST* *MYSQL DATABASE* Download : source Made By Mahmoud Shahin

Folk and signals - C

I maked sample process in c it plays with folk function to make it pause and resume while clicking ctrl+c If you have any questions please comment. Code: #include <stdio.h> #include <unistd.h> #include <signal.h> void reverse_handler(int sig); _Bool isPause=0; _Bool isRunning=1; int main() { int ppid; int counter=0; //make parent respond for ctrl+c (pause,resume). signal(SIGINT,reverse_handler); while(isRunning){ while(isPause==0) { /*code exec while process is resuming */ printf("\nc:%d",counter++); fflush(stdout); sleep(1); } //close parent after child is alive. if((ppid=fork())==0){ exit(0); } //make child respond for ctrl+c (pause,resume). signal(SIGINT,reverse_handler); //keep child alive and listening. while(isPause==1){ /*code exec while process is pausing */ sleep(1); } } return 0; } //if process is pause made it resume and vice versa....

Wifi Zoom - Android

With this application you can get password it's will taking time but it's doesn't need root your phone :) GitHub : here SlideMe: uploading... Thanks..

Hercules in python

For source or game please visit:   GitHub  If you have any questions please comment.