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
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
Forwarded from ᴘʀᴏғғᴀᴘᴛ
The wait is finally over, KWoC 2022 sponsored by Postman is live. Head to https://kwoc.kossiitkgp.org/ to grab the golden opportunity of participating in the winter of code.
Don't forget to read the manuals before getting started!

Student manual - https://bit.ly/kwoc22student
Mentor manual - https://bit.ly/kwoc22mentor

For those who have missed KWoC intro seminar - https://youtu.be/rrewhNdfdNk

Join our Slack workspace here - https://bit.ly/kwoc_slack
Discord server - https://bit.ly/kwoc_discord
Stay tuned to our socials for updates - https://linktr.ee/kossiitkgp
1