Skip to content

Instantly share code, notes, and snippets.

View colmarius's full-sized avatar
💭
🎶 🎹

Marius Colacioiu colmarius

💭
🎶 🎹
View GitHub Profile
@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 / 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 / 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 / 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 / README.md
Created August 31, 2017 11:30 — forked from curran/README.md
The Iris Dataset

This is the "Iris" dataset. Originally published at UCI Machine Learning Repository: Iris Data Set, this small dataset from 1936 is often used for testing out machine learning algorithms and visualizations (for example, Scatter Plot). Each row of the table represents an iris flower, including its species and dimensions of its botanical parts, sepal and petal, in centimeters.

The HTML page provides the basic code required to load the data and display it on the page (as JSON) using D3.js.

Built with blockbuilder.org

web counter
@colmarius
colmarius / react-redux.md
Last active March 11, 2017 16:24
React / Redux workshop takeaways at Socrates CH

Starting with React / Redux workshop

React

  • create-react-app: React app generator, easiest way to start with React
  • [React Daily UI]: React implementations of daily UI challenges
  • Book [FullStack React]: practical tutorials + code examples, covers topics on React, Redux, Testing, GraphQL and more
@colmarius
colmarius / redux-connect-todo-app-refactor.js
Last active January 19, 2017 10:45
Redux egghead.io course: refactor with connect to create containers which use presentational components
const todo = (state, action) => {
switch (action.type) {
case 'ADD_TODO':
return {
id: action.id,
text: action.text,
completed: false
};
case 'TOGGLE_TODO':
if (state.id !== action.id) {