Skip to content

Instantly share code, notes, and snippets.

View dimaslanjaka's full-sized avatar

Dimas Lanjaka dimaslanjaka

View GitHub Profile
@dimaslanjaka
dimaslanjaka / vpn-hotspot.sh
Created January 31, 2020 06:43 — forked from ShapeShifter499/vpn-hotspot.sh
vpn hotspot script
#!/storage/xbin/bash
# This script should help forward VPN over any tethered connection on a Android device. Turn on tethering, then enable VPN, then run this script.
# Inital variable setup
tethering=0
# Setup iptables before forwarding VPN
iptables -A POSTROUTING -o tun0 -j MASQUERADE -t nat
@dimaslanjaka
dimaslanjaka / disqus.php
Created October 4, 2017 14:20 — forked from garethredfern/disqus.php
Disqus Plugin Working Code
<?php
class Plugin_disqus extends Plugin {
var $meta = array(
'name' => 'Disqus',
'version' => '0.9',
'author' => 'Mubashar Iqbal',
'author_url' => 'http://mubashariqbal.com'
);
@dimaslanjaka
dimaslanjaka / media-query.css
Created September 27, 2017 23:12 — forked from gokulkrishh/media-query.css
CSS Media Queries for Desktop, Tablet, Mobile.
/*
##Device = Desktops
##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
//CSS
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<link rel="stylesheet" href="https://codepen.io/dimaslanjaka/pen/prxYXz.css">