Skip to content

Instantly share code, notes, and snippets.

Model: Web Browsing

1 / 1

Hãy tìm trên Medium.com những bài viết về KDP, hãy kèm link để tôi có thể truy cập. Ngoài ra hãy mô tả ngắn gọn về nội dung bài viết.

ChatGPTChatGPT

1 / 1

var FindProxyForURL = function(init, profiles) {
return function(url, host) {
"use strict";
var result = init, scheme = url.substr(0, url.indexOf(":"));
do {
result = profiles[result];
if (typeof result === "function") result = result(url, host, scheme);
} while (typeof result !== "string" || result.charCodeAt(0) === 43);
return result;
};
docker stop $(docker ps -aq)
docker rm $(docker ps -aq)
docker rmi $(docker images -q)
docker container prune # Remove all stopped containers
docker volume prune # Remove all unused volumes
docker image prune # Remove unused images
docker system prune # All of the above, in this order: containers, volumes, images
docker system df # Show docker disk usage, including space reclaimable by pruning
@thuongtin
thuongtin / thispersondoesnotexist.ps1
Created August 28, 2021 11:42
Download thispersondoesnotexist
$i=1
for (;;$i++)
{
Invoke-WebRequest -Uri "https://thispersondoesnotexist.com/image" -DisableKeepAlive -Headers @{"Cache-Control"="no-cache"} -OutFile "$i.jpg"
}
/*!
FileDrop Revamped - HTML5 & legacy file upload
in public domain | http://filedropjs.org
by Proger_XP | http://proger.me
Supports IE 6+, FF 3.6+, Chrome 7+, Safari 5+, Opera 11+.
Fork & report problems at https://github.com/ProgerXP/FileDrop
*/
;(function(e,t){typeof define=="function"&&define.amd?define(["exports"],function(n){t(e,n)}):typeof exports!="undefined"?t(e,exports):t(e,e.fd=e.fd||{})})(this,function(t,n){n.randomID=function(e){return(e||"fd")+"_"+(Math.random()*1e4).toFixed()},n.uniqueID=function(e){do var t=n.randomID(e);while(n.byID(t));return t},n.byID=function(e){return n.isTag(e)?e:document.getElementById(e)},n.isTag=function(e,t){return typeof e=="object"&&e&&e.nodeType==1&&(!t||e.tagName.toUpperCase()==t.toUpperCase())},n.newXHR=function(){try{return new XMLHttpRequest}catch(e){var t=["MSXML2.XMLHTTP.6.0","MSXML2.XMLHTTP.5.0","MSXML2.XMLHTTP.4.0","MSXML2.XMLHTTP.3.0","MSXML2.XMLHTTP","Microsoft.XMLHTTP"];for(var n=0;n<t.length;n++)try{return new ActiveXObject(t[n])}catch
@thuongtin
thuongtin / datax.txt
Last active March 20, 2021 07:31
Dana X
345d87a7c87b658c23d4d01dd5508f9c2b290f1169ee3acb11101d4c206b8016
c35c816b6b1966acecfdc1f17a60cad615c148df54d9c8cfbf2a231a07dda197
0017d6f8cbe9a416096444478f5f829aaec24c584c52b8ec6d893379200d5f8a
b4b449750cba40bdc478696d17b08f688d6779891dc5fede0e67a27405a1284f
3897e22eb524fe84f3018bb58e8bbe7b68c8ec2fd8bddb8075ea9d34f44d0aba
b5eff2ec1366acdc6053c2759bddafe7651ae5ebd1a6703f026bdc714df412ff
ac12d4a3ddf4c8eccb10b2465590ee1b179ef4774dfe558681810b90f1e9ce42
00d5fc58b56acab154f4d5e73c22affdc75ce7d38df6b36c3c50c85670958a76
@thuongtin
thuongtin / socks5.txt
Last active March 24, 2020 03:57
socsk 5 italy
function FindProxyForURL(url, host)
{
return "SOCKS5 192.168.68.120:8888; SOCKS 192.168.68.120:8888; DIRECT;";
}