Ask HN: What apps have you created for your own use?
721–730 of 793 posts
Re: Ask HN: What apps have you created for your own use?
#722Re: Ask HN: What apps have you created for your own use?
#723If you're interested: https://pylaunch.com
Re: Ask HN: What apps have you created for your own use?
#724https://gitlab.com/WRFpcT/surface-tools
filcker-fix (ahk): fix top line flicker bug of SB1 and SB2.
cursor-keys (ahk): maps right shift + cursor to home, end, pgup, pgdown
event-filter (java): get event logs in useful text format
Re: Ask HN: What apps have you created for your own use?
#725Re: Ask HN: What apps have you created for your own use?
#726in case you want to check (only osx):
Re: Ask HN: What apps have you created for your own use?
#727 $connected = $false
while($true)
{
if (-not $connected)
{
$connected = Test-Connection www.google.com -Quiet
}
else
{
Write-Host "Connected"
[console]::beep(1000, 500)
}
Start-Sleep -Seconds 2
}Re: Ask HN: What apps have you created for your own use?
#728Fun topic! These days I build everything for myself, then publish and see if someone else is interested (mostly not :-) First thing I built, when I started doing full-stack stuff: https://pushdata.io It's a super simple time series data storage. You don't even have to register an account, just do "curl -X POST https://pushdata.io/youremail@yourdomain.com/temperature/47 " and you've stored your first value. I use it a…
Nice, with pushdata, do you check if someone uses the same GMail account using GMail's "plus" and "dots" [0] features? (E.g. given bob@gmail.com, then bob+anything@gmail.com, b.ob@gmail.com, bo.b@gmail.com, b.o.b@gmail.com etc are all valid and points to the same address.) 0. https://gmail.googleblog.com/2008/03/2-hidden-ways-to-get-mo...
Have to add also that the "plus feature" isn't a Gmail-specific invention but a standardized way of referring to the same mailbox using different addresses. But some email providers don't support this feature, and many input validators out on the Internet don't either.
Re: Ask HN: What apps have you created for your own use?
#729Re: Ask HN: What apps have you created for your own use?
#730It uses the Marvel API so it's not monetizable and it's hard to get motivated to run a money-losing project. I've reconsidered modernizing it and opening it up now that I have more disposable income for hosting.