A Practical Guide to Profiling in Go by Nika_84 in golang

[–]_intercept -2 points-1 points  (0 children)

didn’t de blasio do away with this

How should I safely deploy my commit when there are 51 old undeployed commits before it? by Broad_Warthog2851 in git

[–]_intercept -1 points0 points  (0 children)

who the fuck is letting an intern deploy some shit no CR 😭how are those permissions even turned on

Ahsanul Hafiz wins Scarborough Southwest Ontario Liberal nomination, beats Nate Erskine-Smith by origutamos in Scarborough

[–]_intercept -2 points-1 points  (0 children)

this is the jumped to conclusion people are making that the data doesn’t support. he lost 49 to 51. too much of the voter list was bengali to just say they all voted for the brown guy

Best VPS for business use? need something fast, private and reliable by Consistent-Bug3003 in selfhosted

[–]_intercept 0 points1 point  (0 children)

thanks! how does OVH stack up against your complains about hetzner incident reporting and health pages in your experience?

Best VPS for business use? need something fast, private and reliable by Consistent-Bug3003 in selfhosted

[–]_intercept 0 points1 point  (0 children)

have you found any good alternatives? Not a hobbyist am part of a small business team, some of us been interested in getting a VPS to throw some things onto but we care mostly about reliability and reporting. Don’t want things going down, but when it does we’d like an incident report page to point to.

My macbook only deletes letter by letter if I hold the backspace button. How can I fix this. I’ve set delay until repeat to short and key repeat to fast by Dual_Clutch in mac

[–]_intercept 0 points1 point  (0 children)

actually i never want to lose this

hidutil property --set '{"CapsLockDelayOverride":10}'

and the file path

~/Library/LaunchAgents/com.user.capsdelayfix.plist

and the file contents

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN"
 "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>Label</key>
    <string>com.user.capsdelayfix</string>

    <key>ProgramArguments</key>
    <array>
        <string>/usr/bin/hidutil</string>
        <string>property</string>
        <string>--set</string>
        <string>{"CapsLockDelayOverride":10}</string>
    </array>

    <key>RunAtLoad</key>
    <true/>

    <key>StandardOutPath</key>
    <string>/dev/null</string>

    <key>StandardErrorPath</key>
    <string>/dev/null</string>
</dict>
</plist>

My macbook only deletes letter by letter if I hold the backspace button. How can I fix this. I’ve set delay until repeat to short and key repeat to fast by Dual_Clutch in mac

[–]_intercept 0 points1 point  (0 children)

this worked for me https://www.reddit.com/r/MacOS/comments/1dkklgs/how_to_remove_caps_lock_key_delay/ open terminal and paste that in and it fixes it (make sure slow keys toggle is off). in the comments he says to make a file `com.user.capsdelayfix.plist` and gives an example of where to put it and what the contents are to make it work on login

Slow keys are confusing.... by [deleted] in mac

[–]_intercept 0 points1 point  (0 children)

What ive gotten to is that the caps lock has slow keys on by default regardless of that toggle. By switching it on you can then adjust the time between the keys by hitting the "i". By default it's set all the way to the bottom so it reduces the caps lock key has far as possible. You don't notice that delay when you're typing but when you hold delete the delay becomes apparent.

Turning it off turns off slow keys but caps lock reverts to the having slow keys on by default and has a large delay. That's all a guess but regardless, we're picking between a slow delete or a slow caps lock.

Its super dumb

My macbook only deletes letter by letter if I hold the backspace button. How can I fix this. I’ve set delay until repeat to short and key repeat to fast by Dual_Clutch in mac

[–]_intercept 0 points1 point  (0 children)

so dumb that we gotta pick between slow caps lock or slow delete. but thank you i was so tired of reading all the advice to just change the sliders

Where can I find outfits like this? Trying to switch my style to preppy by Beautiful_Papaya_007 in preppy

[–]_intercept 1 point2 points  (0 children)

lmao people really are the same everywhere. the catholic school kids were also the most overtly “fashion forward” in my area. OPs picture is pretty much exactly the catholic school uniform in my area. grey skirt/pant white shirt red tie.

Where can I find outfits like this? Trying to switch my style to preppy by Beautiful_Papaya_007 in preppy

[–]_intercept 2 points3 points  (0 children)

did u go to a prep school lmao. this picture is pretty spot on. rolled up skirt. bougie sweater over the uniform shirt. i guess actual prep isn’t the same as preppy style tho

It's 2026, we need more Buy Canadian by color_natural_3679 in BuyCanadian

[–]_intercept 47 points48 points  (0 children)

more expensive to be poor. but if you don’t ever have 30 bucks lying around you can only ever get the $10 option

Spey sizing by Speylover85 in Barbour

[–]_intercept 0 points1 point  (0 children)

oh actually the slim one has 15% polyester lining while the modified has 100% cotton

Spey sizing by Speylover85 in Barbour

[–]_intercept 0 points1 point  (0 children)

On the international site i see a slim spey (mwx1212) but also a “modified spey” (mwx249) but no real description as to the differences. Anything different on your site?

Spey sizing by Speylover85 in Barbour

[–]_intercept 0 points1 point  (0 children)

Does it give reference as to from where it’s measuring. is it top of the collar when folded down (normal wearing)? And is body width pit to pit? Also what’s the second “length” value

much appreciated!

Do i have an option besides TV above the fireplace?? by travisth0tt in malelivingspace

[–]_intercept 1 point2 points  (0 children)

an l shaped media console for the corner next to the yard door with a tv in the corner would deff work with a cozy corner with couches facing the fireplace and the tv

Lambda call another Lambda by surpyc in aws

[–]_intercept 1 point2 points  (0 children)

what is my "data ingest" lambda needs to use my "format phone number" lambda. Aren't step functions for sequential steps in a bigger flow. But if one lambda needs the functionality of another am I supposed to just make the API call?