@gilbert189

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

Is this what America looks like? 🤔

Bring Me the Horizon was, for lack of better words, F*CK’N AWESOME

If we take the logic system of Baba is You to a logical programming language, how powerful would it be?

cohost! is a thing that exists

Aug 2, 2023, 1:08 PM
4 0 1

Don't insert a pink-red triangle to your Wii unless you want to be annihilated destroyed.

To make a Singlish language, you start with a base of British English, mix in a healthy dash of Chinese (Sinitic), a huge dollop of Malay, and just a barely detectable hint of Tamil. Trust me, it'll make all the difference. Stir it up for some years until the grammar and phonology really got jumbled up, and then...

Singlish.

@KuroiseTNP@x.com wrote:

What’s that song that goes like:

“Destroy

DUBSTEP

pff wo AE WA WA AE pff we ya

pff WA EA AA WAH WAH WEH pff E eu wow

pff pff EA WA WA pff we ya

pff WA EA AA EE WE”

sorry can’t sing that well

What is the red liquid that steaks usually spit out when you cut them?

  1. Blood

  2. Juice

  3. Both of them

liar

There’s a reason why I seldom repost posts

Ideas In Motion

Jul 29, 2023, 3:42 PM
5 0 0

did somebody made fingerprint dust from alumunium foil

ok I got the PRIME render offload working on my nspawn environment (rebooting is the answer of everything, i guess)

now I can game tomorrow

Because my Wine install on Arch is broken (for some display config, I guess), I had to piggyback my Ubuntu install so I can use it (glad systemd-nspawn exists)

Now I’m trying to figure out how to set up PRIME render offload on it because it has…

gilbertdlo@asusUbuntu ~> prime-run glxgears
X Error of failed request:  BadValue (integer parameter out of range for operation)
  Major opcode of failed request:  152 (GLX)
  Minor opcode of failed request:  3 (X_GLXCreateContext)
  Value in failed request:  0x0
  Serial number of failed request:  26
  Current serial number in output stream:  27
gilbertdlo@asusUbuntu ~ [1]>

…problems.

Jul 22, 2023, 8:50 AM
4 1 1

The Philips CD-i.

am I going to post things I made in Haskell frequently now?

import System.Random

ask :: Int -> IO ()
ask x = getLine >>= lessOrMore x . read
    where
    lessOrMore :: Int -> Int -> IO ()
    lessOrMore x inp
        | x < inp = do
            putStrLn "Your number is smaller than mine."
            ask x
        | x > inp = do
            putStrLn "Your number is larger than mine."
            ask x
        | otherwise = putStrLn "You got it!"

main = do
    rng <- getStdGen
    let number = fst $ randomR (1, 10) rng
    putStrLn "Think of a number around 1 to 10."
    ask number

oh well.