NeoLAB – Telegram
NeoLAB
33 subscribers
150 photos
29 videos
94 files
335 links
Lab of @neo_is_kal

🐧 | @ArchLinuxIndia
🐚 | @PrivacyToolsIOChat
🍬 | @FossMemes

This is a Journal + Shrine of links
Website: https://neovoid.is-cool.dev
Download Telegram
This media is not supported in your browser
VIEW IN TELEGRAM
Grim reaper
A
cute reaper from a series of figurines with many simple but interesting details 🤗
2
# Some libinput basics from gentoo wiki
For fixing touchpad #issues.

## Adding tap-to-click
Section "InputClass"
Identifier "libinput touchpad catchall"
MatchIsTouchpad "on"
MatchDevicePath "/dev/input/event*"
Option "Tapping" "True"
Option "TappingDrag" "True"
Driver "libinput"
EndSection

## Touchpad natural scrolling

Section "InputClass"
Identifier "libinput touchpad catchall"
MatchIsTouchpad "on"
MatchDevicePath "/dev/input/event*"
Option "NaturalScrolling" "True"
Driver "libinput"
EndSection

FILE
/etc/X11/xorg.conf.d/40-libinput.conf

Source: https://wiki.gentoo.org/wiki/Libinput
🔥3
Another priceless gem from mypustak.com
You don't need to spend several $𝟭𝟬𝟬𝟬𝘀 to learn Data Science.

Stanford University, Harvard University & Massachusetts Institute of Technology is providing free courses.💥

Here's 8 free Courses that'll teach you better than the paid ones:


1. CS50’s Introduction to Artificial Intelligence with Python (Harvard)

https://lnkd.in/d9CkkfGK

2. Data Science: Machine Learning (Harvard)

https://lnkd.in/dQ7zkCv9

3. Artificial Intelligence (MIT)

https://lnkd.in/dG5BCPen

4. Introduction to Computational Thinking and Data Science (MIT)

https://lnkd.in/ddm5Ckk9

5. Machine Learning (MIT)

https://lnkd.in/dJEjStCw

6. Matrix Methods in Data Analysis, Signal Processing, and Machine Learning (MIT)

https://lnkd.in/dkpyt6qr

7. Statistical Learning (Stanford)

https://lnkd.in/dymn4hbD

8. Mining Massive Data Sets (Stanford)

📍https://lnkd.in/d2uf-FkB

@computer_science_and_programming
🔥1
To delete all files except one!

- using find
find . \! -name 'file' -delete

- using zsh:
setopt extendedglob
echo ^foo
rm ^foo


- using bash:
shopt -s extglob
rm -v !("filename")


rm -v !("filename1"|"filename2")
to delete all except filename1 and filename2

Bash Specific Use Globignore variable
GLOBIGNORE=*.iso:*.txt
rm *
unset GLOBIGNORE
it will remove all except iso and text file

#notes #challenges
Books to Hack Humans

1. Social Engineering
by Christopher Hadnagy

2. The Art of Deception
by Kevin Mitnick

3. Ghost in the wire
by Kevin Mitnick

4. What Every Body is Saying
by Joe Navarro

5. The art of Intrusion
by Kevin Mitnick

#opsec #books #wishlist
First time doing crypto mining. 😅

I am sending you 1π! Pi is a new digital currency developed by Stanford PhDs, with over 35 million members worldwide. To claim your Pi, follow this link https://minepi.com/nvpie and use my username (nvpie) as your invitation code.
🔥3