Skip to content

Instantly share code, notes, and snippets.

@ashishsoniii
ashishsoniii / GSoC_TOR.md
Last active April 4, 2025 06:55
Explore my Google Summer of Code journey with The Tor Project. Check out my final report summarizing my contributions & coding.🚀

Google Summer of Code 2023 Final Report - Tor’s SnowFlake: Revitalising Snowflake's Landing Page for a Better User Experience

👤 Contributor: Ashish Soni

🤝 Mentor: Raya, Donuts

⚙️ Organization: The Tor Project

🚀 Repository: Snowflake

@dsample
dsample / README.md
Last active April 4, 2025 06:52
ASCII art diagrams

ASCI art characters for creating diagrams

Characters:

Single line

  • ASCII code 191 = ┐ ( Box drawing character single line upper right corner )
  • ASCII code 192 = └ ( Box drawing character single line lower left corner )
  • ASCII code 193 = ┴ ( Box drawing character single line horizontal and up )
  • ASCII code 194 = ┬ ( Box drawing character single line horizontal down )
@BRAVO68WEB
BRAVO68WEB / bat2sh.sh
Created November 27, 2019 03:43
Simple converter from batch (.bat) files to shell script (.sh)
#!/usr/bin/env bash
#
# Converts Windows batch script to Linux shell script
#
# Invocation:
# ./bat2sh script.bat
#
OUTFILE=${2:-${1%%.bat}.sh}
@digitensions
digitensions / DOS_to_BASH
Created November 15, 2019 09:52
Converting DOS Batch Files to Shell Scripts
Appendix N. Converting DOS Batch Files to Shell Scripts
Credit the Linux Documentation Project - https://www.tldp.org/LDP/abs/html/dosbatch.html
Quite a number of programmers learned scripting on a PC running DOS. Even the crippled DOS batch file language allowed writing some fairly powerful scripts and applications, though they often required extensive kludges and workarounds. Occasionally, the need still arises to convert an old DOS batch file to a UNIX shell script. This is generally not difficult, as DOS batch file operators are only a limited subset of the equivalent shell scripting ones.
Table N-1. Batch file keywords / variables / operators, and their shell equivalents
Batch File Operator / Shell Script Equivalent / Meaning
% $ command-line parameter prefix
/ - command option flag
@simonesestito
simonesestito / README.md
Last active April 4, 2025 06:48
eduroam connection fix

Error

journalctl --boot --unit wpa_supplicant.service --follow

wpa_supplicant[888]: SSL: SSL3 alert: write (local SSL3 detected an error):fatal:protocol version

wpa_supplicant[888]: OpenSSL: openssl_handshake - SSL_connect error:0A000102:SSL routines::unsupported protocol

That may indicate that the network you're trying to connect to, requires some very old protocols.

@maratori
maratori / .golangci.yml
Last active April 4, 2025 06:46
Golden config for golangci-lint
# This file is licensed under the terms of the MIT license https://opensource.org/license/mit
# Copyright (c) 2021-2025 Marat Reymers
## Golden config for golangci-lint v2.0.2
#
# This is the best config for golangci-lint based on my experience and opinion.
# It is very strict, but not extremely strict.
# Feel free to adapt it to suit your needs.
# If this config helps you, please consider keeping a link to this file (see the next comment).
@mondain
mondain / public-stun-list.txt
Last active April 4, 2025 06:45
Public STUN server list
23.21.150.121:3478
iphone-stun.strato-iphone.de:3478
numb.viagenie.ca:3478
s1.taraba.net:3478
s2.taraba.net:3478
stun.12connect.com:3478
stun.12voip.com:3478
stun.1und1.de:3478
stun.2talk.co.nz:3478
stun.2talk.com:3478
@cedrickchee
cedrickchee / gemini_25_pro_canvas_mode_prompt.md
Last active April 4, 2025 06:38
Gemini 2.5 Pro pairs well with Canvas mode

Gemini 2.5 Pro pairs well with Canvas mode

Starting yesteday, Gemini Advanced users can create with Canvas on Gemini 2.5 Pro (experimental).

Canvas mode make it easy to create prototypes quickly, like this game I made in under few hours with just 50 prompts. [^1]

I vibe coded this game while I'm on the move, taking bus and train.

Full prompts. Excluding the JS errors in Chrome Developer console, the total effective prompts are lower than 50.

@adamawolf
adamawolf / Apple_mobile_device_types.txt
Last active April 4, 2025 06:37
List of Apple's mobile device codes types a.k.a. machine ids (e.g. `iPhone1,1`, `Watch1,1`, etc.) and their matching product names
i386 : iPhone Simulator
x86_64 : iPhone Simulator
arm64 : iPhone Simulator
iPhone1,1 : iPhone
iPhone1,2 : iPhone 3G
iPhone2,1 : iPhone 3GS
iPhone3,1 : iPhone 4
iPhone3,2 : iPhone 4 GSM Rev A
iPhone3,3 : iPhone 4 CDMA
iPhone4,1 : iPhone 4S
@buttercutter
buttercutter / nlhf.py
Last active April 4, 2025 06:32
A simple code for [Nash Learning from Human Feedback](http://arxiv.org/abs/2312.00886)
# [Nash Learning from Human Feedback](http://arxiv.org/abs/2312.00886)
import os
import math
import numpy as np
import torch
import torch.nn as nn
import torch.optim as optim
from torch.utils.data import DataLoader, Dataset