I hereby claim:
- I am wes974 on github.
- I am ouweis (https://keybase.io/ouweis) on keybase.
- I have a public key ASCWjqM3LFirgnFK-NW0wdy3lPbE3Um9vhQ95r-M3eElnwo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
(cond | |
((eq window-system 'ns) ; macosx | |
;; Invoke login shells, so that .profile or .bash_profile is read | |
(setq shell-command-switch "-lc"))) | |
(setq explicit-bash-args '("--login" "-i")) | |
(load "/Users/USERNAME/.opam/system/share/emacs/site-lisp/tuareg-site-file") |
# 3D models | |
*.3dm filter=lfs diff=lfs merge=lfs -text | |
*.3ds filter=lfs diff=lfs merge=lfs -text | |
*.blend filter=lfs diff=lfs merge=lfs -text | |
*.c4d filter=lfs diff=lfs merge=lfs -text | |
*.collada filter=lfs diff=lfs merge=lfs -text | |
*.dae filter=lfs diff=lfs merge=lfs -text | |
*.dxf filter=lfs diff=lfs merge=lfs -text | |
*.fbx filter=lfs diff=lfs merge=lfs -text | |
*.jas filter=lfs diff=lfs merge=lfs -text |
This document has been modified from its [original format][m1], which was written by Ning Shang ([email protected]). It has been updated and reformatted into a [Markdown][m2] document by [Woody Gilk][m3] and [republished][m4].
When working with a remote git repository which is hosted on a third-party storage server, data confidentiality sometimes becomes
#!/usr/bin/env bash | |
# | |
# Author: Stefan Buck | |
# License: MIT | |
# https://gist.github.com/stefanbuck/ce788fee19ab6eb0b4447a85fc99f447 | |
# | |
# | |
# This script accepts the following parameters: | |
# | |
# * owner |
################################################################################ | |
# # | |
# ~/.zshrc # | |
# # | |
# Auhtor: Ouwéis Moolna # | |
# # | |
################################################################################ | |
#==============================================================================# |
# Makefile | |
CC=gcc | |
CPPFLAGS=-MMD -D_XOPEN_SOURCE=500 `pkg-config --cflags sdl2 gtk+-3.0` | |
ERROR_CFLAiR=-Wall -Wextra -std=c99 -g | |
LDFLAGS= | |
LDLIBS=`pkg-config --libs sdl2 gtk+-3.0` -lSDL2_image -lm -export-dynamic -lm | |
SRC= line.c | |
DEP= ${SRC:.c=.d} | |
PRG= ${SRC:.c=} |
# https://wiki.archlinux.org/index.php/Tmux#Start_tmux_on_every_shell_login | |
# https://stackoverflow.com/a/49134974 | |
# https://gist.github.com/theel0ja/3d3c1de607702b87292687d27f99141b | |
# If not running interactively, do not do anything | |
[[ $- != *i* ]] && return | |
# You can replace 0 with the session name you prefer such as "onLogin" (without parenthesis) | |
[[ -z "$TMUX" ]] && exec tmux new -A -s 0 |