Skip to content

Instantly share code, notes, and snippets.

View shellandbull's full-sized avatar
🛰️

Mario Gintili shellandbull

🛰️
View GitHub Profile
@shellandbull
shellandbull / foobar.md
Last active January 19, 2017 15:39
notes from seedcamp

Slide 1

  • Far too generic and should be narrower
  • Retain talented people might be a better narrative(difference between a piece of wood and a violin is preparation)
  • More differentiated

Slide 2

  • L&D needs to be expanded on
  • AI needs to be expanded on
@shellandbull
shellandbull / sla.md
Last active January 25, 2017 08:21
SLA for Sunlight

Sunlight's SLA 🌞

  • 🔴 Critical: users can't use the application, should be solved inmmediatly and prioritised by all team members. Resolution time is ASAP

  • 💛 Severe: A portion of the app that's non crucial for it's functioning is not working. Needs to be triaged. Resolution time is 1 business day.

  • 🔵 Minor: CSS issues, missing translations, etc. Fall into this category. Resolution time is 3-5 business days

If you come across something weird/unusual feel free to ping us at [email protected] 😄

@shellandbull
shellandbull / foo.md
Created December 5, 2016 15:07
companhias
@shellandbull
shellandbull / example.js
Created November 3, 2016 09:17
webchat example
import Ember from 'ember';
const { Route, inject } = Ember;
export default Route.extend({
myWebchatService: inject.service(),
activate() {
this._super(...arguments);
this.get('myWebchatService').on('poll', (data) => this.store.pushPayload(data));
import Ember from 'ember';
const { inject, computed } = Ember;
Ember.Component.extend({
store: inject.service(),
model: computed('store', function() {
return this.get('store').createRecord('group-payment');
})
})
@shellandbull
shellandbull / foo.sh
Created October 24, 2016 14:46
MITIE Java build folder structure
java/
├── CMakeLists.txt
├── README
├── build
│   ├── CMakeCache.txt
│   ├── CMakeFiles
│   │   ├── 3.6.2
│   │   │   ├── CMakeCCompiler.cmake
│   │   │   ├── CMakeCXXCompiler.cmake
│   │   │   ├── CMakeDetermineCompilerABI_C.bin
@shellandbull
shellandbull / components.validated-input.js
Created August 10, 2016 09:24
sample-validated-input
import Ember from 'ember';
const { computed, isPresent } = Ember;
export default Ember.Component.extend({
errors: null,
label: null,
value: computed('errors', {
get() { return null; },
set(_,v) {
@shellandbull
shellandbull / fun.md
Last active May 24, 2016 14:45
Action Exercises

🎊 Actions!

  • Render a list of elements on a new route, call it learning-actions
  • Implement an action that transitions to another route...do not use {{link-to}}
  • Implement an action that removes items from the list
  • Implement an action that adds an element to the list

If you're finished with all of this:

Implement a `` that can create an object to be displayed on the template. This form needs to have:

@shellandbull
shellandbull / wahoo.txt
Created May 23, 2016 12:12
safe node install
curl https://gist.githubusercontent.com/isaacs/579814/raw/24f5f02b5cd1812ebb1c41a33a13a0417cccbd69/node-and-npm-in-30-seconds.sh | sh