This commit is contained in:
TheGeneralist 2026-01-14 23:34:13 +01:00
commit 35057d7957
Signed by: thegeneralist01
SSH key fingerprint: SHA256:pp9qddbCNmVNoSjevdvQvM5z0DHN7LTa8qBMbcMq/R4
7 changed files with 1599 additions and 0 deletions

18
.gitignore vendored Normal file
View file

@ -0,0 +1,18 @@
*
!.gitignore
!docs/
!docs/**/
!src/
!src/**/
!Cargo.lock
!Cargo.toml
!isolate_cookies
!scrape_user_tweet_contents.py
!tag-tree
!test-classification-list

114
Cargo.lock generated Normal file
View file

@ -0,0 +1,114 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 4
[[package]]
name = "anyhow"
version = "1.0.100"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
[[package]]
name = "classifier"
version = "0.1.0"
dependencies = [
"anyhow",
"serde",
"serde_json",
]
[[package]]
name = "itoa"
version = "1.0.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
[[package]]
name = "memchr"
version = "2.7.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
[[package]]
name = "proc-macro2"
version = "1.0.104"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9695f8df41bb4f3d222c95a67532365f569318332d03d5f3f67f37b20e6ebdf0"
dependencies = [
"unicode-ident",
]
[[package]]
name = "quote"
version = "1.0.42"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f"
dependencies = [
"proc-macro2",
]
[[package]]
name = "serde"
version = "1.0.228"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
dependencies = [
"serde_core",
"serde_derive",
]
[[package]]
name = "serde_core"
version = "1.0.228"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
version = "1.0.228"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "serde_json"
version = "1.0.148"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3084b546a1dd6289475996f182a22aba973866ea8e8b02c51d9f46b1336a22da"
dependencies = [
"itoa",
"memchr",
"serde",
"serde_core",
"zmij",
]
[[package]]
name = "syn"
version = "2.0.113"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "678faa00651c9eb72dd2020cbdf275d92eccb2400d568e419efdd64838145cb4"
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
[[package]]
name = "unicode-ident"
version = "1.0.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
[[package]]
name = "zmij"
version = "1.0.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "30e0d8dffbae3d840f64bda38e28391faef673a7b5a6017840f2a106c8145868"

9
Cargo.toml Normal file
View file

@ -0,0 +1,9 @@
[package]
name = "classifier"
version = "0.1.0"
edition = "2024"
[dependencies]
anyhow = "1.0.100"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.148"

13
isolate_cookies Executable file
View file

@ -0,0 +1,13 @@
#!/usr/bin/env python
cookie_str = input("Input your cookies in the Header String format: ")
cookie_dict = dict(item.split("=", 1) for item in cookie_str.split(";"))
output_cookies = {}
auth_token = cookie_dict['auth_token']
ct0 = cookie_dict['ct0']
login_string = f"auth_token={auth_token};ct0={ct0}"
with open("creds.txt", "w") as file:
file.write(login_string)

File diff suppressed because it is too large Load diff

151
tag-tree Normal file
View file

@ -0,0 +1,151 @@
- cs
- algorithms
- dynamic_programming
- computer_architecture
- cpu_design
- hardware
- ai_accelerators
- arm
- floating_point
- gpus
- memory_models
- optimization
- vectorization
- computer_graphics
- 3d_math
- rendering
- webgl
- courses
- cryptography
- databases
- distributed_systems
- game_development
- graphics_programming
- physics_simulation
- procedural_generation
- hardware_engineering
- history
- hardware
- people
- networking
- parallel_computing
- cuda
- simd
- programming_languages
- c
- cpp
- stl
- haskell
- jai
- odin
- python
- rust
- typescript
- zig
- signal_processing
- software_architecture
- ffi
- software_development
- architecture
- build_systems
- nix
- burnout
- concurrency
- asynchronous_programming
- atomics
- data_oriented_design
- key_value_stores
- data_structures
- hash_maps
- debugging
- design
- command_line
- interfaces
- robustness
- simplicity
- devops
- educational_resources
- engineering_culture
- ide
- architectures
- memory
- safety
- performance_optimization
- security
- application_security
- sustainability
- testing
- integration_testing
- text_editors
- vim
- text_processing
- tutorials
- user_interfaces
- systems_programming
- assembly
- compilers
- debugging
- distributed_systems
- emulators
- executables
- pe_format
- filesystem_correctness
- io_uring
- latency
- linkers
- memory_management
- arena_allocators
- networking
- operating_systems
- signals
- text_editors
- virtualization
- theory
- algorithms
- boolean_satisfiability
- compression
- dynamic_programming
- hash_functions
- matrix_multiplication
- minimization
- parallel
- verification
- compilers
- analysis
- code_generation
- history
- intermediate_representation
- jit
- llvm
- optimization
- parsing
- research
- specialized_crypto
- toolchains
- type_systems
- computation
- complexity
- quantum
- models
- data_structures
- formal_verification
- proof_assistants
- hypercomputation
- networks
- programming_languages
- design
- functional
- metaprogramming
- rust
- zig
- quantum_computing
- systems_programming
- design
- type_theory
- tools
- build_systems
- neovim
- terminal_emulators
- window_managers
- web_technologies
- wasm

1
test-classification-list Normal file
View file

@ -0,0 +1 @@
https://x.com/fleetwood___/status/1987527758558228809