CodePen Logo Drawing Animation
A Pen by sonkeng maldini on CodePen.
<!doctype html> | |
<html> | |
<head> | |
<title> Upload-file</title> | |
<meta charset="utf-8"> | |
</head> | |
<body> | |
<form id="uploadForm" enctype="multipart/form-data" action="script.php" target="uploadFrame" method="post"> | |
<label for="uploadFile">Image :</label> | |
<input id="uploadFile" name="uploadFile" type="file" /> |
<!doctype html> | |
<html> | |
<head> | |
<title>Search engine </title> | |
<meta charset="utf-8"> | |
</head> | |
<body> | |
<style> | |
#search{ | |
A Pen by sonkeng maldini on CodePen.
import java.util.Scanner; | |
public class sdz { | |
public static void main(String[] args) { | |
Scanner sc = new Scanner(System.in); | |
int nbrTodiv, modDiv,tmp; | |
String result =""; | |
System.out.println("Entrez le nombre à convertir "); |
import java.util.Scanner; | |
public class sdz { | |
public static void main(String[] args) { | |
Scanner sc = new Scanner(System.in); | |
int numberOfrows ; | |
System.out.print("Enter the number of row and cols in the matrix : "); |
import java.util.Scanner ; | |
public class sdz { | |
public static void main(String[] args) { | |
Scanner sc = new Scanner(System.in); | |
System.out.println(squaroot(2,16,0.05)); | |
} | |
static double squaroot(int start, double number , double precision){ |
#!/bin/bash | |
##################################################### | |
# Name: Bash CheatSheet for Mac OSX | |
# | |
# A little overlook of the Bash basics | |
# | |
# Usage: | |
# | |
# Author: J. Le Coupanec | |
# Date: 2014/11/04 |
public class LL { | |
public LL(){} | |
static class Vertex{ | |
int data; | |
Vertex next; | |
public Vertex(int data){ | |
this.data = data; |
public class LL { | |
class Node{ | |
int data; | |
Node next; | |
Node prev; | |
public Node(int data){ | |
this.data = data; | |
this.next = null; | |
this.prev = null; |
<?php | |
class Block { | |
private $ts; | |
private $nonce = 0; | |
private $data; | |
private $prev_hash; | |
protected $hash; | |
private $hash_algorithm; | |
private $hash_prefix; |