Skip to content

Instantly share code, notes, and snippets.

@lolptdr
lolptdr / custom.css
Created May 18, 2019 20:54
Fork Nockiro's custom css for slack black theme
/*
Copyright 2017 Bryan Keller (https://github.com/widget-)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
My Linux Development Environment of 2018
Bruno Paz
In this blog post I will talk a bit about the setup and software of my personal laptop, powered by Linux. This is somewhat inspired by this post, but for a Linux based setup.
I wont list all the applications I have installed on the machine, but only the ones I consider relevant and more focused on Development.
Base system
Right now my machine is running Linux Mint 18.3 but I am thinking of moving back to Ubuntu 18.04 when its out. I dont really have any complains with Mint, but with with the replacement of Unity with Gnome 3 I want to give it a try.

Hi, We'd like you to complete a take-home coding exercise. This exercise is not meant to be tricky or complex; however, it does represent a typical problem faced by the Engineering team. Here are a few things to keep in mind as you work through it:

  • The position is for a front end developer. As a Desktop team, we work primarily with front-end technologies (React JS, LESS, etc). If you are not comfortable working with React, we encourage you to code your solution using the JS framework of your choice, otherwise https://github.com/facebookincubator/create-react-app is a good starting point.
  • There's no time limit; take your time and write quality, production-ready code. To us, production-ready means a solid UI, test coverage, good documentation, etc... Treat this as if you're a member of the Engineering team and are solving it as part of your responsibilities there.
  • Be thorough and take the opportunity to show the Engineering team that you've got technical chops.
  • Usin
/* A list is a representation of an ordered sequence of values where the same
* value may appear many times.
*/
class List {
/**
* We start with an empty block of memory which we are going to represent
* with a normal JavaScript array and we'll store the length of the list.
*
@lolptdr
lolptdr / README.md
Last active October 5, 2016 13:27
Notes on installing Elixir, Postgresql, and Phoenix

#Install Elixir, Posgresql, and Phoenix for this repo: https://github.com/dantswain/beanie#

On MacOS Sierra (10.12) with Xcode 8 and node >= 5.0

brew update
brew install elixir
brew install postgresql
createuser postgres --superuser
@lolptdr
lolptdr / phonebook-directive-spec.js
Created September 29, 2016 19:43
Created new spec file for Joel's phonebook directive
directiveTest({
module: angular.module('app'),
name: 'phonebookDirectve',
template: '<phonebook phone-numbers="testNumbers"></phonebook>',
controller: 'phonebook',
selectors: {
'phonenumber': 0
},
assertions: {
'should expose refresh functionality': function($element) {
@lolptdr
lolptdr / undo-git-rebase.sh
Created June 3, 2016 16:27 — forked from rymawby/undo-git-rebase.sh
Undoing a git rebase
# find head commit
git reflog
# now reset hard - where N is the head commit found in the reflog
git reset --hard HEAD@{N}
@lolptdr
lolptdr / List of Golden Guns
Created January 28, 2016 17:23
A list of all the magical Stack Overflow fixes
Make a clickable area larger (mobile app issue): http://stackoverflow.com/a/20327676/3412545