Skip to content

Instantly share code, notes, and snippets.

View colmarius's full-sized avatar
💭
🎶 🎹

Marius Colacioiu colmarius

💭
🎶 🎹
View GitHub Profile
@colmarius
colmarius / tmux-tmuxinator-setup.md
Last active May 16, 2024 02:27
Project start/stop with tmux + tmuxinator

1. Install tmux + tmuxinator

gem install tmuxinator

2. Add ~/.tmuxinator project specific configurations

# File: ~/.tmuxinator/project-name.yml

name: project-name
@colmarius
colmarius / git-aliases.md
Created September 23, 2014 09:50
A list of useful git aliases

Intro

Bellow follows a list of aliases, split between beginner and advanced.

To start using them right away you should place the aliases you like most in a file like ~/.zsh/git. Now all that remains is to add the following line to your ~/.zshrc or ~/.bashrc:

. ~/.zsh/git # git aliases
@colmarius
colmarius / 2019-socrates-day-zuerich.md
Last active September 17, 2019 11:46
Socrates Day Zürich (Sep 2019) - Learnings - https://bit.ly/2mkFQWq

Socrates Day

  • quick overview of the day
  • joint session done on working on big features with toggles

What is Socrates?

@colmarius
colmarius / Socrates-CH-2019.md
Last active September 17, 2019 09:04
Socrates CH 2019 - 3 days retreat take aways

Socrates CH

SoCraTes Switzerland is a Software Craft Conference for those passionate about software development. It provides an ideal setting for speaking to and code with other talented and engaged developers, learning from one another.

From my experience, mostly experienced developers are coming, but a few newbies join too. In it's third edition, 1/3 joined for first time, 1/3 joined for second time and 1/3 joined for their third time! I am a big fan, 3rd year in a row :-).

You should check out the twitter [SoCraTes_CH] and Slack channels.

@colmarius
colmarius / Bug-Report-Template.md
Last active April 2, 2019 09:23
Bug Report Template

Priority:

To be defined by Product Owner

Summary:

Short description of the bug.

Environment:

@colmarius
colmarius / Books_regarding_leadership.md
Last active April 2, 2019 09:23
Books regarding leadership

Books regarding Leadership

People management

  • How to Win Friends and Influence People - Dale Carnegie he is a big name, from beginning of last century, the book title is missleading, you will learn by reading it, but it's a recommended read for all people being in a management position. For me it teached me things more about my self.

Agile development

  1. Nature of Software Development - really short book, fast read, talks about Feature teams, I would recommend to start with this one, I really liked this one
  2. Agile and Lean Program Management - Johanna is a good teacher on Agile, I read her blogs articles
@colmarius
colmarius / topics-socrates-2020.md
Created April 2, 2019 09:22
Topics for next years Socrates

Codeclimate

Quality:

  • what is CodeClimate
  • hands-on setting up a repo with CodeClimate
  • look at CodeClimate plugins
  • creating a custom CodeClimate plugin
  • show how to use browser extension

Intro to GraphQL

Wait...

What are the problems with REST?

What is GraphQL?

  • enables declarative data fetching
@colmarius
colmarius / script_mongodump_mongorestore.sh
Last active March 1, 2018 18:42
Mongodump / Mongorestore example
##
## Prefer mongodump/mongorestore instead of mongoexport/mongoimport,
## as it will "export" additional metadata, like indexes etc.
##
### Mongodump example
# Required: host, db, collection, out
# Optional: query (limit results)
mongodump --host mongodb1.example.net \