HackerTrans
TopNewTrendsCommentsPastAskShowJobs

matan-h

no profile record

Submissions

[untitled]

1 points·by matan-h·4 mesi fa·0 comments

RasS (Rounding-as-a-Service)

github.com
4 points·by matan-h·4 mesi fa·1 comments

Convert Anything,Locally

p2r3.github.io
2 points·by matan-h·5 mesi fa·0 comments

Atime-based unused packages detector for Fedora

codeberg.org
2 points·by matan-h·5 mesi fa·0 comments

Awesome: Logical Programming Language

github.com
2 points·by matan-h·6 mesi fa·0 comments

Ethereal Loop Animations – FOSS abstract animations

ethereal-loop.github.io
1 points·by matan-h·10 mesi fa·0 comments

PhotoSwooper: Dating App for Photos

codeberg.org
1 points·by matan-h·11 mesi fa·0 comments

Transfer – A simple local file server app for Android

github.com
1 points·by matan-h·anno scorso·1 comments

Gimp 3.12 will respect the system color scheme

gitlab.gnome.org
7 points·by matan-h·anno scorso·0 comments

The Ethics of Readme Ads

willmcgugan.github.io
2 points·by matan-h·anno scorso·1 comments

[untitled]

1 points·by matan-h·anno scorso·0 comments

Rust Lifetime Visualizer

github.com
1 points·by matan-h·anno scorso·0 comments

[untitled]

1 points·by matan-h·anno scorso·0 comments

[untitled]

1 points·by matan-h·2 anni fa·0 comments

Splash Colour Format

todepond.com
3 points·by matan-h·2 anni fa·0 comments

[untitled]

1 points·by matan-h·2 anni fa·0 comments

[untitled]

1 points·by matan-h·2 anni fa·0 comments

I created a game to detect the browser history

matan-h.com
1 points·by matan-h·2 anni fa·3 comments

[untitled]

1 points·by matan-h·2 anni fa·0 comments

[untitled]

1 points·by matan-h·2 anni fa·0 comments

comments

matan-h
·2 anni fa·discuss
oh I only checked for very popular sites (here is the list: https://github.com/matan-h/falling-history/blob/main/docs/to...). Also news.ycombinator.com is in the list, so I expected at least that to be in the browser history.
matan-h
·2 anni fa·discuss
aka /sdcard on most phones
matan-h
·2 anni fa·discuss
Apart from the length, what advantages does `[-z $VAR ] && VAR=x` over `if [ ! $VAR ]; then VAR=x fi` ?

Btw, The color script is cool. This makes ANSI sensible.
matan-h
·2 anni fa·discuss
I use this to copy programs from termux.

in termux (you need lld [pkg i lld]):

   mkdir /sdcard/.adb
   cp `which bash` /sdcard/.adb
   cp $(ldd `which bash`|cut -d ">" -f2) /sdcard/.adb
in adb shell:

   cd /data/local/tmp
   cp /sdcard/.adb/bash
   cp /sdcard/.adb/*.so
   LD_LIBRARY_PATH=.
   ./bash
matan-h
·2 anni fa·discuss
I've tried it. nushell works for me only with the "-c" option, otherwise I get "Error: I/O error: Function not implemented (os error 38)". Probably the prompt function
matan-h
·2 anni fa·discuss
yes. (It's not really the 'root' user, but it trusts blindly and can do things such as installing apps without user confirmation.). In my other blog post about gms, the JS bridges would be running in the privileged scope.

You agreed to this in Google's privacy policy when installing Android.
matan-h
·3 anni fa·discuss
Thanks you for fixing it I`ve updated the blog. now my simple rust script is not that helpful :)
matan-h
·3 anni fa·discuss
Gitleaks regexes are fairly accurate. For example, the regex to find a GitHub PAT is "ghp_[0-9a-zA-Z]{36}" which mean it has a specific number (36+4) of characters from specific group (alphabet+number). And I try to filter out the obvious non-secrets (like 'abcd','xxxx' and '1234'). However, as I stated in the article, most of the data is not actionable: most people just revoke the token, use an old one, change some random letters, etc.
matan-h
·3 anni fa·discuss
I agree. I asked for a feature that warn users before they post secrets: https://meta.stackexchange.com/questions/394710/feature-requ...