Log in
Sign up
See new Tweets

Conversation

Jess Peck ๐Ÿ๐Ÿค–
@jessthebp
ยท
Aug 15, 2022
if sql is a programming language, so are html and css.
6
2
21
Jess Peck ๐Ÿ๐Ÿค–
@jessthebp
ยท
Aug 15, 2022
domain specific declarative languages baby
1
5
Jess Peck ๐Ÿ๐Ÿค–
@jessthebp
ยท
Aug 15, 2022
here's the Fibonacci sequence in sql btw. turing complete bb, you could run doom on this thing
WITH RECURSIVE a(b, c) AS (
  SELECT 0, 1    
  
  UNION ALL
  SELECT c, c+b
  FROM a
)

SELECT c
FROM a
LIMIT 10
read image description
ALT
2
7
johnmu is a ranking factor and so are you ๐Ÿ€
@JohnMu
Replying to
@jessthebp
For HTML & CSS, there's https://github.com/yurkagon/Doom-Nukem-CSSโ€ฆ :-)
github.com
GitHub - yurkagon/Doom-Nukem-CSS: ๐ŸŽฎ CSS 3D Shooter. https://yurkagon.github.io/Doom-Nukem-CSS/
๐ŸŽฎ CSS 3D Shooter. https://yurkagon.github.io/Doom-Nukem-CSS/ - GitHub - yurkagon/Doom-Nukem-CSS: ๐ŸŽฎ CSS 3D Shooter. https://yurkagon.github.io/Doom-Nukem-CSS/
8:36 AM ยท Aug 16, 2022
4
Retweets
1
Quote Tweet
3
Likes
Jess Peck ๐Ÿ๐Ÿค–
@jessthebp
ยท
Aug 16, 2022
Replying to
@JohnMu
Omg this rules!
1
Andy Simpson ๐Ÿ‡ฌ๐Ÿ‡ง
@ndyjsimpson
ยท
Aug 16, 2022
Replying to
@JohnMu
and
@jessthebp
...well their goes my Tuesday! ๐Ÿ˜
2