Github Desktop The Last Free Monad (3.0.5.2) a0622a5
(Windows 7x64bit)
This file contains 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
#Hello | |
write-host "Hello. This script will install php-cs-fixer for you." -foregroundcolor DarkGreen -backgroundcolor white | |
$PSVersionTable.PSVersion | |
#functions and variables | |
if ($env:TEMP -eq $null) { | |
$env:TEMP = Join-Path $env:SystemDrive 'temp' | |
} | |
if (![System.IO.Directory]::Exists($env:TEMP)) { | |
Write-Host "Creating temporary download directory in env:TEMP" -foregroundcolor DarkBlue -backgroundcolor white |
There ist this package called atom-beautify for the atom text editor. It can, amongst many different languages, also beautify php. But if will not work out of the box on windows (see screenshot below).
-
Install the php-cs-fixer.phar file and add it to your path.
Go to this github page and download the php-cs-fixer.phar file. Next you need to add it to your path. Check cmdecho %PATH%
to see which folders are being watched. I choseC:\Windows
. Important: Now you need to remove the ending.phar
or atom won't find the file. -
Install php and add it to your path.
Official php windopws download-page. Grab the VC11 x86 Non Thread Safe package. See here why: https://stackoverflow.com/questions/1623914
https://atom.io/packages/sync-settings
- Open Sync Settings configuration in Atom Settings.
- Create a new personal access token which has the gist scope.
- Copy the access token to Sync Settings configuration.
- Create a new gist and save it.
- Copy the gist id (last part of url after the username) to Sync Settings configuration.
This file contains 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
sudo apt-get update | |
sudo apt-get dist-upgrade | |
sudo apt-get autoremove | |
sudo apt-get autoclean | |
sudo apt-get install i3 conky git chromium-browser python-pip zsh vim | |
sud apt-get remove firefox cheese gnome-mines gnome-mahjongg gnome-sudoku gnome-orca aisleriot |
This file contains 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
\documentclass{article} | |
\usepackage[ansinew]{inputenc} | |
\usepackage[T1]{fontenc} | |
\usepackage{etoolbox} | |
\usepackage{lipsum} | |
\usepackage{glossaries} | |
\newglossary[slg]{symbols}{slm}{sbl}{Symbolverzeichnis} | |
\makeglossaries |
This file contains 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
% arara: pdflatex | |
% arara: makeglossaries | |
% arara: pdflatex | |
\documentclass{article} | |
\usepackage[ansinew]{inputenc} | |
\usepackage[T1]{fontenc} | |
\usepackage{lipsum} | |
\usepackage{array} | |
\usepackage{amsmath} |
This file contains 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
\documentclass[leqno]{scrartcl} | |
\usepackage{lipsum} | |
\usepackage[]{glossaries} | |
\newglossary[slg]{symbols}{slm}{sbl}{List of Symbols} | |
% IMPORTANT ----------------------------------------------------------------------------------- | |
% add [makeindex.exe -s "%tm.ist" -t "%tm.slg" -o "%tm.slm" "%tm.sbl"] to your compile run ------ | |
%---------------------------------------------------------------------------------------------- |