#voice-chat-text-0
1 messages ยท Page 341 of 1
most things I've learned from making my own projects
i learn front end from free code camp
after a certain point it might better to start relying on documentation instead of courses
did you watch videos tutorials?
yes
courses are useful when you need to make sure you haven't missed anything
you can watch code with harry
i dont know hindi
for discipline/comprehensive knowledge rather than specifics
ok
subtitles
yeah
Access the playlist: https://www.youtube.com/playlist?list=PLu0W_9lII9agq5TrH9XLIKQvv0iaF2X3w
๐ฅ XStore โ Premium WordPress theme for eCommerce success! https://1.envato.market/2rXmmA
โก๏ธ The GitHub Repository of the code will be provided in the upcoming videos
โก๏ธ Notes and CheatSheets will be provided in the upcoming videos!
โก๏ธ We are working on ...
you can go through playlist
i ts only 30 minutes
i learn react for 10 hours
so i may get somthing bigger
thanks @vocal basin @willow gate
there was also Pascal at some point
all my use of which ended just before I started Python
you like to explore many things
(sporadically, in the 18~7 years ago range)
18?
you have great experience
Pascal isn't great experience
like python and all
Pascal, the regular one, is a mostly dead programming language
everything useful built on it branched off quite early
:incoming_envelope: :ok_hand: applied timeout to @terse patrol until <t:1723356275:f> (10 minutes) (reason: duplicates spam - sent 4 duplicate messages).
The <@&831776746206265384> have been alerted for review.
@peak depot hi
I only need to walk 400m to gym ๐
trying to figure out git subtrees
or rather I know how to use them already but I need to do some tag stuff also
@quartz beacon both words are usable iirc
for visual specifically
also remembered I have another cursed audio piece
@quartz beacon someone just forgot to update certs lol
normal stuff
So is it actually a type hinting? I mean the part with square braces
Anybody can answer. First line of a class for example: class Someclass(Some_class_to_get_inherited[I_DONT_KNOW_HOW_HERE_FUNCTIONS]):
class DynamicCounter(
discord.ui.DynamicItem[discord.ui.Button],
template=r'counter:(?P<count>[0-9]+):user:(?P<id>[0-9]+)'
Also can anybody explain me here: template=r'counter:(?P<count>[0-9]+):user:(?P<id>[0-9]+)' ? You can at least give me some source to learn/understand what this syntax stands for and how it functions
Am I audible?
I just came back
so far I don't remember hearing anything
now there's some sound
harder to understand than usual
usually there is no audio quality issues at all
(except for device selection bug)
almost half of the words are unintelligible
idk if it's from noise cancellation or just low quality source
slightly better I think
both are better than what it was initially
words are understandable at least
@upper basin You can do mic test
I've just tested and made sure that --force-with-lease can actually be even more restrictive than no --force* at all
good flag
git
git push specifically
there's git push --force and git push --force-with-lease
latter checks if refs match
example:
user 1 pulls the repo
user 2 pulls the repo
user 1 pushes
user 2 pushes with --force
this will erase what user 1 pushed
--force-with-lease will make it so that user 2 first needs to pull
pull by default makes a merge commit on conflict
sometimes rebase is preferred (that requires extra config/arguments to work)
initial state
-- b
a --
-- c
merge commit
-- b --
a -- -- d
-- c --
rebase
a ---- b ---- c*
rebase involves overwriting history
the key piece is to (almost) never rebase main
d itself is the merge commit
auto-created
in ideal state, you only rebase your own commits locally
which also keeps the signature, afaik
... or just overwrites all signatures with your signature
rebase then fast-forward
fast-forward isn't supported in GitHub still, iirc
(in PRs)
switching from commit A to commit B if B is descendant of A
no rebase no merge
fast-forward is in some sense what normal push does
you just extend the history
if histories ever diverge, you can't fast-forward
main: A2->A1->A (A is last)
some-branch: A2->A1->A->B2->B1->B (B is last)
here, you can fast forward from main to some-branch
whereas here it's not possible:
main: A2->A1->A (A is last)
some-branch: A2->A1->B2->B1->B (B is last)
merging to allow fast-forward:
main: A2->A1->A (A is last)
some-branch: A2->A1->A--------->M (M is last)
\>B2->B1->B/
rebasing to allow fast-forward:
main: A2->A1->A (A is last)
some-branch: A2->A1->A->B2'->B1'->B' (B' is last)
' to indicate that it's a different commit (mostly same delta but different parent)
rn trying to find if I have some cursed commit histories
so far only found this
(time goes upwards there)
yes, merge
otherwise it wouldn't even split
I don't remember what was happening there
there's a lot of this type of thing
because it's a project in collaboration with someone else
and green is basically just when we do something locally and it ends up making merge commit
merge points here just correlate to when git pull is done locally
so, going back to --force thing
--force just overwrites the value
default behaviour for push on branches is fast-forward
and on tags it's error
--force will just go through successfully on both
but note that --force for tags doesn't work well on some git hosts
e.g. Gitea
Gitea/Forgejo don't update --force pushed tags fully
it will work but it will have UI bugs
--force-with-lease makes sure you've pulled (or fetched? I don't entirely remember) the remote prior to pushing, in some sense
it requires that affected remote refs match local ones
reminder that Rust supports ^ for bools
if exists ^ commit.is_empty() {
bail!("incosistent state");
}
from what I remember about C, using ^ on "boolean" (quotes because C compilers have very different ideas on what that means) values is not good
Python suppots ^ for bools too
!e
print(True ^ True)
:white_check_mark: Your 3.12 eval job has completed with return code 0.
False
in C, ^ and != are same for booleans with respect to simple truthiness
but for non-{0,1} values you can construct more complex expressions where they don't match
^ symbol means?
!d operator.xor
operator.xor(a, b)``````py
operator.__xor__(a, b)```
Return the bitwise exclusive or of *a* and *b*.
!e
assert (
0b1001
^ 0b0011
== 0b1010
)
:warning: Your 3.12 eval job has completed with return code 0.
[No output]
(do not style things like this)
where it fails
(3^5)^6 -> 0
(3!=5)!=6 -> 1
@upper basin Your voice quality is so bad
still working on a thing to automatically do git tag the way I need it to
You were sick yesterday.
So rest!
Get well soon
@upbeat bobcat working on any project?
Yes!
what kind of
Making a note taking app.
Nice!! like notion?
@terse rose hi
better than notion ๐
cool let me know when you deploy
Okay.
I prefer self-hosting this one as an alternative to Notion
https://www.getoutline.com/
there is a lack of advanced access control in free offering, as usual
but for what I do it's good enough
Any reason?
will try
Notion is pain to setup 1) for free 2) where I live
recently using coda
it's just easier for me to self-host
also auth is managed externally
with anything OAuth2-compatible
in my case, Gitea
Never used notion.
can you send doc for self hosting
brb
This guide contains documentation for installing and configuring the Outline knowledge base in a variety of environments. There is a separate guide on how to use Outline.
source-available; not necessarily open-source
Outline recommends using Docker with Alpine Linux images, configuring docker.env with necessary environment variables, using Docker Compose to manage containers, and pinning image versions for control over upgrades. Additionally, it provides instructions for database setup, running, and updating, including handling migrations. Note that database...
(though I don't think there's actually an option other than Docker)
i don't know much about Docker
for hosting existing tools it's quite simple
at least compared to non-docker options
I had a list of stuff I have/want to have in docker; will try to find that
i have a ton of docker containers i use if you are interested in some suggestions i have loads
can give ya the compose file too
this has the whole compose file, I think
except for http proxy
though
no, wait, that too
it includes https-portal
I use issues+projects in Gitea/Forgejo for that
and, if it's not code-related, there's a kanban plugin for Nextcloud
this one is cool too (dbgate)
It is compatible with all major database types
fair enough i use gitlab i wanted to try gitea but we are already all set up ci/cd wise on gitlab
@somber heath hello, how are you?
Forgejo's feature advantage is in how many package registries it supports
(not listing Gitea there, it's heading a weird direction)
built-in cargo support is why I won't be switching to GitLab any time soon
@cold warren ๐
hey, new to this stuff so my mic doesnt work
Do you use anything for container management ?
for depending on them (assuming not published to crates.io) there's three options:
git tag
custom registry
path (do version tracking externally)
!voice
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
things like portainer?
yeah thats what im currently using
I uninstalled it recently
was wondering if there is anything else out there
on stuff I host myself, I just docker compose up -d everything
im trying to follow youtube guides and stuff
I do understand how portainer could help with some observability things
what documentation?
@vocal basin Yeah thats what i also do but we needed a web ui management panel so that other people on our team can access the containers
restart them
etc
like on vsc
okay
just use vim ๐งโ๐ณ
there is an extension for doc panel
last time I used Vim with an LSP it had basically the same problem lmao
and also broken colours
im not really sure what to do within python, i haven't done any stuff relating to code but i have signed up for a cs a-levell
what stuff do you recommend i learn?
Learn python. Do projects to actually master it. Then, you can learn new languages, and focus on different fields, i.e., AI/ML, HPC, Web dev, etc.
OCW has a great duo course on python. 60001 and 60002.
default jupyter has basically no LSP too
as in visible
and stuff that you can get from it, it pulls from whatever IPython does
i will look into this i think
@valid stag ๐
I don't have permission to talk.
!voice
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
You can check by going to #bot-commands and typing !user.
Oh ok thanks to letting me know.
It is good to learn python
For data science.
Opali
Hey guys, how do i embed a value into a text that is printed?
!f-string
Creating a Python string with your variables using the + operator can be difficult to write and read. F-strings (format-strings) make it easy to insert values into a string. If you put an f in front of the first quote, you can then put Python expressions between curly braces in the string.
>>> snake = "pythons"
>>> number = 21
>>> f"There are {number * 2} {snake} on the plane."
"There are 42 pythons on the plane."
Note that even when you include an expression that isn't a string, like number * 2, Python will convert it to a string for you.
@cold warren
@verbal zenith is it static/initalised once per program run?
just Arc otherwise?
you're missing conversion to int
how do i do that?
!e
print("2" * 5)
print(int("2") * 5)
:white_check_mark: Your 3.12 eval job has completed with return code 0.
001 | 22222
002 | 10
I love incredibles
how do i get an answer from an input as an integer instead of a string?
im assuming thats my issue
@cold warren
Cast int.
int(costs) is unnecessary
you need to call int on whatever input returns
!e
print(int("2" * 5)) # what you currently have
print(int("2") * 5)
:white_check_mark: Your 3.12 eval job has completed with return code 0.
001 | 22222
002 | 10
@verbal zenith add tracing, make terminal explode
also
put a strict limit on loops
if you don't see a loop, then trace
i think ive figured it out
log where you're in code
@verbal zenith
@verbal zenith for when you do add tracing
it's conditionally instrumented
so impact on speed when you have RUST_LOG set to nothing will be not so big
I need to copy a project into another project when tags change
(working on automating that)
@verbal zenith there is also this crate for colours
"just don't look into Cargo.lock or you might find out you have 20 different colourisation libraries"
having _SOMETHING_ is a bit odd
#[non_exhaustive] on the enum
#[doc(hidden)] on the specific variants
if only used in the same crate, then, yes, without #[non_exhaustive]
where is ReportKind created?
have separate methods for each kind, make ReportKind non-pub
@verbal zenith just initialise in different order
(depending on whether or not level is independent from kind)
Report::builder().kind1(a, b).build()
Report::builder().kind2(a, b, c).build()
Report::builder(level).kind1(a, b).build()
Report::builder(level).kind2(a, b, c).build()
or just directly have those methods on Report
Report::kind1(level, whatever_kind1_needs).build()
@vocal basin
@verbal zenith will work most of the time, yes
@verbal zenith ToString and Display are basically same
if T: Display, then T: ToString
how can i cook?
with a heat source, food and a pan
mob
can you show that as_something method that converts to another report type again?
@verbal zenith
@verbal zenith looks more like a to_something method
@wind raptor hey
great and you
wanna play chess?
@wind raptor you are in that server too ? we can play bobble league in activity
https://lichess.org/UsrVXUO2 @willow gate
Join the challenge or watch the game here.
who is black?
@wind raptor
me
@wind raptor gg
Naa, I'm good.
Can anybody give a mostly simple example for this syntax behaviour?
Because I don't really get if it has a functionality or it's generally for documentation
@lavish rover yeah, there are cases where impl is the way to make it just work;
even if there's only a single type implementing the trait
I might try to dig up examples, but that'll take time
"best thing" about impl Trait: lifetimes often go away
it's alright im not invested
@vocal basin Do u know bout what I'm tryna understand?
You can gimme some source of explanation at least
Anybody whoever knows
will be back in ~hour
yo
Hi
Vacations are ended so I have to go school tomorrow so gn guys
US?
nope
hey
Hey @manic cosmos ๐
I am good
how are you?
not at the moment, I was curious to see what others were doing
oohhh cool
what kind of website is it?
got it
lol
collabs are difficult
have you ever tried any ml model?
yup
I see
well thats true
data collection is worse than cleaning, cleaning still makes sense some times
I have done one or two models but sometimes it gets confusing
I am trying to learn it
honestly same ๐
bye, have fun @wind raptor
should all my HTML be written in my JS, because right now thats how my system is
hey, What is f" "?
f string?
you can use it like this
value = 42
print(f"The answer is {value}.")
or
x = 5
y = 10
print(f"Five plus ten is {x + y}.")
please join the voice chat 0 if you know a thing or two about AI, I really need help with something
HTML in JS as in creating it with raw primitives like document.createElement or actual HTML[-like] code inside JS (JSX/html`<div></div>` things/innerHTML)?
@vocal basin hi help me
help with what?
a code
@wind raptor Why I am not able to download the tensorflow library?
oh not Tensorflow Cuba
I download the lastest version as you know I had the pip problem
its 3.12
Yes!
GTX 1660 super
Okay.
still asking for upgrade
It is saying that is upgrading and still asking for update again
what a difficult choice of what colour to use
red/yellow/green don't fit
dimmed blue looks way too grey on the background I have
(not shown there)
@wind raptor It is fixed and installed
hello
@upper basin MSDN
just read the docs
microsoft developer network
or whatever it stands for
in case of C it isn't really about learning the language
language itself is very small
yes, bigger than ALGOL, but still
there is standard library (which you aren't guaranteed to have)
and that too isn't that big
This complete C# tutorial for beginners will take you from the basics of C# programming to advanced concepts.
โ๏ธ Course developed by @CoffeeNCode
Learn more from the course creator: https://www.udemy.com/course/csharp-complete-masterclass/?couponCode=FREECODECAMP
โญ๏ธ Contents โญ๏ธ
(0:00:00) Introduction
(0:01:56) Installing Visual Studio 2022
(...
at least the common parts
Do you want to get a grip on the basic programming concepts from scratch? Do you feel the need to have a better and enhanced understanding of how it all works? Well, you've come to the right place. This course outlines data types, control flow, functions, input/output, memory, compilation, debugging and other advanced topics in a comprehensive,...
https://learn.microsoft.com/en-us/shows/csharp-fundamentals-for-absolute-beginners/
https://learn.microsoft.com/en-us/shows/csharp-for-beginners/
Learn C# programming from an expert in the industry. Get the tools, see how to write code, debug features, explore customizations, and more. For newer videos head over toย dot.net/videos
Join Scott Hanselman and .NET Distinguished Engineer David Fowler as they teach us C# from the ground up! From Hello World to LINQ and more, Scott and David share C# lessons at a deep and leisurely pace. By the end you'll be ready to explore the Foundational C# Certification from FreeCodeCamp! Recommended resources .NET Beginner Videos Foundati...
it's Linux-/Windows-/whatever-specific stuff that will be the most of learning C
@wind raptor did you learn how to handle alignment too?
I'm switching from C# to Python
Yeah. And create custom alignments (not efficient)
aligned_alloc is very recent
C11
not as recent as 0b syntax (C23) but still
@upper basin itertools
Oh, did not learn that. I thought you meant how data will align in your registers
it needs to be aligned both in registers and in memory
iirc LLVM got part 1 of that wrong
r stands for either recall or remember which might be making it harder
same for afair
2rc
Microsoft Learn is actually kind of that they have 2-3 devs making courses live/online
I just find it hard to learn courses from watching videos, I always feel sleepy after sometime no matter how good the speaker is. I prefer jumping into coding directly now and use readme docs mostly to learn ๐ . It is going good so far.
hello
Back to sounding like you again.
They're trying to make you pay for your freedom of speech.
Socket.
If you wanted a non-gendered term.
That doesn't make it sound like sex.
So do we.
๐คฃ
!e py print('So can Python.');
:white_check_mark: Your 3.12 eval job has completed with return code 0.
So can Python.
You mean the spaces after the code?
print(b) # SPACES HERE?
!e
print(1) print(2)
:x: Your 3.12 eval job has completed with return code 1.
001 | File "/home/main.py", line 1
002 | print(1) print(2)
003 | ^^^^^
004 | SyntaxError: invalid syntax
!e py print(1);print(2)
:white_check_mark: Your 3.12 eval job has completed with return code 0.
001 | 1
002 | 2
^not free-form
!e
print(print(2))
:white_check_mark: Your 3.12 eval job has completed with return code 0.
001 | 2
002 | None
!e
print(print(1);print(2))
:x: Your 3.12 eval job has completed with return code 1.
001 | File "/home/main.py", line 1
002 | print(print(1);print(2))
003 | ^
004 | SyntaxError: invalid syntax
!e
print(print(1)print(2))
:x: Your 3.12 eval job has completed with return code 1.
001 | File "/home/main.py", line 1
002 | print(print(1)print(2))
003 | ^^^^^^^^^^^^^^^^
004 | SyntaxError: invalid syntax. Perhaps you forgot a comma?
@pliant kiln ๐
you don't have to put main now actually with latest C#
@upper basin in both Java and C# it's static methods
also that
it will implicitly generate the class
iirc
though it might have an exception for main
I have to go now, see you guys
I'm going to start DSA today.
Thanks @wind raptor , any tips you would like suggesting?
I've got my earphones in, so there shouldn't have been any echo.
I think I'm gonna be starting with arrays,
A better way to prepare for coding interviews.
Might have been the audio sensitivity being aggressive.
Oh sure, i'll check this out
For the beginning, should i watch some basic tutorials or jsut read documentations and stuff for it and get right to solving problems
@wind raptor
"I do tons of leetcode and I have Kali linux installed as my daily driver because I want to learn hacking."
Yes, im okay with watching videos but also want to practice alongside
Something like freecodecamp does..
Also what are your thoughts on these courses they have?
@hoary ermine ๐
like are they worth the time?
I don't really care about the certifications they have to offer, i just want to learn stuff is what i care most about
Oh okay
๐ hiii
Thanks for the insight Dev
java ๐
I'll be going now
!stream 1229473464390520882
โ @storm bison can now stream until <t:1723469283:f>.
the second one like
function adjustContent() {
const landscapeContent = `
<div class="container">
<header class="header-background">
<h1>Hello World</h1>
<p>welcome to my humble website, look and around and enjoy!, here i will post my short stories and my experiments with JS</p>
</header>
</div>
<div class="BG-image" id="video-loop">
<canvas id="background-video-loop" style="position: absolute;"></canvas>
<div class="container1">
<section class="section">
<h1 class="about-me">about me</h1>
</section>
<section class="section">
<h2>My Writing Projects</h2>
</section>
</div>
</div>
<div>
<footer class="container2">
<p>Thank you for visiting my website</p>
<a href="javascript_blog.html">javascript_blog</a>
</footer>
</div>
`;```
i created a system to allow me to only show specific html to specific orientations, and was wondering if that was "fine" or good practice
all of my HTML for my website exists inside JS
and then i use inner.HTML
@fleet bane ๐
@wind raptor
function tacview($aLanguage = "en") {
// Open language file
$_LANGUAGE = array();
$_LANGUAGE['information'] = 'Mission Information';
$_LANGUAGE['events'] = 'Events';
$_LANGUAGE['missionName'] = 'Name';
$_LANGUAGE['missionTime'] = 'Time';
$_LANGUAGE['missionDuration'] = 'Duration';
$_LANGUAGE['time'] = 'Time';
$_LANGUAGE['action'] = 'Action';
$_LANGUAGE['type'] = 'Type';
$_LANGUAGE['HasLanded'] = 'has landed at';
$_LANGUAGE['HasTakeOff'] = 'has taken off from';
$_LANGUAGE['HasTakenOff'] = 'has taken off from';
$_LANGUAGE['HasBeenDestroyed'] = 'has been destroyed';
$_LANGUAGE['HasEnteredTheArea'] = 'has entered the area';
$_LANGUAGE['HasLeftTheArea'] = 'has left the area';
$_LANGUAGE['statsByPilot'] = 'Pilots Statistics';
$_LANGUAGE['pilotStats'] = 'Statistics';
$_LANGUAGE['takeoff'] = 'Takeoffs';
$_LANGUAGE['takeoff_long'] = 'Takeoffs';
$_LANGUAGE['landing'] = 'Landings';
$_LANGUAGE['landing_long'] = 'Landings';
$_LANGUAGE['aircraft'] = 'Aircraft';
$_LANGUAGE['pilotName'] = 'Pilot';
#require_once "languages/tacview_" . $aLanguage . ".php";
#require_once __DIR__ . "languages/tacview_" . $aLanguage . ".php";
$this->language = $_LANGUAGE;
}
//
// return language caption
//
function L($aId)
{
/*
if (isset($_LANGUAGE[$aId])) {
return $_LANGUAGE[$aId];
} else {
return "Translation not found for '$_LAN'";
}
*/
if (isset($this->language[$aId])) {
return $this->language[$aId];
} else {
return $this->language['hit'];
}
}```
function tacview($aLanguage = "en")
{
// This function no longer does anything. While it's called, the object that is loaded in class is not called by anything.
require_once "languages/tacview_" . $aLanguage . ".php";
$this->language = $_LANGUAGE;
}
//
// return language caption
//
function L($aId)
{
// This requires some explaination
// During PHP 8 upgrade, the function tacview no longer seems to work correctly due to this object reference no longer working
// Apparently PHP committee in it's wisdom decided to break something and I can't cared to fix PHP code because I despise PHP
// Since I only care about English, I hard coded the English and called it a day. Someone else can fix it.
// This comes from languages/tacview_en.php```
Do you want to get a grip on the basic programming concepts from scratch? Do you feel the need to have a better and enhanced understanding of how it all works? Well, you've come to the right place. This course outlines data types, control flow, functions, input/output, memory, compilation, debugging and other advanced topics in a comprehensive,...
Learn C++ for free with this interactive course, and get a handle on one of the most popular programming languages in the world.
You'll start with a simple hello world program and proceed to cover core concepts such as conditional statements, loops, and functions in C++, before moving on to more advanced topics like inheritance, classes, and te...
The word is out: developers love Rust. It's quickly becoming one of the most popular languages among systems and embedded programmers, and the demand for Rust developers is growing considerably. It's a very powerful language in terms of performance, reliability, and productivity, especially when compared to C++. If you're a system developer look...
A-ha is a Norwegian synth-pop band formed in Oslo in 1982
Music video by Bloodhound Gang performing Fire Water Burn. (C) 2002 Geffen Records
meeee :3
The Dictate feature is powered by Microsoftโs speech recognition technology. Itโs the same tech that powers Cortana, so you know itโs pretty smart.
@quartz beacon polonium
iirc the cost was estimated at something like billion rubles
Nemtsov was shot
novichok is way cheaper
it's an actual practical weapon
this leaves less traces
Significant traces
very few actually
it is hard to prove that it was polonium
@still glen talk about the project here
?
this is why they picked a specific, even more expensive isotope
Fair
Still, like if they don't care about detection (which at that point why would they) there's things that are plenty lethal that are much much easier to get
Back in a sec
Flask is simplest with templating built-in
if you don't involve templating, FastAPI will be as easy or even easier to use, often
existential programmers
Yoooooo
so just an automation tool
have you considered writing it as a shell script
@dry jasper there is BSL
To keep pace with AWS innovation, many customers allow their application teams to experiment with AWS services in sandbox environments as they move toward production-ready architecture. These teams need timely access to various sets of AWS services and resources, which means they also need a mechanism to help ensure least privilege is granted. I...
he does not wants to share the idea I guess
!stream 642752245968011284
โ @latent nimbus can now stream until <t:1723476987:f>.
@rugged root it is possible to have something quite valuable/unique in 500 lines;
but, yeah, often that'll just "collide" with existing systems
I'm saying regarding the system actively recommending solutions and making all of this fully automated, even having things auto apply to relevant users and what not
(this is actually not as memey as it might sound)
@rugged root isn't Active Directory for more local networks?
like
not for cloud somewhere else
@rugged root for API requests I'd still recommend FastAPI
just because it's async-native
I'm back. Anything happen?
JailBreaker is telling his idea
Why is he upset then?
Idk
every mention of HTTP versions reminds me of the nightmare that is async-h1
thing that only supports exactly HTTP/1.1
and whenever you see async-h1 there is literally nothing you can do, everything is dead
Java is catching up to Kotlin (and at times doing better)
@rugged root and 7
I just love the syntax and structure much more
suspend functions are now a rudiment
hi
hi
because of changes to JVM
it's Azure taking AD into cloud
not backintegrating AD into whatever AWS do
@wind raptor i have been talking for almost 10 yrs now and my txts didnt reach 50 msgs yet !
Rambo is arming up for a mission
@upper basin blue light production costs are higher
Interesting.
wouldn't be suprised that it's The reason
It says you joined/rejoined this server 5 days ago.
like if you have a thermal light, you can filter it to be red/green
Purple, just do whatever.
but when you put it through a blue filter it becomes way dimmer than other two
it's suppose to be a joke ๐
You have 30 messages
You'll get there soon
Sarcasm doesn't convey well over text
technically this discord server havent been created 10 yrs before hh
That's a no from me dog.
@finite hatch What have you been working on?
whoops, wrong ping
working on making my msgs reach 50 one's
I'm trying to help you get there. Any projects going on?
yes i see, am wokring on creating a calculator using python
Nice! GUI or terminal app?
terminal apps, and now trying to integrate a gui using tkinter
How are you liking TK?
u mean why have i choose it ?
No, how are you enjoying the library?
aah get it,
seems good, but am trying to make my code modular so it can fit well for widgets creating consepts
idk if u have an idea about it, u think is it gud ?
Yeah, it's good to play around with things and see what works.
oh, thanks (how much is my text counter now ?)
+7 or 8 lol
you can check yourself by !u in #bot-commands
is there any bot that add me +7 msg (cheat?)
You're pretty close now, it would suck to have to add 2 weeks on for cheating
yep
so cheating is an option? seriously guys!
It's not an option
in some languages HashSet<K> is literally just a wrapper around HashMap<K, SomethingEmpty>
okay
which projects have u been working on lately ?
A couple of websites at the moment.
Great, so yea
7 left
I hate my tests ๐คฏ
where did my msgs go ?
idk
which framworks have u used ?
just a reminder: messages in #bot-commands don't count
this is mind games guys
okay
bun, elysia, turso, htmx, and tailwind.
I decided to have some fun with them. I've been loving htmx in my mix.
how does it feel to have fun with something challeging ? i mean how you overcome the fear
Much nicer than having something really bulky like react.
You just do it. I'm not afraid to play around with new technologies. I do my research and then a little tutorial and then I make my own thing with it.
why is logo on elysia front page so reminiscent of react docs uwu mode 
I think you are done
oooh!
!voice
Canโt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
It reminds me of the Firefox logo
Oh that one
!u 425552190283972608
Yeah mouse over it
ha, I thought its pop up, was trying to delete get rid of it) LOL
we will be taking no questions at this time
๐
Looks good. Ship it
did u make that?
Nah, Joe did I think
who's joe
whaddup
You doing good sir?
Good to hear. Oh, I'm just coding 24/7 basically hehe. Fun times.
same thing lol
been working on DynaMix a lot
I got a clustered cross region database setup and a caching layer im working on
@idle vector
Gotta go for a little bit.
Cheers all ๐
!paste
If your code is too long to fit in a codeblock in Discord, you can paste your code here:
https://paste.pythondiscord.com/
After pasting your code, save it by clicking the Paste! button in the bottom left, or by pressing CTRL + S. After doing that, you will be navigated to the new paste's page. Copy the URL and post it here so others can see it.
personally i dont like these tiles
i like marble floor
idc "it's gonna feel cold in the winter"
now that is a pain to install
also keep in mind that when I move out I need to remove it
BGM: Ryosuke Horii & Mitsuharu Fukuyama - Bakamitai
SOURCE: Rick Astley - Never Gonna Give You Up
#ytpmv
DONATE
DOGE: DN3FTX2f6iwUfT5Wzf3YZCpkaGHarFk5JM
BTC: 1Eu7pG6SWnzgJWMNvZNyfohyQ5yWzkjpHJ
ETH: 0x05e9371ec9fbdeb09d91e8553c4aa4823d899...

