Skip to content

Instantly share code, notes, and snippets.

View ariestiyansyah's full-sized avatar
🥬
Planting...

Rizky ariestiyansyah

🥬
Planting...
  • Blockchain
View GitHub Profile
@ariestiyansyah
ariestiyansyah / gist:636edb54c5d3ce398ad6
Last active August 29, 2015 14:02
Langkah Kuda (X,Y)
{
"1, 7": {
"initPos": "1, 7",
"seq": [
"1, 7",
"0, 5",
"2, 6",
"0, 7",
"1, 5",
"2, 7",
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<!-- fonts file -->
<link href='http://fonts.googleapis.com/css?family=Roboto:500,100' rel='stylesheet' type='text/css'>
@ariestiyansyah
ariestiyansyah / Quiz Social Media
Created September 21, 2014 08:05
Social Media Quiz dengan Modul Random python
import sys
from random import randint
count = 0
# Soal dan jawaban
Soal = ["Social Media buatan Mark zuck...? ",
"Social Media yang eksis dengan awake sleep? ",
"Microblogging yang gambar burung apa hayo? ",
@ariestiyansyah
ariestiyansyah / konsultan pajak
Created November 12, 2014 13:43
Data Konsultan Pajak
Ordered List data konsultan pajak untuk anakpajak.com
{
Nama Konsultan Pajak
No. registrasi
Alamat
Telepon
Email
Website
}
@ariestiyansyah
ariestiyansyah / mozstory-id
Created November 14, 2014 12:41
Mozilla Story Indonesian subtitle
1
00:00:00,000 --> 00:00:04,630
Pada mulanya web adalah sederhana. Terhubung
2
00:00:04,630 --> 00:00:07,477
terbuka, aman
3
00:00:07,477 --> 00:00:09,309
@ariestiyansyah
ariestiyansyah / gist:fb42dd8015b0d16e3a55
Created January 31, 2015 18:42
SlideShare Downloader
#!/usr/bin/env python
#-*- coding: utf-8 -*-
import os
import img2pdf
from os import listdir, walk
from os.path import isfile, join
import urllib2
from BeautifulSoup import BeautifulSoup
@ariestiyansyah
ariestiyansyah / gist:8312f77325cc1b057e63
Last active August 29, 2015 14:16
PPh 21 AngularJS
<!DOCTYPE html>
<html lang="en" ng-app="app">
<head>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>
@ariestiyansyah
ariestiyansyah / CMS Nginx Configuration Open Edx
Created August 9, 2015 08:30
CMS Nginx Configuration Open Edx
upstream cms-backend {
server 127.0.0.1:8010 fail_timeout=0;
}
server {
# CMS configuration file for nginx, templated by ansible
# Proxy to a remote maintanence page
# error pages
@ariestiyansyah
ariestiyansyah / Navigation IndonesiaX
Created August 10, 2015 09:17
html code for navigation
## mako
<%namespace name='static' file='static_content.html'/>
<%namespace file='main.html' import="login_query, stanford_theme_enabled"/>
<%!
from django.core.urlresolvers import reverse
from django.utils.translation import ugettext as _
from microsite_configuration import microsite
from microsite_configuration.templatetags.microsite import platform_name
from ccx.overrides import get_current_ccx
# LMS configuration file for nginx, templated by ansible
upstream lms-backend {
server 127.0.0.1:8000 fail_timeout=0;
}
server {
listen 80;
return 301 https://$host$request_uri;
}