Being aesthetically displeased with jpeg artifacts on @TfTHacker's avatar, I found similar image, spent half an hour in GIMP and got a decent hi-res version:
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
PAGE=0 | |
while true; do | |
PAGE=$(($PAGE + 1)) | |
REPOS=$(curl -s -H "Authorization: token $GITHUB_TOKEN" "https://api.github.com/user/repos?visibility=all&page=$PAGE" | jq -r '.[].ssh_url') | |
if [ -z "$REPOS" ]; then | |
break; | |
fi | |
for REPO in $REPOS; do | |
git clone --no-checkout "$REPO" | |
done |
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
key:"string value" | |
int_key:22 |
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
const source = 'Math.clamp(1, 2, 3)'; | |
const config = { | |
presets: [ | |
[ | |
'@babel/preset-env', | |
{ | |
'modules': false, | |
'corejs': '3.18.0', | |
'useBuiltIns': 'usage', | |
'shippedProposals': true, |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Document</title> | |
<link rel="stylesheet" href="style.css"> | |
</head> | |
<body> | |
<header> | |
<div class="menu"> |
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
$debug: false; | |
$column: 50px; | |
$gutter: 30px; | |
.wrap { | |
margin: 0 auto; | |
} | |
.row { | |
display: flex; |
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
! Лочим виджеты «100500 пользователям нравится это» | |
|vk.com/widget_community.php*| | |
|facebook.com/plugins/like_box.php*| | |
## .fb-like-box, #vk_groups | |
! Лочим каменты на ютубе | |
|apis.google.com/*/*/*/*/*/widget/render/comments*| | |
youtube.com## #watch-discussion | |
! Лочим каменты в vk |
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
$('[data-send-request] form').submit(self.submit); | |
$('[data-send-request] [data-send-request-submit]').click(self.submit); | |
//... | |
self.inProgress = false; | |
self.submit = function (event) { | |
e.preventDefault(); | |
if (self.inProgress) { | |
return false; | |
} |
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
From: ixth <[email protected]> | |
To: [email protected] | |
Subject: test | |
Content-Type: multipart/related; boundary="iddqdboundary" | |
--iddqdboundary | |
Content-Type: text/html; charset="UTF-8" | |
Content-Transfer-Encoding: 8bit | |
<!doctype html> | |
<html> |
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
(function ($) { | |
$.fn.serializeJSON = function () { | |
return $.fn.serializeArray.call(this).reduce(function (result, param) { | |
result[param.name] = param.value; | |
return result; | |
}, {}); | |
}; | |
}(jQuery)); |
NewerOlder