#ot2-the-original-pubsta
652 messages ยท Page 21 of 1
git tags
no
i mean
like package.json
or like in yml files?
but that's not related to python
it's an offtopic
This is an example of a tag on cpython
assume it's not python
You can do this for any git project
Yes, for npm projects
Depends entirely on your project.
why tho
My recent stuff uses poetry so it's in pyproject.toml
tags work for all projects
no god forget tags
My vs code theme has a package.json, it's in there
Basically
Put it whenever it makes sense for the systems you're using
Generally you want to mirror it in your readme
And use precommit hooks to update everything on commit
So you don't miss things
I've no idea what's "precommit hook"
like where?
y'all gone ?
If it's a python package you are distributing I would use pyproject.toml
so python = pipenv & .toml
x = package.json
y = something.yml
?
I can't do it for you mate, look at other projects that use the same systems you're using
And take them at example
check all ot channels and this dude's message is there
Yes, the kid constantly posts random things with no meaning, just ignore it
Then use package. Json
I've noticed
random response to other messages not meant for him lol "ok" "ik"
dude stop
ah, I'm kinda confused between TOML and YAML
for packaging
is there any difference between them?
like are they supposed to be used for a specific language ?
Everything about them is different
TOML is simpler, less whitespace-dependent
YAML has a hierarchy and is generally easier to grasp except for a few gotchas like weird parsing
I'd avoid YAML unless you're quite familiar with it; it has a lot of gotchas
i think the ultimate achievement in fighting games is getting your playstyle get called gay in post game chat
because then you know for a fact the opponent's tilted
what
it's really easy
๐คท subjective
Lol
bonsoir
olah
F# does seem interesting, I do need to get to .net stuff at some point
.net is pretty nice actually
I know
with the one exception of uhm
cross-platform stuff
but other than that it is pretty nice
yeah that's the main problem
console apps are pretty portable
but anything wpf is most definitely not
C# is really nice too, it is literally just a java clone but without the jank
C# doesn't seem better enough than java for me to give up javas libraries
yep *.NET has made big moves to be cross platform
Powershell is great though
it's been voted among the worst langs many times over
java has almost more library ecosystem than even python, since well, it was the one language to do things in for years.
press [Y] to disagree
yea Java's ecosystem is pretty solid too, like if I try to install to a python package to solve a problem its a bit of a dice role
alot of python code hasn't really been vetted, but that's not pythons fault
i use python pretty much exclusively as a scripting lang
for when i wanna automate simple stuff
that's its major role
scripts are the one thing that rely on vast libraries the most
honestly, I do not like bash
i don't like bash either
nor do i particularly like pytohn
python
but
scripting go brr
Bash is pretty darn clunky lol. Not that any of those languages are "good" they serve a purpose though
there's some good things about python though
like as soon as you say "go" it's going. If you need to glue two random things together "there's a library for that", etc
but after I write python I often get this feeling like "man this isn't gonna last is it"
lmao
and it can be pretty slow I guess
I absolutely hate bash. I failed to understand its syntax or how to write basic loops/arithmetic expressions.
i love that people compare go's speed to python
oH iTs fAsTeR tHaN pYtHoN
-_-
so think of Bash as a glue to cmdline tools and it makes more sense. It's not made for arithmatic unless you like pain lol
never heard of it? google
it is an xml schema to generate xml
isn't there a lot of overhead for using JSON?
JSON is fast
XML is also pretty fast
Is there something like BSON for XML?
keep in mind, xml is ancient
BSON is a life saver
I think postgres can store and query xml docs
BaSh Object Notation 
postgres can also handle JSON(to some extent) now. They're trying to keep up with the NoSQL trends I guess
i use exclusively json for persistent state in my discord bots lmao
like, I was able to write AOC in xslt and it wasn't that painful
Binary JSON ๐
nor that slow
i've still not finished aoc in rust ๐
I was too lazy for AOC
i did my aoc day 1 in haskell
Rust has a steep learning curve, I'm still a noob
keep at it ๐
honestly, xml namespaces make it really nice for persistent storage, can just dump stupid things in it, though sqlite still ends up better most of the time.
there are things like xmlQuery
sometimes I wish there was something better for local storage tbh. I don't like sql-lite it rips out alot of the advantages of real SQL
it really doesn't
usually I end up with flat files
I do want to write a seek based database one day
I wanna make a graph DB ๐
someone just typed something super dark and bannable... then deleted it
anyway, I feel like there's, a workflow I'm trying to build and I'm still learning what tools to use and when/why
so for quick scripts I like a prototyping lang like Julia/Python/R. Then for desktop I like C++ and am learning Rust. But - I'm still not sure what to do about web...
for data hah there's no answer. SQL/REST usually, other things when needed...
eep
yea the stuff @ancient patio is slipping through are pretty whack
oh and for fun Haskell definitely
it is awesome
>>> x=x
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'x' is not defined
strictly speaking, an error is a valid result
its not like it does anything meaningful in haskell either
!e
compile('x=x', '', 'exec')
@round moss :warning: Your eval job has completed with return code 0.
[No output]
what does the compile function do then?
python is like 'semi" compiled. It gets interpretted then compiled into bytecode
compiled into bytecode, then you interpret the bytecode
but it's not the same as like static compilation
the compilation is just really fast and cached
right sorry
so you don't really notice it
yea
really the only major flaws with python are it's performance and parallelism model in my opinion.
there are things you can use to show off what you want to show off
haskell is awesome because of what it is, like if you want to use haskell there's nothing like it.
indeed
if you don't want haskell like... its scary as hell lol
lmao
Not really a helpful comparison tho 
hi avery, i didn't know you were here
idk if we've actually talked much but i've read messages from you in the conlang critic server
conlang?
consider fibs = 0: scanl (+) 1 fibs
python can't do that
(well, it kind of can with yield from but it is not the common way to solve such problems)
yea I mean you can bake a lot of FP into python it's just not always what it's meant for.
kinda like JS I guess.
JS does have pretty solid support for FP overall
you can even get not horrible transducers
yes, it didn't always though, but its become more trendy
Julia's got a transducer library
Julia just straight up supports FP
no TCO though, I mean sometimes it will compile it in, but not a gauranteed behavior
yea and I think Rust
conalng cricit ๐
fibs = 0 : 1 : zipWith (+) fibs (tail fibs)
the term 'compiled' is a bit weird, honestly
is Java/C#/F# compiled?
all of them compile to bytecode that is then interpreted
but people often refer to them as 'compiled'
I really think the most useful definition is "do you get a file you can run out of the compiler"
So Nuitka makes Python a compiled language?
Yes
A language is a specification
right
Bash is definitely interpreted since it is actually specified to read line by line
So a 'non-compiled language' is a language spec for which there isn't a compiler yet?
Yes
but Python/JS isn't usually compiled to an executable -- maybe this should be a consideration?
although it does make the definition fuzzy
Python is compiled if you use nuitka, interpreted if you use cpython
From the creator of the Python compiler.
What is nuitka?
Seems pretty true to me
And cppthon is?
CPython is the default implementation of Python
if you don't know which one you're using, you're using CPython
I'm pretty new to python, only been going for a month ๐
it's the one that comes from https://python.org
The default installed one
What is the difference in the results?
In the case of cpython, does it just bundle the interpreter with the code?
And in nuitka, compiling it turns it into byte code?
Right?
CPython works by first compiling the source code into bytecode (which is just a bunch of low-level operations), and then interpreting that bytecode.
Nuitka compiles Python to C, and then compiles that C.
Because python is written in c
interesting
I don't know how exactly Nuitka works, so can't comment more
Python is written in english, CPython is written in C
What do you mean, English?
Python was written from c, no?
Python is a language, it's not a program. It can have many implementations.
Python is a formal description of how the programming language python should behave
many implementation 
fixed
many implementation sometime bad
What you know as python and download from python.org is actually CPython
Ah. Python was originally c on windows tho, iirc from a previous conversation
one implementation usually good
I'm not a native English speaker, sometimes I forget s at the end of plurals.
oh no
Python doesn't even have a more or less formal specification besides the docs, right?
i was not commenting on the plural
ah
The docs are pretty formal tbh
idc i ain't into prescriptivism
i am just making the point that having many implementations can be dangerous sometimes
Jesus, I never made the connection that correcting grammar is to an extent prescriptivism
That is such a weird thought
It's actually pretty good, we have PyPy.
yes but
when there are multiple implementations
you have to have a very ironclad spec
otherwise.. problems
lmao
To be fair, the python spec is quite rigid
And is properly kept separate from CPython
just saying it can be a risk
C++ is better than C
i honestly prefer C to C++
C++ has the issue that no one actually implements the spec in full
*Grammer /s
What is prescripfivism?
Since it's so complex
C++ has so many issues
huh?
how is that possible?
There are 0 compliant impls of cpp20 as of right now afaik
lmfaooo
@wide totem linguists have the job of writing down language rules. Prescriptivism is if they set the rules, rather than write the rules down as per how the language is actually used in practice
It's a bad thing generally
Ah
yes
it could also be said to be the idea that one form of a language is in some way more correct than another
the main problem with grammar correcting and such is that specifically with english there are so many variants and so much slang that it becomes really hard to say what is or isn't good english
and in general it is fine and understandable so
๐
I'd actually be glad if someone corrected me every time I made a mistake
That would make finding bugs so much easier
well, I meant englishwise
I mean, IDEs do do just that
True
the betrayal... https://www.grammarly.com/blog/everytime-every-time
but they don't correct every mistake, even if you have dependent types
but they do to an extent
I am excited for the day dependent types become useful
That wasn't a correction, just saying that every time you made a mistake someone would correct, you didn't specify English only. Maybe that was the mistake :P
What's the main blocker in their use in production? Too much work to complete basic tasks? Or lack of libraries for JSON, web communication etc.? Or lack of tutorials? Or the sheer amount of math jargon and advanced math concepts?
Yes
Now that I listed all that, I can kind of see...
It's like write slightly fewer bugs at the cost of you having to learn many many new things
Like elm is safe enough
what would be an example of a problem/task that would benefit from dependent types?
I mostly just wants Ada ranges in a modern programming language.
a compiler, I guess?
something about memory safety?
(apart from literally proving a theorem)
There is a C compiler in Coq that matches GCC for the parts it implements
how do you know so many languages?
Dependent typing seems nice for critical things that cannot ever error but don't need to be very space efficient
like satellites?
or like, medical equipment
Medical equipment, banks, air traffic controller, aircraft software
Satellites if the optimisers suddenly get vastly better
Imagine Idris 2 on a mainframe lol
Well, a spaceship can compile a new version of Idris on its way from Earth to Pluto, lol
will be just in time
I still find the fact that idris 2 ends up creating faster executables than idris 1 by compiling to scheme hilarious
huh?
Scheme compilers are really good
More like compiling to C, but you get a free GC
Scheme gets compiled all the way to machine code
But has an interpreter too
Like CL
ok then
same
something about that statement makes me feel sick inside lol
I get it - JS isn't a total slouch, really I do. But JS is a bit of an abomination you know what I mean?
Like, if I could turn back to ~20 years ago and figure out a way to write any form of competitor to JS, or really any interface for anything else, I would.
Well, nowadays you have languages like TypeScript, Elm and PureScript that compile to JS. But you still need to know JS to use them, and you occasionally need to write JS.
Also, there's wasm, but I don't know how popular it is
WASM looks like a way out, but for now you still need a JS to access it (my understanding)
compiling to JS doesn't solve the problem that is JS ๐ฆ
Yeah, but it hides some pain points like undefined popping out of nowhere.
supposedly TS is slightly faster then JS too
how would that be possible?
have you ever tried PureScript? it looks interest
I'm learning PureScript right now ๐
I asked the same question, I don't know, but supposedly it's slightly faster, Maybe it organizes code better or something. I'm super skeptical it sounds like hype nonsense to me.
it does sound like nonsense to me.
because to 'compile to JS', it just strips the type annotations
are you liking it? I've considered learning purescript, mostly to hide from JS when I do webby things, but I keep hoping for a miracle
...and does some other substitutions, like decorators and null-aware operators
I am liking it so far, but I feel like it's stretching my brain a bit too far
if you are familiar with haskell, it should be fine, though
any :: forall f b a. Foldable f => HeytingAlgebra b => (a -> b) -> f a -> b
^^^^^
yea Haskell like languages do that lol
huh... is that really supposed to be 1 line?
I'm just showing the type signature
sorry was in reference to stretching your brain
ah
got it
@jovial island
It's in Data.Array package, so it's more like
any :: forall a. (a -> Boolean) -> Array a -> Boolean
I see I see
I was really scared by HeytingAlgebra at first lol
full disclosure I have no idea what that is
It's like a generalization of a boolean
In mathematics, a Heyting algebra (also known as pseudo-Boolean algebra) is a bounded lattice (with join and meet operations written โจ and โง and with least element 0 and greatest element 1) equipped with a binary operation a โ b of implication such that (c โง a) โค b is equivalent to c โค (a โ b). From a logical standpoint, A โ B is by this definit...
I like all this purely functional stuff, but I don't see how beginners get into this. Some of this is so abstract, and I can picture many people (including myself... maybe 1.5 or 2 years ago) have their head explode.
I love how it relates to something called "pointless topology" lol
the extremely mathematically minded people adopt it like it's nothing it's crazy. Took me 2 weeks to get the basics of haskell figured out(like a monads, etc)
well, I don't have much experience with mathematics (1st year algebra in university is the highest of my achievements)
I've found that my brief exposure to FP has really improved the way I write code though. Like I am much better at abstracting complicated things into simpler units
...but I like maths at the level I can comprehend it
you probably don't realize it, but everything you're doing in FP is basically math. Like whether you can state a theorem or identify it clearly is irrelevent really. You're doing mathy stuff.
category theory is basically wizardry that people with long grey beards read spells from to produce Haskell libraries
lol and all of those ideas are probably baked into purescript ๐
I have seen a video series by Bartosz Milewski, and by the end of it (I only watched the first season) my walnut-sized brain almost cracked
yea I don't play in that area, I try to understand the concepts, but it's a little too abstract for me. Infact, the field was originalled called "abstract nonsense" (by its creators even)
you ever check out the FP discord?
The biggest takeaway was that you shouldn't explain functions through animals eating food and producing cofood, because then composition becomes problematic
sometimes
cofood is my own neologism
its pretty nice like, there are people there who can help if you do wanna go down that road. There's a couple jerks there but its mostly really nice smart people.
btw if you want math problems, check these out
https://www.codewars.com/kata/5922543bf9c15705d0000020
https://www.codewars.com/kata/59c132fb70a3b7efd3000024
yep, it's really friendly and helpful
you ever try Rust?
I went through the tutorial, but didn't go further, since I don't really have a need for low-level programming
or, well
high-performance programming
I hear ya. It's pretty cool though. It's got some haskell like elements too it. But yea its main purpose is systems type applications.
learning rust right now
its cool considering its the only pseudo-mainstream implementation of affine types
i am returned
send me the link owo
Can confirm, had a pretty silly conversation with some idealistic person there who was full of their idealistic self, to say the least
lmfao
in other news
this is beautiful
a bot pretending to be a human pretending to be a bot
pristine
lmao
what language is this
PureScript
ah
i have been intending to try purescript
speaking of horrible things you can do in js
which i was thinking of internally
let sayHello = { get $() { console.log('hello!') } }.$;
// print ยซhello!ยป to the console
sayHello;
:)
lol
this is technically possible in any lang that has getters and allows things to be evaluated without going anywhere
but
yeah
The only purpose I have for JS is implementing FFI for PureScript and probably a compilation target, but that's about it
I should start working on my site again as well, got too busy with managing my dotfiles for theming
OwO
Ok
@limber pollen what is FP?
Functional Programming
Basically a programming paradigm that focuses on programs being encoded in terms of "pure functions" or functions that takes some input and produce some output without any other "side-effect" like printing some text or changing a file
Sure
That's an example of a pure function, as it acts like a mathematical function in that sense
Hmm
If you want to do some side effect, it will not be included in a function?
Pure things don't modify state right
Does objects exists in fp
?
Most purely functional languages have abstractions that help encode the notion of side effects/state
What about objects
It's all objects
For example, in Haskell, there's the IO type which you can think of "sequential instructions" that the Haskell runtime understands
Which idu how it is all objects but we
Not in the traditional OOP sense, no
Ah
yea it's probably the 1 person I am thinking of too...
Mind DM-ing me your guess? lol
I did ๐
$ git checkout -b my-branch -t upstream/master what is -t ?
@pliant trench Sets an "upstream" branch
what is even a upstream branch
The target branch where you push to/pull from
whst is dynamic programming
it was mentioned when the topic of exec() came up
i was wondering what it is exactly
hey i want ti get into using git/github
but i cant finde a good tutorial
anyone know some tutorial that is good for me?
i just cant get how to use it ;c
https://learngitbranching.js.org/ @coral pivot this can get you started on git
thx
'ello everyone
hi
anyone uses fedora here ?
i do
i legit do
but its stilish not trashy
ok
Hey guys, so I loaded up neovim yesterday in my linux, and using nvim worked fine, but now I booted up the VM again and now nvim doesn't work
boot up again then it will be gone again huhuhu
Lmao
I mean, it takes a second to install
and all my extensions are saved in init.vim
good evening cowards
o/
/o\
o7
๐
welcome to texas, yeehaw brother, we got sunny weather, cowboys shootin and rootin, and half a meter of snow because fuck logic
https://javascript-minifier.com/ you mean that? It saves on delivery times
Online JavaScript Minifier/Compressor. Free! Provides an API. Simple Quick and Fast.
Their source code looks much different than what is delivered
<o/
more importantly it saves on bandwidth, when you are serving to millions if not billions of people, every extra byte is a lot more money
I wish to learn about how such big networks are deployed
Totally fascinating stuff
cool
Here's a good question, I'm looking for some decent wireless earbuds that don't use the standard crappy like, rubber dome thing that goes in your ears
preferably without breaking the bank
I currently use the first gen wired Pixel Buds
https://cdn.vox-cdn.com/thumbor/4nzZ6TE3JlVg9k-aPvOAODYxQYI=/0x0:1996x1123/1200x675/filters:focal(573x304:891x622)/cdn.vox-cdn.com/uploads/chorus_image/image/61804257/pixell_2.0.jpg these things, and they're the best earbuds I've ever used, they sound great, the wire adjustment means they fit perfect and are super comfortable
but wired just isn't cutting it anymore
they're also from 2017 and seen better days.
what was the question
synchronize threads to print one message after the other
signal bus?
that might actually be the actual question
oh no the question is called print in order
oh i just figured that the standard deviation is just really small
cause by rng of the occurrence of system interrupts that the server runs on
some ppl just get a bit lucky and have their submission run without any system interrupts occurring which gets the slightly faster runtime i would assume
i cant tell if someone tried to use google translate or just mashed their head against their keyboard
same thing here i cant tell if this guy is being ironic or is having a stroke
I think your chatbot may be coming on to you
Discord Linux is dumb ๐
If u want to get disappointed for your whole week, this is a good place to go and i highly recommend it
yea
dunno about the server
is that a server?
A lot
.
sounds like a red flag hahaha. thanks for the warning
send link
what why?
Ah my god I won'
I didn't read that
ak np problem
hello everyone
gonna give you up
no one's there?
where?
there
Why does some people hate other people who code on phone 
Children likely, just ignore them
Personally I can't imagine coding on a phone but if you're comfortable then sure
How tf do you code on a phone
That's not sarcastic, I actually want to know.
Srsly if I can find an ssh client for mobile
Do you not use ssh?
on the plus side, ur typing speed on phone will be much faster
Not really though
I'm guessing the keyboard layout will be different?
Secure shell
Ikr
No?
Going to the symbols tab everytime you want to write a + would be a pain in the ass
It has auto tab
you do you
Also has tab button
i suggest downloading the "Hacker's keybaord"
its on the play store
or u could buy a keyboard
that will massively help
I have a physical keyboard
But I don't use often since I mostly code at night when it's super peaceful and no one does anything
Smh
Why not
where is the 8 spaces option
because that is how wide a tab is in terminal by default
8 spaces is just plain ugly
ye
idk anything about pc terminal
Is CPyyhon actually tranforming it to 8 spaces
pretty sure it is actually the tab character
fax
That sounds like a lot of wasted characters on a 79 char line

