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
// ==UserScript== | |
// @name load jQuery and yaml on 越南商店 | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @match https://sites.google.com/view/nicsolas/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=google.com | |
// @require http://code.jquery.com/jquery-3.4.1.min.js | |
// @require https://github.com/plohoj/userscript-requirejs/releases/download/0.0.2/userscript-require.js |
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
cscript //B "%windir%\system32\slmgr.vbs" /ipk W269N-WFGWX-YVC9B-4J6C9-T83GX | |
cscript //B "%windir%\system32\slmgr.vbs" /skms zh.us.to | |
wscript "%windir%\system32\slmgr.vbs" /ato | |
cd "C:\Program Files (x86)\Microsoft Office\Office16" | |
cscript OSPP.VBS /sethst:zh.us.to | |
cscript OSPP.VBS /act |
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 | |
// copied from python code at https://stackoverflow.com/a/23221582/3103058 | |
function base32_decode($key) { | |
// https://www.php.net/manual/en/function.base-convert.php#122221 | |
$key = strtoupper($key); | |
list($t, $b, $r) = array("ABCDEFGHIJKLMNOPQRSTUVWXYZ234567", "", ""); | |
foreach(str_split($key) as $c) | |
$b = $b . sprintf("%05b", strpos($t, $c)); | |
foreach(str_split($b, 8) as $c) | |
$r = $r . chr(bindec($c)); |
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 | |
$postdata = array( | |
'type' => 'A', | |
'name' => 'a.xxx.tw', //你的domain name | |
'content' => '123.123.123.123' // 你要更新的對應ip地址 | |
); | |
$opts = array('http' => | |
array( | |
'method' => 'PUT', | |
'header' => "X-Auth-Email: 你的信箱@gmail.com\r\n" . |
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: (window.jQuery) ? console.log('jQuery '+jQuery.fn.jquery+' already loaded!') : (function(e, s) { | |
e.src = s;e.onload = function() {/*jQuery.noConflict();*/ | |
console.log('jQuery '+jQuery.fn.jquery+' injected'); | |
}; | |
document.head.appendChild(e); | |
})(document.createElement('script'), 'http://code.jquery.com/jquery-2.2.4.min.js'); | |
jQuery("<h1>test</h1>").attr("style","position:fixed;z-index:9999;width:100%;background-color:rgba(0,255,0,.5);text-align:center").appendTo(document.body).fadeOut( 1500 ).queue(function() { jQuery(this).remove(); }); |
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
-- 改編自 AppleScript範例 Recursive File Processing Droplet.app | |
-- 存檔時請存成 .app 格式 | |
-- 支援輸入的副檔名請修改 line 25: property extension_list | |
-- 請記得修改 line 117: ffmpeg執行檔的路徑, 本script需要依賴ffmpeg來完成轉換 | |
-- 本Script支援 單檔案/多檔案 但不支援資料夾遞迴處理, 如果要支援僅需把 line 81註解, line 82取消註解即可. | |
-- 如有疑問請使用 Telegram 聯繫 https://tg.me/Cojad aka @Cojad 柯姊 | |
(* | |
Disclaimer: IMPORTANT: This Apple software is supplied to you by Apple Inc. ("Apple") in consideration of your agreement to the following terms, and your use, installation, modification or redistribution of this Apple software constitutes acceptance of these terms. If you do not agree with these terms, please do not use, install, modify or redistribute this Apple software. | |
In consideration of your agreement to abide by the following terms, and subject to these terms, Apple grants you a personal, non-exclusive license, under Apple's copyrights in this original Apple software ( the "Apple Software" ), to use, reproduce, modify and redistribute the Apple Software, with or without modifications, in source an |
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/php | |
<?php | |
$stage=0; //如果不要有語音提醒把 $stage=0; 改成 $stage=1; | |
$USA=false; | |
($USA) ? date_default_timezone_set("America/New_York") : date_default_timezone_set("Asia/Taipei"); | |
echo | |
"==================== 自動切換至line視窗, 並且按下Enter ======================== | |
+ usage: line | |
+ 在下一個分零秒整, 切換到line視窗, 並且按下Enter |
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
#!/bin/sh | |
# IMPORTANT!!! | |
# This script try to wipe out all office 2011 files but would also delete some other Microsoft files. | |
# So you are adviced to reinstall other microsoft product which not belong to office 2011. | |
osascript -e 'tell application "Microsoft Database Daemon" to quit' | |
osascript -e 'tell application "Microsoft AU Daemon" to quit' | |
osascript -e 'tell application "Office365Service" to quit' | |
#Closes all Office applications | |
osascript -e 'tell application "Microsoft Excel.app" to quit without saving' |
NewerOlder