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
| // .vscode/launch.json | |
| { | |
| "version": "0.2.0", | |
| "configurations": [ | |
| { | |
| "type": "chrome", | |
| "request": "launch", | |
| "name": "Debug Multiple application - with Launch Chrome Debug", // free to change | |
| "urlFilter": "http://localhost:*", // for hooking | |
| "pathMapping": { |
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/sh | |
| dat=`date +%Y%m%d%H%M%S` | |
| #echo $dat | |
| echo "backing up current status..." | |
| tar cfpz /backup/db/$dat-mysql.tgz /var/lib/mysql/* | |
| tar cfpz /backup/web/$dat-sites-user.tgz /home/user/sites/* | |
| #tar cfpz /backup/git/$dat-git.tgz /home/git/repositories/* |
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 | |
| # | |
| # .git/post-update | |
| # | |
| # [Simple Update Ver.] | |
| # | |
| git update-server-info | |
| echo "Starting Updating Process..." |
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
| 'use strict'; | |
| /** | |
| * node wininet.dll refresh Internet Setting for proxy | |
| * using ffi, wininet.dll | |
| * | |
| * you may can use InternetSetOptionA rather then InternetSetOptionW | |
| * | |
| * @author SnooeyNET <sople1@snooey.net> | |
| */ |
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 | |
| # | |
| # .git/post-update | |
| # | |
| git update-server-info | |
| echo "Starting Updating Process..." | |
| # :: Auto-Pulling 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
| <?php | |
| // λ©ννκ·Έλ₯Ό μ΄μ©ν URL μ΄λ | |
| // header("location:URL") μ λ체 | |
| function goto_url($url) | |
| { | |
| $url = str_replace("&", "&", $url); | |
| //echo "<script> location.replace('$url'); </script>"; | |
| if (!headers_sent()) | |
| header('Location: '.$url); | |
| else { |
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
| // go to https://www.facebook.com/pokes/ and run the code below :) | |
| javascript:setInterval(function(){var _=document.body.querySelectorAll('#poke_live_new a._42ft._4jy0._4jy3._4jy1.selected._51sy'),a=0;for(;a<_.length;a++)_[a].click()},2000); |
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
| # encoding: utf-8 | |
| require 'httparty' | |
| module IB | |
| class IBAgent | |
| include HTTParty | |
| base_uri 'www.ilbe.com' | |
| format :plain | |
| headers 'Referer' => 'http://www.ilbe.com/index.php?mid=index&act=dispMemberSignUpForm' | |
| headers 'User-Agent' => 'Input your user-agent here' |
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
| #!/usr/bin/env bash | |
| ### BEGIN INIT INFO | |
| # Provides: emperor | |
| # Required-Start: $all | |
| # Required-Stop: $all | |
| # Default-Start: 2 3 4 5 | |
| # Default-Stop: 0 1 6 | |
| # Short-Description: starts the uwsgi emperor app server | |
| # Description: starts uwsgi emperor app server using start-stop-daemon |