Skip to content

Instantly share code, notes, and snippets.

Extension Manager and Modules in NetLogo

First, what is NetLogo?

NetLogo is a programmable modeling environment for simulating natural and social phenomena. It was authored by Uri Wilensky in 1999 and has been in continuous development ever since at the Center for Connected Learning and Computer-Based Modeling.

NetLogo is particularly well suited for modeling complex systems developing over time. Modelers can give instructions to hundreds or thousands of “agents” all operating independently. This makes it possible to explore the connection between the micro-level behavior of individuals and the macro-level patterns that emerge from their interaction.

Extensions

@Idloj
Idloj / try
Created July 24, 2017 06:50
Open files when you don't know their full name (or just want to save time)
#!/bin/bash -e
LOOP=false
BG=false
while true; do
case $1 in
-l|--loop) LOOP=true; shift ;;
-b|--background) BG=true; shift ;;
*) break
@Idloj
Idloj / bash.bashrc
Last active July 24, 2017 06:44
Useful bash aliases
# put it at the bottom of /etc/bash.bashrc or ~/.bashrc
alias ls='ls --color=auto'
alias ll='ls -lhF'
alias ..='cd ..'
alias c=cd
alias g=git
alias gch='g checkout'
alias gco='g commit'
alias ga='g add'