(personal investiment thread)
↳ Ítalo S. : Melhores investimentos que você fez em você?
↳ sibelius :
- books
- community
- crossfit
- learn in public
- sharing knowledge in public
const finalDezena = "enta"; | |
const finalCentena = "entos"; | |
const centena = (x) => `${x + finalCentena}`; | |
const dezena = (x) => `${x + finalDezena}`; | |
const algaritimos = { | |
0: "zero", | |
1: "um", | |
2: "dois", | |
3: "tres", | |
4: "quatro", |
'use strict'; | |
const {ROOT_DIR} = require('../../utils/config/index.js'); | |
var fs = require('fs'); | |
const OSS_DIR = `${ROOT_DIR}/xplat/js/RKJSModules/Libraries/Relay/oss`; | |
const COMPILER_TARGETS_FILE = `${ROOT_DIR}/fbcode/relay/oss/crates/relay-compiler/TARGETS`; | |
const COMPILER_CARGO_FILES = [ | |
`${ROOT_DIR}/fbcode/relay/oss/crates/relay-compiler/Cargo.toml`, | |
`${ROOT_DIR}/fbcode/relay/oss/Cargo.oss.lock`, | |
]; |
(personal investiment thread)
↳ Ítalo S. : Melhores investimentos que você fez em você?
↳ sibelius :
These are the repos that helped me the most
author | repo | has server | has web client | has mobile client |
---|---|---|---|---|
sibelius | DM @sseraphini on Twitter about relay-workshop | yes | yes | no |
noghartt | fakeddit | yes | yes | no |
danilo | rbaf | yes | yes | no |
bia | koa-server | yes | yes | no |
akinn | amora | yes | no | yes |
xsadia | koa-todo-api | yes | yes | no |
/* | |
If you're using ReactJS, React Native, Vanilla Js or any other web client/framework | |
call the function login | |
In the comment section below the prints to setup your app on firebase and github app dashbaord | |
*/ | |
import { getAuth, signInWithPopup, GithubAuthProvider } from "firebase/auth" | |
const login = ()=>{ |
/** | |
* @type {import('prettier').Options} | |
*/ | |
module.exports = { | |
plugins: [require.resolve('prettier-plugin-astro')], | |
overrides: [ | |
{ | |
files: '**/*.astro', | |
options: { parser: 'astro' } |
Fiz algumas perguntas nas redes sociais e ferramentas de comunicação como Twitter, LinkedIn, Slack, Discord e Telegram sobre como as pessoas costumam documentar a arquitetura de sistemas.
Vocês costumam desenhar diagramas para documentar a arquitetura dos sistemas que vocês constroem?
O que vocês costumam representar: código, infraestrutura ou ambos?
Um pouco dos conceitos que é esperado você dominar de js antes de ir para o react
THIS GIST IS OUT OF DATE! Please use my new project template here to get started with Zig on Playdate: | |
https://github.com/DanB91/Zig-Playdate-Template | |
The rest of this is preservied for historical reasons: | |
This is a small snippet of some code to get you started for developing for the Playdate on Zig. This code should be used as a starting point and may not compile without some massaging. This code has only been tested out on macOS and you'll need to modify the addSharedLibrary() portion of build.zig to output a .dll or .so instead of a .dylib, depending on you platform. | |
This code will help you produce both an executable for the Playdate simulator and also an executable that actually run on the Playdate hardware. |
name: Tests | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master |