Techie
Using Diskpart to delete partition when the GUI doesn’t work.
by Logan Rogers-Follis on Dec.06, 2015, under Techie
Please perform the following steps:
1. Open a command prompt as administrator.
2. Run Diskpart application by typing Diskpart in the command prompt.
3. In the “Diskpart” prompt, enter rescan command and press Enter key to re-scan all partitions, volumes and drives available.
4. Then type in list disk and press Enter key to show all hard disk drive available.
5. Select the disk that contains the partition you want to remove. Normally, with just 1 hard disk, it will be disk 0. So the command will be:
Select disk 0
Finish by Enter key.
6. Type list partition and press Enter key to show all available and created partition in the disk selected.
7. Select the partition that wanted to be deleted by using the following command, followed by Enter key:
Select partition x
Where x is the number of the recovery partition to be removed and unlocked its space. Be careful with the number of this partition, as wrong number may get data wipes off.
8. Finally, type in delete partition override and press Enter key.
Simple method to do a Fresh Windows 10 install (via the “free upgrade”)
by Logan Rogers-Follis on Nov.05, 2015, under Techie
The below steps come from ghacks.net and are just put here to make it easier for me to find in the future. I have used this on 1 machine that was running Windows 7 Pro (Upgrade – came from Vista) and another running Windows 7 Home Premium.
SOURCE: How to clean install Windows 10 directly without upgrade
Here is what you need to do to clean install Windows 10 on a computer system.
- You need a Windows 10 DVD or ISO image for that. If you don’t have one get it from here. Download the tool from Microsoft’s website to create the ISO image. Make sure you pick the right architecture and version.
- Burn the ISO, mount it or extract it.
- Navigate to the folder \Windows\x64\sources or P:\Windows\x32\sources and drag&drop the file gatherosstate.exe to the desktop.
- Run the file afterwards. It creates GenuineTicket.xml on the desktop. This file is needed so copy it to a USB drive or other location.
- Run a clean install of Windows 10 afterwards on the system. Make sure you skip the product key.
- Once you are done and in Windows 10, copy the file GenuineTicket.xml to C:\ProgramData\Microsoft\Windows\ClipSVC\GenuineTicket.
- The folder is hidden by default. If you cannot see it, select File > Options > View > Show hidden files, folders and drives in File Explorer.
- Reboot the PC.
Linux: Batch rename to remove # leading characters from files of a certain type
by Logan Rogers-Follis on Apr.12, 2015, under Techie
If you have a bunch of files like:
$ ls /home/me/Desktop/Music/
0001 – File1.mp3
0002 – File2.mp3
0003 – File3.doc
…
$
And you want to remove the “0001 – ” from the start of all of them then you can use the following expressing to do this provided they are all in the same folder (if not just run this more than once):
cd /home/me/Desktop/Music/ && for file in *mp3; do mv "$file" "${file:8}"; done
Afterwards:
$ ls /home/me/Desktop/Music/
File1.mp3
File2.mp3
0003 – File3.doc
…
$
NOTE: For more details see http://community.linuxmint.com/tutorial/view/1162 as I got my example from there.
Learning to Code
by Logan Rogers-Follis on Feb.15, 2015, under Techie, Video Games
Dropping these links here so I will hopefully use them myself and maybe others that find this site will follow them to learn something (more) about Programming. I haven’t really looked into these links very far so do your own research as you start to learn.
CodeCombat – Learn how to code by playing a game – https://codecombat.com/
Games for programmings | CodinGame – http://www.codingame.com/start
Scratch – Imagine, Program, Share – http://scratch.mit.edu/
Learn to code | Codecademy – http://www.codecademy.com/
Learn | Code.org – http://code.org/learn
CS50: Introduction to Computer Science | edX – https://www.edx.org/course/introduction-computer-science-harvardx-cs50x#.VNYLwvnF_0c
List of free programming books and guides – https://github.com/vhf/free-programming-books/blob/master/free-programming-books.md
Bento | Learn to code the way professionals do – https://www.bento.io/
How to disable Flash Player protected mode in Firefox
by Logan Rogers-Follis on Feb.08, 2015, under Techie
Since Firefox 35 you can do the following to disable the annoying “Activate Flash” on any page with Flash.
In the Address Bar type in “about:config”
Confirm that you will careful when prompted
Search for “dom.ipc.plugins.flash.disable-protected-mode” and set it to true (ie disabled)