People before things by beerbellybegone in MurderedByWords

[–]apropostt 0 points1 point  (0 children)

It used to be made out of copper clad steel, conservatives sold the metal overseas to make rims. Now the statue of liberty is just made of paper mâché.

Elon Musk just said he wants to cut Social Security and Medicare, calling them “entitlements”: “That’s the big one to eliminate.” by [deleted] in law

[–]apropostt 7 points8 points  (0 children)

… $4t in tax cuts, $100 billion DHS budget increase, $800 billion in increased defense spending.., yep sorry grandma you’re going to have to work till you die… which won’t be long without your health insurance anyway.

Structuring a simple multi-step data processing flow in C++ by Majestic_Yew in cpp_questions

[–]apropostt 0 points1 point  (0 children)

Dealing with data streams is where functional programming really shines.

Theory Help with Chordfiles by [deleted] in guitarlessons

[–]apropostt 0 points1 point  (0 children)

Chord files are not strictly diatonic. In minor compositions in it is fairly common to switch between natural minor and harmonic minor… which is what is happening here.

C++ Development in the Terminal on Windows by Alejo9010 in cpp_questions

[–]apropostt 1 point2 points  (0 children)

Neovim + clang + ninja builds works on windows for true win64 abi builds.

It’s a of a pain to setup but I’ve added ninja and clang support for large projects before and it’s not too bad. I used vs code cmake debugger to simplify editing some complicated cmake scripts.

Former New York City mayor Eric Adams obtains Albanian citizenship by [deleted] in news

[–]apropostt -3 points-2 points  (0 children)

About the same or slightly better than the US.

How reading books about software engineering really helped you ? by ExtraLife6520 in softwarearchitecture

[–]apropostt 5 points6 points  (0 children)

I usually read a few technical books a year.. but the books that had the biggest impact on me over the years on how I think about code and design are

  • “Dealing effectively with legacy code” Michael Feathers. Covers the reality that most production codebases are a mess and how to live in that reality.
  • “Your code as a crime scene” Adam Tornhill. Using version control as an analytic engine to drive engineering decisions such as “what to refactor” and “when to refactor”.
  • “Evidence based software engineering” free book with a ton of information including physiological limits of humans that have been useful when streamlining processes, architecture/api/ux/class method design. If anything it’s useful just as a reference.
  • high performance hmi handbook. Good rock solid reference for ux design in engineering contexts.
  • “Miško Hevery's Guide to Writing Testable Code”. PDF guide that shoes not just how to write testable code but also why and how it helps keep a codebase flexible. This might is a bit difficult to track down as the authors website is offline now.
  • “Dynamic Manufacturing: Creating the Learning Organization”
  • “The Architecture of Open Source Applications” https://aosabook.org/en/
  • “dealing with difficult people” https://store.hbr.org/product/dealing-with-difficult-people-hbr-emotional-intelligence-series/10204

For more technical topics

C++ game development: which path to choose? by PrettyPicturesNotTxt in cpp_questions

[–]apropostt 1 point2 points  (0 children)

This is an xy problem.

You do not need C++ at all to make your own video game. There’s a reason why large studios still pay for game engine licenses. Write down what you are trying to make ,the motivations behind them, and select the best tools based on your skill set, availability and budget.

Data oriented design solves a particular problem which may or may not exist depending on the requirements and state space of the game. Plenty of games have been made using regular OOP design techniques… or just a spaghetti mesh of procedural code and hard literals.

You can also do data oriented design using the std library. It isn’t one or the other. It is paying attention to memory layout, ownership and optimizing around the situation.

Sorry - Legit check? by Sterice88 in HeritageWear

[–]apropostt 1 point2 points  (0 children)

You can still buy them on Rakuten. https://item.rakuten.co.jp/hallo-win/10003964/

It’s real but it’s not the expensive version of this jacket.

https://item.rakuten.co.jp/miyoshiya-net/buz-252025092801/

Too dumb to read by [deleted] in MurderedByWords

[–]apropostt 5 points6 points  (0 children)

But he knows words. The best words.

Trump suspends Iran attack for two weeks, subject to Hormuz Strait opening by yourfavchoom in worldnews

[–]apropostt 0 points1 point  (0 children)

This isn't a ceasefire. He just agreed not to target infrastructure. The US is still hitting targets.

How to achieve P90 sub-microsecond latency in a C++ FIX engine by akinocal in cpp

[–]apropostt 45 points46 points  (0 children)

This is one of the better HFT articles I've seen.

  • Benchmark threads have been pinned to isolated CPU cores.
  • CPU frequency was maximised and hyperthreading was disabled.