@whole bear ๐
Hello there
I'm like 30 words short from being umuted
meanwhile, i'm doing a assessment
you mean 30 messages?
yeah, but you said 30
yeah, i type 20 already
and i doubt that the system checks for the length of messages but the number of individual messages
I know i know
50 - 20 = 30
so 30 left
I KNOW D:
quik mafs
That what i'm saying
I got 30 more
whatever lmao
anyway, i got to create a password manager using python for an assessment
that's easy enough
lol
sounds fun
yeah. but i got till 11pm (my time) to do it and i barely know what i'm doing lmao
i also have to encrypt and dencrypt it as well
wouldn't all link to your IP?
for some reason my "school email" doesnt even fucking work
like i dont have GH student stuff
like no access to github copilot etc
although things might change next month
my next school email will be microsoft-based
not much better (if not worse) than google tbh
microsoft-based email!!!
charSet="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz`~!@#$%^&*()_-=|}]{["':;?/>.<, "
enname = "".join([charSet[(charSet.find(c)+3)%95] for c in name])
using that
I abuse copilot to learn cpp faster
A fixed shift Ceasar cypher is not a very good encryption.
yeah, i'm aware. it just what i been told to use for my school work
yk i can read philosophy content on sharepoint even though i dont plan on studying philosophy this sept
like i can read everything
sharepoint is wild af
schoolwork?
but this
.>
what's up
Panicking. ๐
what about xD
Anything.
@merry bison ๐
@terse rose ๐
You can talk, it's fine.
I'm just muted because reasons.
Yahoy.
What is breakfast?
@terse rose
I draw a line at chicken for breakfast. Late breakfast/brunch chicken, yes.
i eat like one big meal a day so this is it lol
Obey your thirst? Is thirst the boss of me?
I mean...yeah.
The Coca Cola company or whoever is not, however.
You could ask specifically for the sugar version and to bring the can.
prit
Chill
Will pass.
Probably.
They already are.
This is about gating the internet and data collection.
It's worse than Texas.
I will be genuinely upset if I lose you from here
Digital id. Government app on the phone that is your id. Communicates with the government api to grab tokens you show to people that scan it and that communicates with the government.
Saves everything.
"Oh, you used your id here, here and here for this and that."
But it's a privacy measure.
Also banning <16s from social media...by making everyone use this id to access social media.
and people aren't upset
and adult content
Included in this.
So you're basically registering all your everything using this id with the government
"Social media."
Oh yes.
But it will make using physical ids a problem of the past.
...
It's tied with your government id.
So any fudging in that regard would be a crime.
I will swim to the bush, and give you a letter every week.
I want ph to block Australia at this point.
Inside it'll say "Hallo."
Because that will get people's attention about what's at stake.
I can also build a massive arrow and just shoot at you, but I may miss your house by a few blocks.
I heard it was bad regex.
Oh well.
One other thing I don't know how much they've considered is if this becomes the norm, what happens to people who don't have smartphones?
They just don't exist?
They don't have the same access as people with smartphones?
"Hi, welcome to financial support, please scan your smartpho-oh, no phone? Too poor to buy one? Sorry, no financial assistance for you."
"Sorry, no social media for you."
"Sorry, no adult content for you."
they changed public healthcare system in Finland so that all the old people had to get a computer and/or smartphone cos yo canยดt just call anywhere anymore - need to use chat or book appointment to a nurse to call u (via internet)
The internet network rollout was like that.
Everyone had to get a modem to have a landline.
Implications for health alert systems.
Heart attack while the power is out? Well, fuck you.
Your alert pendant won't work.
they also changed that u wonยดt get an ambulance unless u r literally dying
There was an announced overhaul of our health system. Performative blather.
@vocal basin jump up.
Bun 1.1: Bundows is here
Boon Docks
Noon Docks.
That's not wordle.
Wordle is the word guessing in n tries.
@rugged root can i stream
I use linux system for linux.
!stream 710856373675491381
โ @scarlet halo can now stream until <t:1723560174:f>.
linux subsystem for windows = azure.
postgres squeel
P.G. Squeal.
pog squeal
MC Squeel.
Pig Squeal.
Lil Squeel.
sql.js is an SQL library for javascript containing a version of SQLite compiled for the web.
!paste
If your code is too long to fit in a codeblock in Discord, you can paste your code here:
https://paste.pythondiscord.com/
After pasting your code, save it by clicking the Paste! button in the bottom left, or by pressing CTRL + S. After doing that, you will be navigated to the new paste's page. Copy the URL and post it here so others can see it.
It's a profiler result.
You use it to see the bottlenecks of your code.
See what takes the longest.
ohhh
yeah i used it before and it was super helpful
im making a programming language without a lexer or anything
somehow
"spawner" ๐
best error message I saw today
is a garbage.
In this video I build a real life FPS game in the form of an elaborate robot. The building of the robot leads me to confront my greatest fear.
Made possible by Micro Center!
New Customer Exclusive โ Get $25 Off ALL Processors: https://micro.center/af8c75
Shop Micro Centerโs Back-to-School Savings and Top Deals: https://micro.center/947231
Si...
actually kinda satisfying bc i hate wasps
i need to reproduce what is the exact command
~ # ip route add 9.0.0.2 via 9.0.0.1 dev tun1 --force
Error: either "to" is duplicate, or "--force" is a garbage.
also look at that amazing "to" is duplicate
when there are 0 tos
> deep copy is expensive
"that's why copy-on-write is superior"
Rust has &mut Arc<T> to &mut T
for T: Clone
@gentle flint ๐
@rugged root How are you watching two screens?
Yep you have to do that
[{'gate': 'H', 'qubit_indices': 0}, {'gate': 'MCX', 'control_indices': [0, 1], 'target_indices': [2, 3]}]
๐
what tech do you think this is?
what if microsoft stopped using the nt kernel and switched to the linux kernel
We have been waiting for this since apple did it (ok it was freebsd but it was close).
it's freebsd based. (slightly re-written)
ah ok
what did you think of no-squeal?
what is unknown?
I'm allergic to eggs. Use egg replacer for baking needs. ๐
i suddenly want to make code that has deals with like live inputs from camera and does "edge" compute, something to do with CV/visual computing stuff
like VR, CV tasks, robotics, edge inference etc
hemlock can i stream :3 @rugged root
look at what is there first but after some due dilligence make a library.
can I ask what's going on
what's about this code ??
@upper basin
@rugged root
@gentle flint
Trying to optimize it.
oh
that's seems cool
so is there any data analyzing or any kind of data ming in this project
:(
but im unlikely to do anything with this idea, into my ever-growing list of todos :p
yolk
!stream 710856373675491381 1h
โ @scarlet halo can now stream until <t:1723567196:f>.
@rugged root just looked it up
apparently dutch eggs are brushed and then dusted off with a large air blower
so apparently the layer is thin enough that it's not visible
Ah, okay
Which also kind of supports my theory that the feather is there artificially
or that the blower isn't very good
Or that the brush isn't thorough enough
@stark river Do you need asmr of eating fruits?
tell me if you need it I will come
@rugged root can i have min of you time
or could i ask to talk to mod or admin pls
Hey I was having a problem in uploading a react project to git via visual code
It is stuck like this
Can anyone help?
@coarse geyser hi
Good, how about you?
Are you working on something?
@coarse geyser
Yes, I am learning statistics for machine learning.
I am not expert
I started python 2-3 months ago
@coarse geyser
First language
Yep, reading a book about it
Its name is Grokking Algorithms
yep.
if you want to read it download the lasted version so the code is latest
I didn't find the full book free I have half book ig
@upbeat bobcat @coarse geyser ๐
So, you should buy it from amazon
Hey! how are you doing?
Doing great, how about you?
Great!
AlgoMap.io - Your free roadmap for learning data structures and algorithms.
sure
@coarse geyser I am!
here
dm me
I have the first edition book whole i don't need it I need second edition
@coarse geyser It is in which format?
can you type it?
epub
thats cool
where are u from ?
