في وقت محدد يحصل تغيير بالصفحة ;-)
الكود الخاص بالساعة بالجافا سكربت ;-) لاستمرر عرض الساعة مع كل ثانية :-
<script type="text/javascript">
function startTime()
{
&
إظهار الرسائل ذات التسميات برمجة. إظهار كافة الرسائل
إظهار الرسائل ذات التسميات برمجة. إظهار كافة الرسائل
الجمعة، 1 يناير 2016
الجمعة، 16 أكتوبر 2015
تجربتي مع احد مشاريعي :p
موقع تواصل للدراسة الكترونية بعيدا عن الطرق الروتنية الممللة بالدراسة و باساليب مبتكرة و ممتعة
فكرة اشتغلت عليها لمدة شهر ونص و انتهت عند ستارت اب ويكند مو استسلام وانما بحاجة للابداع و افكار مختلفة تصنع الفرق الجوهري استسلمت بانها فكرة مطروحة سابقا و شكد ما ات
1:05 م
الثلاثاء، 23 يونيو 2015
برنامج C# يحتوي على كل الاساسيات ALL C# in program
برنامج متكامل يحتوي على كل الاساسيات لتعلم #C و اصلا هو مصمم ب C# ,طبعا هل فكرة جت لي اثناء الامتحان الا انه ما كدرت اكملها بالامتحان لضيق الوقت والان بالعطلة كملتها و اخذت وقت شوية طويل
المهم الفكرة بصورة عامة كل موضوع يحتوي على التنفيذ و الكود في نفس الواجهة ممل
2:49 م
السبت، 28 فبراير 2015
Design First Application of Android

اول تطبيق لهواتف الذكية من تصميمي يتيح لك التحكم من نظام الاندرويد بالاردينوا عبر البلوتوث لتحكم بالاجهزة مختلفة
فهنا تم التحكم بسيارة صغيرة بمختلف الاتجاهات و توقف بالاضافة الى ضوء تشغيل و اطفاء
في حال اردت تحميل التطبيق من هنا
معلومات عند برمجة
8:05 ص
الأحد، 7 ديسمبر 2014
اصنع الة حاسبة للعمليات الحسابية خاص بك
لتحميل عبر الرابط :- Calculator_Ahmed
وذلك عبر كتابة كود سي شارب :-
char symbol;
int a;
private void button1_Click(object sender, EventArgs e)
2:46 م
السبت، 25 أكتوبر 2014
++Scheduler FIFO in c
1- find wait time
#include "stdafx.h"
#include<iostream>
#include<conio.h>
using namespace std;
void main()
{
float b[4];
float w=0;
float p1=0, p2, p3, p4;
for (int i = 0; i < 4; i++)
{
cout << "enter the burst time for process: ";
cin >> b[i];
}
1:42 ص
الجمعة، 16 مايو 2014
quick_sort
#include "stdafx.h"
#include<iostream>
#include<conio.h>
using namespace std;
class quicksort
{
public:
int no_of_elements;
int elements[10];
public:
void getarray();
void sortit(int[], int, int);
void partition(int[], int, int,int &);
void display();
};
void quicksort::getarray(
3:20 ص
merge_sort
#include "stdafx.h"
#include<iostream>
#include<conio.h>
using namespace std;
void sort(int left, int right);
void merge(int left, int mid, int right);
int a[9] = { 75, 40, 10, 90, 50, 95, 55, 15, 65};
int tmp[9];
void sort(int left, int right)
{
if (left < right)
{
int mid = (left
3:19 ص
الثلاثاء، 1 أبريل 2014
hashtable in c++
// record taqble data base.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include<iostream>
#include<conio.h>
#define null -1
using namespace std;
struct emprecord
{
int empcode;
};
class hashtable
{
private:
emprecord *hasharray;
int arraysize;
pu
2:01 م
الاثنين، 24 مارس 2014
priority queues in heap
// ConsoleApplication46.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include<iostream>
#include<conio.h>
#include<string>
#define maxsize 10
using namespace std;
struct node
{
string data;
int prn;
};
class heap_priority
{
node a[maxsize];
11:47 ص
الأحد، 16 مارس 2014
heap (complete binary tree)
// Heap.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include<iostream>
#include<conio.h>
#define max 7
using namespace std;
class heap
{
private:
int a[max];
int count;
public:
heap()
{
count = 0;
}
boo
7:45 ص
الاشتراك في:
الرسائل (Atom)