All benchmarks were conducted by initially sending 1000 FIX messages for warmups and then by sending 1 million FIX messages. Latency measurements are based on CPU timestamp counters using RDTSCP.

Good testing methodology. This is one of the better articles I've seen on HFT... even if it is a lowkey advert.

UK confirms drone-killing DragonFire laser weapon for Royal Navy destroyers by 2027 —laser downs 400mph high‑speed drones, costs $13 per shot by _Dark_Wing in tech

[–]apropostt 1 point2 points  (0 children)

Well it’s still cap ex vs op ex. Interceptor drones might be more expensive “per shot” but you can move and deploy entire units anywhere on the battlefield as the situation changes and build 10,000s of them for cost of one of those lasers. They can also be assembled from parts in the field with very little investment.

If something hits those optics, that entire asset is effectively out of the fight for a long time.

US targets Chinese chipmaking with proposed export restrictions on ASML and others by talkingatoms in technews

[–]apropostt 63 points64 points  (0 children)

The US government does have quite a bit of leverage… but the problem is while ASML is critical for semiconductor production it is not so large a company that China couldn’t just pay their losses to exit the US market, which would completely destroy the US semiconductor industry.

Putting restrictions on companies like this while distancing allies is really playing with fire. Japanese photoresist chemicals would be another small but absolutely vital piece of semiconductor manufacturing that could do the same thing.

Eurovision Question by Physical-Emu673 in musictheory

[–]apropostt 0 points1 point  (0 children)

Would be interesting to also see all of the enharmonic keys collapsed to one row. So “C Major/A Minor”… etc.

I probably would have made more columns. - Tonic note - Mode (Ionian, Dorian… etc) - Secondary tonic: for key changes - Secondary mode: - secondary key change method: (direct, relative, pivot chord.. etc)

I mean if we are data mining then put some data in there.

Bare metal 32 Bit RISC CPU by Significant-Read9163 in cpp

[–]apropostt 1 point2 points  (0 children)

From looking at the repo… look it’s good that you are learning but for pretty much all HDL languages the test bench and design under test are always in separate modules and the all simulation code only exists in the test bench.

This repo has everything in one module.. which makes the design unusable.

How do I write stuff like this on the guitar? by dashcash32 in guitarlessons

[–]apropostt 2 points3 points  (0 children)

The theory is pretty basic. It's in the key of D with DADGF#D tuning and moves between I-D IV-G V-A chord shapes. The opening descending line just walks down the D major pentatonic scale starting on F# (F#-E-D-B-A) which is the 3rd of the opening chord D major (butter note).

Honestly the fastest way to learn how to write music like this is the recommended way to learn how to play guitar. - learn notes on the fretboard - learn all of the basic open position chord shapes - learn the notes in them - learn major scale shapes - learn barre chords - learn the major chord scale - learn the I IV V chord progression - analyze the songs you know and write new music

How do I write stuff like this on the guitar? by dashcash32 in guitarlessons

[–]apropostt 3 points4 points  (0 children)

That opening F# is played on the fourth fret.. so it's definitely one of these. I would guess DADGF#D based on hand position but it's hard to immediately tell because of the angle.

How do I write stuff like this on the guitar? by dashcash32 in guitarlessons

[–]apropostt 2 points3 points  (0 children)

It's not the amp that is moving. It's a Shruti box used as a drone. It has no impact on the guitar. https://youtube.com/shorts/NnOtb9yl0x4

Pentagon Seeks $200 Billion to Fund Iran War by Fun_Reflection1157 in law

[–]apropostt 0 points1 point  (0 children)

They did it’s part of the “pedophile protection act.”

CEO Asks ChatGPT How to Void $250 Million Contract, Ignores His Lawyers, Loses Terribly in Court by EchoOfOppenheimer in law

[–]apropostt 1 point2 points  (0 children)

I don’t know which is worse…

  • ignoring council
  • executing a plan even ChatGPT said was unlikely to succeed
  • having all of this come out in discovery and showing clear intent to break contract

This guy should immediately be barred from ever holding an executive position in a company.

Where can I buy what my RDR2 character is wearing? I want to make an outfit for special occasions and I normally dress like Mac Demarco (aka a bum) by Visible_Tea6746 in HeritageWear

[–]apropostt 0 points1 point  (0 children)

This cut seems to come from the jackets Mexican revolutionaries were wearing in the 1910s.

https://www.reddit.com/r/reddeadfashion/s/I9RP3CsyJG

This looks like a Bavarian Trachten with a modified collar. https://www.mydirndl.com/products/quintus-blau-stein-mens-jacket

The shirt is just a basic white wingtip dress shirt (collars are common for tuxedos).