Skip to content

Instantly share code, notes, and snippets.

View szepeviktor's full-sized avatar
🍓
Making applications error-free

Viktor Szépe szepeviktor

🍓
Making applications error-free
View GitHub Profile
@szepeviktor
szepeviktor / google-translate-languages.js
Created June 28, 2024 22:55
Get Google Translate language codes
// https://translate.google.com/
Array.from(document.querySelectorAll("[role=listbox][aria-labelledby=ucj-4] [role=group] [role=option][data-language-code]")).map(elem => elem.getAttribute("data-language-code")).join(",");
@szepeviktor
szepeviktor / jq-dot.sh
Created December 4, 2023 01:48
jq dot notation
jq -r 'paths(scalars) as $p | ($p | join(".")) + " = " + (getpath($p)|tostring)'
@szepeviktor
szepeviktor / indent-detector.php
Last active November 26, 2023 20:39
indent detector
#!/usr/bin/env php
<?php
declare(strict_types=1);
const INDENT_CHAR = ' ';
const INDENT_SIZE = 4;
const END_OF_LINE = "\n";
function exitWith(int $exitStatus, string $message): void
@szepeviktor
szepeviktor / artikulus.php
Last active November 4, 2023 22:58
Határozott névelő hozzáadása egy szóhoz PHP-ban
<?php
namespace Grammar\Hungarian;
class DefiniteArticle
{
const CONSONANTS = [
'0',
'2',
'3',
@szepeviktor
szepeviktor / unicode-sort.sh
Last active October 31, 2023 13:20
Sort characters by their UNICODE codepoint
#!/bin/bash
# File with a string of UTF-8 characters
FILE="$1"
paste <(cat "${FILE}" | iconv -f UTF-8 -t UNICODE | hexdump -s 2 -e '1/2 "U+%04X\n"') <(grep -o '.' "${FILE}") \
| sort
@szepeviktor
szepeviktor / laravel-queue-cli.sh
Last active November 3, 2023 10:59
CLI tool to list Laravel queue jobs and failed jobs
#!/bin/bash
REDIS_DB="0"
QUEUE_REDIS_KEY="app_name_database_queues:default:delayed"
DB_NAME="sql_db_name"
redis()
{
redis-cli -n "${REDIS_DB}" --raw "$@"
}
document.querySelector("#container video.html5-main-video").onwaiting = (event) => {
var to;
var cnt = 0;
var ov = event.target.volume;
if (document.querySelector("#movie_player.ad-created") === null) {
return;
}
to = setTimeout(() => {
@szepeviktor
szepeviktor / standard-deviation.php
Created October 24, 2023 03:03
Calculate standard deviation
<?php
/**
* Calculate standard deviation
*
* Square root of sum of squares divided by N-1
*
* @param list<float> $values
*/
function sd(array $values): float
@szepeviktor
szepeviktor / computer-game-flow.md
Last active July 15, 2023 10:31
How a computer game interacts with the player

Computer game flow

Where to improve you gaming performance.

  1. a local (PC) and a remote (server) computer generates output (audio and video)
  2. output peripherals translate digital signals into physical ones (display, speakers)
  3. sensory organs turn them back to voltage (eyes, ears)
  4. nervous system transmits these signal to the brain
  5. human brain processes these signals and generates responses (reaction time)
  6. nervous system transmits these signal to organs
@szepeviktor
szepeviktor / web-traffic.sh
Created June 25, 2023 15:26
Watch live web traffic without successful requests for static assets #HTTP
tail -f -n0 /var/log/apache2/*.log|grep -vE '\.(ico|css|js|jpg|jpeg|png|svg|gif|ttf|eot|woff|woff2)(\?\S+)? HTTP/(1\.0|1\.1|2\.0)" (200|206)'
# optionally |ccze -m ansi