Hacker Newsnew | past | comments | ask | show | jobs | submit | more gabrielsroka's commentslogin

I understand your frustration.

You can't change the past, and you can't control how companies interview. Focus on what you can control.



2017


Muzik Magazine


They have an implementation for .net https://jsonquerylang.org/implementations/#net


Interesting. But looks like it require JSON object. My query language works on top of Linq so it make it compatible with ORMs, IEnumerable and IQueryable.


2016



> You don't pay taxes on [IRA]

I'm pretty sure you do--now, or later.


Yeah, I'd meant to say "You don't pay taxes on that money (now)" -- so it's nice to see a lower tax bill. And when you do finally pay some taxes (in retirement), your tax rate should be much, much lower...


Years ago, I wrote a very stripped-down version in a few lines of PowerShell. I'll upload it when I get home.


I did the same just a few days ago based on webcam, 26 lines of PowerShell.

See https://gist.github.com/lostmsu/cde4a8578d8e0ea1182f579f44bd...


my minimal powershell code

    $old = -1
    while ($true) {
        $d = Get-Date
        $hour = $d.Hour
        if ($hour -ge 6 -and $hour -lt 19) {
            $light = 1
        } else {
            $light = 0
        }
        if ($old -ne $light) {
            Set-ItemProperty HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize AppsUseLightTheme $light
            $old = $light
            echo $light $d
        }
        sleep -Seconds 2
    }



Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: