News RSS Feeds
News | |
Bloomberg | |
Bloomberg Markets | http://www.bloomberg.com/feeds/podcasts/advantage.xml |
Bloomberg Views | http://www.bloomberg.com/feeds/podcasts/view.xml |
Bloomberg Radio | https://www.bloomberg.com/feeds/podcasts/featured.xml |
News RSS Feeds
News | |
Bloomberg | |
Bloomberg Markets | http://www.bloomberg.com/feeds/podcasts/advantage.xml |
Bloomberg Views | http://www.bloomberg.com/feeds/podcasts/view.xml |
Bloomberg Radio | https://www.bloomberg.com/feeds/podcasts/featured.xml |
import gi | |
gi.require_version("Gtk", "3.0") | |
gi.require_version("Granite", "1.0") | |
from gi.repository import Gtk | |
from gi.repository import Granite | |
class MyWindow(Gtk.Window): | |
def __init__(self): |
Video for reference: https://www.youtube.com/watch?v=LCEmiRjPEtQ
Summary of Andrej Karpathy’s Talk on Software and the Era of AI:
Software is Changing Rapidly: Karpathy observes that after decades of relative stability (software 1.0, written as explicit code), software development has fundamentally changed—twice in the last few years—ushering in a “new normal.”
Software 1.0 vs. 2.0 vs. LLM Programming:
struct Keycode { | |
// Layout-independent Keys | |
// eg.These key codes are always the same key on all layouts. | |
static let returnKey : UInt16 = 0x24 | |
static let enter : UInt16 = 0x4C | |
static let tab : UInt16 = 0x30 | |
static let space : UInt16 = 0x31 | |
static let delete : UInt16 = 0x33 | |
static let escape : UInt16 = 0x35 |
This is a compiled list of falsehoods programmers tend to believe about working with time.
Don't re-invent a date time library yourself. If you think you understand everything about time, you're probably doing it wrong.
#!/bin/sh | |
set -e | |
vendor/bin/phpunit | |
npm run prod | |
git add . | |
(git commit -m "Build frontend assets for deployment to production") || true | |
(git push) || true |
You are an expert in prompt engineering, specializing in optimizing AI code assistant instructions. Your task is to analyze and improve the instructions for Claude Code. Follow these steps carefully:
Then, examine the current Claude instructions, commands and config <claude_instructions> /CLAUDE.md /.claude/commands/*
UNICODE | |
• Basic plan: 63,488 valid code points | |
┌───────────────────┬─────────┬─────────┬─────────┬───────────────────┐ | |
│ Interval │ UTF-8 │ UTF-16 │ UTF-32 │ Code points │ | |
├───────────────────┼─────────┼─────────┼─────────┼───────────────────┤ | |
│ U+0000..U+007F │ 1 byte │ 2 bytes │ 4 bytes │ 128 (ASCII) │ | |
├───────────────────┼─────────┼─────────┼─────────┼───────────────────┤ | |
│ U+0080..U+07FF │ 2 bytes │ 2 bytes │ 4 bytes │ 1,920 │ | |
├───────────────────┼─────────┼─────────┼─────────┼───────────────────┤ |