I hereby claim:
- I am bguzryanto on github.
- I am bagus (https://keybase.io/bagus) on keybase.
- I have a public key whose fingerprint is 3B84 ADE5 BC36 9802 219C F604 18FD 40F5 E2E3 CD30
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
<!DOCTYPE html> | |
<html> | |
<head> | |
<title></title> | |
<script src="https://npmcdn.com/[email protected]"></script> | |
<script src="https://npmcdn.com/[email protected]"></script> | |
<script src="https://npmcdn.com/[email protected]/dist/react.js"></script> | |
<script src="https://npmcdn.com/[email protected]/dist/react-dom.min.js"></script> | |
<script src="https://d3js.org/d3-array.v0.6.min.js"></script> | |
<script src="https://d3js.org/d3-color.v0.3.min.js"></script> |
NOTE: I like to prepend some of the commands with
time
just for curiosity’s sake to see how long it takes.
Go to System Preferences -> Sharing -> uncheck the Personal Web sharing. You will never turn Apache on/off here again.
NOTE: I like to prepend some of the commands with
time
just for curiosity’s sake to see how long it takes.
Go to System Preferences -> Sharing -> uncheck the Personal Web sharing. You will never turn Apache on/off here again.
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
def sieve(to) | |
n = Array.new(to, true) | |
for i in 2..Math.sqrt(to) do | |
if n.at(i) == true | |
j = i; | |
while j*i < to do | |
n[i*j] = false | |
j += 1 | |
end |
/** | |
* Program Hashtable dengan OpenAddressing | |
* Penampung data menggunakan array | |
* Tiga Implementasi menggunakan Linear Probing, Quadric Probing, Double Hashing | |
* Populasi data menggunakan fungsi random | |
*/ | |
#include "stdio.h" | |
#include "math.h" | |
#include "iostream" |
/** | |
* | |
* @author bagusrianto | |
*/ | |
import java.io.BufferedReader; | |
import java.io.IOException; | |
import java.io.InputStreamReader; | |
class NodeTree{ |