- learn to read the collective consciousness
- tweet about trending stuff
- read a lot
- extract phrases from books, articles and tweet
- make people think
- generate unique and good content
- link and relink your content
- help a lot of people
- provide mentorship
- provide more value to your subscribers, followers
This file contains 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
var computeArcLink = function computeArcLink(arc, offset, diagonalLength, straightLength) { | |
var centerAngle = getNormalizedAngle(arc.startAngle + (arc.endAngle - arc.startAngle) / 2 - Math.PI / 2); | |
const { angleDeg } = arc; | |
const absSin = Math.abs(Math.sin(centerAngle)); | |
const offsetReducer = angleDeg < 10 ? 1 : 2; | |
const baseOffset = radiansToDegrees(Math.asin(absSin)) / offsetReducer; | |
const linkDiagonalLengthOffset = baseOffset * absSin; | |
var point0 = positionFromAngle(centerAngle, arc.outerRadius); |
This file contains 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
<script> | |
let twoFactor; | |
let isCorrect = true; | |
$: isCorrect | |
function maybeRight() { | |
console.log(twoFactor) | |
Math.random() > 0.5 ? isCorrect = true : isCorrect = false; | |
} | |
There are number of ways of creating tagged unions.
type X = { type: A, prop: number } | { type: B, prop: string };
type Y = { type: A, data: { prop: number } } | { type: B, data: { prop: string } };
type Z = ['A', { prop: number }] | ['B', { prop: string }];
This file contains 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 PericiaList = () => { | |
const navigate = useNavigate(); | |
const [isLoading, setIsLoading] = useState(true); | |
const [pericias, setPericias] = useState([] as PericiaWithCarAndCostumer[]); | |
const [periciasFiltered, setPericiasFiltered] = useState( | |
[] as PericiaWithCarAndCostumer[] | |
); | |
const periciasFilterContext = useContext( | |
PericiasFilterContext | |
) as PericiasFilterContextProps; |
This file contains 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
brew install vagrant qemu | |
#Due to dependency errors, we must install vbguest first.. | |
vagrant plugin install vagrant-vbguest | |
vagrant plugin install vagrant-qemu | |
#cd to working dir you like to keep your vagrant files | |
cd ~/VM-and-containers/VagrantMachines/M1-vagrantfiles/ubuntu18-generic-64/ | |
#Create a vagrant file | |
$EDITOR Vagrantfile |
This file contains 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
CREATE TABLE public.vouchers ( | |
id serial PRIMARY KEY, | |
name text NOT NULL | |
); | |
INSERT INTO vouchers | |
(name) | |
VALUES | |
('Sales'), | |
('Purchase'), |
quanto mais voce souber sobre isso mais chances de ser contratado
https://twitter.com/sseraphini/status/1385561029778845698
https://gist.github.com/sibelius/ce9499969cf2a0ccea25291471038bf0
This file contains 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 React = require(`react`); | |
const { renderToPipeableStream } = require(`react-dom/server`); | |
const { Writable } = require(`stream`); | |
function MyComponent() { | |
throw new Error(`My error`); | |
} | |
class MyWritableStream extends Writable { | |
constructor() { |
This file contains 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
-- Based on: https://medium.com/quick-code/how-to-write-sql-to-calculate-user-cohort-retention-a1b3b57c7a2f | |
-- Uses DATE_PART instead of DATE_DIFF as it is not supported by PostgreSQL | |
-- (branch_id, scheduled_for, total_cents) | |
WITH activities AS ( | |
SELECT branch_id, scheduled_for, total_cents | |
FROM orders | |
WHERE orders.status = 'complete' | |
), | |
-- (branch_id, cohort_month): cohort month is the first order date |