.
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
<?xml version="1.0" encoding="UTF-8"?> | |
<playlist xmlns="http://xspf.org/ns/0/" xmlns:vlc="http://www.videolan.org/vlc/playlist/ns/0/" version="1"> | |
<title>Playlist</title> | |
<trackList> | |
<track> | |
<location>http://curiosity.shoutca.st:6110/</location> | |
<extension application="http://www.videolan.org/vlc/playlist/0"> | |
<vlc:id>0</vlc:id> | |
</extension> | |
</track> |
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
"save_on_focus_lost": true |
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
@echo off | |
title tutorial | |
:app | |
git status | |
git add -A . | |
git commit -m "oke" | |
git push | |
timeout /t 180 /nobreak |
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
while true | |
do | |
git status | |
git add -A . | |
git commit -m "oke" | |
git push | |
sleep 3m | |
done |
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
<div style="border: 1px solid rgb(000, 000, 000); padding: 10px;"> | |
<script style="text/javascript"> | |
var numposts = 5; | |
var standardstyling = true; | |
</script> | |
<script type='text/javascript'> | |
function showrecentposts(json) { | |
for (var i = 0; i < numposts; i++) { | |
var entry = json.feed.entry[i]; | |
var posttitle = entry.title.$t; |
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>Psikologi Positif - Zen</title> | |
<meta charset="utf-8"> | |
<link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap.min.css"> | |
<link rel="icon" type="image/x-icon" href="/favicon.ico"> | |
</head> | |
<body> | |
<textarea id="source" style="display: none;"> |
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
github: | |
git clone --depth=1 https://username:[email protected]/username/$1 | |
upload: | |
git status; git add -A .; git commit -m "okay"; git push | |
my-folder: | |
cd ~/storage/dcim/my-folder; ls |
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
def kucing(x): | |
print x | |
kucing(30) |