Skip to content

Instantly share code, notes, and snippets.

// This implementation is written for clarity rather than for performance
// or memory footprint. Possible optimizations include:
//
// - Storing the table with bit-packing, reducing its size to 24 bytes.
// - Inlining the hash into the scramble functions to remove
// redundant seed manipulations.
// - Using the iteration of the scramble process itself to randomize things
// with fewer hashing rounds.
// - Using SIMD to compute multiple scrambles at once.
// - Etc.
@asp8200
asp8200 / easybuild_test_report_22551_easybuilders_preasybuild-easyconfigs_20254713-UTC-14-47-21.md
Created March 13, 2025 14:47
EasyBuild test report for easybuilders/easybuild-easyconfigs PR(s) #22551

Test report for PR(s) easybuilders/easybuild-easyconfigs#22551

Test result

Build succeeded for 1 out of 1 (1 easyconfigs in total)

Overview of tested easyconfigs (in order)

  • SUCCESS MetaEuk-6-GCC-12.3.0.eb

Time info

  • start: Thu, 13 Mar 2025 14:44:11 +0000 (UTC)

Internationalization Puzzles 2025

Puzzle 1

const textEncoder = new TextEncoder();

input.split('\n').map(line => [textEncoder.encode(line).length <= 160, line.length <= 140]).map(([s, t]) => s ? (t ? 13 : 11) : (t ? 7 : 0)).reduce((a, b) => a + b, 0)

Puzzle 2

@edavishydro
edavishydro / example.py
Created March 13, 2025 14:46
Monthly to daily data using HGSP and SoftPlus
monthly_budgets = pd.DataFrame({
'channel': channel_columns,
'November':0.,
}).set_index('channel')
monthly_budgets.loc['bing'] = {
'November':4837,
}
monthly_budgets.loc['youtube'] = {
'November':54861,
@sumprideharl8
sumprideharl8 / Blumentals Surfblocker
Created March 13, 2025 14:46
Blumentals Surfblocker Cracked
Blumentals Surfblocker Crackeded
@LTibbs
LTibbs / fers_contribution_refund_guide.md
Created March 13, 2025 14:46 — forked from monfresh/fers_contribution_refund_guide.md
Guide to getting your FERS contribution refund for former 18F employees

For best results, all forms mentioned below must be printed out, filled out and signed in ink, and mailed directly to OPM at the following address:

U.S. Office of Personnel Management
Attn: Federal Employee Retirement System 
Post Office Box 45
Boyers, PA 16017-0045

In order to send directly to OPM, you must wait 30 days after your last day at GSA. However, because part of the process requires you to mail some forms to your financial institution and wait for them to send them back, you can start the process about 15 days after your last day.

@efcribeiro
efcribeiro / install.bat
Created March 13, 2025 14:46
Install service STCP Directlink
@echo off
setlocal
REM get folder
set "current_dir=%CD%"
REM Check if current_dir exists
if not exist "%current_dir%\bin" (
echo The directory %current_dir%\bin does not exist.
exit /b
@echo off
setlocal enabledelayedexpansion
echo =============================================
echo Spring Boot Project Generator
echo =============================================
:: Validate input parameters and format
if "%~1"=="" (
echo Usage: %~nx0 [PROJECT_NAME]
@lesterlxy
lesterlxy / font-changer.css
Last active March 13, 2025 14:46
Vencord QuickCSS - Font Changer
::placeholder, body, button, input, select, textarea {
font-family: "Noto Sans";
text-rendering: geometricPrecision;
}
@bordakovvv
bordakovvv / gist:090c9e3b31adbdf2a92d5d049e7cbb29
Created March 13, 2025 14:45
ДЗ: Переменные
namespace ConsoleApp1
{
public class Program
{
static void Main(string[] args)
{
byte age = 20;
float temperature = 36.6F;
string name = "Юрий";
bool isStudent = true;