#voice-chat-text-0
1 messages · Page 981 of 1
it's an inconvenience, but a necessary one. if you take part in the server you should get there in no time.
but if you keep writing in broken messages to get there, i will issue the ban myself.
hi
!d str.join
str.join(iterable)```
Return a string which is the concatenation of the strings in *iterable*. A [`TypeError`](https://docs.python.org/3/library/exceptions.html#TypeError "TypeError") will be raised if there are any non-string values in *iterable*, including [`bytes`](https://docs.python.org/3/library/stdtypes.html#bytes "bytes") objects. The separator between elements is the string providing this method.
!e py text = "MASH" result = "*".join(text) print(result)
@somber heath :white_check_mark: Your eval job has completed with return code 0.
M*A*S*H
!e
def add_dots(string):
letters = list(string)
length = len(string)
count = 0
while count < length-1:
letters.insert(count*2+1, ".")
count = count+1
return("".join(letters))
print(add_dots("abcdefg"))
@sharp lantern :white_check_mark: Your eval job has completed with return code 0.
a.b.c.d.e.f.g
!e
def remove_dots(string):
letters = list(string)
noDots = string.replace(".", "")
return("".join(letters))
print(remove_dots("a.b.c.d.e.f"))```
letters is a list created before you removed the dots
:x
Sorted it out.
!e py #Equality vs identity a = [] b = [] c = a print(a == b) #Lists a and b are equal to one another. They both point to empty lists. print(a is b) #Prints False. They don't point to the same list. print(c is a) #c points to the same list in memory as a.
@somber heath :white_check_mark: Your eval job has completed with return code 0.
001 | True
002 | False
003 | True
!e ```py
a = []
b = []
c = a
a.append("test")
print(a)
print(b)
print(c)
@sick dew :white_check_mark: Your eval job has completed with return code 0.
001 | ['test']
002 | []
003 | ['test']
!e
def is_anagram(string1, string2):
set1 = set(string1)
set2 = set(string2)
if set1 == set2:
return True
else:
return False
print(is_anagram("tess", "test"))
@sharp lantern :white_check_mark: Your eval job has completed with return code 0.
True
!e py a = set("test") b = set("tess") print(a) print(a)
@somber heath :white_check_mark: Your eval job has completed with return code 0.
001 | {'e', 's', 't'}
002 | {'e', 's', 't'}
!e py text = "apple" result = sorted(text) print(result)
@somber heath :white_check_mark: Your eval job has completed with return code 0.
['a', 'e', 'l', 'p', 'p']
str.lower
Anatomy of an if stanza.
if condition: #Exactly one if
... #Code to be run if this condition is satisfied
elif some_other_condition: #Zero or more of these
...
else: #If no other condition above was satisfied. Zero or one of these.
...```In this order. Only the first satisfied of these is run.
!e py for a in "abc": for b in (1,2,3): print(a,b)
@somber heath :white_check_mark: Your eval job has completed with return code 0.
001 | a 1
002 | a 2
003 | a 3
004 | b 1
005 | b 2
006 | b 3
007 | c 1
008 | c 2
009 | c 3
!e py for i in range(5): print(i)
@somber heath :white_check_mark: Your eval job has completed with return code 0.
001 | 0
002 | 1
003 | 2
004 | 3
005 | 4
!e print(*range(5))
@somber heath :white_check_mark: Your eval job has completed with return code 0.
0 1 2 3 4
!e print(*range(5, 10))
@somber heath :white_check_mark: Your eval job has completed with return code 0.
5 6 7 8 9
!e print(1,2,3)
@somber heath :white_check_mark: Your eval job has completed with return code 0.
1 2 3
!e print(*(1,2,3))
@somber heath :white_check_mark: Your eval job has completed with return code 0.
1 2 3
!e ```py
def func(a, b, c):
print(a)
print(b)
print(c)
func("a", "b", "c")
print('')
func("abc")```
@somber heath :white_check_mark: Your eval job has completed with return code 0.
001 | a
002 | b
003 | c
004 | *
005 | a
006 | b
007 | c
!e
def func(a, b, c):
print(a)
print(b)
print(c)
func("a", "b", "c")
print('*')
list1 = [["abc"],["def"],["ghi"]]
func(*list1)```
!e
def func(a, b, c):
print(a)
print(b)
print(c)
func("a", "b", "c")
print('*')
list1 = [["abc"],["def"],["ghi"]]
func(*list1)```
@sharp lantern :white_check_mark: Your eval job has completed with return code 0.
001 | a
002 | b
003 | c
004 | *
005 | ['abc']
006 | ['def']
007 | ['ghi']
!e
def func(a, b, c):
print(a)
print(b)
print(c)
func("a", "b", "c")
print('*')
list1 = ["abc","def","ghi"]
func(*list1)```
@sharp lantern :white_check_mark: Your eval job has completed with return code 0.
001 | a
002 | b
003 | c
004 | *
005 | abc
006 | def
007 | ghi
!e
a = [1,2,3]
b = [4,5,6]
z = []
for x in a:
for y in b:
z.append(x*y)
print('banana')
@pallid hazel :white_check_mark: Your eval job has completed with return code 0.
banana
!e py import string print(string.ascii_lowercase)
@somber heath :white_check_mark: Your eval job has completed with return code 0.
abcdefghijklmnopqrstuvwxyz
how u make it run???
@somber heath
!e
!eval [code]
Can also use: e
*Run Python code and get the results.
This command supports multiple lines of code, including code wrapped inside a formatted code block. Code can be re-evaluated by editing the original message within 10 seconds and clicking the reaction that subsequently appears.
We've done our best to make this sandboxed, but do let us know if you manage to find an issue with it!*
!e ```py
"Code here"```
Don't copypaste that.
Strictly speaking, the discord ``` block isn't needed, but it is preferred.
ok!! thank u opal
the ticks are basically pretty print
!e
"opal="rules"
while opal = "rules":
print("yeah baby")
opal=True"```
@mortal crystal :x: Your eval job has completed with return code 1.
001 | File "<string>", line 1
002 | "opal="rules"
003 | ^
004 | SyntaxError: unterminated string literal (detected at line 1)
sheesh, don't know where i fcked up
!e py opal="rules" while opal = "rules": print("yeah baby") opal=True
@mortal crystal :x: Your eval job has completed with return code 1.
001 | File "<string>", line 2
002 | while opal = "rules":
003 | ^^^^^^^^^^^^^^
004 | SyntaxError: invalid syntax. Maybe you meant '==' or ':=' instead of '='?
!e py opal="rules" while opal == "rules": print("yeah baby") opal=True
@mortal crystal :white_check_mark: Your eval job has completed with return code 0.
yeah baby
ok.... super noob errors but i got it
there also is a bot channel to flood to test stuff in
ok
Ayywait
!e
a = 'maroloccio'
b = True
c = a + str(b)
d = 'False'
helper_coins = 0
while b == True:
for x in c:
if d in c:
helper_coins -=1
print('no output')
@pallid hazel :warning: Your eval job timed out or ran out of memory.
[No output]
i know, was the point.. it was a joke
i wanted the ran out of memory, and loosing coin time.
ok, actually iw as wonder what would happen in that situation
Hello 👀
Would you like streaming perms @knotty dew?
Yes I would like some perms
✅ @knotty dew can now stream until <t:1645709735:f>.
@midnight agate '76.. yea baby.. i cant say your older.. but atleast im no longer the oldest.
@knotty dew check #voice-chat-text-1
@mortal crystal
use .text
xD
oh i see now you just have to put that inside a dict and return it as json to your discord bot
cool stuff
✅ @vocal coyote can now stream until <t:1645711996:f>.
Yeah, I'm getting robot voices about half the time.
But once you start the stream, you can keep it open.
@midnight agate this one? ❤️
Nah, I've just got the stream on in the background 😄
Hey Hem 👀
https://stackoverflow.com/a/42014617/14023243 @vocal coyote maybe a more elegant and pythonic way to go about it
Yeah it's turned from troops going into those two regions, into now a full-scale invasion.
The sanctions will hurt Russia badly. (Or that's what I've heard.)

