Skip to content

Instantly share code, notes, and snippets.

View fiando's full-sized avatar

Bobby Fiando fiando

View GitHub Profile
<!DOCTYPE html>
<html>
<head>
<title>Contoh Tag HTML</title>
</head>
<body>
<!-- Mulai isi konten disini -->
<h1>Daftar Link</h1>
<ul>
<li><a href="http://google.com/">Google</a></li>
@fiando
fiando / get_whatsapp_group_number.js
Last active July 12, 2018 14:17
Javascript Get Whatsapp Number in Group
phoneNumber = []
i = 0;
function saveArray() {
console.log('scroll down !');
nomor = document.querySelectorAll('._2sNbV ._25Ooe ._1wjpf');
nomor.forEach(element => {
n = element.getAttribute('title')
if (phoneNumber.indexOf(n) == -1) {
@fiando
fiando / create-react-project
Last active June 4, 2018 16:19
React Native Tutorial
create-react-native-app AwesomeProject
cd AwesomeProject
npm start
Imports System.Math
Imports MySql.Data.MySqlClient
Public Class FrmMata
Private Sub FrmMata_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Call awal()
Call isigrid()
Call isicari()
End Sub
@fiando
fiando / css-simple-slider.css
Last active August 1, 2017 05:04
Simple Slider
* {
margin:0;
padding:0;
}
#slider {
background-color: #e2e2e2;
padding: 15px 0; }
.slider {
margin: 0 auto;
@fiando
fiando / 0_reuse_code.js
Created August 1, 2017 03:59
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
<?php
echo 'test';
?>