Skip to content

Instantly share code, notes, and snippets.

View biantris's full-sized avatar
:shipit:
coding dubious things

Beatriz Oliveira biantris

:shipit:
coding dubious things
View GitHub Profile
@sibelius
sibelius / asyncMentoring.md
Last active November 23, 2022 22:16
async mentoring rules

Async Mentorship

Most mentees belive that they need sync mentorship to be able to explain their problems. However, I've found that doing an async mentorship using text to provide better results. Mentorship is a long term process, you can't "fix" or "improve" someone in a session, it takes time.

image

Mentorship Cycle

The mentee will pass in the 3 steps of the mentorship cycle. The first one is to be in a given situation, or having some problem or doubt.

type _ bool =
| T : ('a -> 'b -> 'a) bool
| F : ('a -> 'b -> 'b) bool
type ('a, 'b) eq = Eq : ('a, 'a) eq
let not_ (type a b c x) (x : (a -> b -> c) bool) : (b -> a -> c) bool =
match x with
| T -> F
@sibelius
sibelius / earlyReturn.ts
Created November 17, 2021 13:12
early return to check required condition
export const fn = async () => {
if (!requiredCondition) {
return;
}
if (!anotherRequiredCondition) {
return
}
await mainCode();

Roadmap

Geral

O que é uma linguagem de programação?

Linguagens de programação não são algo especial. "code is data".

Como representar código / AST

Interpretando aritmética

@noghartt
noghartt / church_numerals.js
Created September 30, 2021 03:11
Church Numerals with JavaScript
const TRUE = x => y => x;
const FALSE = x => y => y;
const zero = f => x => x;
const succ = n => f => x => f(n(f)(x));
const plus = m => n => f => x => m(f)(n(f)(x));
const mult = m => n => f => x => m(n(f))(x);
const exp = m => n => n(m);
const pred = n => f => x => n(g => h => h(g(f)))(u => x)(u => u);
@sibelius
sibelius / floatToCents.ts
Created September 29, 2021 16:32
convert a float to cents
export const floatToCents = (value: number): number => {
return parseInt((value * 100).toFixed(2), 10);
}
@sibelius
sibelius / learning-path-web3.md
Last active August 21, 2024 01:08
Learning Path Web3
  • learn blockchain concepts
  • learn ethereum
  • learn how to use metamask
  • learn how to use hardhat (https://hardhat.org/)
  • learn how to deploy and interact with a smart contract
  • learn common smart contract standards like ERC20 (token), ERC721 (nft), ERC1155 (opensea)
  • learn ipfs
  • learn how to read blockchain explorers like https://etherscan.io/
  • learn how to use web3 and etherjs
  • learn solidity
@biantris
biantris / todo.md
Last active September 7, 2022 17:00
study-base-fullstack

To-do

  • Basic knowledge of MongoDB
  • Basic knowledge to use Robo 3t
  • Basic knowledge of Mongoose
  • Basic knowledge of GraphQL(Query, Mutation, Subscription)
  • Some concepts react
  • Javascript (es6)
  • Basic knowledge of TypeScript

run a http post request with PHP

  • create a new file with code below:
<?php
function httpPost($url, $data)
{
    $curl = curl_init($url);
    curl_setopt($curl, CURLOPT_POST, true);
 curl_setopt($curl, CURLOPT_POSTFIELDS, http_build_query($data));