Only in the long run
I will play the fiddle as crypto burns
am i the only one who thinks russia has the right to do what they did?
I have a hard time finding any justifiable reason for killing on such a mass scale
🎵 we're completely fucked, completely fucked, we're completely fucked 🎵
lmao
rip
@gentle flint Your typing is coming through
I'm making a calculator. Doesn't work yet. The CSS was the fun and easy part 😩 It's crazy how much JavaScript goes into something we perceive as simple like a calculator. https://t.co/FohjUIcjSy
366
Found this on Twitter
holocaust
@zenith radish
Holodomor:
According to the findings of the Court of Appeal of Kyiv in 2010, the demographic losses due to the famine amounted to 10 million, with 3.9 million direct famine deaths, and a further 6.1 million birth deficits.
One of the funniest scenes from Season 9. Episode 19 Simpson Tide of the Simpsons.
For context
btw, im in need of an async pro to cut the time complexity of learning async and rewriting my code.. if interested I can send you the details.
#async-and-concurrency would be the place to ask
thx, copied that over there also
An AppGeneratorBuilderCreatorManager.
Hmm
Did someone say Kubernetes?
@frosty star Yo
Hayhayy
How've you been?
Yes, I was summoned
The Vym (Russian: Вымь) is a river in the Komi Republic, Russia. It is a tributary of the Vychegda in the basin of the Northern Dvina. It is 499 kilometres (310 mi) long, and its drainage basin covers 25,600 square kilometres (9,900 sq mi). Its average discharge is 196 cubic metres per second (6,900 cu ft/s).
The Vym has its sources in the south...
Good. Im going on a vacation next week :^D
Are you worried about your load balancer dying?
Or the app dying and the load balancer not having anything to serve?
need an isalive check?
Oh - Nodes?
Your entire server is dying?
Yes but with multiple nodes
10 hours-ish?
If everything dies. there's not much you can do
What does CloudFlare give you that Kuberenetes doesn't?
You know, you could always use CloudFlare and Kubernetes together
I know but I was looking for a built in thing for kubernetes
Is it a good idea to visit Turkey in these times with the war being nearby and all. What do u guys think?
Ehhhhhhh I'd say be cautious
I wouldn't - covid
What's wrong with lemon?
What're you trying to get?
The CloudFlare "this page is unavailable" when your nodes are dead?
We booked the tickets and the airbnb and all and the flight is on Monday 🙃
Ill be on your plane jk
I’m triple boosted yey
lucky i'm not
How does Kubernetes give you less high availability then Docker Compose?
Eh twice vaccinated and boosted once
It doesn't but how would you always keep your application running if the node dies after 2 hours of operation within kubernetes(then having 10 nodes as an example)
Health care is great here
here it's free and ig bad
Since i know you can't just update the dns every 2 hours as some people won't be able to connect
🤔
Ig?
ig = i guess
Well. Free healthcare still better than no healthcare.
True
It.... um
@rugged root - Permission to stream Kubernetes?
Are you available to watch a stream?
Yeah
Kind of
Long discussion about goals and purpose
Sure sure
But both in essence handle server stuff, ja?
I hear a lot about both, never really understood which one or what is the current standard
@knotty dew Just for context, Rabbit's expertise is angry explanations
Don't take it personally
@vivid palm 👋
kk he a good teacher though
Oh absolutely
They both take an external IP and route it to internal applications
Gotcha
I just don't know what people suggest to use or what the industry standard is or what the open source standard option is, etc.
Everyone uses something different
Joe is using neither anymore
Probs French
Ah yeah
I think you're right
I know UTC technically doesn't mean anything
Like as an initialism
Because nobody could agree with which one to use
Wait what?
The official abbreviation for Coordinated Universal Time is UTC. This abbreviation comes as a result of the International Telecommunication Union and the International Astronomical Union wanting to use the same abbreviation in all languages. English speakers originally proposed CUT (for "coordinated universal time"), while French speakers proposed TUC (for "temps universel coordonné"). The compromise that emerged was UTC,[6] which conforms to the pattern for the abbreviations of the variants of Universal Time (UT0, UT1, UT2, UT1R, etc.).[7]
What is he using
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name foundryvtt.darba.dev;
location / {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Request-ID $request_id;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_pass http://[2604:a880:800:10:286:95b:8001]:30000/;
}
@rugged root - So... Here's a snippet from a Nginx config on a server I host for family
So, there's a listen for both IPv4 and IPv6, so this "server" will receive all requests to this server. (You can have multiple "server" blocks in the same configuration)
It also has a server_name, which sets the domain names. (You can have multiple)
Then location is set to /, which catches everything, and proxy_pass es it to it's own IP address on the game server's port.
i think i have 11 windows in my house..
What the fuck
maybe they shot a missle at the plan..
guerilla warfare
Ukraine has extremely rich and complementary mineral resources in high concentrations and close proximity to each other. The country has abundant reserves of coal, iron ore, natural gas, manganese, salt, oil, graphite, sulfur, kaolin, titanium, nickel, magnesium, timber, and mercury.
no hit, hit, no hit
not with that attitude
That's very descriptive
how dare they cancel a meeting 1 minute after its start time..
would you perfer Balarus to refuse by face value only to Russia, or start yet another conflict
What is the context/story of this photo?
Anti-war protest in Moscow
Ukraine Russia Crisis LIVE Updates: Russian forces invaded Ukraine by land, air and sea on Thursday, confirming the West's worst fears with the biggest attack by one state against another in Europe since World War Two. Here's all you need to know about it right now:* Russian President Vladimir Putin says his aim is to demilitarise and 'denazify'...
honestly, i feel people using the 'narative' of the conflict confusing.. its always going to come down to the real why, natural resources...
Yeeeeeep
the "blikie"
This is why I love the "Forgotten Weapons" channel
You get to see all kinds of weird shit
And mechanically, firearms are just so interesting
https://www.reddit.com/rpan/r/worldnewsvideo/t0dk1h?related=home
26k people watching a guy stream in Kyiv
one would wonder if it was designed for specific purpose.. given the spread at range
Gorillaz? Really?
it would not be out of the question to think with such financial sanctions on that scale, that they would just print themselves a new fortune.
you cannot just print yourself a new fortune
[bradleyreynolds@maximus ~]$ fortune
Insanity is hereditary. You get it from your kids.
Huh
I'm already used to the Monokai Pro Theme
Thought that would have taken much longer
time to use a light theme
flatwhite is the only light theme I can stand, LP will vouch for me that it is nice
Is good
I mean yeah it's fine
I believe you mean perfect
Where'd the Rust go?
Just used a Python file since I had more code to show off the highlighting
LinkedIn Integration coming to Teams - MC335277
For those tenants that have LinkedIn integration available to their members, we are expanding its availability to Teams as a panel in one on one conversations. [...]
why is the stereo type that people with glasses are smart? .. when they've already failed a test.
Who... Who are these people that need to see their coworkers LinkedIn(s)?
We've fired people for using LinkedIn at work ([with Indeed*])
i think there is some measurable test to determine if your eyesight has worsened.
A cathode-ray tube (CRT) is a vacuum tube containing one or more electron guns, the beams of which are manipulated to display images on a phosphorescent screen. The images may represent electrical waveforms (oscilloscope), pictures (television set, computer monitor), radar targets, or other phenomena. A CRT on a television set is commonly called...
@rugged root
in newer CRTs it's no longer an issue though apparently
How to make me feel old
hello
Wow, I just really forgot how to spell only, took me minutes looking at "ownley" thinking something looks wrong
hey 👋
You're just overthinking it
"ownley" is correct
I always spell things phonetically, even as native english speaker I spell "know" as "no"
everything sounds fine for me
Are you in Voice Chat?
yep
I can't see you
- name: Run read-yaml action
id: var
uses: ./
with:
file: './action.yml'
key-path: '["runs", "using"]'
Did't they die?
I don't think so
They had the data collection privacy scandal
Yeah but I think that may have gotten rectified?
No idea
Still a great program
@terse needle
Warning: Unexpected input(s) 'key-path', valid inputs are ['file']
do you define the valid keys in a manifest or something?
Isn't it faster to run it on github than it is to run it on your ci/cd server
I spent thousands of dollars on some of the most powerful gaming PC hardware available, and crammed in a Hot Wheels PC case from 1999. As well as some other nonsense.
Thanks to Micro Center for sponsoring this video and funding this absurd project.
New Customers Exclusive – Get a Free 128gb Flash Drive and 128gb MicroSD Card: https://micro.c...
that is very dependent on lots of variables
Get 20% OFF + Free Shipping @Manscaped at → https://manscaped.com/TECH
Buy the MSI GeForce RTX 3080 GAMING X TRIO 10G at https://geni.us/q9Xa9W
The bounty program has come through again and we managed to find not one, but TWO Hot Wheels PC to try.
Thanks to Disappearing Inc for hooking us up with these: https://www.disappearinginc.ca/
Buy Ho...
for us at work
this is what I am looking into now
we cache stuff locally, so it is quicker using our own runners
lmk if you want assist
How do you cache it
See also: self hosted GitHub runners
that's sexist
Ehhhh not really since it's aimed at a specific group
When you make a pull request you have to take a shot
You need to use something gender neutral, like GitWomen
2 shots for every commit you have to make after that to fix it
That's what I said
I thought the docker registry provided by docker is worse than goharbor
Alright, I'll quit with the social commentary
Mentioning about that warehouse:
https://www.youtube.com/watch?v=K-ZZkZk9QRk
Exploring a MASSIVE retro computer warehouse, part 2! Revisiting Computer Reset in Dallas to see what's changed, how much remains, and experience some of their weekend events. And yep, groups of folks are still being let inside, so it's not too late to visit before they shut down later in 2022!
● Here's the group to join for scheduling/info on ...
It's fiiiiine
Help me write my bio for GitHub sponsors so that Hemlock can support me?
@terse needle https://github.com/KJ002/read-yaml/issues/4
you shoulda mentioned the number thing
will do
I have no idea what to put
Give me money please
Hello all 💻🖥
nope, you made me sadge

