JavaScript, you so crazy
18.09.2025 22:30 โ ๐ 1 ๐ 0 ๐ฌ 0 ๐ 0@pjb3.bsky.social
CTO of spark.golf, interested in web/mobile dev, Ruby, JavaScript, Sports โณ๏ธ๐๏ธโพ๏ธ๐, Live Music โญ๏ธโก๏ธ๐ชฟ
JavaScript, you so crazy
18.09.2025 22:30 โ ๐ 1 ๐ 0 ๐ฌ 0 ๐ 0๐ I just finished Day 11 of the #100DaysOfSwiftUI at www.hackingwithswift.com/100/swiftui/11 via @twostraws.bsky.social
14.08.2025 11:21 โ ๐ 1 ๐ 0 ๐ฌ 0 ๐ 0๐ I just finished Day 10 of the #100DaysOfSwiftUI at www.hackingwithswift.com/100/swiftui/10 via @twostraws.bsky.social
13.08.2025 23:43 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0๐ I just finished Day 9 of the #100DaysOfSwiftUI at www.hackingwithswift.com/100/swiftui/9 via @twostraws.bsky.social
12.08.2025 18:18 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0๐ I just finished Day 8 of the #100DaysOfSwiftUI at www.hackingwithswift.com/100/swiftui/8 via @twostraws.bsky.social
11.08.2025 19:34 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0๐ I just finished Day 7 of the #100DaysOfSwiftUI at www.hackingwithswift.com/100/swiftui/7 via @twostraws.bsky.social
10.08.2025 11:38 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0๐ I just finished Day 6 of the #100DaysOfSwiftUI at www.hackingwithswift.com/100/swiftui/6 via @twostraws.bsky.social
09.08.2025 18:55 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0Nice, me too!
09.08.2025 01:24 โ ๐ 1 ๐ 0 ๐ฌ 0 ๐ 0๐ I just finished Day 5 of the #100DaysOfSwiftUI at www.hackingwithswift.com/100/swiftui/5 via @twostraws.bsky.social
08.08.2025 12:02 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0๐ I just finished Day 4 of the #100DaysOfSwiftUI at www.hackingwithswift.com/100/swiftui/4 via @twostraws.bsky.social
06.08.2025 12:05 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0๐ I just finished Day 3 of the #100DaysOfSwiftUI at www.hackingwithswift.com/100/swiftui/3 via @twostraws.bsky.social
06.08.2025 01:02 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0๐ I just finished Day 2 of the #100DaysOfSwiftUI at www.hackingwithswift.com/100/swiftui/2 via @twostraws.bsky.social
05.08.2025 13:52 โ ๐ 1 ๐ 0 ๐ฌ 0 ๐ 0๐ I just finished Day 1 of the #100DaysOfSwiftUI at www.hackingwithswift.com/100/swiftui/1 via @twostraws.bsky.social
04.08.2025 00:40 โ ๐ 1 ๐ 0 ๐ฌ 0 ๐ 0The new @cashortrade.org website is great, looks like it is built with @svelte.dev as well ๐๏ธ๐
03.08.2025 21:15 โ ๐ 2 ๐ 0 ๐ฌ 0 ๐ 1I kind of wish there was an operator for that, for example if "<>" weren't already in use as an alias for "!=", that would be cool, but of course we can't make that change for backwards compatibility reasons.
16.07.2025 14:38 โ ๐ 1 ๐ 0 ๐ฌ 0 ๐ 0Today Claude taught me about Postgre's "IS DISTINCT FROM" clause, which is like the normal not equal "!=" except that if one value is null and the other is not, it will return true.
16.07.2025 14:35 โ ๐ 1 ๐ 0 ๐ฌ 1 ๐ 0Using Claude Code is like pair programming with C-3PO ๐ค
03.07.2025 20:49 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0I had to install this to get brackets that match in color based on the level of nesting: plugins.jetbrains.com/plugin/10080...
08.01.2025 14:11 โ ๐ 0 ๐ 0 ๐ฌ 1 ๐ 0Thatโs pretty cool, there is plugin called Rainbow Brackets for JetBrains editors that does something similar
07.01.2025 15:52 โ ๐ 3 ๐ 0 ๐ฌ 1 ๐ 0100% in favor of this, match play with byes: www.nytimes.com/athletic/603...
03.01.2025 20:18 โ ๐ 2 ๐ 0 ๐ฌ 0 ๐ 0100%! I don't know how/why anyone still plays this song.
21.12.2024 01:15 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0The artists feels right but the songs seem wrong
open.spotify.com/wrapped/shar...
I only write methods like that by hand if there is some additional logic to add. For example, User.find_by_email could downcase the argument, skip the query if the argument is blank, etc. If it is just a straight DB query, using the generic API signals there is nothing else going on here.
04.12.2024 11:50 โ ๐ 0 ๐ 0 ๐ฌ 1 ๐ 0To me, using method_missing to dynamically generate these methods seems like something that adds unnecessary โmagicโ to Rails and is a somewhat confusing concept to have to explain to new Rails devs. I donโt see how having the attributes in the method name instead of the arguments adds clarity.
04.12.2024 11:35 โ ๐ 0 ๐ 0 ๐ฌ 1 ๐ 0๐ฏ
25.11.2024 23:55 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0In!
23.11.2024 15:02 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0jQuery has been a like a parent raising a child, teaching them how to behave, but now it's time for them to leave the nest and live on their own: blog.logrocket.com/why-jquery-4...
19.11.2024 16:20 โ ๐ 1 ๐ 0 ๐ฌ 0 ๐ 0Hereโs a suggested rule change to get rid of this trying to draw the defense offsides nonsense: a delay of game on 4th down is loss of down. Teams can still do the hard count, but theyโll have to burn a timeout to do so.
17.11.2024 04:27 โ ๐ 1 ๐ 0 ๐ฌ 0 ๐ 0The tipping point for electric cars is going to be when you can drive them all day and then charge them to 100% full overnight in a standard 110v outlet, just like your phone
15.11.2024 23:47 โ ๐ 2 ๐ 0 ๐ฌ 0 ๐ 0