Let machine M be the Main machine with the repo, and A the Auxiliary machine which wants to help out.
- Machine M creates bundle with complete repo:
git bundle create repo.bundle HEAD master
- M sends
repo.bundle
to A. - A clones repo from bundle:
# author: Sten Wessel | |
# Instructions: | |
# Put this file on the same level as your LaTeX file | |
# Put your R scripts in a folder scripts/ | |
# [IntelliJ] If you want to run your R scripts, make a run configuration as with working directory the folder this file is in | |
# In your R script, make comments like "## ---- part.a ----" to define sections | |
# In this file, edit the definition of R script content (the HOMEWORK.1 list) | |
# In the preamble in your LaTeX file, add the following: | |
# |
import java.math.BigInteger | |
/** | |
* The extended euclidian algorithm for two numbers (BigIntegers included). Also prints a LaTeX tabular of all the steps. | |
* | |
* Looks for `ax + by = gcd(a, b)` where `a` and `b` are the input variables. | |
* [gcd] contains the gcd, [x] and [y] contain `x` and `y` as seen in the previous expression. | |
* | |
* @author Ruben Schellekens | |
* @author Thomas Schouten |
class StuffContainer(val context: Context?) { | |
private val prefs = android.preference.PreferenceManager.getDefaultSharedPreferences(context) | |
/** This is stuff. */ | |
var stuff: Boolean | |
get() = prefs.getBoolean("stuffkey", false) | |
set(value) { | |
prefs.edit().putBoolean("stuffkey", value).apply() | |
} |
Generate new ssh key pair
ssh-keygen -t rsa -b 4096 -C "[email protected]"
Give it a different name than default, e.g. id_rsa_iam
.
Add this key to the ssh agent, cd ~/.ssh
and ssh-add id_rsa_iam
If you get the error 'Could not open a connection to your authentication agent.' then start the ssh-agent with
I hereby claim:
To claim this, I am signing this object:
\begin{filecontents}{main.bib} | |
@Book{knuth1990, | |
author = {Knuth, Donald E.}, | |
title = {The {\TeX}book}, | |
year = {1990}, | |
isbn = {0-201-13447-0}, | |
publisher = {Addison\,\textendash\,Wesley}, | |
} | |
\end{filecontents} |
download libblas.dll, libblas.lib, liblapack.dll, liblapack.lib from https://icl.cs.utk.edu/lapack-for-windows/lapack/#libraries_mingw to lib/ | |
Add to `stack.yaml`: | |
extra-deps: | |
- bindings-levmar-1.1.0.5 | |
# - levmar-1.2.1.8 -- Does not support base 4.9 at the moment. A more up to date fork is used | |
- github: PHPirates/levmar | |
commit: f36ef9ae1c0d44950a28a445d4f459257f77dd4d |
python -V
python -m pip install -U setuptools
. If this fails with a PermissionError, try pip install setuptools --upgrade --ignore-installed
.