HackerTrans
TopNewTrendsCommentsPastAskShowJobs

hippich

no profile record

Submissions

Attackers Hijack Trusted AUR Packages to Deliver Rootkit Malware

sonatype.com
3 points·by hippich·28 days ago·0 comments

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

theblock.co
4 points·by hippich·last month·0 comments

Life on Peptides Feels Amazing

nymag.com
4 points·by hippich·4 months ago·0 comments

China tests first megawatt-class flying wind turbine

livescience.com
7 points·by hippich·5 months ago·1 comments

I Take Spam Personally (And how Shopify enables it)

blog.mxroute.com
1 points·by hippich·5 months ago·0 comments

AI is reshaping police detective work, starting with cold cases

axios.com
4 points·by hippich·6 months ago·0 comments

Samsung confirms it will begin showing you advertisements on refrigerator screen

fortune.com
21 points·by hippich·9 months ago·12 comments

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

boundless.com
3 points·by hippich·10 months ago·0 comments

Genius Act Implementation request for comments

federalregister.gov
2 points·by hippich·10 months ago·0 comments

comments

hippich
·9 days ago·discuss
This sounds very foreign to me. Any links to read about it?
hippich
·last month·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
·last month·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
·4 months ago·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
·4 months ago·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
·5 months ago·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
·5 months ago·discuss
State will tax it. And the tax amount from 1M is infinitely bigger than the tax from 0
hippich
·5 months ago·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
·5 months ago·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
·7 months ago·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
·7 months ago·discuss
Afaik, property taxes are due no matter what, at least in Texas.
hippich
·7 months ago·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
·8 months ago·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
·9 months ago·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
·9 months ago·discuss
Thanks!
hippich
·10 months ago·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
·10 months ago·discuss
I am taking specifically about deflationary nature of Bitcoin issuance
hippich
·10 months ago·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
·10 months ago·discuss
Testimonials on the main website are somewhat unusual - https://nuclearplayer.com/
hippich
·9 years ago·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...