- Configured dock at the bottom
- Installed chrome
- Installed one password x (https://support.1password.com/getting-started-1password-x/)
- Installed a linux version of pbcoy (https://garywoodfine.com/use-pbcopy-on-ubuntu/)
- Installed Paper Icon theme (https://snwh.org/paper)
- Installed TPL (from list: https://itsfoss.com/things-to-do-after-installing-ubuntu-18-04/)
- Installed media codecs (https://itsfoss.com/things-to-do-after-installing-ubuntu-18-04/)
- Installed Plane-Dark theme (
- Mapped super keystrokes to work like mac osx (https://askubuntu.com/questions/10008/how-to-make-keyboard-work-like-osx-system-wide)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ref: https://sidburn.github.io/blog/2017/03/19/understanding-fold | |
const eql = (expected, value) => { | |
if (expected !== value) { | |
throw new Error(`${expected} not equal to ${value}`); | |
} | |
}; | |
eql('abc', 'abc'); | |
eql(1, 1); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Nodo { | |
public data: number; // Valor que o elemento contem | |
public proximo: Nodo; // referencia para o próximo item da lista | |
constructor(data, proximo?) { | |
this.data = data; | |
this.proximo = proximo; | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const calculateIRRF = baseAmount => { | |
if (baseAmount <= 1903.98) { | |
return 0; | |
} | |
let value = 0; | |
if (baseAmount <= 2826.65) { | |
value = baseAmount * 0.075 - 142.8; | |
} else if (baseAmount <= 3751.05) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<script src="https://fb.me/react-with-addons-15.1.0.js"></script> | |
<script src="https://fb.me/react-dom-15.1.0.js"></script> | |
<script src="https://unpkg.com/[email protected]/babel.js"></script> | |
<body> | |
<div id="myApp"></div> | |
<script type="text/babel"> | |
const rootElement = document.getElementById('myApp') | |
const Message = ( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<script src="https://fb.me/react-with-addons-15.1.0.js"></script> | |
<script src="https://fb.me/react-dom-15.1.0.js"></script> | |
<body> | |
<div id="myApp"></div> | |
<script type="text/javascript"> | |
const rootElement = document.getElementById('myApp') | |
const message = React.createElement( | |
'span', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<body> | |
<div id="myApp"></div> | |
<script type="text/javascript"> | |
const rootElement = document.getElementById('myApp') | |
const message = document.createElement('span') | |
message.className = 'stylish-message' | |
message.innerText = 'Simple HTML' | |
rootElement.appendChild(message) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Component } from '@angular/core'; | |
import { NgbDateStruct, NgbDateParserFormatter } from '@ng-bootstrap/ng-bootstrap'; | |
const now = new Date(); | |
function toInteger(value: any): number { | |
return parseInt(`${value}`, 10); | |
} | |
function isNumber(value: any): value is number { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
docker run -d -p 9999:9999 --name remotedev-service --env-file=remotedev.env --restart=unless-stopped jhen0409/remotedev-server |
I hereby claim:
- I am lricoy on github.
- I am lucasramos (https://keybase.io/lucasramos) on keybase.
- I have a public key ASAF7DGSA4p6wiUF5XR4XchWw7RPYM36zdmYuyPf55gqCQo
To claim this, I am signing this object:
NewerOlder