How to Check if your email address is in a data breach ?
You can check if your data has been leaked and put on the dark web from one of the data breaches happened before.
1. https://cybernews.com/personal-data-leak-check/
2. https://monitor.firefox.com/
3. https://haveibeenpwned.com/
If you found that your emails has been pawned or leaked then do this.
- 1. Immediately change password of your mail account
- 2. Add 2fa layer to protect password
- 3. Use one of the best password manager and save your passwords locally encrypted. eg. KeepassXc.
#notes
You can check if your data has been leaked and put on the dark web from one of the data breaches happened before.
Just type your email to check if its information been leaked.
1. https://cybernews.com/personal-data-leak-check/
2. https://monitor.firefox.com/
3. https://haveibeenpwned.com/
If you found that your emails has been pawned or leaked then do this.
- 1. Immediately change password of your mail account
- 2. Add 2fa layer to protect password
- 3. Use one of the best password manager and save your passwords locally encrypted. eg. KeepassXc.
#notes
Cybernews
Personal Data Leak Checker: Your Email & Data - Breached? | CyberNews
Check whether your online credentials have been comprised with our up to date personal data leak checker tool.
A lightweight approach to removing Google web service dependency
pacman -Qs ^ungoo
local/ungoogled-chromium 88.0.4324.150-2
Forwarded from Hacker News
The GPL-Violations.org Project (2016) (Score: 101+ in 13 hours)
Link: https://readhacker.news/s/4EJZx
Comments: https://readhacker.news/c/4EJZx
Link: https://readhacker.news/s/4EJZx
Comments: https://readhacker.news/c/4EJZx
gpl-violations.org
The gpl-violations.org project
The gpl-violations.org project tries to raise public awareness about past and
present infringing use(r)s of GPL licensed software.
The ultimate goal is to make companies engaging in the distribution o
present infringing use(r)s of GPL licensed software.
The ultimate goal is to make companies engaging in the distribution o
Use apt-file search to check broken libraries belongs to which file?
X11 /extensions /Xcomposite.h No such file or directory
http://askubuntu.com/questions/801252/ddg#900768
Whenever a compile fails with a missing file simply leverage the infrastructure to search for the missing ubuntu package
which returns with
this technique works across any missing file
On a fresh OS if you issue
it will fail with error
The program 'apt-file' is currently not installed. To run 'apt-file' please ask your administrator to install the package 'apt-file'
which just means you need to do a one time setup of the local search cache so just run
--Scott Stensland
#notes #fixes
X11 /extensions /Xcomposite.h No such file or directory
http://askubuntu.com/questions/801252/ddg#900768
Whenever a compile fails with a missing file simply leverage the infrastructure to search for the missing ubuntu package
apt-file search some_missing_file_goes_here # cmd 1 apt-file search X11/extensions/Xcomposite.h # cmd 1which returns with
libxcomposite-dev: /usr/include/X11/extensions/Xcomposite.h
so solution is to install that missing packagesudo apt-get install libxcomposite-dev # cmd 2this technique works across any missing file
On a fresh OS if you issue
apt-file search X11/extensions/Xcomposite.h it will fail with error
The program 'apt-file' is currently not installed. To run 'apt-file' please ask your administrator to install the package 'apt-file'
which just means you need to do a one time setup of the local search cache so just run
sudo apt-get install apt-file -y
sudo apt-file update
now re-issue the search shown above (cmd 1) then install package (cmd 2)--Scott Stensland
#notes #fixes
Ask Ubuntu
X11/extensions/Xcomposite.h: No such file or directory
I've tried to compile https://unix.stackexchange.com/a/228674 under Ubuntu.
Unfortunately ending up with following error:
/tmp/find-cursor$ make
cc find-cursor.c -o find-cursor -lX11
find-cursor...
Unfortunately ending up with following error:
/tmp/find-cursor$ make
cc find-cursor.c -o find-cursor -lX11
find-cursor...
How to easily download videos from Youtube as mp3!
This is just a little noscript I made. It's nothing special.
​
Depends on youtube-dl and id3v2
#!/bin/bash
cd ~/Music
read -p 'Link: ' link
read -p 'Title of the song: ' noscript
read -p 'Artist of the song: ' artist
read -p 'Album: ' album
youtube-dl -x --audio-format mp3 --audio-quality 0 -o ~/Music/"$noscript.%(ext)s" $link
id3v2 -t "$noscript" -a "$artist" -A "$album" "$noscript".mp3
tell me what you think about it
https://redd.it/ltnr3a
@r_linux
This is just a little noscript I made. It's nothing special.
​
Depends on youtube-dl and id3v2
#!/bin/bash
cd ~/Music
read -p 'Link: ' link
read -p 'Title of the song: ' noscript
read -p 'Artist of the song: ' artist
read -p 'Album: ' album
youtube-dl -x --audio-format mp3 --audio-quality 0 -o ~/Music/"$noscript.%(ext)s" $link
id3v2 -t "$noscript" -a "$artist" -A "$album" "$noscript".mp3
tell me what you think about it
https://redd.it/ltnr3a
@r_linux
reddit
How to easily download videos from Youtube as mp3!
This is just a little noscript I made. It's nothing special. Depends on youtube-dl and id3v2 #!/bin/bash cd ~/Music read -p...
Forwarded from Deleted Account
Awesome rust stuff:
- TUI File Manager - https://github.com/sayanarijit/xplr
- Neofetch for github projects - https://github.com/o2sh/onefetch
- Shell but in rust - https://github.com/redox-os/ion
- TUI File Manager - https://github.com/sayanarijit/xplr
- Neofetch for github projects - https://github.com/o2sh/onefetch
- Shell but in rust - https://github.com/redox-os/ion
GitHub
GitHub - sayanarijit/xplr: A hackable, minimal, fast TUI file explorer
A hackable, minimal, fast TUI file explorer. Contribute to sayanarijit/xplr development by creating an account on GitHub.
Forwarded from Deleted Account
search rust here https://github.com/fosslife/awesome-ricing
GitHub
GitHub - fosslife/awesome-ricing: A curated list of awesome tools and technology to help you out with ricing on linux
A curated list of awesome tools and technology to help you out with ricing on linux - fosslife/awesome-ricing