Unfortunately I got accustomed to 8 because an open source project I learned with uses 8.
I guess I get 8 spaces but why would anyone ever use 3 or 5
lol
Why use 4 when we can use 2 tho
Or 1.
it's either 4 or anarchy
2^n moment
I'm consistent between my levels.
no its 2 for css
did I stutter?
which is what i like ^
to be exact, a tab is as wide as is needed to get to a column that is multiple of 8, at least 1
2 is sometimes nice
haskell does that
yes
8 spaces for the first level, 1 space for the next level.
don't like it in nim
in languages that tab a lot
ends up horrible
like dart + flutter
I think I wanna do 2 spaces 
Well damn
its prolly better cuz u hav a phone
@fluid timber termux โค๏ธ
termux bae
Use vim?
i use nano B)
ยฏ\_(ใ)_/ยฏ
You can use vim kekw
i use windows btw
vim could work thats very true
Even if I don't code from my phone I can now use ssh from it
i forgot that termux is literally linux
same
Android is literally linux
yes
I do know of a person who writes code primarily on termux vim
lol
on a tablet, not a phone afaik though
Phone smaller > tablet
it could just be a high res phone

true
Btw i ran pycharm on android
I have written some things on a phone

pycharm on a phone sounds horrible
Hahahah
the UI is barely legible at the size of a large screen
I also ran vsc

