Skip to content

Instantly share code, notes, and snippets.

View OsvaldoRino's full-sized avatar
🎯
Focusing

Tepatitlán Jal OsvaldoRino

🎯
Focusing
View GitHub Profile
@OsvaldoRino
OsvaldoRino / index.html
Created April 22, 2024 19:41
Space globe - Three.js
<div id="canvas_container"></div>
<!-- <button id="fullscr">Go Fullscreen</button> -->
@OsvaldoRino
OsvaldoRino / index.html
Created December 17, 2022 02:45
Magic Card
<div class="card">
Magic Card
</div>
<a href="https://mythrillfiction.com/" target="_blank">Mythrill</a>
@OsvaldoRino
OsvaldoRino / 495-is-a-special-number.markdown
Created August 18, 2022 12:06
495 is a special number

495 is a special number

Enter a three digit number. Each digit can only be there once. The algoritm is: sort the digits with largets digits first, and smallest digits first. Then subtract them from each other. You will always end up on 495 I discovered this in a video on TikTok

A Pen by Osvaldo on CodePen.

License.

@OsvaldoRino
OsvaldoRino / index.html
Created August 18, 2022 12:02
Magic Card
<div class="card">
Magic Card
</div>
<a href="https://mythrillfiction.com/" target="_blank">Mythrill</a>
@OsvaldoRino
OsvaldoRino / Marlowe.hs
Created August 4, 2021 23:54
Marlowe Smart Contract
{-# LANGUAGE OverloadedStrings #-}
module Escrow where
import Language.Marlowe
main :: IO ()
main = print . pretty $ contract
{- What does the vanilla contract look like?
@OsvaldoRino
OsvaldoRino / Marlowe.hs
Created August 4, 2021 23:48
Marlowe Smart Contract
{-# LANGUAGE OverloadedStrings #-}
module Escrow where
import Language.Marlowe
main :: IO ()
main = print . pretty $ contract
{- What does the vanilla contract look like?