Setup
Setup

Setup

Backlinks (0)

No backlinks found.

How to get your company AI pilled
How to get your company AI pilled

How to get your company AI pilled

Backlinks (1)
  • Ramp의 AX (회사를 AI로 물들이는 법)
Debian Setup
Debian Setup

Debian Setup

sudo apt update && sudo apt install git && /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" && echo >> ~/.bashrc && echo 'eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv bash)"' >> ~/.bashrc && eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv bash)" && sudo apt-get install build-essential && brew install gcc btop
Backlinks (1)
  • 260415
BitTorrent
BitTorrent

BitTorrent

An unfortunate dope technology that has been stained by a bad use-case (stealing licensed products)

  • https://sciop.net/
  • Files are in 256kb chunks.
  • At any given time, everyone has different chunks.
  • The client will regularly ask for the list of chunks my peers have.
  • The client will request the rarest chunk to the server
  • The client sends chunks to the top 4 inbound chunk senders
  • Re-evaluate every 10 seconds
  • Every 30 seconds, send chunks to random peers

Articles

Building a BitTorrent client from the ground up in Go

  • This mechanism allows us to verify the integrity of each piece as we go. It makes BitTorrent resistant to accidental corruption or intentional torrent poisoning. Unless an attacker is capable of breaking SHA-1 with a preimage attack, we will get exactly the content we asked for
  • Now that we have information about the file and its tracker, let's talk to the tracker to announce our presence as a peer and to retrieve a list of other peers. We need to make a GET request to the announce URL supplied in the .torrent file, with a few query parameters
  • can communicate using the BitTorrent protocol
  • can understand and respond to our messages
  • has the file that we want, or at least knows what we're talking about
  • Therefore, it's essential to pipeline our requests to keep up with the constant pressure of some unfulfilled requests. This can increase the throughput of our connection by order of magnitude
  • Notably, I left out all the glue code, parsing, unit tests, and the boring parts that build character. View my full implementation if you're interested
Backlinks (3)
  • 250408
  • 221107
  • P2P
Index
cho.sh
I prefer CLIBB9A08260619260619컴퓨트로늄37A88F컴퓨트로늄0CF03F컴퓨트로늄2C60FB260618260618260418260418260528260528AutoBuilder63849A260419260419Setup9AC296StellaD226F7260415260415Debian SetupD2F701260414260414anaclumos/configs/AGENTS.mdED86A3Ramp의 AX (회사를 AI로 물들이는 법)840774260413260413How to get your company AI pilled46544C260411260411260409260409260407260407260406260406Separating Claude Code Personal Sub and Claude Code Company Sub33A53C
sudo apt update && sudo apt install git && /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" && echo >> ~/.bashrc && echo 'eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv bash)"' >> ~/.bashrc && eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv bash)" && sudo apt-get install build-essential && brew install gcc btop
Warning
This post is more than a year old. Information may be outdated.