- μλ΅
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
500 Internal Server Error | |
Sorry, something went wrong. | |
A team of highly trained monkeys has been dispatched to deal with this situation. | |
If you see them, show them this information: | |
svjW146l4mDlBncBMG96qWALGAksjpGytWA82tRaB0idMnqxonwuybhJcSt- | |
uXoorAfE5xAJuMTyARlzf2Dy0dYGLoCuWNndfyRGzSsjuw57CnP_Knj57sPM | |
3MuOw-8ilDjrZ14bAVCF6xnOfbca9KxJW-eqTBPe6d3ty7trFJr4IUu32HNb |
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
#include <iostream> | |
using namespace std; | |
const unsigned int m1 = 0x55555555; // 0101 0101 0101 0101 0101 0101 0101 0101 | |
const unsigned int m2 = 0x33333333; // 0011 0011 0011 0011 0011 0011 0011 0011 | |
const unsigned int m4 = 0x0f0f0f0f; // 0000 1111 0000 1111 0000 1111 0000 1111 | |
void main() { | |
unsigned int a = 0x12345678; // 0001 0010 0011 0100 0101 0110 0111 1000 |
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
javascript:var%20s=document.createElement("script");s.src="http://code.jquery.com/jquery-1.5.2.js";document.body.appendChild(s);s.onload=function(){$('a[href^="javascript:file_download("]').each(function(){this.href=eval("var%20file_download=function(a,b){return%20a/*+'#'+b*/;};"+decodeURI(this.href.substring("javascript:".length)));});/*add%20more%20code%20here*/}; |
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
#!/usr/bin/env bash | |
# A script for changing Mac OS X's default fonts | |
# Author: Jaeho Shin <[email protected]> | |
# Created: 2011-07-22 | |
### MacOSXDefaultFontFallbacksChanger ######################################### | |
## Mac OS X κΈ°λ³Έ κΈκΌ΄ μ€μ λ³κ²½ λꡬ β 1.2.1 (2012-08) | |
## http://netj.github.com/MacOSXDefaultFontFallbacksChanger | |
############################################################################### |
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
var killer = new Object(); | |
addKiller("AniPlus", killer); | |
killer.canKill = function(data) { | |
if(data.params.movie.indexOf("aniplustv.com/live/") !== -1) {return true;} | |
return false; | |
}; | |
killer.process = function(data, callback) { | |
var flashvars = parseFlashVariables(data.params.flashvars); |
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
addKiller("SKCommsVideo", { | |
"canKill": function(data) { | |
if (/v.nate.com/.test(data.src)) { data.site="nate"; return true;} | |
if (/v.(egloos|empas).com/.test(data.src)) { data.site="egloos"; return true;} | |
if (/dbi.video.cyworld(.nate)?.com/.test(data.src)) { data.site="cyworld"; return true; } | |
return false; | |
}, | |
"process": function(data, callback) { | |
var flashvars = parseFlashVariables(data.params.flashvars); |
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, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video { outline: #FF0000 dotted 1px !important; } |
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
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); | |
/** | |
* extended CI_Model | |
* | |
* @access public | |
* @extends CI_Model | |
* @see http://thetechnofreak.com/technofreak/hook-system-php/ for hook system reference | |
*/ | |
class MY_Model extends CI_Model { |
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
<?php | |
class example extends CI_Controller { | |
/** | |
* leave log message | |
* | |
* @access private | |
* @param string $func (default: __FUNCTION__) | |
* @param string $level (default: 'debug') | |
* @param string $message (default: '') | |
* @return void |
OlderNewer