Tumgik
Text
I have consumed Too Much Cheese
6 notes · View notes
Text
Neurodivergent people be like "wow, this game changed my life, exquisite gameplay, groundbreaking" and then they show you the game and it looks like this
Tumblr media
15K notes · View notes
Text
Tumblr media Tumblr media
After some time flirting with the idea, finally got pulled into textmode and been loving it so far! Here's two of my first pieces, expect a few more in the near future^^
software: Playscii font: AtariAll
186 notes · View notes
Text
Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media
A little bit of everything this time. Some more broken trees, interior decorations and some smaller improvements. I also improved the grass a bit!
As always your suggestions, feedback and critique is greatly appreciated!
109 notes · View notes
Photo
Tumblr media Tumblr media
109K notes · View notes
Text
Tumblr media
4K notes · View notes
Text
Tumblr media
682 notes · View notes
Text
Tumblr media Tumblr media
pink razer gaming laptop 🎀🖱⊹○゚˖
861 notes · View notes
Text
Tumblr media
Art Nouveau vase from c. 1902, Germany
803 notes · View notes
Text
Tumblr media Tumblr media Tumblr media Tumblr media
166 notes · View notes
Text
Tumblr media
Inside of you there are two Clouds
279 notes · View notes
Text
Tumblr media Tumblr media Tumblr media Tumblr media
🕸️💀💜👻🕸️
3K notes · View notes
Text
suppose we have some functions f, g, h, ... a -> Maybe b. now let's write the "composition"
let y = f x case y of Just _ -> y Nothing -> g x
or in C++ it's like
std::optional<T> y = f(x); if(y){ return y; } else { return g(x); }
i.e. try to compute a value with f. if successful, return that value. if not, try g instead. we can obviously generalise this to any number of candidates f, g, h, ... but it gets unreadable. so I thought surely this is some monadic operation in the Maybe monad. I mean it's basically like OR with short-circuit evaluation where Nothing is falsy and Just _ is truthy. and it turns out in Haskell it's
f x <|> g x <|> h x <|> ... = msum fmap ($ x) [f, g, h, ...]
and thanks to lazy evaluation only as many functions are called as are needed. neat! in C++23 it'll be std::optional::or_else.
17 notes · View notes
Photo
Tumblr media
The first simulated image of a black hole was calculated with an IBM 7040 computer using 1960 punch cards and hand-plotted by French astrophysicist Jean-Pierre Luminet in 1978.
30K notes · View notes
Text
Cheese ball boba
Tumblr media
514 notes · View notes
Photo
Tumblr media
Is it fall yet? 🎃🍂🍁
2K notes · View notes
Text
Some higher-ups in the university apparently looked up a list of "most commonly used programming languages" and found SQL at the top, so they are really pushing for it to be taught to all first year computer science students. They basically want it to be the main programming language we teach.
They also announced that they want us to teach PowerPoint in computer science.
I wish people who had no idea what computer science is wouldn't try to tell us how to teach it.
34 notes · View notes