Skip to content

Instantly share code, notes, and snippets.

### Keybase proof
I hereby claim:
* I am j0k3afr4id on github.
* I am aminkhayam (https://keybase.io/aminkhayam) on keybase.
* I have a public key ASA8LfDLhQVteIBuHW7woKbk-8zmfC4_9LyHPqoL3VGuwgo
To claim this, I am signing this object:
### Keybase proof
I hereby claim:
* I am j0k3afr4id on github.
* I am aminkhayam (https://keybase.io/aminkhayam) on keybase.
* I have a public key ASA8LfDLhQVteIBuHW7woKbk-8zmfC4_9LyHPqoL3VGuwgo
To claim this, I am signing this object:
@j0K3Afr4id
j0K3Afr4id / Javadoc_example.java
Last active February 7, 2018 18:29
Javadoc example
/**
*This class implements some simple specifics of a car
*@author Khayam Amin
*@version 1.0
*/
public class Car {
private String brand;
private String colour;
private String type;
@j0K3Afr4id
j0K3Afr4id / contatore.php
Last active December 21, 2017 07:46
Contatore Amin
<?php
if(isset($_POST)){
if(isset($_COOKIE["Amin_Count"])){
$contatore = $_COOKIE["Amin_Count"] + 1;
setcookie("Amin_Count", $contatore, time() + (60 * 60 * 24 * 7));
}
else{
$contatore = 1;
setcookie("Amin_Count", $contatore, time() + (60 * 60 * 24 * 7));
}