This file contains hidden or 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
#include <stdio.h> | |
/* Ibnu yahya */ | |
int strlen(char x[]){ | |
int lenght = (sizeof(x) / sizeof(x[0]))-1; | |
printf("%d",lenght); | |
return lenght; |
This file contains hidden or 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 PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
<!-- __ __ __ | |
.---.-.-----.--| |.--.--.| |_| |.----. .----.-----.--------. | |
| _ | | _ || | || _| || _|_| __| _ | | | |
|___._|__|__|_____||___ ||____|__||__||__|____|_____|__|__|__| | |
|_____| --> | |
<html xmlns="http://www.w3.org/1999/xhtml"> |
This file contains hidden or 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
/* | |
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE | |
Version 2, December 2004 | |
Copyright (C) 2012 Ibnu Yahya <[email protected]> | |
Everyone is permitted to copy and distribute verbatim or modified | |
copies of this license document, and changing it is allowed as long | |
as the name is changed. |
This file contains hidden or 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></title> | |
<script type="text/javascript" src="jquery.js"></script> | |
<script type="text/javascript"> | |
$(function(){ | |
if(!$('.ta').val()){ | |
var localStorage = window.localStorage.getItem('value'); | |
$('.ta').val(localStorage); |
This file contains hidden or 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
"""""""""""""""""""" PLUGINS | |
filetype off | |
set rtp+=~/.vim/bundle/vundle/ | |
call vundle#rc() | |
Bundle 'gmarik/vundle' | |
Bundle 'matchit.zip' | |
Bundle 'The-NERD-Commenter' | |
Bundle 'The-NERD-tree' |
This file contains hidden or 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
<?php | |
class zip_protect{ | |
private $pass,$out,$input; | |
function __construct($p,$i,$o){ | |
$this->pass = hash('sha512',$p); | |
$this->out = $o; | |
$this->input = $i; | |
header("Content-type: application/octet-stream"); | |
header("Content-disposition: attachment; filename=$this->out"); |
This file contains hidden or 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
#!/bin/bash | |
awk -F ',' '{ if($1 != NULL){printf("INSERT INTO Testing (Date,User,Usage) VALUES('%s', '%s', %d);\n", $1, $2, $3); }}' mysql.csv >mysql.sql |
This file contains hidden or 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> | |
<script src="qrc:///js/jquery.js"></script> | |
<script src="qrc:///js/bootstrap.js"></script> | |
<script src="qrc:///js/bootstrap-reponsive.js"></script> | |
<link href="qrc:///css/bootstrap.css" rel="stylesheet"> | |
<meta charset=utf-8 /> | |
<title>System Info</title> | |
<script> |
This file contains hidden or 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> | |
<meta charset=utf-8 /> | |
<title>IGNSDK Transparent</title> | |
</head> | |
<body style="background:transparent;background-color:rgba(255,255,255,0.5)"> | |
<center><h1>Widget Transparent</h1></center> | |
</body> | |
</html> |
This file contains hidden or 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
/*anak10thn.web.id license WTFPL*/ | |
#include <stdio.h> | |
#include <gtk/gtk.h> | |
#include <webkit/webkit.h> | |
#include <seed.h> | |
#include <JavaScriptCore/JavaScript.h> | |
SeedEngine *engine; | |
static GdkPixbuf *create_pixbuf(const gchar * filename) | |
{ |