Their model numbers are a bit confusing but I'll definitely take a look. Currently have a foldable WalkingPad and it's just okay. Some aspects are great but I've had some issues, probably will replace at some point.
30.07.2025 21:31 โ ๐ 1 ๐ 0 ๐ฌ 1 ๐ 0
I already use tmux but I'm so impressed by @alexandersix.com 's slides in his Laracon presentation!
30.07.2025 17:27 โ ๐ 2 ๐ 0 ๐ฌ 0 ๐ 0
The open source team has style.
30.07.2025 16:49 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0
The devs sending the requests were not reporting they were being rejected. The process was automated so I'm guessing they weren't able to check their logs.
30.07.2025 00:36 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0
I signed up for @laravel.com Nightwatch and it found a problematic route immediately.
30.07.2025 00:36 โ ๐ 0 ๐ 0 ๐ฌ 1 ๐ 0
Is it okay to fork the forks? ๐ค
28.07.2025 21:53 โ ๐ 0 ๐ 0 ๐ฌ 1 ๐ 0
This type of pizza seems delicious yet dangerous
28.07.2025 01:09 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0
Are the pizzas strongly typed? ๐
27.07.2025 23:13 โ ๐ 1 ๐ 0 ๐ฌ 1 ๐ 0
Seems to me Laravel Job attempts that fail due to timeouts (whether `failOnTimeout` is true or not) are treated differently than other failures. The job will not immediately be retried, only after the `retry_after` duration has been reached on the queue connection level.
Is that correct?
27.07.2025 17:32 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0
Had a similar situation where it ended up being a me problem after I asked "hey did you guys change something on the server yesterday?"
Nope, I changed something yesterday.
17.06.2025 01:24 โ ๐ 1 ๐ 0 ๐ฌ 0 ๐ 0
I realized recently that I missed a Laravel stream of yours! Have a good trip!
08.06.2025 20:37 โ ๐ 1 ๐ 0 ๐ฌ 0 ๐ 0
I can't tell if my recent thought, "We need a client-side in-memory graph database," is a sign of genius or losing control.
07.06.2025 00:20 โ ๐ 1 ๐ 0 ๐ฌ 0 ๐ 0
I already liked the editing in your normal project videos and this was even better. Great summary and cool projects
04.06.2025 01:32 โ ๐ 1 ๐ 0 ๐ฌ 1 ๐ 0
Ternary operations in TypeScript code making two diagonal lines
Sometimes the shape of code catches your eye.
02.05.2025 14:37 โ ๐ 4 ๐ 0 ๐ฌ 1 ๐ 0
That default delay and lack of ability to turn off mouse acceleration (without third party software) was a huge, and surprising, pain point.
05.03.2025 21:23 โ ๐ 1 ๐ 0 ๐ฌ 0 ๐ 0
Sail and docker
04.03.2025 21:32 โ ๐ 2 ๐ 0 ๐ฌ 0 ๐ 0
Sounds complicated but luckily for baristas you draw excellent diagrams! ๐
19.01.2025 23:20 โ ๐ 2 ๐ 0 ๐ฌ 0 ๐ 0
The import syntax comes to mind. Maybe the equivalent of JS destructuring or tuple unpacking. I'd do a lot more googling if I didn't have IDE auto suggestions.
19.01.2025 18:42 โ ๐ 2 ๐ 0 ๐ฌ 0 ๐ 0
I found the Laravel Sail experience (that uses Docker) on Windows is pretty good. I had trouble with Herd, some PHP and Linux parts don't seem to be available on Windows. (Couldn't run Horizon).
18.01.2025 16:43 โ ๐ 1 ๐ 0 ๐ฌ 1 ๐ 0
Thought it was a great episode. I learned a few things and I'm excited for Filament 4.
25.12.2024 21:40 โ ๐ 1 ๐ 0 ๐ฌ 1 ๐ 0
Trying to hire people smarter than you is a fascinating exercise
12.11.2024 01:50 โ ๐ 2 ๐ 0 ๐ฌ 0 ๐ 0
Were the plans for tonight have to have snacks and now it's snackless-sunday? ๐ค
10.11.2024 21:25 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0
laravel has this "toOthers" method that literally broadcasts an event to everyone except the user who triggered it. ๐คค are you kidding me? laravel, you're the GOATโฆ ๐
04.11.2024 21:55 โ ๐ 57 ๐ 6 ๐ฌ 1 ๐ 2
That is amazing to hear.
05.11.2024 02:05 โ ๐ 1 ๐ 0 ๐ฌ 0 ๐ 0
Well this looks pretty sweet.
I also see that markdown you got there ๐
05.11.2024 02:02 โ ๐ 1 ๐ 0 ๐ฌ 1 ๐ 0
// Quickly define your breadcrumbs inline with routes
Route::get('/', HomeController::class)
->name('home')
->breadcrumb('Home');
Route::get('/profile', ProfileController::class)
->name('profile')
->breadcrumb('My Profile', parent: 'home');
// Gretel happily works with resourceful routes, too!
Route::resource('keyboards', KeyboardController::class)
->breadcrumbs([
'index' => 'My Keyboards',
'create' => 'Add a Keyboard',
'show' => fn(Keyboard $kb) => $kb->title,
'edit' => 'Update Keyboard',
]);
One of the APIs I'm most happy with is in [Gretel](github.com/glhd/gretel) โย defining breadcrumbs right next to your routes is *so nice.*
Adding a route? Just chain the breadcrumb on. Removing one? Just remove the whole block, and the breadcrumb config is gone, too!
04.11.2024 21:58 โ ๐ 32 ๐ 3 ๐ฌ 4 ๐ 0
If you ever had to downsize from the loss of a client or project (i.e. it finished), how did you go about it? The mechanics and communication.
04.11.2024 22:14 โ ๐ 1 ๐ 0 ๐ฌ 0 ๐ 0
Love Factorio! Looking forward to playing it with the expansion, but not for some time.
03.11.2024 01:38 โ ๐ 1 ๐ 0 ๐ฌ 0 ๐ 0
If you sell any type of B2B software, jumping on a call with a customer is the number one way to get great feedback and build relationships. I know as developers we hate that, but it works.
31.10.2024 19:17 โ ๐ 60 ๐ 7 ๐ฌ 10 ๐ 1
Coder. FOSS lover. Breaker of things.
https://bashbunni.dev
https://www.youtube.com/bashbunni
https://github.com/bashbunni
Delivered effective, efficient, and secure digital services for the American people until we were forced to stop on March 1, 2025. Not an official government account. Reposts are not endorsements. Our new website: https://18f.org/ #AltGov
swe | #100Devs stream team | http://twitch.tv/helloitsrufio | ts, node.js, react | she/her | views my own
YouTuber, Software Engineer, now sharing game dev projects :)
https://www.youtube.com/@RachelfTech
๐ณ๏ธโ๐ ๐ป ๐ฎ
Software Developer (Python, Javascript, ...) 100Devs
Girldad of 2
Army veteran
Curious mind - always building, always learning
https://github.com/RyanKHawkins
Screw the rules, I have green hair | ๐จ๐ณ +๐ฉ๐ช SF Bay native | tech ร design ร art ร psych | ex-engineer at Patreon, Microsoft, Honor | NYU ITP, CMU HCI educated
Big feathery anti-entropy machine. Software engineer + general maker, always curious about everything
Egg Harbor, USA | benhol.men
Rust dev, Electronics engineer, Author, Rust library team lead, ADHD, Polyamorous, Lesbian, She/Her
Senior Data Engineer and teacher with 100Devs. Let's remove barriers to tech education for those who need it most. Catch me on Twitch at twitch.tv/mayanwolfe!
Accessibility engineer, former rehab therapist.
Your accessibility BFF ๐ง๐พโโ๏ธโฅ๏ธ
Join the Web A11y Study Group!
YouTube.com/africakenyah
Doggos, hypermedia, and core team at @laravel.com
https://tim.macdonald.au
Independent Clojure Consultant. Aspiring Blonde Bombshell.
Posts about Software Dev, Clojure, & Functional Programming
Twitch: twitch.tv/janetacarr
Course: clojureforpros.com
Clojure blog: blog.janetacarr.com
Freelance Blog: fixedrate.dev
Minister (priest) in the Episcopal Church (๐ณ๏ธโ๐๐ณ๏ธโโง๏ธโค๏ธ), creator of the Leptos web framework for Rust (github.com/leptos-rs/leptos) and of venite.app
Indie developer and educator. Blogging at http://joshwcomeau.com.
Previously at DigitalOcean, Khan Academy. Taught at Concordia Bootcamps.
He/Him ๐
Inequality Economist, former trader and author of The Trading Game. Other Economists make predictions, but my ones are actually right.
tech but make it chic ๐ฉ๐ฝโ๐ป๐
๐ฝ ๐
software engineer ๐
women in stem advocate
books, travel, fitness ๐คธ๐ฝโโ๏ธ
SWE | I make things on the web โ๏ธ๐
@larkfromtwitch
๐ค Chronic over-thinker & ruminator
๐ค #php #laravel
๐คฉ Founder of Larabelles
๐ค Public speaker