July 23 '24 @ 01:02
Arcade cabinet upgrade in progress
July 04 '24 @ 19:03
May 01 '24 @ 21:49
This was a few weeks ago at Faction Brewery in Alameda with a great view on San Francisco.
April 11 '24 @ 14:13
Collective code ownership is extremely important.
You can't keep blaming the previous owners of the code for all the problems you still have after months of work. It is your codebase now, your whole team is responsible for its strengths as well as its weaknesses.
Fix the stuff you see being problematic even if you have not written it. It will only get worse if you don't or if you wait for being given permission.
April 08 '24 @ 04:08
March 17 '24 @ 17:54
March 17 '24 @ 17:51
Somewhere between a quarter and a fifth of your team should be refactoring at all times.
Seriously, not kidding.
March 09 '24 @ 20:21
Weekend in Arizona!
March 04 '24 @ 17:09
December 01 '23 @ 02:42
Behold! My new cooking partner!
November 29 '23 @ 02:30
More than my upgrade to an M3 MacBook Pro.
November 29 '23 @ 02:29
I ordered a counter top oven and I’m soooo excited to receive it on Thursday just when I return from a trip to San Francisco!
November 26 '23 @ 13:58
November 04 '23 @ 20:24
Learning Godot.
So far it's pretty good. I really appreciated to see that the UI can be scaled to support high DPI displays.
It seems rare these days to find cross-platform applications with this built-in.
October 15 '23 @ 13:49
October 15 '23 @ 13:38
October 02 '23 @ 16:13
September 07 '23 @ 23:15
Giving VeraCrypt a shot. Let's hope it works well enough on my Linux, MacOS and Windows boxes!
August 31 '23 @ 02:06
Back at the Barrel Room in San Francisco’s business district. My favorite place when I just want to walk.
August 29 '23 @ 01:35
Scammers Abusing ExTwitter’s Fake ‘Verification’ Program To Prey On Angry Consumers
Those are fun times!
August 21 '23 @ 03:45
So I made galettes with flour imported from Brittany that I found on Amazon. Well I’m happy to announce I was finally able to make something that tastes like home!
August 07 '23 @ 15:16
This allows relative imports for files in the same folder only, requires absolute imports for other cases.
This will detect cycles across folder boundaries, not individual files. So you can have cycles within a folder, but not across the folder boundaries.
A/a -> A/b -> A/a is fine.
A/a -> B/a
B/b -> A/a is not fine.
That is assuming you organize your code by features (vertical slices), not horizontal slices.
Which you should be doing anyway.
August 07 '23 @ 15:13
Implemented cyclic dependency checks for Dart/Flutter projects -
https://github.com/dam5s/disk_space_usage/blob/main/scripts/check_import_cycles.dart
Integrated into the build for now, hopefully a linter extension later -
https://github.com/dam5s/disk_space_usage/blob/main/Makefile
August 06 '23 @ 18:25
Websites that wobble horizontally on mobile are sooooo unprofessional, and there is so many of them.
August 06 '23 @ 16:01
A typical example of cyclic dependencies when using ORMs would be to introduce a bunch of one-to-many dependencies in your User/Account record.
Those dependencies do not exist in your database, you now introduced a cycle and you will have to get rid of it before being able to extract this slice of your application.
August 06 '23 @ 15:57
A common example: you built an app that became popular.
This could be a backend or a mobile app, the same principles apply.
You now want to build another app and leverage your existing user base.
You want to extract account/user management.
If you have cyclic dependencies in the related code, extracting a backend service/mobile library for this feature set can be extremely tedious.
This has nothing to do with putting controllers in a folder, domain models in another.
August 06 '23 @ 15:52
Seems a lot of people conflate architecture and splitting an application into horizontal layers (Models, Controllers, Domain, Presentation...).
Architecture is actually more about defining vertical slices of your application.
That is separating features and domain concepts into groups that do not create dependency cycles.
You can have an app with well defined horizontal layers, but when you need to extract a vertical slice of the application it’s a nightmare because of cyclic dependencies.
August 02 '23 @ 18:33
Code comments