| 64 bit | 32 bit | 16 bit | 8 bit | |
|---|---|---|---|---|
| A (accumulator) | RAX |
EAX |
AX |
AL |
| B (base, addressing) | RBX |
EBX |
BX |
BL |
| C (counter, iterations) | RCX |
ECX |
CX |
CL |
| D (data) | RDX |
EDX |
DX |
DL |
Discover gists
You can use the below link to access Fritzing downloads for free.
Additionally, below are direct download links to Fritzing.
- CARTA HOLDINGS(旧VOYAGE GROUP)
- 技術広報が新卒研修<Open AIハッカソン>をスパイしてみた - (2023/04/11)
- @t_wadaに学ぶテスト駆動開発【CARTA 23新卒研修】 - (2023/04/19)
- 【新卒研修】監修者@t_wadaと読む!プログラマが知るべき97のこと読書会 - (2024/04/09)
- Classi
- 当たり前にリリースしていく ~ 新卒研修編 - (2021/05/20)
- リモートワークのための質問力向上研修を実施しました - (2021/12/07)
- Classi 2025年新卒エンジニア研修「そーだい塾」を開催しました - (2025/06/18)
- CyberZ
This style guide was generated by Claude Code through deep analysis of the Fizzy codebase - 37signals' open-source project management tool.
Why Fizzy matters: While 37signals has long advocated for "vanilla Rails" and opinionated software design, their production codebases (Basecamp, HEY, etc.) have historically been closed source. Fizzy changes that. For the first time, developers can study a real 37signals/DHH-style Rails application - not just blog posts and conference talks, but actual production code with all its patterns, trade-offs, and deliberate omissions.
How this was created: Claude Code analyzed the entire codebase - routes, controllers, models, concerns, views, JavaScript, CSS, tests, and configuration. The goal was to extract not just what patterns are used, but why - inferring philosophy from implementation choices.
| Title | author | level |
|---|---|---|
| JavaScript Fundamentals Before Learning React | Robin Wieruch | beginner |
| Software Design Patterns: Best Practices for Software Developers | C. H. Afzal | beginner |
| Modern C++ Concurrency: Get the most out of any machine | Rainer Grimm | advanced |
| Intermediate JavaScript: Building Frontend Components | Educative | intermediate |
| C++ Standard Library including C++ 14 & C++ 17 | Rainer Grimm | beginner |
| Complete JavaScript Course: Build a Real World App from Scratch | Baptiste Pesquet | beginner |
| An Introduction to Programming in Go | Educative | beginner |
| C++17 in Detail: A Deep Dive | Bartłomiej Filipek | beginner |
| package com.sam016.vsflatomation.service.ble; | |
| import java.util.HashMap; | |
| import java.util.UUID; | |
| public class AllGattCharacteristics { | |
| private static HashMap<String, String> attributes = new HashMap(); | |
| static { | |
| attributes.put("00002a00-0000-1000-8000-00805f9b34fb", "Device Name"); |
| i386 : iPhone Simulator | |
| x86_64 : iPhone Simulator | |
| arm64 : iPhone Simulator | |
| iPhone1,1 : iPhone | |
| iPhone1,2 : iPhone 3G | |
| iPhone2,1 : iPhone 3GS | |
| iPhone3,1 : iPhone 4 | |
| iPhone3,2 : iPhone 4 GSM Rev A | |
| iPhone3,3 : iPhone 4 CDMA | |
| iPhone4,1 : iPhone 4S |
| # To add two-finger gesture to back and forth swiping, follow this steps with shell | |
| # 1 - Open .desktop file with nano | |
| sudo nano /usr/share/applications/brave-browser.desktop | |
| # 2 - Move to a little bottom, edit the place where it is `Exec=` to match this | |
| Exec=/usr/bin/brave-browser-stable %U --ozone-platform=wayland --enable-features=TouchpadOverscrollHistoryNavigation | |
| # Use `Ctrl-O` to write and `Ctrl-X` to exit | |
| # Now restart the brave browser and you will be able to swipe back and forth with two-finger touchpad gestures. |
| blueprint: | |
| name: Actionnable Task Reminder | |
| description: | | |
| # Send an actionable and snoozable reminder notification | |
| Send a notification to the provided notification service to remind you a recurring task or event. | |
| Supports full customizable notification, snooze options and recurrency control. | |
| Support custom action when acknowledge the reminder. |