Posts

Showing posts with the label ubuntu

HOW TO BECOME A HACKER!?

Image
1/ Start with Linux: Run a UNIX-like operating systems are the operating systems of the internet, while you can learn to use the internet without understanding UNIX.   For this reason, the hacker culture today is pretty strongly UNIX-centered. There are many types of UNIX-like operating systems, the most popular being Linux, which you can run alongside Microsoft windows on the same machine. 2/ Learn HTML: If you don’t know how to program, learning basic Hypertext mark-up language (HTML) and gradually building proficiency is essential. What you see when you look at a website of pictures, images and design components is all codes using HTML. 3/ Learn the language of Programming: Python is a good “language “to start off with because it’s cleanly designed, well documented, and relatively kind to beginners. Despite being a good first language, it is not just a toy; it is very powerful, flexible, and well-suited for large projects. Java is an alt...

Asciinema // Record and share your terminal sessions

Image
Forget screen recording apps and blurry video. Enjoy a lightweight, purely text-based approach to terminal recording.  asciinema [as-kee-nuh-muh] is a free and open source solution for recording terminal sessions and sharing them on the web.  How it works: asciinema project is built of several complementary pieces: command-line based terminal session recorder, asciinema , website with an API at asciinema.org, javascript player When you run asciinema rec in your terminal the recording starts, capturing all output that is being printed to your terminal while you’re issuing the shell commands. When the recording finishes (by hitting Ctrl-D or typing exit ) then the captured output is uploaded to asciinema.org website and prepared for playback on the web. Installation: There are several ways to get asciinema recorder: Installing via Pip Installing on Linux Installing on macOS Installing on FreeBSD Installing on OpenBSD ...

How You Can Google Search From Linux Terminal

Image
Linux is gaining popularity day after day and it is not a completely geek stuff anymore(since we see normal people using Linux now). Every one of us uses google alot. We use Google to find answers to most simple ones to complex questions. If you are a Linux user and uses Google a lot, there is a more geeky way to search the web, since Linux users have a way to do things differently. You can actually perform a Google search from Linux terminal. To do so, we use a utility knows as Googler. Here is how to use it. How to Install Googler The very first step you, would start with is by installing Googler. To install Googler, we have two methods.We are now installing it from source code and installation package. Since Googler is written in Python, make sure you have least Python 3.3 installed on your computer. Installing from the source code:   cd /tmp git clone https://github.com/jarun/googler.git cd googler sudo make install cd aut...

How To Install Numix Theme And Icons In Ubuntu 14.04 & 16.04

Image
Numix  is the best theme out there in the Linux world. In this article, we are going to see  how to install Numix theme and icons in Ubuntu 14.04 and Ubuntu 16.04 . While I am stressing on Ubuntu, Numix is available for all major Linux distributions and desktop environments for e.g., GNOME, Cinnamon etc. Imagine the popularity and beauty of Numix that it is the default theme of Arch based beginner-friendly Linux distribution, Antergos. Install Numix theme and icons in Ubuntu We’ll be using the official Numix PPA. Open a terminal (Ctrl+Alt+T in Ubuntu) and use the following commands to install Numix theme and icons: sudo add-apt-repository ppa:numix/ppa sudo apt-get update sudo apt-get install numix-gtk-theme numix-icon-theme-circl If you want to install Numix wallpapers, use the command below: sudo apt-get install numix-wallpaper-* It will install all the Numix wallpapers available in the PPA. Once we have installed the the...