A Pen by sonkeng maldini on CodePen.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html> | |
<head> | |
<title>Search engine </title> | |
<meta charset="utf-8"> | |
</head> | |
<body> | |
<style> | |
#search{ | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 "); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 : "); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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){ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
##################################################### | |
# Name: Bash CheatSheet for Mac OSX | |
# | |
# A little overlook of the Bash basics | |
# | |
# Usage: | |
# | |
# Author: J. Le Coupanec | |
# Date: 2014/11/04 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class LL { | |
public LL(){} | |
static class Vertex{ | |
int data; | |
Vertex next; | |
public Vertex(int data){ | |
this.data = data; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class LL { | |
class Node{ | |
int data; | |
Node next; | |
Node prev; | |
public Node(int data){ | |
this.data = data; | |
this.next = null; | |
this.prev = null; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class Block { | |
private $ts; | |
private $nonce = 0; | |
private $data; | |
private $prev_hash; | |
protected $hash; | |
private $hash_algorithm; | |
private $hash_prefix; |
OlderNewer