Skip to content

Instantly share code, notes, and snippets.

View montogeek's full-sized avatar

Fernando Montoya montogeek

View GitHub Profile

Linking my account montogeek on GitHub with my address 0xe4361d75ea3215490d4841651357ff81a802577d on EVM in mycryptoprofile.io, and the challenge code is: 676cfa63cf07ef18f4386a2a85fe6814. #LitentryVerifyMyAddress

Linking my account montogeek on GitHub with my address 0xe4361d75ea3215490d4841651357ff81a802577d on EVM in staging.mycryptoprofile.io, and the challenge code is: 18773057af19dbf77901750f4ca0301b. #LitentryVerifyMyAddress

TypeScript 8 hrs 32 mins █████████████▎░░░░░░░ 63.1%
HTML 2 hrs 28 mins ███▊░░░░░░░░░░░░░░░░░ 18.3%
Other 37 mins ▉░░░░░░░░░░░░░░░░░░░░ 4.6%
Ruby 34 mins ▉░░░░░░░░░░░░░░░░░░░░ 4.3%
Elixir 21 mins ▌░░░░░░░░░░░░░░░░░░░░ 2.6%
@montogeek
montogeek / comp.ts
Created September 11, 2020 14:06
React MaterialUIHueOverlay
const useOverlayStyles = makeStyles((theme) => {
return {
blended: {
mixBlendMode: 'hue',
backgroundColor: theme.palette.primary.main,
position: 'absolute',
top: -4, // To include the border
right: 0,
bottom: 0,
left: 0,
@montogeek
montogeek / eventEnumsToEventUnions.ts
Last active August 13, 2020 09:39
xState states to TypeScript Enums
enum Events = {
START,
END
}
type EventMap<T> = {
[K in keyof T]: {
type: K;
};
};
@montogeek
montogeek / machine.js
Last active August 10, 2020 15:58
Generated by XState Viz: https://xstate.js.org/viz
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
@montogeek
montogeek / machine.js
Created August 7, 2020 13:33
Generated by XState Viz: https://xstate.js.org/viz
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
@montogeek
montogeek / 📊 Weekly development breakdown
Last active May 26, 2020 15:08
📊 Weekly development breakdown
TypeScript 11 hrs 24 mins ████████████▉░░░░░░░░ 61.4%
JavaScript 3 hrs 35 mins ████░░░░░░░░░░░░░░░░░ 19.3%
JSON 2 hrs 45 mins ███░░░░░░░░░░░░░░░░░░ 14.9%
Docker 16 mins ▎░░░░░░░░░░░░░░░░░░░░ 1.5%
Other 11 mins ▏░░░░░░░░░░░░░░░░░░░░ 1.1%
```md
```js
<Component />
```
```