gilbert189's avatar

@gilbert189
Beta tester

i'm gilbert_given_189 on Scratch.
Wall

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.“

14 1 93

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

https://lichess.org/9RhDYqoU

You know I think this applies to about 50% of the Internet as well

using wasteof is kinda racist tbh

there are kids in africa that don’t get to use wasteof.money

😤

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" ]
    ]

Because of Wade, I’m gonna call the stem player the “yee nug”

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 🥺😐😑🙂🙃

1 0 10

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)

What if I use GitHub Gists as a way to share Bundle Again codes

in a way

1 0 2

wow I’m a failure :)

if at first you don't succeed, reduce your expectations until you're a success

28 5 12

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… 😐

What if I use GitHub Gists as a way to share Bundle Again codes

in a way

Things people get wrong when handling problems about infinity:

  • treating infinity like a number

  • being too real

  • probably others

what’s up with ATers having really low-resolution PFPs

amongrust

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.

example code

pending (need to learn amogusnese)

but why though ??? 😳

  • prove that I can yeet my dignity out from the window

  • amogus

4 0 2

My brother convinced me to use Chrome for “being ‘faster’ than Firefox“