Skip to content

Instantly share code, notes, and snippets.

View CM-CA's full-sized avatar
:electron:
I may be slow to respond.

Okud4 CM-CA

:electron:
I may be slow to respond.
  • Vigo
  • 06:13 (UTC +02:00)
View GitHub Profile

Arch Linux Installation

This is just how I set up my Arch system with the Plasma Desktop Environment and the Xorg Display Server.
I'm installing the System on a nvme alongside with a Windows 10 Installation. Therefore, there are already nvme0n1p1 - nvmen0n1p4 on the system, created by the windows setup. One of them is the ESP partition that will be reused as /boot/efi.
This setup will use an unencrypted /boot and an encrypted lvm container containing / and /home as well as a swap for hibernate.

When in doubt, always refer (and listen) to the Arch Linux Installation Guide.

Boot the Live System

** Collection #1 passwords list **
Hello everyone,
Recently, a dark web monitoring firm 4iQ discovered a massive trove of 41GB data file containing 1.4 billion billion login credentials including emails and passwords in clear-text format.
This db was already found in the dark net during january and succefully removed from the internet but it has been newly uploaded.
magnet:?xt=urn:btih:7ffbcd8cee06aba2ce6561688cf68ce2addca0a3&dn=BreachCompilation&tr=udp%3A%2F%2Ftracker.openbittorrent.com%3A80&tr=udp%3A%2F%2Ftracker.leechers-paradise.org%3A6969&tr=udp%3A%2F%2Ftracker.coppersurfer.tk%3A6969&tr=udp%3A%2F%2Fglotorrents.pw%3A6969&tr=udp%3A%2F%2Ftracker.opentrackr.org%3A1337
- follow me on https://twitter.com/criptixo :)
@steinwaywhw
steinwaywhw / One Liner to Download the Latest Release from Github Repo.md
Last active June 22, 2024 06:15
One Liner to Download the Latest Release from Github Repo
  • Use curl to get the JSON response for the latest release
  • Use grep to find the line containing file URL
  • Use cut and tr to extract the URL
  • Use wget to download it
curl -s https://api.github.com/repos/jgm/pandoc/releases/latest \
| grep "browser_download_url.*deb" \
| cut -d : -f 2,3 \
| tr -d \" \