Skip to content

Instantly share code, notes, and snippets.

View Yousefjb's full-sized avatar
💭
Seek and You Shall Find

Yousef Balout Yousefjb

💭
Seek and You Shall Find
View GitHub Profile
@keithmorris
keithmorris / drive-format-ubuntu.md
Last active March 28, 2025 02:09
Partition, format, and mount a drive on Ubuntu
@SimplGy
SimplGy / renameToHash.sh
Last active July 27, 2023 07:30
Rename files with a hash based on their contents. eg: `abc.jpg` to `3101ace8db9f.jpg`. Useful for detecting duplicates.
#!/bin/bash
# TODO: skip tiny files (so small they couldn't be photos)
# TODO: make sure sym links and other file system oddities are handled
# TODO: look at paralellization for perf boost
#
# Constants
#
CHAR_COUNT=12
BLOCK_COUNT=6
using System;
using System.Diagnostics;
using System.IO;
using System.IO.MemoryMappedFiles;
using System.Runtime.CompilerServices;
using System.Threading.Tasks;
namespace FileAnalyzer
{
public static unsafe class NativeRecord
@staltz
staltz / introrx.md
Last active April 2, 2025 11:07
The introduction to Reactive Programming you've been missing