-
Determine disk name
# lsblk
-
Launch parted
# parted -a optimal /dev/sda
-
Erase everything
mklabel gpt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Keybase proof | |
I hereby claim: | |
* I am pakdev on github. | |
* I am petekurlak (https://keybase.io/petekurlak) on keybase. | |
* I have a public key ASAtI9qNGNQ3PhhobjSs000-ExbsguM7dE-U_RO9TSCAYgo | |
To claim this, I am signing this object: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
from collections import namedtuple | |
from datetime import datetime | |
from operator import attrgetter | |
import numpy | |
import requests | |
Option = namedtuple('Option', 'plan price') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
import os | |
import re | |
import fnmatch | |
import argparse | |
from textwrap import dedent | |
parser = argparse.ArgumentParser(description='Add/update copyright on C# files') | |
parser.add_argument('root', nargs=1, help='Path to the root of the C# project') |