HackerTrans
TopNewTrendsCommentsPastAskShowJobs

hippich

no profile record

Submissions

Attackers Hijack Trusted AUR Packages to Deliver Rootkit Malware

sonatype.com
3 points·by hippich·hace 28 días·0 comments

NY judge stays lawsuit seeking ownership of nearly 40k Bitcoin wallets

theblock.co
4 points·by hippich·el mes pasado·0 comments

Life on Peptides Feels Amazing

nymag.com
4 points·by hippich·hace 4 meses·0 comments

China tests first megawatt-class flying wind turbine

livescience.com
7 points·by hippich·hace 5 meses·1 comments

I Take Spam Personally (And how Shopify enables it)

blog.mxroute.com
1 points·by hippich·hace 5 meses·0 comments

AI is reshaping police detective work, starting with cold cases

axios.com
4 points·by hippich·hace 6 meses·0 comments

Samsung confirms it will begin showing you advertisements on refrigerator screen

fortune.com
21 points·by hippich·hace 9 meses·12 comments

U.S. State Department Introduces $1 Fee for Diversity Visa Lottery Registration

boundless.com
3 points·by hippich·hace 10 meses·0 comments

Genius Act Implementation request for comments

federalregister.gov
2 points·by hippich·hace 10 meses·0 comments

comments

hippich
·hace 9 días·discuss
This sounds very foreign to me. Any links to read about it?
hippich
·el mes pasado·discuss
When you say "short circuit" - is this when wires get hit and make and burn, or this is reference to some other stuff?
hippich
·el mes pasado·discuss
This is actually something I was always confused about. If nothing interesting happens as we get old, it should be boring and as result, slow slog. Yet it feels like time accelerates as I get older.
hippich
·hace 4 meses·discuss
Some _fun_ stuff i "coded" in a day each just in last couple weeks:

https://hippich.github.io/minesweeper/ - no idea why but i had a couple weeks desire to play minesweeper. at some point i wanted to get a way to quickly estimate probability of the mine presence in each cell.. No problem - copilot coded both minesweeper and then added probabilities (hidden behind "Learn" checkbox) - Bonus, my wife now plays game "made" by me and not some random version from Play store.

another one made in a day - https://hippich.github.io/OpenCamber - I am putting together old car, so will need to align wheels on it at some point. There is Gyraline, but it is iOS only (I think because precision is not good enough on Android?). And it is not free. I have no idea how well it will work in practice, but I can try it, because the cost of trying it is so low now!

yes, both of these are not serious and fun projects. unlikely to have any impact. but it is _fun_! =)
hippich
·hace 4 meses·discuss
Please also recognize when others don't really want to talk. Not everybody want to go beyond cultural niceties of a smile and "hi, how you doing". I don't want to be a jerk, but I also don't like to talk to random strangers.
hippich
·hace 5 meses·discuss
Are there similar solutions without 3d view? I want to get a simulator that can show me what is going in the circuit, ideally slowed down a lot. For example I was making a dongle with resistor and capacitor which was delivering a pulse-short (i.e. removing power for a short period of time instead of delivering an impulse) and while I was able to confirm overall idea with some online simulator, dialing in capacitance and resistance required physically switching components. Ideally I want to be able simulate such transient effects and arrive at specific numbers ready to be soldered.

And I want it to be free/open-sourse ideally :)
hippich
·hace 5 meses·discuss
State will tax it. And the tax amount from 1M is infinitely bigger than the tax from 0
hippich
·hace 5 meses·discuss
Is it hard as in:

1) we know what to do, but it is expensive

2) we don't know what to do exactly, but many more people involved can increase search speed, so just need more people

3) it is purely sequential problem, and therefore it takes a lot of time
hippich
·hace 5 meses·discuss
Rapid muscles loss, unless you are careful and managing it. In my case muscle loss led to increase, not decrease, of the lower back pain related to the crack in one of the vertebrae there. I believe that loss of core muscles increased load on the spine and caused pain. Once I started doing core exercises and cut down on dosage, pain returned back to pre glp1
hippich
·hace 7 meses·discuss
One thing that stopped me from seeking the vanity plate - I learned that at least in Texas all plates are made by minimally paid prisoners. So any desire to finance that system beyond what's absolute possible minimum (i.e. regular plates) evaporated.
hippich
·hace 7 meses·discuss
Afaik, property taxes are due no matter what, at least in Texas.
hippich
·hace 7 meses·discuss
It appears to me that majority of the article is about (unregulated) leveraged trading, with perps being an instrument to get leverage. I seen similar stories of blowing up outside us in forex market, for example, where no one were talking about futures, it was just 100x leverage that was biting many (most?) traders.
hippich
·hace 8 meses·discuss
Just to counter some anecdata here - doing glp-1 for quite some time for weight loss. It works for me for that specific purpose. But I noticed no effect on mood or addictive aspects. But it appears to lower my alcohol tolerance, so I drink less of it. Ymmv
hippich
·hace 9 meses·discuss
> You can’t always change how you feel, but you can always decide what to do next.

Unfortunately, in my experience, how I feel does affect what I decide to do (or not do) next. But I certainly like to think I have agency, so there is that..
hippich
·hace 9 meses·discuss
Thanks!
hippich
·hace 10 meses·discuss
Recently I was looking for solution to have multiple VPN running at the same time, and without work profile I am limited to one. I want to run two (or more) and be able to tell which app uses no VPN, which routes through vpn1, which routes through vpn1, etc. so far it looks like I need multiple profiles, and that requires root, which Google actively discourages.

Maybe someone knows better alternatives?
hippich
·hace 10 meses·discuss
I am taking specifically about deflationary nature of Bitcoin issuance
hippich
·hace 10 meses·discuss
I think the difference here is that Bitcoin is predictable deflationary vs fiat being unpredictable. If you can know in advance the rate, it becomes sorta like an investment vehicle, where instead of dividends you get appreciation of the assets.

To look at it another way - why one would spend $100 from their brokerage account if they know a year later they can spend $110?
hippich
·hace 10 meses·discuss
Testimonials on the main website are somewhat unusual - https://nuclearplayer.com/
hippich
·hace 9 años·discuss
As a general rule do not use `this.react` inside `setState({ ... })` - this will cause you problems eventually due state updates being async.

If you need to use state to set new state, use functional callback instead - https://facebook.github.io/react/docs/react-component.html#s...