Oluwatosin Oghenewaire Thompsongoninja.hashnode.dev·Nov 16, 2024Understanding Unicode and BytesWhen working with text in programming, it’s essential to understand how languages represent characters, especially those that might seem simple, like letters and symbols. However, behind the scenes, computers don't inherently understand "letters" or ...DiscussBeginner's Guide to Golang: Start Coding with Confidencebytes
Joseph Hjbrosdev.hashnode.dev·Sep 14, 2024Making A Virtual Machine - Binary to Assembly to C - All in RustIntroduction Why? This project has really shown me how a computer works at a binary level. It turned a computer from a magical box to an electrical circuit that you can study and learn how it works. I was researching stuff for this project and I came...Discuss·50 readsinstruction set architecture
LingarajTechhub All About Programminglingarajtechhub.com·Mar 2, 2024Python bytes Data Type with ExampleThe bytes data type in Python is a series of bytes. It's unchangeable, like a tuple or a string. Bytes are usually for storing binary data, like file contents or network information. Here's a sample of using the bytes data type in Python: # Creating ...Discussbytes
Yusuf Bin Musayusufaine.dev·Oct 8, 2023iPhone 15 Pro Max: The extent I go to get my hands on oneThis is a companion article for the Apple SG Notifier repo that I did over a weekend. I typically write the article in a markdown file first before publishing it. Background When the iPhone 15 lineup was announced, I was ready to make an impulsive p...Discussbytes
Sachin PalforTeam - GeekPythonteamgeek.geekpython.in·Apr 28, 2023How To Convert Bytes To A String - Different Methods ExplainedIn Python, a byte string is a sequence of bytes, which are the fundamental building blocks of digital data such as images, audio and videos. Byte strings differ from regular strings in that they are made up of bytes rather than characters. Sometimes ...Discuss·302 readsPython
Kirk Paradiswww.park-dev.io·Dec 3, 2022Advent of Code - Rust Edition - Day 3--- Part One --- One Elf has the important job of loading all of the rucksacks with supplies for the jungle journey. Unfortunately, that Elf didn't quite follow the packing instructions, and so a few items now need to be rearranged. Each rucksack has...Discuss·163 readsAdvent of Code 2022 - Rust EditionAdventOfCode2022
Dominik Schischmasigterm.hashnode.dev·Jun 2, 2022Converting hex/bytes/int drama got a happy endYou won't believe how happy I have been, when I noticed the new BitConverter class in .Net. Finally, stop taking some stupid helper class around with you, just for converting byte to hex or other types and vice versa for example for debug logging. N...Discuss·57 readsC#