VSC mobile version is awesome
hi guys
Wait, there is actually mobile VSC???
Kinda...
everything is there
Vsh
But I wouldn't suggest it because it's laggy and crashes also I tried many ways to run python but F
VSH not vsc
I ran ubuntu linux on my phone then ran pycharm and vscode
which is the best way for learning ds algo
i installed it on my pc and locked windows
๐คฃ
send a screenshot, i wanna have a look
It's a long setup...
You need to install Ubuntu then download pycharm or vsc
plzz help
hmmm
lol
why? are uall guys that old temperament ones?
white hat hacking is the new
who me?
ping google.com:8000
ubuntu linux is best supported for such things
Pi?
and for mac
I'm using ssh through termux so it should be running on the pi
Hmmm
Idk anything about ssh
Can you run dig google.com?
Dig not found
then try digging mud
~bash : dig: command not found
๐คฃ
It should be in the netutils package
~bash : mud: command not found
bro i was joking
O
๐คฃ
JuiceSSH
New to the server, trying to help on the #help chans. -- Feels like I'm out of the loop because I've never used Py for GUI development.
few people do, it's not the best language for GUI development
Yeah -- Just a lot higher volume of peeps using it here than other communities I'm in haha.
Sure, this community is much bigger then most
channel name reminds me of https://github.com/EnterpriseQualityCoding/FizzBuzzEnterpriseEdition/blob/uinverse/src/main/java/com/seriouscompany/business/java/fizzbuzz/packagenamingpackage/impl/factories/SystemOutFizzBuzzOutputStrategyFactory.java
why does lemon's beard remind you of that? 
sent that before the name changed
it was something like OrgTagFactoryFactory before
Right
im baby
thats what u get for being evil
lmao
lol
yes
what is this lol
look at the issues too
my friend sent this to me. Honestly, I didn't believe this was real microsoft until i clicked the name lmao

