#ot1-perplexing-regexing
1 messages · Page 490 of 1
🤷♂️
nah fire fox is heavy
nah fire fox is heavy
@edgy crest not as heavy as chrome tabs
wow edge has a stable build now for linux but it is not released yet
guys, if there was going to be a new programming language created today? what features would you really want it to have
also if you want to, just type some code which you wan't the language to look like
just doing some research : )
p a t t e r n m a t c h i n g
lol @shell raptor would you mind elaborating as these are features that i am trying to integrate
P A T M A
@mild abyss point taken : )
Jokes aside, pattern matching in arguments
@quick scroll have you seen pattern matching in other languages?
@shell raptor sadly, no, would you mind showing an example : )
i have worked with Python, Dart, JavaScript, HTML, CSS and a bit of Rust
Like this^, but as a language construct, not stringly hack
Rust has pattern matching like that
In Rust,
let x = Some(5);
let y = 10;
match x {
Some(50) => println!("Got 50"),
Some(y) => println!("Matched, y = {:?}", y),
_ => println!("Default case, x = {:?}", x),
}
@quick scroll your pfp says you should learn swift...
@mild abyss lmao that too
Also @shell raptor I'm curious how you implemented that 
ooh lol you mean that? yes absolutely that is possible
well guys any more suggestions?
functional or OOP
@topaz aurora
- Context managers can swallow exceptions (like
contextlib.suppress) - If tuple unpacking in
withthrows an exception, it's treated as if it's inside thewithblock
@quick scroll both 🙂
Well, you can replicate OO stuff in Haskell/Rust to a certain degree
would you prefer readability or speed of development?
man ot2 wants me to learn rust like "PLEASE WAIT I HAVE RESEARCH PAPERS TO FINISH"
would you prefer readability or speed of development?
@quick scroll depends on the situation. i think some programmers use python as a template before transforming it into another implementation of a language. it is because it is easier to read.
which code below do you like better
1.
fn dosmth():
mys = "hello"
mys.rp('a', '') # replace occurences of `a` with ``
dosmth()
pb cl MyCl: # class decleration
fn hello():
o('hi')
if val | smth:
o('val is equal to smth')
rt # return
function dosmth() -> string:
mystring = 'hello'
mystring.replace-occurences-of(value : 'a', with : '')
public class MyClass:
function hello():
printout('hi')
if val equals exactly smth:
print('WER')
@low chasm updated the code
The first one has everything shortened
and the second one is too verbose
equals exactly is different yeah
I don't think typing speed impacts development speed a lot
Yeah, i think it depends on how you compile/interpret the code
Honestly though full words for identifiers/keywords is a bit better
Designing a language is frustrating though
or at least truncated versions of them
until coming to the right one 🇱 🇦 🇷 🇰
e.g. func > function > fn if, it's a keyword, not some magic meta function like I have for my LISP
always has been
Lol
@topaz aurora @low chasm so you prefer readibility to compile and execution times?
i'm just asking, not implying that i am for or against anything
Are those mutually exclusive? 👀
lmao
@quick scroll So are you going with compiler or interpreter?
Cool, compiling is a bit hard
I figured I would make my lang interpreted, and wait till I got better in language design before I made a compiler
lmao
so here's what i see people want
- Easy packaging while creating packages
- Pattern matching in arguments
- OOP and Functional Programming
or uglier!
- Readability is prioritized over speed and interpretation and exectution times
Im using lark
you guys sure you wan't something as verbose as option 2?
Python
-__-
im coding it in python yeah
ima head out
@low chasm well so i am confused now lol what do you prefer?
I don't want something too verbose, but not something like option one
instead of exactly equals do ==
But yeah, do whatever feels good for you
Most langs use ==
correct lol
My lang looks a bit like python, but with brackets
You'll have to start with a parser and lexer
I would reccomend Lark
its powerful and easy enough to use
hmm
thanks
anymore suggestions guys?
would really appreciate if you could suggest a few more things you would like in a next generation language
Well, focus on getting the syntax for the language figured out first
And after that, don't focus on speed or anything, focus on making it work
after that, tweak it for speed and readability if you want
And after that, you should focus on making it pretty and have good formatting rules
Get the general structure of the language out first
focus on the fundamentals like control flow and the basics like print and input
Depending on the use case, speed might not matter at all
this channel name... cant even remember when it was made 😄
Lol
Lmao
I got three ransom emails with the same content
wait ransom
Lol
more like "haha I know how to use anonymous mail"
Lmao
I never got spam emails in my personal one
I've never gotten spam email
It threatened me to pay $650 in bitcoin in 60 hours, but the deadline has long been over for the first two emails!
but my phone number used to belong to his guy named alex
Although if I did, I probably would've scammed the scammer
And these random people keep texting me calling me alex
Alex is tormenting you for stealing their number
Lol
Its like two or three a day
apparently alex signed up for this thing
with his phone number
and now im getting the texts
But having small talk with these people is fun
it takes away my lonelyness
@topaz aurora I wanted to point out various grammar errors in the text, but sadly it's from anonymous email.
you could've answered:
NOOOOOOO
Lmao
I said hi
and then they started talking in a different language
I replied with who are you
they then promptly hang up
lol i always have some fun if i get wrong number calls
like yes i am your late late ancestor, and i am hiding here cuz i am immortal and i dont want other people to steal it from me
would appreciate your input here : )
Sure, ill check it out
thanks
Have you decided on what parser to use?
Make a github as well, version control would be important
Two people voted for everything
lol
My lang uses more brackets and semicolons
Hes making a lang
and high performance doesn't mean short words
we r providing him suggestions
which seems to be the only difference between the two
Yeah, hes asking us on the syntax
My syntax is sort of python similar, but with brackets
the syntax is the same but with shorter words
if 5 == 5 {
print("TRUE");
}
why not just c-like
I want it to be readable
No, not really
lol c++ is the last thing from readable
@low chasm that is very similar to swift LMAO
i've done c++, js, html, dart, swift, css, rust
x = 10;
m = 10;
y = x + m;
if y == x {
print("TRUE");
}else {
print("FALSE");
}
``` its like this
Well, its pretty readable
yep i agree
C doesn't have print
@low chasm is correct
well tell me this is readable cout<<''<<
I was considering using spit for print and swallow for input
it's fine if you know what it means lol
LMAOOOOOO @low chasm
Lol
if it's a quirky language then it doesn't have to make too much sense anyway so i wouldn't worry about that too much
I have minimal experience with C
i can tell
Lol
Functions are defined different from C as well
function myfunc() {
print("FUNC");
}
Well, sort of
while I hate both == true
Lmao
XD
but the syntax in those two was identical really
oof people really aren't nice
the words are different
correct
yeah
to type they were diff
but there's no reason to choose the less readable option because it's not going to make it run faster
well i think i found a pretty good balance
actually there is, its a huge bit faster to write
fn to define functions is readable
but single letter functions isn't great imo
and you're not going to use replace often enough to justify shortening it massively
Im using Lark, which is pretty powerful
PLY is a bit outdated
What are you writing your lang in?
python?
or something else
pythons pretty decent for designing languages
import in, out
name = in('What is your name : ')
# they could also declare while stating the type
str name = in('What is your name : ')
# calling methods
int_name = name.convertInt()
if name exists {
out('Your name is !!name')
}
if name does not exist {
out('Bruh')
}
i also thought about this
import in, out
name = in<'What is your name : '>
# they could also declare while stating the type
str name = in<'What is your name : '>
# calling methods
int_name = name.convertInt()
if name exists {
out<'Your name is !!name'>
}
if name does not exist {
out<'Bruh'>
}
which one do you like better?
I like the first one
I'm writing it in the language the next oft says noone uses lol
why are you standard input and output functions libraries you import
Rust
Ooh cool
and they're each a separate module
Rust is nice
@high verge lol bro just some kinda representation
sure
well i thought baout this tooo
I didn't like the <> much
# want to access the size of the text
text = in('Enter some text : ')
size = text<size>
and instead of dunder methods we can use the <>
Yeah thats nice
this is really coming together! thanks for all your inputs : )
hmm the idea of how to implement dunders is interesting
like with pattern matching?
Maybe both, i dunno
however, doesn't matching essentially do the same thing?
Am I the only person who hates python error output?
I feel like it has way too much information
And the trace back is a bit too much
Yeah I find it way too long
lol
lol
i don't really see how it could have less information
and most of the time when you have a really overlong traceback it's because the library you're using is doing things wrong
Hey
but how do you add files to python
@fresh kayak what do you mean bypython?
like read and write files ?
From where?
To they allow it using automated scripts?
with open("file_name","r") as f:
data = f.read()
# what evere
mhmm
yea
def essays():
thiswonttweet = True
while thiswonttweet:
mediaid2 = code.gif
mediaid1 = proofread.gif
mediaid3 = seovertake.gif
copywrite = api.update_status("coochie man", [mediaid3] + str(currentrends))
tweets = api.home_timeline(count=1)
tweet = tweets[0]
time.sleep(6000)
api.destroy_status(copywrite)
api.destroy_status(bot)
api.destroy_status(seo)
essays()```
there's a ton more
this is just abridged
@shell raptor :x: Your eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | File "<string>", line 2, in <module>
003 | IndexError: list index out of range
It could print [1, 2, 3]: index (5) out of bounds [0; 2]
but hey, why not just print "list index out of range"
I mean... just split the number into digits by dividing it by 10
nah i will convert it in a list
can you link the kata?
*
and then...?
print(*_list)
but you have to return it, not print
oh fudge
🙂
.<
Of course you can do that with ctypes
probably
Either way, you don't really benefit from cicrumventing codewars
wdym?
there is a better way to practice?
i mean yeah, code wars wont allow it xD
do you have an idea how will i do this then?
i didnt quite get what you meant by dviding it by 10
either convert it to string and return the reverse of it or do math
then do math
well yeah what kind of math >.<
ok how do you get the last digit?
wdym?
how will that capture each digit
yeah you need to use % 10
divide 10 to get rid of the last digit
thats it
🥴
so then u mod10 the second last (which is now the last)
i mean yeah, % 10 will give the last digit, but what good will that do?
ok lemme show you
1234
1234 % 10 == 4
1234 // 10 == 123
123 % 10 == 3
123 // 10 == 12
12 % 10 == 2
12 // 10 == 1
1 % 10 == 1
1 // 10 == 0
STOP
you are getting each digit in the reverse order
dividing 10 removes the last digit
oooh
how will i loop through the entire num
some while loop
do this until the number becomes zero
or sth
oh lol
holy cow i haven't been here in 2 years and almost everything has changed
Lol
@rich moon but how will i create a total?
i mean they arent strings, so if i add them it will give the sum rather than the numbers
@rough sapphire do you know ?..
I am willing to write a code but I am hesitating
because you need to learn this on your own
I can give you the idea tho
ok you are getting individiual digits right?
yeah
like i am setting n % 10 to a var, and then i am setting n to n // 10
ok now see the following
while n > 0:
b = n % 10
n //= 10```
yeah good!
now i need to get the total
this is for 1234
num = 0
num = num * 10 + 4 -> num is now 4
num = num * 10 + 3 -> num is now __
num = num * 10 + 2 -> num is now __
num = num * 10 + 1 -> num is now __
finally what is num?
fill these
nope think again
yeah so num is now 4
voila!
number reversed
so all you need to do is add a simple step in that while loop you showed me
a = 0
while n > 0:
b = n % 10
n //= 10
a = (a * 10) + b
return a```
thanks
ugh what
which case it fails?
@edgy crest Can you show the code?
maybe you have 'os' inside a name, and it's unhappy
a = 0
while n > 0:
b = n % 10
n //= 10
a = (a * 10) + b
return a```
and also comments on top which were already there
I am 120% sure this is correct
simple do more math
a = 0
while n > 0:
b = n % 10
n //= 10
a = (a * 10) + b
return a```
@edgy crest are you just trying to create n from n?
wut?
yes sir
nah, not me
@edgy crest you can just convert it to a string, reverse the string, and then convert it to an int
theres an inbuilt reverse function thats probably faster than yours
or reversed is the name for it
I guess converting to a string is not allowed in the particular question
actually, converting to a string and back might take more time than just reversing the integer
maybe
!e
import lark
print(dir(lark))
@shell raptor :white_check_mark: Your eval job has completed with return code 0.
['Discard', 'GrammarError', 'InlineTransformer', 'Lark', 'LarkError', 'LexError', 'ParseError', 'Token', 'Transformer', 'Transformer_NonRecursive', 'Tree', 'UnexpectedCharacters', 'UnexpectedInput', 'UnexpectedToken', 'Visitor', '__builtins__', '__cached__', '__doc__', '__file__', '__loader__', '__name__', '__package__', '__path__', '__spec__', '__version__', 'common', 'exceptions', 'grammar', 'inline_args', 'lark', 'lexer', 'load_grammar', 'logger', 'parse_tree_builder', 'parser_frontends', 'parsers', 'tree', 'utils', 'v_args', 'visitors']

anyone here able help me with haskell ?
This is funny and oh so accurate
HAhahh
what are polymers and how are they formed
someone here is smart enough to know what that is, im studying for my yearly exams
ping me if any of u have an answer
@meager lion Polymers are substances created of similar large blocks of molecules bonded together. Think of a creation of legos. They're designed in a certain way to have certain properties.
To the best of my knowledge they are created in two ways, either by adding legos one at a time to an existing lego or having a bunch of legos and then having them all bond together at once
(addition versus condensation)
@fresh kayak I'd recommend focusing more on emotion and what the people actually get from it. Purely seeing price cuts won't get anyone interested
looks like a scam
what do you think'd get emotion on it?
LMAO IT DOES
I would never get close to buying that, if we're gonna be honest about the ad. What target audience do you have for them?
lmao the target is boomers
for the seo, just website owners trying to rocket up their blog
for proofreaders, legit anyone who needs it
for bots, people who are either reluctant or don't have time to code their own chatbot
cuz they easy to scam
This is the golden rule of basically everything in marketing:
If you try to appeal to everyone, you'll end up appealing to no one
anyone here able help with haskell ?
We're discussing marketing here. Feel free to ask in #ot2-never-nester’s-nightmare
@fresh kayak why not create a video it is very hard to interest someone nowadays, with just a poster.
but usually, videos are overlooked
oh
it's just a general known fact
take yt ads
everyone skips them
unless you have a video based business
then you want to use it
This is the difference of target audience, even though they're quite similar for both of these iPhones
wouldnt hte first photo be more interesting
Not really
oh
yea
It's marketed toward pros who want to get the most premium and powerful things. It's "the thing"
OHHH THAT MAKES SNESE
but the 2nd one is for normal folks like u and me
The last one is much more playful, both in colors and presentation
Apple is great at branding and marketing, which is part of how they've managed to become the single most valuable company on this planet
What I mean in your picture is that you'll have to define your target audience. Who are they? What do their lives look like? Why would they want to buy your product? Do they have any pain points in their day to day lives?
maybe, for the custom discord/legit almost every large sm bot, i'll show a dark background with white text, bolding the text but showing the premiumness(?) of the chatbots
because
Is your target audience the premium users who need the high quality and premium feel?
tbf, it's a mix of businesses and individuals
businesses want the quality to push their company
but individuals don't rlly mind
maybe i'll push 2 ads
I'm gonna be hard with you so you can learn. Reread this #ot1-perplexing-regexing message
At least in the beginning, I'd strongly recommend choosing one single target audience and getting a good grip of that market
i'd pick the individuals then
so maybe a casual font and a more casual photo of code
Though I don't expect you to do a lot of market research and go through the process of creating a brand, but you should still try to get a somewhat solid grip of who will be buying your product
Hmm. Don't quite think about font and photos yet. Try to define who they are?
good idea
i'll do a little bit of market research
get a good logo for all 3 of my main projects
tbf tho
A logo is only as good as your brand and target audience
chatbots are usually used by businesses to speed up their interactions and get further research on their market
so for that i'll prolly get a more refined appeal
for the seo, very similar
and proofreading i'll prolly appeal to the average worker
Hmm
Take a look at this site as an example for a software development agency. I don't know anything about them,, but they could serve as an example https://sidebench.com/
On the site, they start with providing some feeling with a video and a simple text
When you scroll down, you get to previous projects where they've helped actual people solve their goals. Not get software, but solved their goals
Then you get clients who you know and trust
And some more about the company
Well, at least well known and somewhat reputable companies. "If they use it, why not us"
i'm just a freelancer, so i'll prolly not go that far and deep into it, but i'll certainly use it as a large example
cos they've got a clean and classic feel onto their site
which i can distill onto my adverts for my page
You don't have to go that deep into it. The point is that you should try to define your target audience and understand part of their needs and wants. When you design the actual ads, I also have 3 things for you to keep in mind
These three things are the foundation of rhetorics and some of the most powerful tools available. They're truly fundamental to everywhere you want to influence someone
@fresh kayak Here they are:
- Ethos. They should have a reason to trust you
- Logos. Show them why it's the logical choice
- Pathos. Provoke emotions. This is one of the most impactful points
-it's trustworthy due to my experience in coding
-it's logical due to the prices compared to competition
-i can provoke want of my services by saying i've got examples of code, which will make them enquire
I haven't read this exact article, but this may give you a clearer picture of it https://fs.blog/2016/11/ethos-logos-pathos/
Didn't expect this to turn into Rhetorics 101, but here we are ahahah
Hope it helps :)
@plucky ridge I saw you lurking about 👀 Anything to add? maybe not
Nah, I lost my train of thought
think about your audience
probably not massively tech savvy
probably fairly young
probably into gaming
take a look at the kind of ads you see on gaming websites for example
woops
well
roughly that
but they often aren't very beautifully designed
they're intended to look good and persuasive to a specific group of people
@fresh kayak Here is, eh, something
I made that now as an example of something. It's not too good, but I just got sucked into randomly creating something like this
bit too much like a lawyer firm imo ;)
It depends a lot on the target audience
have YOU been conned by a chatbot? you may be entitled for compensation! :P
Sure
looks nice though c:
Not you 😏
as vester said
awful as every ad should be 👍
ay yo vester
what font did u use
@narrow pecan
using it to find a casual version
I used arial, lato and some font with "condensed" in the name (not totally sure on the name)
how are you implementing these chatbots
is it for a website?
like are you contracting or is it just a service they sign up for automatically
contracting via fiverr
just getting business out and them gonna prolly remove after a few customers
tldr
i post ad
people ask
i tell them prices
they decide
i do work if they say yes
i give them work
they give review
and done
yes but what is the work
are you just writing a python script
if i bought your service, what would i have
@young shoal wanna play some among us?
Fun Fact: Java (the language) is named after an island in Indonesia
python logo are 2 snakes but the name was inspired by the show, no?
yeah
Why 2 snakes though?
Oh I didn't noticed that the original logo was only 1 snake, when python 2 came out I assume they changed the logo with 2 snakes
I guess that had to stop at some point though lol
I might be terribly wrong, but it is too much coincidence!
That image is 🔥 though
i just googled 3 snakes. im sure someone somewhere could have ;c now we just have py3 with 2 snek
Imagine these 3 snakes being pythons. You would have python3 in that case
i make python4 by putting together 4 snakes
yup

hi
hi
Happy Halloween so what are the plans xD?
@lapis wren QUIT HARRAISING ME IM SICK OF IT
whats the difference of .py and .py~ i dont really understand the differnece
Happy Halloween so what are the plans xD?
@scarlet wind Assignment up my ass and I got ~40 scientific article to grind
@prime aspen might just wanna pm
@topaz aurora there he goes again
IM SORRY THAT I FORGOT A RULE YALL HAVE PUNISHED ME ENOUGH\
not me but someone lol
lol @prime aspen that sucks
JUST STOP HARRASING ME
!silence
✅ silenced current channel for 10 minute(s).
✅ unsilenced current channel.
nice
Guys.
Any tips on learning python?
I want to look smart. So I can stop being bullied, by my friends as school.
I take a computer class, but all they teach is scratch.
Yep, use to get bullied for learning scratch "Its so simple all you need to know is how to read and how to do legos"
Oh yeah made something in lua. But now im getting bullied for playing roblox because its made in lua
!resources
The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.
@rough sapphire hey man if your getting bullied in a school for not knowing a programming language then i suggest you avoid those people
lua is a very useful language
you can tell them all the other uses for lua
.uwu halloween!
hawwoween!
flat earthers are the stupidest but the shit they write is the funniest
what the actual fuck 🤣
Trick or treat!
lolll
sorry m8, got no treats, but i do got a trick
spooky skeleton pumpkin candy
.uwu rlrlrlrlrlrlrlrlrr
wwwwwwwwwwwwwwwwww
wwww
.uwu rrr.google.com
there are spooky skeletons in my pumpkin
spooky SKELETON in my pumpkin
im gonna look at the source to unmask all of them hehehe
danger
hahaa
jack-o-lantern
doot
spooky skeleton pumpkin jack-o-lantern danger
pumpkin
oh
so there are 4 in toral
can someone send me java 11 windows installer file
no
lol
yes
idk , but I don't mind it , since those make the editor look like vim more
@lunar shore I still have that issue
That's for your colorscheme
what issue
when I turn off termguicolors the line appears
Try changing it back to gruvbox
The real gruvbox?
Yes
Like the not editted?
Yes
But with set notermguicolors it works
You changed it back in your vimrc?
init.vim ye
And you relaunched neovim?
Yes
How doesn't it work for you
hye how come you hav got a side bar for files
try changing your terminal
:/
I'm saying it's related to termguicolors
JUST CHANGE YOUR TERMINAL
You can't get help
wasn't helpful
stfu
:/
You are not getting help with this situation
NOPE
@tribal aurora Like why don't you?
It's just for tests
Not like permanently
lol
...
I can't help you . You just straightup don't do what we suggest to you and expect it to be helpful
And complain that It "wasn't helpful"
lol
Bruh, I appreciate that you want to help me , And I love your excitement about helping people, but when you don't know something , You musn't say something that's not even related to the issue, I'm saying it's related to set termguicolors and it has something to do with it, but you're saying change your terminal and I'm like :|
I can't know something that's in your computer until I test it
And you won't lemme do that
And you expect help
Do whatever you want to do , I'm out , irdk why are you so stubborn
I said "uneditted gruvbox" like 100 centuires ago
Gruvbox has nothing to do with parentheses highlighting
If you have an extension that adds syntax highlighting for various languages, that's probably it
but, colors change when I change the theme/colorschme
The extension handles that
mhm
Yup it's based on your colorschemes
?
The colors that rainbow chooses I mean
It's the colorschme or rainbow then?
Rainbow
nice
just need to change somethings, add audio and shit
cool
Good
It's nice, isn't it?
I don't know, the first thing that appears when i search uranus in google
I like it
roman copied the greeks jk
rome came after greek
ah
dont you love it when you have to stay till whatever the fuck am doing homework
dont you love it when you have to stay till whatever the fuck am doing homework
@winter terrace better finish your homework then grind after
nice
what score is that for
biological mail
guys, is this okay spec?
gfx bad
It's okay, not that bad
is it integrated one?
UHD is always an integrated one :((
It's Good enough @mild abyss
yeah but thats just one of the options, my mom hesitated hahaha so i dont think thats the one she will buy for me. xD
I think getting 2gb dedicated gfx is not too much investment
okiee
yeah but thats just one of the options, my mom hesitated hahaha so i dont think thats the one she will buy for me. xD
@mild abyss why did she hesitate?
they are OK specs
You can probably do better
guys i need help uploading a gif pfp on my discord server. it has two boosts but i cant get it to upload pfp
Get one then xD
i want an external keyboard and a wire mouse
are they not available in PH?
i mean they are available but 3 out of 10 are amd laptops
guys i need help uploading a gif pfp on my discord server. it has two boosts but i cant get it to upload pfp
@quick abyss try #ot2-never-nester’s-nightmare
just an estimate
smh just move to Canada or Europe or something
@quick ledge 😐
okay i found one
imma convince her now
idc if it is low specs it is full AMD
xD
uh guys i need help
my keyboard was on my side and i accidently put my hand on it, now discord is small af
Ctrl+0
@edgy crest try ctrl + 0
Has anyone here tried game development with python?
I mean nothing really serious
I've made some small things using arcade like snake
Same
oh how was the experience
oh ok nice
Ye, python is nice overall until you run into performance issues
any python pro available?
But that doesn't happen for simple games
i needed help
@gilded hatch please do not interrupt existing conversations, go to a help channel, read #❓|how-to-get-help
sorry
Still working on the snake thing actually
Trying to make a machine learning model learn how to play it
Proving difficult
I can imagine. What information does the model get?
oh ok gud luck
Oh, that could be fun as an openai gym
The state is basically the distance to a wall in 8 directions, and whether or not there is an apple in one of those directions
Yeah I've spent a fair bit of time making it so others can use it @graceful basin
The one game that can actually fit into that inconvenient representation
Ends up being pretty easy to customise
Still got a few features to add but should end up pretty nice
An example of it just moving randomly
Once I finally end up successfully using it
I might make a tetris environment as well
is the vscode theme tokyo night?
Na I made that theme at some point
nice
@graceful basin And yeah the aim is to eventually make a small collection of openai gym like environments people can use
jack that's cool
wow firefox dev is now in the official community package. nice.
Why does hemlock have a biological cat?
Why not?
Would you prefer him having a mechanical one?
yes
i am a biologist and i can confirm he has a biological mail
I guess that settles it
Not sure where to ask but can anyone help me with github
i want that its visible that the project is created by him and me
you know what i mean?
only you two? @graceful raptor
I got it. Thanks anyway :)
Ah watching shingeki no kyojin aaah so satisfying
@edgy crest dude it is the best anime of all time, the plot is a million times better than BNHA
I think bot accounts are ratelimited less
Welp, why?

now i am so used to being indoors that i havent been outside from 5 months
farthest i went was my balcony
i think im just going to sit outside from now on bc it now feels weird to be outside
You mean, being inside?
you mean just four clicks? color select, paint, color select 2, paint
@edgy crest design isn’t about the amount of clicks you do, though. If you look at Google or Facebook’s logos, they would be very simply to make. The amount of effort that goes into the strategy of it is often truly a lot. I don’t think the amount of strategy in this particular logo was that significant though, but I just want to clear that up regarding design
ik that 😄
farthest i went was my balcony
@edgy crest same here
hey, I finished hacktober weeks ago, anyone know when I will get #ot1-hemlock’s-biological-mail
hey, I finished hacktober weeks ago, anyone know when I will get
#ot1-hemlock’s-biological-mail
@eternal wing in 5
dang it, that is 3 more than I have
hi
@eternal wing I didn’t specify a unit
I am all too aware :shame:
Yes haha
Okay, so I saw yt comments aggreing each other that VS code is not an IDE. What are they< talking about?
Eeh, it's the entire IDE vs editor debate
This is what I said about them a day or two ago:
In its essence, IDEs are Integrated Development Environments (IDEs) and come packed with a lot of the features you may need, without you specifying exactly what you’re looking for. An editor on the other hand is more lightweight and doesn’t have as much preinstalled. You can generally install packages and addons to add functionality
ah okay - I would call vim and similar Editors, but imo VScode has enough tools to not count as an editor. But I guess every1 thinks other about this
fib :: Integer -> Integer
fib 0 = 0
fib 1 = 1
fib n = fib (n-1) + fib (n-2)
anyone know haskell , is this correct function for fibonacci ?
test it