CLion can also run cargo check or cargo clippy
Don't use Eclipse
isn't eclipse purely Java
https://flight-manual.atom.io/
I really like the "Flight Manual" name
But at this point just us VS Code
Maybe I'll publish my own "Flight Manual" for something
JetBrains s.r.o.
**Headquarters ** Prague, Czech Republic
JetBrains s.r.o. (formerly IntelliJ Software s.r.o.) is a Czech[2] software development company which makes tools for software developers and project managers.[3][4] As of 2019, the company has offices in Prague, Saint Petersburg, Moscow, Munich, Boston, Novosibirsk, Amsterdam, Foster City and Marlton, New Jersey.[5][6][7][8]
"The √ Republic"
Flask
But if you have to ask, you should use Django because it helps you along
@rugged root - Does PyDis use metabase?
Let anyone on your team ask questions without knowing SQL
Business always complains that my reports are bad
I'd be curious to see if metabase could help them feel better by letting them make their own reports
(Yes, I know that it's not an excuse to not fix my own reports)
"no reason"
From Season 13 Episode 2, "The Parent Rap"
metabase is fairly intuitive
🤣
supports native sql
but also a nice UI
i haven't made any reports that aren't very simple filter queries though
so personally haven't made any with joins or anything like that. other admins have though
Mina is tts through my own mic allowed?
Depends on how obnoxious the voice is. Normally it's.... disruptive since it can't stop mid sentence, especially if someone is already talking
It sounds nice
And the Docker container support would allow me to easily add it to Kubernetes
!resources
The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.
I thought k8s was dropping docker support
We don't support doxxing in this server
Oooh someone is doxxing someone gonna join now
this
Tardive dyskinesia (TD) is a disorder that results in involuntary, repetitive body movements, which may include grimacing, sticking out the tongue, or smacking the lips. Additionally, there may be rapid jerking movements or slow writhing movements. In about 20% of people with TD, the disorder interferes with daily functioning.Tardive dyskinesia ...
Looks like science
Low quality camera, yes, but if looking at the far right of the camra part, you see I create and then delete a file.
GitHub is becoming OnlyFans confirmed
Very strange
Hey @sour imp
How goes it my guy
JavaScript stuff:```js
// all tags in document
let allTags = document.querySelectorAll('*');
// all <a> tags with a href attribute in the body
let allAHrefs = document.body.querySelectorAll('a[href]');
ended up kicking him for sus behaviour
https://api.github.com/orgs/JetBrains/members
Then use the url attribute for each user to get the specific user details
this tbh
I am not sure we should conflate supporting Russian developers with supporting the government.
!or-gotcha
When checking if something is equal to one thing or another, you might think that this is possible:
if favorite_fruit == 'grapefruit' or 'lemon':
print("That's a weird favorite fruit to have.")
While this makes sense in English, it may not behave the way you would expect. In Python, you should have complete instructions on both sides of the logical operator.
So, if you want to check if something is equal to one thing or another, there are two common ways:
# Like this...
if favorite_fruit == 'grapefruit' or favorite_fruit == 'lemon':
print("That's a weird favorite fruit to have.")
# ...or like this.
if favorite_fruit in ('grapefruit', 'lemon'):
print("That's a weird favorite fruit to have.")
🇷🇺 👑
xD
just use jadx :/
for decompilation
which channel is the argument goin on?
xDDDDDD
You can allow and support all citizens migrating away from Russia. Likely financially unviable though. There was a precedent with Hong Kong, albeit at a much smaller scale.
@quasi condor https://www.theguardian.com/news/2022/feb/20/credit-suisse-secrets-leak-unmasks-criminals-fraudsters-corrupt-politicians
HSBC had similar stuff
pretty sure this is just bank things
it was the regulatory environment that used to make Switzerland super useful for this kind of thing
but they've been improving on that front
they definitely do benefit a ton from this shady BS though - more so than other countries due to their history
@amber raptor this is what I meant earlier
MSPs keeps calling me
@broken kestrel message here, not in DMs
I don't need help
I think I'll go. Bye @rugged root
I can't offer help
Ok
you just need to wait for people to respond
Bett
I have too
not with that attitude
Whatttt??
Don’t double encrypt
wdym don't double encrypt and also why is it bad
Just don’t, this setup is bad
How would you do it if you don't want to expose api.test.com to Client 123
HTTPS proxy
There's not a lot of people here that would use CPanel
You'd probably get a lot better help on a CPanel server
@sweet lodge its somethingg related ti the code its not necessarily abt coanel
Isn't that when you know the server you are sending the request to? Since api.example.com would also do other things but leave the encrypted payload alone
Say again
But wouldn't my solution be good
Or should I follow what ssh does?
If you really don't want to expose your API to the internet, just use a VPN or SSH based port forwarding
Well api.example.com would handle authentication and authorisation
api.test.com handles the encrypted data
Because the other api can access the client ip
I don't want that
yeah
because example.com could always be hacked one day idk
but mainly the getting of the public key
If example.com gets hacked your screwed anyways
@rugged root - What do you think of this? https://docs.darbia.dev/
(Please ignore the parts that're obliviously stolen from pythondiscord.com)
oooh what about every random request the client is reverified by the server and same with the server with the client(the sharing of the public and other public key)
Yeah...
I want it to be pretty!
Maybe I should just pay a frontend person for a weekend or something
Good point thanks
Also diabetes
😂
Do i put the path here
???
I think not using cpanel works
Hemlock it happened again to another person
@amber raptor back to encryption/authentication how does fivem work with it?
Since you connect to fivem's servers which then checks if you can join and if the server is allowed to get people then you can connect to the end server?
lmao
Hemlock like on a plane?
yk those multivitamin tablets that give you carbonated water?
Like this one
What if you put that and sparkling water together?
@quasi condor it's not I guess it's making something from mongo over to postgres
Na that sounds worse
I think they are just in the uk
Just use a sandwich bag
ice cream tub?
Just wrap it in duct tape
Hello people from the US, what are your opinions on vaccines and masks?
UK view: not effective in the long term and they should make it required(all the time)
@knotty dew could u plz take a look
I don't do windows sorry
Watchu mean?
me 95% of the time
lmao
@rugged root do you need some reinforcement? I hear you are converting over to php 🚑
php 🤮
wordpress 
🥖
esta pa delante
oui pp idk but this is funny to me
If only there was a node js equivalent of wordpress
make it 🤣
idk I'd build it in rust or golang for speed
rust for sure
One of those Hollywood spotlight things.
Gotta go for a bit. Cheers all!
Later be safe!
!voice
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
Thank you for flying @rugged root -air
add 1 4 or 1 4 add
f x
x f
actual code
x <- { $0 1 add OUTPUT x } { $0 1 add OUTPUT } ( $0 10 eq ) if-else
0 x
1
2
3
4
5
6
7
8
9
10
11
((condition) (result)) ((condition) (result)) cond
1 2 ( foo bar eq ) if-else OUTPUT
1
Is there anyway to get voice verified without waiting three days? Why isn’t it one day? I’d like to be able to talk to someone for help in vc
Or not even one day like 1-2 hours
let's answer you : you can easily guess why.
it's because mods really do not want to have people that are here just for the troll
because there are people that are sending foo messages and waiting 3 days just to be a troll in VC. I already seen that.
@sweet lodge thanks for all the help on the PR
if it gets merged it's all you buddy
👍
Put together Linux and MacOS
Unix wins out for devs
@mortal crystal you should mute yourself
You should use Arch BTW
@indigo cypress - Please mute your microphone when talking to other people
Visit https://www.squarespace.com/LTT and use offer code LTT for 10% off
Create your build at https://www.buildredux.com/linus
It is no longer just a joke. You can download more RAM! Join us on this foolish escapade to make a system with unholy amounts of memory.
Original Tweet: https://twitter.com/tjhorner/status/1470788584043073542?t=YMJPKI...
It really does not work very well
The Gate House, Muff, Co. Donegal a 2 Bed House is now for rent by Grace Roddy on Daft.ie with an asking price of €650 per month
ye the troll has to wait 3 days but so do regular players 3 days is a lot, and trolls could just get a bunch of alts in here so they dont have to keep waiting
not going to argue with you. here are the rules, if you don't like them, then it's your problem. 3 days is not the end of the world.
@unborn storm - your typing is coming through your mic
ok sorry for that if it was me but i normally have my mic muted. sometimes i mess up with the current state muted or unmuted...
👍
no worries, just letting you know
I understand. I’m just saying 3 days is a long time just to be able to get vc help, like maybe if the player has some code that they sent they could get voice verified bc why would u write code just to troll
What IDE is this?
On stream? VS Code
o i couldnt see the virtual studio
You're welcome, and encouraged, to use this text channel to type in until you meet the voice verification requirements.
Also, it helps us a lot when we're able to read your code as we think through how to help you, so we always recommend that you go ahead and paste your code in this channel [when asking for help in voice]
hey dudes
Okay, thanks, one minute I gotta eat and then I’ll gmail my code to myself
tis
type Person = {
name: string;
age: number;
};
interface Person = {
name: string;
age: number;
};
De Nederlandse Voedsel- en Warenautoriteit (NVWA) waarschuwt consumenten zeer voorzichtig te zijn met champagneflessen van het merk Moët & Chandon Ice Impérial van 3-literformaat. Recent bleek zowel in Duitsland als in Nederland een fles van dat formaat gevuld te zijn met de harddrug MDMA (ook bekend als xtc). Aanraken en/of opdrinken van de inh...
how does one get invited to the parties you goto?
gives a whole new meaning to, eye candy
if I was missing and eye, i would do that every holloween with those candy eyes
did you try to play it like a bagpipe?
@dense ibex https://www.youtube.com/watch?v=CbV05y63-Dw
Alexander Levack, whistle and Highland pipe. Filmed at the City Halls in Glasgow. For more: http://bbc.co.uk/youngtrad
when i think of them, it makes me think of braveheart
2:35
like fluestist that you cant tell their breathing
he's taking very quick short breaths
i havent watched it, but was just saying wind instruments in general.. there are those who puff, or those you wonder if theyve even taken a breath
Guren No Yumiya from Attack on Titan S1 on recorder
Watch the edit breakdowns on my Instagram!
Instagram: https://www.instagram.com/recorder_legend
there a asain chick i really like
Fourth episode of the One Shot Sessions: Fingerstyle cover #3.
By Farid Ben Miles (http://facebook.com/faridbenmiles)
Tab available on https://goo.gl/xzGZkJ
FREE Audio available : https://faridbenmiles.bandcamp.com/album/farid-ben-miles-one-shot-sessions-audios-tabs
I remember when I first heard Pierre Bensusan playing it live at the Silk Mill ...
ciao
#p = positions, r = rounds, t = taken, s = spot,
p = ['', 1, 2, 3, 4, 5, 6, 7, 8, 9]
r = 0
t = True
while r < 10:
while t == True:
print("", p[1] ,"", p[2],"", p[3] ,"\n", p[4],"", p[5],"", p[6], "\n",
p[7],"",p[8],"", p[9])
s = int(input("Which number will you place your X in? "))
if p[s] == 'O' or p[s] == 'X':
print('That position is already taken')
t = True
else:
r = r + 1
p[s] = "X"
break
while t == True:
print("", p[1] ,"", p[2],"", p[3] ,"\n", p[4],"", p[5],"", p[6], "\n",
p[7],"",p[8],"", p[9] )
if p[1] and p[2] and p[3] == 'O' or p[4] and p[5] and p[6] == 'O':
print('O player wins.')
break
if t == 9:
break
s = int(input("Which number will you place your O in? "))
if p[s] == 'O' or p[s] == 'X':
print('That position is already taken')
t = True
else:
r = r + 1
p[s] = "O"
break```
still working on it, is there an easier way to check multiple elements in a list
20 hours into not being able to sleep on the news
desert storm was weeks of establishing air shock and awe before ground troops
this the just the horrible start
if p[1]
This will convert p[1] into a boolean (True/False), and won't actually compare the values like you're expecting.
You'll need to use something like this:
if (
p[1] == 'O' and p[2] == 'O' and p[3] == 'O'
) or (
p[4] == 'O' and p[5] == 'O' and p[6] == 'O'
):
I think it would be fine like that, but if you want something shorter you could use all.
For example:
if all(value == "O" for value in [p[1], p[2], p[3], ]) or all(value == "O" for value in [p[4], p[5], p[6], ]):
only 4 hours of sleep and you are good then young
even with drink
this fades from 30 plus
they look snug
Photo of some possums in one of the nesting boxes on our property.
Had to twiddle the image a bit. Discord kept thinking it was pornography.
We have plenty of grey squirrels. Love them but the little fucks keep eat the bulbs we plant
explains the red eye
the marks on the side are the propolis/wax
cool
i use to keep bee's
but now small children i don't trust to kick over hives
Little shits.
the bee's or the kids
Kids.
Bees I like.
I think the kids will like the bee but my 5 year old lad can't be trusted not to tip a hive just because
Perl bitches
ye thats what i ended up doing this example is old sorry
ty
same went to bed at 3 got up at 7
sure you miss out on cool point for vim/emacs, but honestly we all have more imprtant stuff to learn
!unmute 544998372151525386
:incoming_envelope: :ok_hand: pardoned infraction mute for @hearty echo.
oops, what i do?
please read our #code-of-conduct - don't appreciate you calling people "tards" for any reason
thx
sincerly
now you know :)
but stand by my assertion that we all have better thing to do than lean vim/emacs to be 1337
!mute @vivid palm
I love my emacs
it is nice, and it vim saved my ass when my client had v strint security rules.
And it wasn't really that complicated to learn the very basics
e.g edit only in prod on call in vim or emacs
but i welcome vscode that works linux/osx
freelance is less anxiety when you are established in your area
TM billing only is the way to go
GN
dude
wft murdoch can stop this "if he wants to" 🙂
honestly murdoch is less than nice person
but today is not at his door
@wind raptor easier if you install linux first
nooo
It's not me doing it lol
I have wsl
wsl is not bad but life is simpler in linux
for work i have to run osx on corp machine
and then home brew makes life easy for linux dev env
?
perl for life
and then i feel bleak pascal
competent or happy?
roll master?
call of cthulhu in python?
def cthulhu():
pass
cthulhu()```
is better to pass 🙂
it will only get better
@hearty echo +1
!e ```py
def func(k):
k.append(1)
a = []
func(a)
print(a)```Variables are signposts. a and k point to the same, one object.
@somber heath :white_check_mark: Your eval job has completed with return code 0.
[1]
Immutables are a bit different.
would it not better to call k, object?
!e py def func(k): k += 1 a = 0 func(a) print(a)
@somber heath :white_check_mark: Your eval job has completed with return code 0.
0
Because we're here also dealing with function scope.
Ew but where are my pointers 😦
return, correct?
Yes. Returning is often a good idea for functions.
In-place stuff is generally best kept to methods through self.
good night all. 👋
gn, me too gn all
do the voice verification mate
@mortal crystal how ?
dis
@mortal crystal i have less than 50 msg
so keep messaging
they also need to be spread over at least 30 mins
@sour imp i joined for more than a month
then you need to hit the 50 msgs
@sour imp already sent the 3 seperate 30 mn msg
50 msgs
the problem is in the 50 msg
how?
i've finished high school and it will bring nothing to the table
type the name in search
thxs
where u from mate?
you have 182
@mortal crystal tunisia
neat
@mortal crystal ????
echo "Hello World!"
Software and technology has changed every aspect of the world we live in. At one extreme are the ‘mission critical’ applications - the code that runs our banks, our hospitals, our airports and phone networks. Then there’s the code we all use every day to browse the web, watch movies, create spreadsheets… not quite so critical, but still code tha...
@sour imp <?php
$txt="hello world!";
echo $txt
?>
!e
_='_=%r;print (_%%_)';print (_%_)
@mortal crystal :white_check_mark: Your eval job has completed with return code 0.
_='_=%r;print (_%%_)';print (_%_)
quine

here it goes another quine
Oh yeah, making the error part of the interface 🤔
?
No ;-;
the smallest quine (a code that print itself) is a empty file
Oh
@stuck furnace i ve get it
just for anyone need help in
html ur welcome to contact me😅
discord voice servers might be screwed?
happening to me a bit
there's a bunch of robots on voice chat 0
@stuck furnace sorry cant help
Ah right. It's been this way for a couple of weeks now, but only on my laptop, not mobile 🤔
my ping is always trash
mi heavy suspect is LP... his kind of roboti
some pushing code to git maybe?
just brainstorming hahaha
.
17 left
.

just
yes
did someone
writed something
and deleted it
right away
bcs i see a lot of peole
writing
then nothing
pop up
Yeah I asked if I heard a rooster 😄
ah i was thinking that i started imaginig voice
and seeing things
finally
50 msg
🎉
I'm falling asleep over here. Have a great {time_of_day}! Cheers!
Oh so weirdly restarting the network-manager service seems to have fixed it 
night!
for me its not bcs of the server its the fact im from tunisia😓
@midnight agate what is the topic?
I don't even remember
I'm so confused
nono this is about recruitment I think
then i think they speeked about rpg and 80's
or cyber security
@zenith radish yep then it was about background of cybersecurity and pleasing a horse
I can't tell if the lack of sleep has manifested in psychosis
@zenith radish nah its from my part ive been awake for 36 hours and smoking some messed up shit
you should probably get some sleep
it's 100% garbage
because our deployment sucks
@sour imp is my mic ok
feelsbadman
come back!!!!
!pastebin
Pasting large amounts of code
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 floppy disk icon in the top right, or by typing ctrl + S. After doing that, the URL should change. Copy the URL and post it here so others can see it.
Hey @keen sky!
It looks like you tried to attach file type(s) that we do not allow (.pdf). We currently allow the following file types: .gif, .jpg, .jpeg, .mov, .mp4, .mpg, .png, .mp3, .wav, .ogg, .webm, .webp, .flac, .m4a, .csv, .json.
Feel free to ask in #community-meta if you think this is a mistake.
anyone know of a better way to import local modules?
import sys
import os
import time
import datetime
import calendar
import csv
current_working_dir = os.getcwd()
sys.path.append('%s/database_connector'%(current_working_dir))
import get_from_db
sys.path.append('%s/helpers'%(current_working_dir))
import string_formatter
sys.path.append('%s/cust_distribution'%(current_working_dir))
import auto_send
crontab doesn't seem to like this style of imports
@hearty echo
@hearty echo
How to improve my hands python foundations

Not any particular field
Not any Framework
Just python
Have you Corey Schafered yourself?
Then I'd go through the pdf version of the Python documentation. Specifically library.pdf.
If you go on Python.org, documentation, look to the upper left, you'll see talk of downloadable versions.
Yeah
2 or whatever
I wanna master that tooo
I wanna master python
I've been coding from 10 months now on py
Like Django
Flask FastAPI
Tkinter n alot of stuff
Now I wanna ace in python
Not any Framework or something
?? What u mean
Plz accept my friend req I found u're such a helping guy @somber heath
Python.org. Documentation. Upper left. Downloadable version of the documentation. Zip archive of pdfs.
Being myself.
Sure
@whole bear i have strong words for you if wanna start some bullshit
hey
same
@amber raptor @sour imp @zenith radish Sorry, all to much yesterday, all my friend offline and awake to late with to much whiskey to hand. Sorry for whatever madness I inflicted on you. I will not watch the news today.
@somber heath - sent to others as well. Sorry, all to much yesterday, all my friend offline and awake late with to much whiskey to hand. Sorry for whatever madness I inflicted on you. I will not watch the news today.
No madness was inflicted.
hmmm, I'm having trouble with BeautifulSoup.
Trying to use find() on an object I got using select()
@somber heath hello
i cant speak
!voice
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
👍
voice verification messing wid me
joined the community over 3 days ago.
• Have been active for over 3 ten-minute blocks. This means you need to have sent your messages over a span of at least 30 minutes.
i actually can talk 5 languages....
2 of them i really suck at
1 i'm self taught so i'm self conscious about it as well
so i stick to just hindi and english
family is punjabi so i know punjabi, i was taught sanskrit in school and i self taught myself a bit of japanese both to read and write
i'm from delhi 🙂
not anymore 🙂
job?
freelance
say it
i thought you were also gonna flex you're 10 years younger than me and you can know django
like alot of others do these days :/
at 13 all i knew to do with computers was play pinball
ah nice i have friends who go there
oooo
but they're doing chemical engineering
i am 11 lol
i have 7 assignment pending
11th grade?
here i m listening random people talk
11 years
111 years? o- o you missed a 1
dont want to hear no more
oh wait 2 different guys with similar profile pic
i mean similar color
:x i thought the guy studying in a uni was 11
?
u have 10 companies listed in your profile
dont give me inferiority complex
@neat dew how to become an admin
?
whats that?
admin
sys admin?
why
to show off
ok, i don't like you
bye
@dense ibex 😦 i'm still stuck with just a vm
And please don't try to ping everyone
this is pretty
i like the transparency
oh :x i thought you meant the wallpaper
which code edutir us this
too much light
fire
i love every wallpaper in pink
👀 dm me img plz
wooofff woofff
oki
i need that tho its kinda suss
gtg
done :)
👋 how are you doing, @zenith radish
So, so
Speeding up my move
nice 😄 i've personally been just fiddling with graphic libraries in C and rust past few days 🙂
so sdl2, opengl, vulkan
oh 😮
the hardest thing for me working with sdl2 was to get a font working o-o
i tried to not copy paste as i was doing it for learning so that part took a while

Billing and bobbing are things. Billybobbing is, alas, not.
@midnight agate https://www.freshbooks.com/en-eu/
sole proprietorship
Let's get Right to Repair passed! https://gofund.me/1cba2545
I am an idiot and got locked into the Quickbooks system before I was aware that it was awful. Don't be like me.
@zenith radish howmuch do you have to earn to have to pay income tax as a freelancer where you live? 😮
its like 280$ per month for india i think
i think for us it changes based on howmuch you earn
Here it's a flat fee
like till 280$ its 0
then till 400$ its like 10%
and it increases in increments 10% depending on howmuch your income increases
i heard escort there o-o
They pay cash, so no taxes
It's a great way to make money
😅 india is probably one of the few places left where we all still carry cash but even then even we prefer paying by using an app or card (and that we doesn't include me cuz i just registered for a payment app for the first time like a month ago)
Also Finland is a fake
i have that ability too its called having strong bones 😄
Tweet this: http://bit.ly/IcePhysics -- FB it: http://bit.ly/IcePhys
Download a free Audio book: http://bit.ly/AudibleSED
Infographics are Here: http://smartereveryday.tumblr.com/
Figure skate, Hockey skate, and blade diagram Graphics by Kelly Richard.
http://www.helloimkelly.com/
Clap skate, Plantar Flexion, and outro logo by Emily Weddle.
htt...
I also find that water is essential for life 
all of them
One million.
I've used rustishard for some on premise stuff
Good evening
we decided on disnake for all the bots
Will there be a datsnake?
we initially were gonna trial nextcord
Hey everyone (just to simplify things)
but that was before this #dev-announcements message

