Posts

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

Arduino Adventures by Floyd Kelly James and Harold Timmis

Image
Arduino Adventures: Escape from Gemini Station provides a fun introduction to the Arduino microcontroller by putting you (the reader) into the action of a science fiction adventure story. You'll find yourself following along as Cade and Elle explore Gemini Station—an orbiting museum dedicated to preserving and sharing technology throughout the centuries. Trouble ensues. The station is evacuated, including Cade and Elle's class that was visiting the station on a field trip. Cade and Elle don’t make it aboard their shuttle and are trapped on the station along with a friendly artificial intelligence named Andrew who wants to help them get off the damaged station. Using some old hardware, a laptop, and some toolboxes full of electronics parts, you will follow along and build eight gizmos with Cade and Elle that will help them escape from Gemini Station. The hardware is Arduino. Each new challenge opens a new area of Arduino and basic electronics knowledge. You’ll be taken increm...

অগ্নিপক্ষ by এ. পি. জে. আবদুল কালাম

Image
প্রখ্যাত ভারতীয় বিজ্ঞানী এ পি জে আবদুল কালাম এর আত্মজীবনী উইংস অব ফায়ার এর বাংলা অনুবাদ অগ্নিপক্ষ। মাত্র ২০২ পৃষ্ঠার বইটি যারা পড়েছেন তাদের জন্য নতুন করে বলার কিছু নেই। কিন্তু যারা বইটি পড়েননি তাদের জন্য এই বই । কিছু কিছু সাহসী মানুষের জীবনকথা কখনও কখনও ইতিহাসের পাতায় লেখা হয়নি ঠিকই, কিন্তও এসব নীরব মানুষই তাদের কঠোর পরিশ্রম দিয়ে জাতির প্রগতিকে কয়েক প্রজন্ম এগিয়ে দিয়েছেন।  Download

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"); }

configured directory for incoming file does not exist

Image
You can get the path with gsettings get org.blueman.transfer shared-path and change it with (for instance) gsettings set org.blueman.transfer shared-path '/home/xxxx'

Link3 FTP Server

Link3 FTP Server List http://bioscopelive.com http://movieserver.net http://103.25.120.118 http://dekhvhai.com http://genvideos.com http://mojaloss.net https://123movies.is/ http://dhakamovie.com/ http://naturalbd.com/ http://tube.dfnbd.net/ http://220.158.235.243/ http://fn-bd.com TV Servers http://ihub.live http://jagobd.com http://bdlivezone.com/ http://abohomanbangla.com/Bangladesh_web_directory/Bangla_Tv.html http://mojaloss.net/live/ Torrent servers https://katcr.co (kickass torrent is back :D ) http://crazyhd.com http://torrentbd.com http://torrent.dfnbd.net/ http://1337x.to/   https://thepiratebay.org/

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...