HN user

assafmo

151 karma

https://github.com/assafmo

Posts26
Comments131
View on HN
assafmo.github.io 7y ago

Hosting your own PPA repository on GitHub

assafmo
3pts0
github.com 7y ago

Show HN: SQLiteQueryServer – Bulk query SQLite database over the network

assafmo
2pts0
github.com 7y ago

Show HN: xioc – Extract IOCs from text, including “escaped” ones

assafmo
2pts0
security.stackexchange.com 7y ago

How do you get a specific .onion address for your hidden service?

assafmo
4pts0
web.archive.org 7y ago

Shipping a New Mindset with SQLite in Windows 10 (2015)

assafmo
2pts0
assafmo.github.io 8y ago

Show HN: Glycemic load calculator

assafmo
68pts44
assafmo.github.io 8y ago

Some more progress and ETA tricks

assafmo
1pts0
github.com 8y ago

Merge multiple pcap files together, gracefully – joincap

assafmo
2pts0
github.com 8y ago

Show HN: Joincap – Merge multiple pcap files together, gracefully

assafmo
1pts0
assafmo.github.io 8y ago

Mounting partitions from a dd image

assafmo
85pts34
assafmo.github.io 8y ago

Working offline with Yarn

assafmo
1pts0
github.com 8y ago

Show HN: Check if an IP is a Tor exit node

assafmo
1pts0
news.ycombinator.com 8y ago

Ask HN: How do you use npm/yarn as a team without an internet connection?

assafmo
1pts0
github.com 8y ago

Show HN: ad7 – Command line downloader from addic7ed.com

assafmo
1pts0
news.ycombinator.com 8y ago

Ask HN: Best way to buy Etheruem for non-US people?

assafmo
3pts1
news.ycombinator.com 8y ago

Ask HN: How reliable is WebMD?

assafmo
13pts5
news.ycombinator.com 8y ago

Ask HN: Looking for local peer discovery solutions

assafmo
1pts2
github.com 8y ago

SQLiteProxy: SQLite over HTTP

assafmo
1pts0
assafmo.github.io 8y ago

Better progress and ETA using the pv command

assafmo
1pts0
assafmo.github.io 8y ago

Better progress and ETA using the pv command

assafmo
2pts0
github.com 9y ago

Show HN: BloomREST – Bloom Filters Over REST API

assafmo
1pts0
github.com 9y ago

Show HN: A Telegram Channel with Only NBA Tweets from ESPN Stats and Info

assafmo
3pts1
github.com 9y ago

Show HN: SQLiteProxy – A Simple HTTP JSON Proxy for SQLite

assafmo
3pts1
assafmo.gitlab.io 9y ago

Show HN: List of available domains

assafmo
7pts1
github.com 9y ago

Show HN: Only NBA Tweets from ESPN Stats & Info

assafmo
2pts1
github.com 9y ago

Show HN: A Chrome extension to extract JSON from the tab's data structures

assafmo
2pts1

the government broke up the monopoly and forced competition into the market by making existing players share infrastructure.

Yeah, this was excellent for 4G prices (I'm paying $8/mo for 40 GB), but now telecom companies are wary of installing 5G infrastructure, because they are forced to share it with other service providers who did not have to invest millions in new 5G infrastructure.

Lately I've started to use Perl instead of sed for replacing text. Its regex support is much better IMO:

  cat a.txt | perl -pe 's/banana-(\d)/papaya-$1/g'
Or in-place:
  perl -i -pe 's/banana-(\d)/papaya-$1/g' a.txt

Personally I like parallel better because of the `--bar` option and `{}`, `{.}`, `{/}` and `{/.}`. And I usually just use it with `-P 1` anyway.

WARP is here 7 years ago

Also for me. Instagram, Facebook, WhatsApp and Google Photos just load forever. Android 8.1.

Weird, pasta is in the database. What happened to you is probably the slowness of the search. The database is loaded entirely to the client and searches are done in memory.

Right now it's pretty jumpy even on high-end hardware. I need to fix this.

Tcpdump Examples 8 years ago

tshark always hogs my RAM and eventually crashes on > 4GB pcaps. I'd love to have a solution for this.

Shell Style Guide 8 years ago

When breaking a pipe into two lines, I find it cleaner to end the first line with pipe instead of backslash. Then I indent the second line. Bash knows a command cannot end with pipe, therefore it's syntactically ok.

E.g.

  cmd1 |
    cmd2
Instead of:
  cmd1 \
    | cmd2

Can't you pay directly for private insurance in the US?

I pay directly to the insurance company. It costs me about 145 usd/month and includes health insurance (with urgent care), long term care insurance, life insurance (about 500k usd) and some more.

I could have done it through my employer, but when I leave for another place I'll have to renegotiate the price with the insurance company, and also this option has less good of coverage IMO. It is cheaper by 70% tough.