Search
74 results for “ryguw”
-
[#rediffusion] Petit partage improvisé depuis mon salon : Jean-Sébastien Bach, Courante de la 2e suite https://www.youtube.com/watch?v=q3CSa_R8Guw Merci d'avance pour vos vues / likes / abonnements / partages ! #musique #musiqueClassique #classicalMusic #music #myWork #Bach #alto #viola 😍🙏🎶🎻 @music
-
#Ante, a new language that reminds me of #Rust and #Python, looks fun to use: https://antelang.org/docs/language/
-
Railways to run 62 Holi special trains from March 1–22 linking Delhi, UP and Bihar https://english.mathrubhumi.com/news/india/holi-special-trains-ner-2026-ryuw5j33?utm_source=dlvr.it&utm_medium=mastodon #HoliSpecialTrains #IndianRailways #NorthEasternRailway #Gorakhpur
-
Railways to run 62 Holi special trains from March 1–22 linking Delhi, UP and Bihar https://english.mathrubhumi.com/news/india/holi-special-trains-ner-2026-ryuw5j33?utm_source=dlvr.it&utm_medium=mastodon #HoliSpecialTrains #IndianRailways #NorthEasternRailway #Gorakhpur
-
Railways to run 62 Holi special trains from March 1–22 linking Delhi, UP and Bihar https://english.mathrubhumi.com/news/india/holi-special-trains-ner-2026-ryuw5j33?utm_source=dlvr.it&utm_medium=mastodon #HoliSpecialTrains #IndianRailways #NorthEasternRailway #Gorakhpur
-
Railways to run 62 Holi special trains from March 1–22 linking Delhi, UP and Bihar https://english.mathrubhumi.com/news/india/holi-special-trains-ner-2026-ryuw5j33?utm_source=dlvr.it&utm_medium=mastodon #HoliSpecialTrains #IndianRailways #NorthEasternRailway #Gorakhpur
-
Nim is like Python on steroids. Crystal is like Ruby on steroids. Which one is suited for competitive programming involving data structures like doubly linked lists? And which language is best for multi-core parallelism? Would love to hear opinions.
#nim #crystal #python #ruby #golang #rust #parallelism #concurrency #competitiveprogramming #leetcode
-
Important #Golang changes coming up in #Go 1.22: No need to shadow loop variables anymore. Range over integers. Profile-guided optimization #PGO can make your production binaries 14% faster.
Read more: https://antonz.org/go-1-22/
-
I took my 'Flow State' track—the one for focus and calm and did the opposite. It's now a liquid drum and bass remix.
If you fancy hearing what happens when focus music gets a bit more energetic, the teaser is here. Full track coming soon.
https://youtube.com/shorts/ryGwqDBEoAY?feature=share
#LiquidDnB #DrumandBass #AarDHD #FlowState #Remix #ADHDMusic
-
While I don't think code reviews are all bad and waste of time, I do think some are bad or partial waste of time. There are effective alternatives to those weeks-long PR reviews, worth exploring imo.
-
Simplicity means sacrifice.
More: https://lukeplant.me.uk/blog/posts/no-one-actually-wants-simplicity/
-
One does not simply force the pendulum to swing back to #unsafe #dynamically typed #scripting languages
-
Being able to use all cores with ease in #Go, has taught me that not all problems can be parallelized. In fact, only few algorithms are concurrent, and CPU-bound. CPU caches, instruction sets, and single-core #performance is still very relevant.
-
To me this HN thread is pure gold. When I first discovered Dynamic Programming (DP) in Python with the @cache decorator quite late actually, it looked like magic to me. I could not find as much wisdom on it (top search results are all leetcode tutorials) but once again @hn_discussions fill that gap. Will dive deeper into the topic of generative recursion.
#hackernews #dynamicprogramming #dynamic #recursion #python
🧵 HN thread: https://news.ycombinator.com/item?id=38988948
-
Let me just say this, many languages exist that are better suited for code golfing than Go 🤣 #adventofcode2023 #aoc2023 #golang #codegolfing
-
2) Python Standard Library: #Python #stdlib comes with batteries included, that means even though there are several ways to do something, in specific cases using a certain stdlib function like `chain()` will be the fastest. Or not, like when cloning a 2d list it's faster to `copy()` manually in a loop than to pickle-unpickle
-
2) Python Standard Library: #Python #stdlib comes with batteries included, that means even though there are several ways to do something, in specific cases using a certain stdlib function like `chain()` will be the fastest. Or not, like when cloning a 2d list it's faster to `copy()` manually in a loop than to pickle-unpickle
-
2) Python Standard Library: #Python #stdlib comes with batteries included, that means even though there are several ways to do something, in specific cases using a certain stdlib function like `chain()` will be the fastest. Or not, like when cloning a 2d list it's faster to `copy()` manually in a loop than to pickle-unpickle
-
2) Python Standard Library: #Python #stdlib comes with batteries included, that means even though there are several ways to do something, in specific cases using a certain stdlib function like `chain()` will be the fastest. Or not, like when cloning a 2d list it's faster to `copy()` manually in a loop than to pickle-unpickle
-
2) Python Standard Library: #Python #stdlib comes with batteries included, that means even though there are several ways to do something, in specific cases using a certain stdlib function like `chain()` will be the fastest. Or not, like when cloning a 2d list it's faster to `copy()` manually in a loop than to pickle-unpickle
-
Suddenly Bun has become much, much more interesting as a longterm Node.js competitor. Dropping Zig for Rust is a bold but ultimately wise move, in their specific case.
-
#Retina #HiDPI #P3 #WideGamut screens transformed the way we perceive digital content forever. Crisp texts, vivid colors, deep blacks.
I do miss the years when I could look at a screen, and deeply appreciate how artists designed the way their pixels bridged the gap between an imagined world and the real world. Elegant pixel fonts, smooth dithering, skeuomorphic art. Ah the #nostalgia
-
I made a tiny decision to become master in Python this year, instead of learning Go or Nim or Elixir. Not because of AI. Though being able to code in Python fluently does indeed open up new career opportunities. But primarily because of its maturity, versatility, and Rust/C interoperability. Still interested in any language that pushes the boundaries of developer productivity in any dimension. You’ll read more about Python here in the future, from a #newb perspective!
-
Managed to reduce the exec time for 2023 day 23 part 2 from 513 seconds (~8.5 mins) to a stellar 0.310 seconds. Looking back at my commits these were the biggest leaps:
- By far the biggest leap: Shrink unique nodes to <= 64, then instead of a map simply use a `uint64` bitmask for boolean lookups (visited or not). Saves a lot of map accesses & assignments
- Prefer `int` when doing most calculations and comparisons, seems super optimized in the Go runtime -
That said, running the exact squeezed single-core-optimized algorithm, but for multiple inputs on multiple cores simultaneously with 5 lines of code, feels absolutely awesome! 😎
-
With this, I shall have Fearless Concurrency in Go!
-
https://www.minenest.com/281446/ I Survived 100 Days as TOOTHLESS in Minecraft #100DayToothless #academy #FamilyFriendly #HowToTrainYourDragon #ISurvived100DaysAsTOOTHLESSInMinecraft #kid #KidFriendly #kids #Minecraft #Minecraft100Days #MinecraftAcademy #MinecraftCustomMap #MinecraftCustomMod #MinecraftMod #MinecraftMods #MinecraftRoleplay #MinecraftVideos #NoCursing #NoSwearing #Playthrough #ryguyrocky #Ryguyrocky100 #school #spotlight #Toothless