CSS parsing in C++ with an in-depth look
>CSS parsing in C++ with an in-depth look
https://redd.it/1ev4015
@r_cpp
>CSS parsing in C++ with an in-depth look
https://redd.it/1ev4015
@r_cpp
YouTube
CSS parsing in C++ with an in-depth look ( subscribe to create a community )
CSS parsing in C++ with an in-depth look at the CParseCSS class and its related components.
Source code on github
github.com/srgank/css_parser
#coding #cpp #programming #css #parser
Source code on github
github.com/srgank/css_parser
#coding #cpp #programming #css #parser
Does Computer Science Make Good programmers? - DHH
https://youtu.be/RRz1xdqyJfM
https://redd.it/1fshkn8
@r_cpp
https://youtu.be/RRz1xdqyJfM
https://redd.it/1fshkn8
@r_cpp
YouTube
Does Computer Science Make Good programmers? - DHH
#computerscience #softwaredevelopment #programming #dhh #rails #rainsconf
In This video, David Heinemeier Hansson (DHH) the creator of ruby on rails speaks on whether computer science can or does make good programmers, and whether software development and…
In This video, David Heinemeier Hansson (DHH) the creator of ruby on rails speaks on whether computer science can or does make good programmers, and whether software development and…
SQLite-Editor (open source code ) SQL-SELECT-WIZARD
https://youtube.com/watch?v=sKxhmifqmnA&si=o7u6fvMdS-Hqk6rY
https://redd.it/1hj9gbi
@r_cpp
https://youtube.com/watch?v=sKxhmifqmnA&si=o7u6fvMdS-Hqk6rY
https://redd.it/1hj9gbi
@r_cpp
YouTube
SQLite-Editor (open source code ) SQL-SELECT-WIZARD
SQLite-Editor (open source code ) SQL-SELECT-WIZARD
full source code on github github.com/srdzank/SQLite-Editor
#programming #cpp #sql #sqlite
full source code on github github.com/srdzank/SQLite-Editor
#programming #cpp #sql #sqlite
Anyone know what is he using
https://youtu.be/91NWEtO1yU8?feature=shared
https://redd.it/1osjz2d
@r_cpp
https://youtu.be/91NWEtO1yU8?feature=shared
https://redd.it/1osjz2d
@r_cpp
YouTube
study with me | code with me | HHKB Type-S | 40 min real time | no talking | Learn C++ | 2025.01.12
study with me | code with me | HHKB Type-S | 40 min real time | no talking | Learn C++ | 2025.01.12
- Happy Hacking keyboard (HHKB Professional HYBRID Type-S (Snow/Blank))
- Logitech MX Anywhere 3S mouse
- Blue Yeti USB microphone
tags
studywithme codewithme…
- Happy Hacking keyboard (HHKB Professional HYBRID Type-S (Snow/Blank))
- Logitech MX Anywhere 3S mouse
- Blue Yeti USB microphone
tags
studywithme codewithme…
Recursion
Recursion is when you explain recursion using recursion.
#recursion #programming
https://redd.it/1ph7bdy
@r_cpp
Recursion is when you explain recursion using recursion.
#recursion #programming
https://redd.it/1ph7bdy
@r_cpp
Reddit
[deleted by user] : r/cpp
349K subscribers in the cpp community. Discussions, articles and news about the C++ programming language or programming in C++.
C++26 ends a 40-year footgun
Reading an uninitialized variable has been undefined behavior in C++ for 40 years -- the kind optimizers exploit into real bugs. C++26 (P2795) reclassifies it as erroneous behavior: still a bug, still warned about, but defined, bounded, and not exploitable.
The demo poisons the stack, then reads an uninitialized int. As C++23 it prints garbage; as C++26, the same code prints a defined 0, every run. Live in your browser.
And [[indeterminate\]\] lets you opt back out when you really want an uninitialized buffer -- on purpose this time.
Read it: https://wrocpp.github.io/posts/erroneous-behavior/?utm_source=reddit&utm_medium=social&utm_campaign=post-erroneous-behavior
\#cpp #cplusplus #cpp26 #safety #programming
https://redd.it/1uo5y63
@r_cpp
Reading an uninitialized variable has been undefined behavior in C++ for 40 years -- the kind optimizers exploit into real bugs. C++26 (P2795) reclassifies it as erroneous behavior: still a bug, still warned about, but defined, bounded, and not exploitable.
The demo poisons the stack, then reads an uninitialized int. As C++23 it prints garbage; as C++26, the same code prints a defined 0, every run. Live in your browser.
And [[indeterminate\]\] lets you opt back out when you really want an uninitialized buffer -- on purpose this time.
Read it: https://wrocpp.github.io/posts/erroneous-behavior/?utm_source=reddit&utm_medium=social&utm_campaign=post-erroneous-behavior
\#cpp #cplusplus #cpp26 #safety #programming
https://redd.it/1uo5y63
@r_cpp
wrocpp.github.io
C++26 ends a 40-year footgun: uninitialized reads
Reading an uninitialized variable has been undefined behavior in C++ for four decades, and optimizers have happily exploited it. C++26 (P2795) reclassifies it as erroneous behavior: still a bug, still diagnosed, but with defined, bounded, non-exploitable…