Aflăm de persoane care au făcut ambele doze de vaccin, au dezvoltat titruri de mii de anticorpi, dar cu toate acestea au făcut forme grave sau chiar au decedat de Covid, la 1-2 luni după rapel... Dar de ce ne mirăm?!? Din păcate nu suntem toți imunologi. Și din păcate imunologii tac! Am avut zilele trecute niște cursuri la telefon cu un medic inițiat în acest domeniu. Mi-a explicat de-a fira păr... El dorește să rămână anonim, așa că nu îmi rămâne decât să fiu eu vocea lui.
View cgroup-info
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/bash | |
######################################### | |
# Show cgroup info for a given group # | |
# # | |
# @author Dumitru Uzun (DUzun.Me) # | |
######################################### | |
# https://gist.github.com/duzun/1246c850fb858ba2fdc1350e747ee87a |
View get_flag.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
function getFlag(country_code) { | |
// just some unicode magic | |
return String.fromCodePoint(...Array.from(country_code||"") | |
.map(c => 127397 + c.codePointAt())); | |
} |
View T-cell & B-cell vs antibodies.md
View hide_container_volumes_in_user-places.xbel.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
#!/usr/bin/env node | |
/*jshint node: true, esversion: 10 */ | |
/** | |
* Hide container filesystems in ~/.local/share/user-places.xbel | |
* | |
* @url https://gist.github.com/duzun/e583e1634ed6f6765dbaba0ac846e5cc | |
* @author Dumitru Uzun | |
* @version 0.0.1 | |
*/ |
View mysqli__multi_query.php
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
if ($mysqli->multi_query("START TRANSACTION;$query--\nCOMMIT;")) { | |
$idx = 0; | |
$ret = 0; | |
if($output = $mysqli->error) { | |
echo $output, PHP_EOL; | |
die(-4); | |
} | |
else { | |
do { |
View undetect-console.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
console.log = | |
console.clear = | |
console.profile = | |
console.profileEnd = | |
eval = function(){}; |
View casign
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/env bash | |
## | |
# Sign a certificate using my root_ca. | |
# | |
# Note: duzun_root_ca.crt must be in the trusted root ca (see https://www.archlinux.org/news/ca-certificates-update/) | |
# | |
# @author Dumitru Uzun (DUzun.Me) | |
# @version 1.1.0 | |
## |
View shiftsrt.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
#!/bin/node | |
/*jshint esversion: 9*/ | |
/** | |
* Time-shift video subtitles in a .srt file. | |
* | |
* Usage: | |
* shiftsrt.js seconds input_file|- [output_file|-] | |
* | |
* Examples: |
View downlist
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/bash | |
# Download a file listed in a list file | |
# @author Dumitru Uzun (DUzun.Me) | |
# @version 1.0.1 | |
_me_="$(basename "$0")" | |
_start_time_=$(date +%s) | |
referer= | |
_cat_= |
View php_sess_to_redis.sh
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/bash | |
export REDISCLI_AUTH=my-supper-strong-password-4-redis-server | |
TTL=$(( 24 * 3600 )) | |
# cd "/var/sess" | |
for i in sess_*; do | |
ex=$(( $(date +%s) - $(stat -c %Y "$i") + $TTL )) |
NewerOlder