Skip to content

Instantly share code, notes, and snippets.

View EugeneKud's full-sized avatar

Eugene Kudryavtsev EugeneKud

View GitHub Profile
@EugeneKud
EugeneKud / windows-disk-format-command-prompt.md
Created September 18, 2016 09:48
Format guide for disks in windows command prompt
  1. run Command Promapt as administrator
  2. diskpart
  3. list disk
  4. select disk {{disk number}}
  5. clean
  6. create partition primary
  7. format fs=fat32 label="SanDisk" quick
  8. exit
  • fs=fat32 for Windows and OS X compatibility
@EugeneKud
EugeneKud / gist:5060691
Created February 28, 2013 22:27
LATEX : scrartcl
%%% LaTeX Template
%%% This template is made for project reports
%%% You may adjust it to your own needs/purposes
%%%
%%% Copyright: http://www.howtotex.com/
%%% Date: March 2011
%%% Preamble
\documentclass[paper=a4, fontsize=11pt, ]{scrartcl} % Article class of KOMA-script with 11pt font and a4 format
\usepackage[T1]{fontenc}
@EugeneKud
EugeneKud / gist:5057710
Created February 28, 2013 15:49
HTML : Sample html structure
<html>
<head>
<title></title>
</head>
<body>
</body>
</html>
@EugeneKud
EugeneKud / gist:5057685
Created February 28, 2013 15:47
LATEX : Swiss Letter
\documentclass[fontsize=12pt,paper=a4]{scrlttr2}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[german]{babel}
\LoadLetterOption{SN} %Swiss Letter standards
\KOMAoptions{
enlargefirstpage=true, % letter should hold on one page
headsepline=false,