When using TexLive
you can install new packages with
zypper in 'tex(<package name>.sty)'
For example if you want to install the multirow
package:
zypper in 'tex(multirow.sty)'
// User/Preferences.sublime-settings | |
{ | |
"font_face": "inconsolata", | |
"font_size": 13, | |
"highlight_line": true, | |
"highlight_modified_tabs": true, | |
"ignored_packages": | |
[ | |
"Vintage" | |
], |
When using TexLive
you can install new packages with
zypper in 'tex(<package name>.sty)'
For example if you want to install the multirow
package:
zypper in 'tex(multirow.sty)'
std::string line; | |
std::string _first_name, _last_name; | |
long _yearly_salary; | |
int _age, _clearance_level; | |
while (std::getline(input_file_stream, line)) | |
{ | |
std::istringstream iss(line); | |
if (!(iss >> _last_name >> _first_name >> _yearly_salary >> _age >> _clearance_level)) { break; } // error |
# Requires the following project directory structure: | |
# /bin | |
# /obj | |
# /src | |
# Use 'make remove' to clean up the hole project | |
# Name of target file | |
TARGET = foooooooobar |
#include <unistd.h> | |
#include <sys/socket.h> | |
// … and others for actual syscalls | |
#include <system_error> | |
#include <functional> | |
namespace sys | |
{ | |
namespace |
git config --global core.excludesfile ~/.gitignore_global | |
Now you can put your global ignores in ~/.gitignore_global. | |
I just use .git/info/exclude for project specific stuff I want to ignore that only I would have. |
cat("\014") # clears the console | |
raw_data <- read.table("~/Desktop/raw_data/do_1_nohigherfn_data_points.txt", sep="\t", col.names=c("pos", "WIN EP", "WIN RP", "draws EP", "draws RP", "matches", "title"), fill=FALSE, strip.white=TRUE) | |
raw_data["generation"] <- NA # adding a new column | |
numberOfGenerations = 100 | |
numberOfWinners = 16 | |
# Adding the generation count | |
#for (i in 0:numberOfGenerations) { |