i don't believe too
what are they doing
fuk
delete me.
Issue 1:doesn't work on linux
๐คฃ
LMAO
and look at the pull request https://github.com/microsoft/DeleteMe/pull/1
there's a mac elitist in there lmfao
what the hell is going on
I love the internet
Windows 10 gets free updates, too, on a twice-a-year schedule.
๐ค it literally sneaks in updates every 10 days and breaks the whole os
correct
and more than 1gb for small changes
i'm loving that pull request lmaoo
pog
ye, just found out lmao
I wrote some python code that will link to a microsoft video explaining this repository here is the code: import webbrowser webbrowser.open("https://www.youtube.com/watch?v=j5a0jTc9S10&...
that's too obvious ;-;
are you guys srsly trolling microsoft devs and managers ๐ค
its not real microsoft
right?
it's real
wtf
exactly
but why do they have easter egg repo
that's why we were confused
but 3 ppl had already started trolling before you guys started :P
ยฏ_(ใ)_/ยฏ
Nicee
those trolls will definitely fall for it now
why ping?
'h^tTtspnsM:I/K/]wPwHwx.`yYoSuJtWuwb\\es.Rc`oEmp/UwxaZtocohf?Yve=Yjb5\\av0GjQTfc`9PSN1F0r'[::2]
hmm?
nice
haha thats better
rick rolll
How is it linked to microsoft org?
microsoft tried to troll us
so we are getting revenge
LOL
lmfao I still cant stop laughing https://github.com/microsoft/DeleteMe/pull/1
hahaha one dude tried to advertise macos
lol lmao
hhah
I commented on your issue
this one
lmao, it wasn't opened by me either, i am just following it xD
ocd is kicking in
LOL
are we really trolling them or what
idk
holy
I mean, create pull requess
:/
u really don't know how to do that??
that escalated fast...
mk a pr
you all are contributing Hello to an official microsoft repository?
official
kinda
half-official?
yep
wait a secc
did you really create pull request
I cant see it
wait now I can
howw
rip...
After rereading the README.md several times, I failed to understand how I should be using this repo. I suggest that there should be more documentation with examples and in depth description of what...
this dude didnt understand the troll from microsoft
i think he's trolling too
yes
It may also be ideal to use the built-in Github Wiki or readthedocs.io if this is too large of a task for a single README.
yep, surely sarcastic lmao
hahaha
this is... going tooo far
lol
yo what is that dark mode
looks like another extension or manual css edit
isnt that what extensions do?
GH has dark mode
yee
say goodbye to the solar system! ๐
Visual Studio Code
and if you need anything more specialized then whatever jetbrains have to offer
Rider for .NET (C#, F#, VB.NET), PyCharm for Python, CLion for C/C++ (though i've heard mixed reviews about this one), and IntelliJ for anything else
IntelliJ is designed for java but there are plugins for most major languages for it
I vote for your username to stay. cute animals ftw
haha thanks!
yup, vscode is great, and you don't have to re-learn any interfaces or controls if you want to learn a new language at some point
plus it can run on a potato
ok yeet
I do have
yes, but by manual i mean the user did it himself
Hello!
Somebody just sent me this. I think ppl shouldn't be shamed of what they enjoy unless it hurts someone
I agree!
Ok
yes
What did someone send you?
^^

lmao
yeah that sucks
my posts aren't good enough to be reposted ๐
this is the way
Vanilla pringlez
wtf
idk why they even existed. like the idea of reposting a cringe reposting reposter meme is just sad
Visual studio is.... not vscode btw..
It can't run on a potato
If by potato you mean a raspberry pi
not super sure about that
vsc is built off of electron after all
hungry for ram
but it should be fine on most things
anything modern it should be perfectly fine
vscode is prime example of a very high quality electron application imho
what about discord?
wait what
๐
the full visual studio...
welp... let's just say that it won't be very fast on "potatoes" lmao
u said vscode and visual studio code are different
lol




