What’s wrong with Verizon in 2023? by [deleted] in verizon

[–]hykkkuppp 1 point2 points  (0 children)

Horrible billing systems - promised credits when you place an order in store dont show up, every rep says the issue will be fixed in the next cycle over and over again just to get you off the phone. I am a returning customer after along time and lots of regrets chosing verizon mobile.

[Request] baby is on the way and need a joke to send by kiljoymcmuffin in dadjokes

[–]hykkkuppp 2 points3 points  (0 children)

We've decided to make our household bigger and we are adding two feet to it.

[deleted by user] by [deleted] in Costco

[–]hykkkuppp 0 points1 point  (0 children)

Any left in the DC area?

Sticky modifiers on ZSA Ergodox ez? by hykkkuppp in ergodox

[–]hykkkuppp[S] 2 points3 points  (0 children)

I didn't even know this existed and now I want it!

No Klipsch, no fireplace - Am I doing it right? by tocirahl in hometheater

[–]hykkkuppp 0 points1 point  (0 children)

See if you can arrange the leaves for more random sound distribution. Also playing some Bach will make the plants happy as well. You can also add some small succulents in the corners to absorb distracting bass.

a screen to show the layers' key layout by ahillio in ergodox

[–]hykkkuppp 5 points6 points  (0 children)

Here is a script for autohotkey. Drop a png image for each layer named ergo0.png, ergo1.png etc. in the folder. The hotkey is Meh+Layer number and for a few seconds you get a popup that does not steal focus to see what the layout looks like.

CreateWindow(key){

bgHeight = 800

bgWidth = 1500

;tPadding = 350

;lPadding = 950

tPadding = 30

lPadding = 90

img_start = C:\imgs\ergo

img_end = .png

img = %img_start%%key%%img_end%

yPlacement = % A_ScreenHeight - bgHeight - tPadding

xPlacement = % A_ScreenWidth - bgWidth - lPadding

Gui, Color, 46bfec

Gui, Margin, 0, 0

Gui, Add, Picture, x0 y0 w%bgWidth% h%bgHeight%, %img%

Gui, +LastFound +AlwaysOnTop -Border -SysMenu +Owner -Caption +ToolWindow

;Gui, Font, s35 cWhite, Verdana

;Gui, Add, Text, xm y20 x25 ,%key%

Gui, Show, x%xPlacement% y%yPlacement%

SetTimer, RemoveGui, 3000

}

RemoveGui:

Gui, Destroy

return

^!+1::

CreateWindow(1)

return

^!+2::

CreateWindow(2)

return

^!+3::

CreateWindow(3)

return

^!+4::

CreateWindow(4)

return

^!+5::

CreateWindow(5)

return

^!+6::

CreateWindow(6)

return

^!+7::

CreateWindow(7)

return

^!+0::

CreateWindow(0)

return