Posts

Random Stuffs

Redgear Pro Series (Wireless) Gamepad

Shop On Below Links & Earn

Image
Amazing Offer !!! Save Your Money On Shopping Buy Now Vatika Anti-Dandruff shampo Lemon & Methi , 340 ml Vatika Health Shampoo, 180 ml Need one single solution to all your hair woes? Try Vatika Health Shampoo. Enriched with goodness of seven naturally nourishing ingredients like amla, shikakai, olives & almonds; it can help protect your hair against damage like dandruff, dryness and hair fall, split ends and scalp infections. Say hello to thick, healthy & strong hair! BENEFITS: VATIKA HEALTH SHAMPOO contains ingredients like amla, shikakai, olives, almonds , henna, hibiscus and reetha that help in the following:- Control hair fall Keep the scalp moisturized Controls dandruff Adds natural shine to the hair No harmful Chemical & mild on the scalp. USAGE: Wet your hair Squeeze shampoo in your palm & lather it up Apply the lather to the scalp and gently massage Work your way downwards along the length of the hai

Recovering/Retriving Data From Deleted Partition Using TestDisk

Image
In this post, I'll show you how to recover data from a deleted partition on the hard disk. Recently I was formatting my computer and accidently I cleaned the complete disk using Diskpart utility so my all partitions were deleted and the complete hard disk was made into 500GB single unallocated space. So to recover the data on the hard disk I used a free and open source(blog on OpenSource ) data recovery utility named Testdisk . This is a small software which is easy to use and powerful to recover the data. Now let's see how to use it: 1. Download Testdisk from here . 2. Unzip it, open the terminal and cd to testdisk-7.0/ folder. 3. Now type the command     > sudo ./testdisk on Mac OS (sudo is must because it requires root privileges) or     > sudo ./testdisk_static on Ubuntu. after this tesdisk will start and show something like below. 4. Select create and press enter.(use up and down arrow key to move between options and enter key to select) No

Download Youtube Playlist And Videos Using Python

Image
In this post I'll show you how to download Youtube Playlist and Youtube Videos. You might be knowing there are various software's and tricks which allow us to download youtube videos and save them, one which I found was youtube-dl , you can download source code of it from youtube-dl.org . But I have written a Python (learn Python basics) script to download youtube videos at our convenience without relying on the third party software. Let's Start You might be knowing one trick, if we want to download youtube video without using software is to append "ss" before the youtube video link like ssyoutube.com/watch?v=videoID and then this will take you to savefrom.net and from there you can download the video easily. Now to download one video is an easy task, but suppose you want to download a complete playlist of say >50 videos is too much hectic. As you always have to open each video of that playlist and then edit the URL and download it using Savefr

Why Open-Source? Power Of Open-Source

Image
Open-source software (OSS) is computer software with its source code made available with a license in which the copyright holder provides the rights to study, change, and distribute the software to anyone and for any purpose. Open source developers choose to make the source code of their software publicly available for the good of the community and to publish their software with an open source license – meaning that other developers can see how it works and add to it. It is software developed by and for the user community. Open source projects provide tremendous opportunities for developers to share and learn through collaboration. Find colleagues for your project or join an existing effort. Contributions aren't limited to code, as projects need a diverse range of skills. Many of the world’s most successful open source projects have their roots in the academy. Participation extends beyond adoption and development, and now includes a wide variety of academic programs and researc

Beginners Guide For Django(Web Framework)

Django is a free and open-source web framework, written in Python , which follows the model-view-template (MVT) architectural pattern. It is maintained by the Django Software Foundation (DSF). Django's primary goal is to ease the creation of complex, database-driven websites. Django emphasizes reusability and "pluggability" of components, rapid development, and the principle of Don't Repeat Yourself(DRY) . Django is available under the ​ BSD license . The source code repository is stored on ​GitHub . Django is a high-level Python Web framework that encourages rapid development and clean, pragmatic design. Built by experienced developers, it takes care of much of the hassle of Web development, so you can focus on writing your app without needing to reinvent the wheel. It’s free and open source. Django was designed to help developers take applications from concept to completion as quickly as possible. Django takes security seriously and helps developers avoid man

Simple Python Script To Create A WebServer

In this post, you will learn to create a web server just by executing a simple python script which is below. ##################### START OF SCRIPT ######################### import sys import getopt import BaseHTTPServer from SimpleHTTPServer import SimpleHTTPRequestHandler def start(argv):     HandlerClass = SimpleHTTPRequestHandler     ServerClass = BaseHTTPServer.HTTPServer     Protocol = "HTTP/1.0"     if sys.argv[1:]:         try:             opts, args = getopt.getopt(argv, "hp:", ["port="])         except getopt.GetoptError:             print "Error Try Again"             sys.exit()         for opt, arg in opts:             if opt in ("-p", "--port"):                 port = int(arg)         server_addr = ("127.0.0.1", port)         HandlerClass.protocol_version = Protocol         httpd = ServerClass(server_addr, HandlerClass)         socket = httpd.socket.getsockname()         pri