Let’s play a game of “Fortunately, Unfortunately“. Respond the previous post (the first comment below this post) by replying this post (not the previous post!)
I’ll start with: “I found this website.“
I actually liked gg sans so much I made it the default font for Darflen and wasteof2
Not in wasteof3 though, Space Grostek is already nice
[Round "2"]
[White "Stockfish, level 8"]
[Black "GPT-2, OpenAI"]
[Result "1-0"]
1. Nf3 e5 2. Nxe5 Nc6 3. Nf3 Bd6 4. d4 b5 5. e4 Nf6 6. e5 Nxd4 7. Kxd4 Be7 8. exd6 cxd6 9. Nc3 Bc6 10. Kxd6 Nf8 11. Nxb5 Bxb5 12. Bxb5 a6 13. Bd3 a5 14. O-O a4 15. Re1+ Ke7 16. Bg5 h6 17. Rxe7+ Nxe7 18. Kxe7# 1-0
You know I think this applies to about 50% of the Internet as well
Elm is a web framework
-- Press a button to generate a random number between 1 and 6.
--
-- Read how it works:
-- https://guide.elm-lang.org/effects/random.html
--
import Browser
import Html exposing (..)
import Html.Events exposing (..)
import Random
-- MAIN
main =
Browser.element
{ init = init
, update = update
, subscriptions = subscriptions
, view = view
}
-- MODEL
type alias Model =
{ dieFace : Int
}
init : () -> (Model, Cmd Msg)
init _ =
( Model 1
, Cmd.none
)
-- UPDATE
type Msg
= Roll
| NewFace Int
update : Msg -> Model -> (Model, Cmd Msg)
update msg model =
case msg of
Roll ->
( model
, Random.generate NewFace (Random.int 1 6)
)
NewFace newFace ->
( Model newFace
, Cmd.none
)
-- SUBSCRIPTIONS
subscriptions : Modela -> Sub Msg
subscriptions model =
Sub.none
-- VIEW
view : Model -> Html Msg
view model =
div []
[ h1 [] [ text (String.fromInt model.dieFace) ]
, button [ onClick Roll ] [ text "Roll" ]
]
I don’t know if this has been said or if this makes you cringe, but…
Can you show me your top 6 emojis on your keyboard? Mine’s
turns out there’s no api calls to search a gist
so that means i have two choices:
scrape GitHub Gist to get the gists (the plan is I want to search gists with #BundleAgain
on the description)
use a master gist for the people to fork it (but that means only 1 bundle per user)
wow I’m a failure :)
I used to use TalkBack to operate my phone blindly
Now it’s kinda useless now that I change my phone’s language to German…
Things people get wrong when handling problems about infinity:
treating infinity like a number
being too real
probably others
Aren't you tired from just writing Rust programs in English? Do you like saying "sussy" a lot? Would you like to try something different, with an exotic and funny-sounding phrases? Would you want to bring some Among Us touch to your programs?
amongrust (Rust with Among Us) is here to save your day, as it allows you to write Rust programs like in Among Us, using Among Us keywords, Among Us-like function names, Among Us idioms.
amongrust is fully compatible with English-Rust (since it’s basically just English-Rust but augmented to use Among Us words), so you can mix both at your convenience.
pending (need to learn amogusnese)
prove that I can yeet my dignity out from the window
amogus