Skip to content

Instantly share code, notes, and snippets.

View danmindru's full-sized avatar
👋

Dan Mindru danmindru

👋
View GitHub Profile
@danmindru
danmindru / build.config.js
Last active August 29, 2015 14:09
Loading AngularJS modules
/*
* Configuration variables
*/
module.exports = {
source_dir: './src/',
build_dir: './build/',
compile_dir: './application/',
build: {
vendor_js: []
@danmindru
danmindru / keybase.md
Created March 18, 2015 11:09
keybase.md

Keybase proof

I hereby claim:

  • I am danmindru on github.
  • I am danmindru (https://keybase.io/danmindru) on keybase.
  • I have a public key whose fingerprint is A81F B054 70D1 2463 36C8 B730 793E E593 4B74 81EF

To claim this, I am signing this object:

@danmindru
danmindru / README.md
Created January 9, 2016 15:48 — forked from agnoster/README.md
My ZSH Theme

agnoster.zsh-theme

A ZSH theme optimized for people who use:

  • Solarized
  • Git
  • Unicode-compatible fonts and terminals (I use iTerm2 + Menlo)

For Mac users, I highly recommend iTerm 2 + Solarized Dark

@danmindru
danmindru / index.html
Last active August 28, 2016 17:22
OXKvkN
<main ng-app="app" ng-cloak>
<h2>Job listing</h2>
<section ng-controller="gapsController as vm">
<table
ng-if="vm.dataset && vm.dataset.length"
class="striped responsive-table">
<thead>
<tr>
<th data-field="job-name">Job Name</th>
<th data-field="date">Date</th>
@danmindru
danmindru / .hyper.js
Last active April 3, 2020 07:59
Hyper config
// Windows config
// Future versions of Hyper may add additional config options,
// which will not automatically be merged into this file.
// See https://hyper.is#cfg for all currently supported options.
// => for advanced config flags please also refer to https://hyper.is/#cfg
/*
* White theme :)
* ==============================
@danmindru
danmindru / .zshrc
Last active November 18, 2024 14:43
# Configure pyenv
if command -v pyenv 1>/dev/null 2>&1; then
eval "$(pyenv init -)"
fi
# Configure nvm
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
# Default node version
@danmindru
danmindru / mac.ahk
Created January 9, 2019 10:52
AutoHotKey Apple Magic keyboard on Windows
If not A_IsAdmin
{
Run *RunAs "%A_ScriptFullPath%"
ExitApp
}
LWin::Control
RWin::Control
Control::Alt
If not A_IsAdmin
{
Run *RunAs "%A_ScriptFullPath%"
ExitApp
}
LWin::Control
; RWin::Control - Keeps right win active
Control::Alt
# Work
export PATH="$HOME/.cargo/bin:$PATH"
export PATH=~/.npm-global/bin:$PATH
if [ -n "$BASH_VERSION" ]; then
# include .bashrc if it exists
if [ -f "$HOME/.bashrc" ]; then
. "$HOME/.bashrc"
fi