Skip to content

Instantly share code, notes, and snippets.

View abdelaziz321's full-sized avatar
🎯
I may be slow to respond.

Abdelaziz Mahmoud abdelaziz321

🎯
I may be slow to respond.
View GitHub Profile
@abdelaziz321
abdelaziz321 / paint.java
Last active June 18, 2023 00:11
simple paint App JavaFX
/*
* ===================================================
* contents
* ===================================================
* 00- Free draw
* 01- rubber
* 02- draw Line
* 03- draw Rectangele
* 04- draw Circle
* 05- draw Ellipse
#include <bits/stdc++.h>
bool X[1001];
using namespace std;
int main()
{
memset(X,true,sizeof(X));
X[0] = false;
@abdelaziz321
abdelaziz321 / README.md
Created February 25, 2018 17:15 — forked from hofmannsven/README.md
My simply Git Cheatsheet
@abdelaziz321
abdelaziz321 / README.md
Created February 25, 2018 17:20 — forked from hofmannsven/README.md
Notes on working with Laravel 5
/*
* =======================================
* C++ cheat sheet
* =======================================
* 01- string
* 02- vector
* 03- pair
* 04- set
* 05- map
*
-- === DDL
CREATE TABLE categories (
id INT PRIMARY KEY AUTO_INCREMENT,
name CHAR(50) NOT NULL
);
CREATE TABLE items (
id INT PRIMARY KEY AUTO_INCREMENT,
name CHAR(50) NOT NULL,
created_at TIMESTAMP,
@abdelaziz321
abdelaziz321 / R.md
Last active November 6, 2021 20:09

CH 1: Introduction To R

1- Basic Functions

# install package
> install.packages()

# load the package into the current session
> library(splines)