Posts

Showing posts with the label Tips and Tricks

Raspberry Pi Perrot OS create new user

Image
mv /home/parrot /home/pi adduser pi useradd -g root pi id pi passwd pi su- pi cut -d: -f1 /etc/passwd

YouTube Auto Unsubscribe Script

Image
Step 1:  Go to  https://www.youtube.com/feed/channels Step 2: Then Press Ctrl+Shift+I Step 3: Paste the given bellow script and hit enter 😃 Script: var i=0; var myVar = setInterval(myTimer, 3000); function myTimer() { var els = document.getElementById("grid-container").getElementsByClassName("ytd-expanded-shelf-contents-renderer"); if(i<els.length){ els[i].querySelector('[aria-label="Unsubscribe from this channel."]').click(); setTimeout(function(){ var unSubBtn = document.getElementById("confirm-button").click(); }, 2000); setTimeout(function(){ els[i].parentNode.removeChild(els[i]); }, 2000); } i++; console.log(i + " unsubscribed by @earegun"); console.log(els.length + " remaining"); }

Setting up Wifi with the Command Line on Raspberry Pi

Image
Setting up WiFi in Occidentalis, is also pretty straight forward. You just need to add the name of your wireless network (its SSID) and your password to a configuration file. Step 1. Boot the Raspberry Pi without the WiFi adapter plugged in. Step 2. Open a Terminal session by clicking on the LXTerminal icon, and enter the following command into it: sudo nano / etc / network / interfaces Then auto lo   iface lo inet loopback iface eth0 inet dhcp   allow - hotplug wlan0 auto wlan0     iface wlan0 inet dhcp wpa - ssid "ssid" wpa - psk "password" If you are using a 'hidden' SSID, try the following code: auto lo   iface lo inet loopback iface eth0 inet dhcp   auto wlan0 allow - hotplug wlan0 iface wlan0 inet dhcp wpa - scan - ssid 1 wpa - ap - scan 1 wpa - key - mgmt WPA - PSK wpa - proto RSN WPA wpa - pairwise CCMP TKIP wpa - group CCMP TKIP wpa - ssid "My Secret SS...