#voice-chat-text-1
1 messages · Page 98 of 1
no, only we can check
Can you check my infractions please?
I can, but I probably wont share 😄
Even to me in DMs?
You should be aware of what your infractions are xD
I have 2, one because I used a bot command a bit too much accidently and I don't remember the second one
So I'm just curious
yep haha
so annoying lol
@peak frigate please refrain from using noisy unicode usernames, this will be your final warning 😠
Hi, I'm a new partitoner in this server 👋














Is there any project going around?
Fisher, you're giving away our methods 👀

I never created a full desktop app with python before do I have to use gradle or maven or something like that?



pipenv and poetry
Can I use poetry to make it sale able?
An app?
Yeah for example I build one app with kotlin but the official website make me create a jar file
But jar file wasn't working for people who doesn't have language installed on their system
So is this file an example for building dependencies?
I only used python and javascript before
But I was thinking that if I want to use kotlin and python together I would have to create module and then save it into scripts folder or something like that is that true?
@stark saddle Not sure if you know that you're muted or what's going on
I know I'm mute, but for some reason I can't hear a thing
you aren't missing much
Is the "voice connected" thing orange?
heyyyyy, mina dat is mean
I've had this issue where I can't hear when I join a voice channel.
l o l i mean, i'm here
Yeah, it's stuck on ICE Checking and then goes to disconnected
Debug screen is just blank
oh well
catch y'all another time
Nuuuuuuuu
hemlock i saw what you said yesterday to the guy that said wow the whole server is in vc because of 1 girl
Restarting Discord usually fixes it.
I'm in the webapp, so I've reloaded a few time
Ah right.
Does any one else doing calisthenics?
@stark saddle Just swapped voice server. If it doesn't work, then you need to restart your phone
Or computer
Whatever
We're all just statistics to Jake.
nah, probably my connection is screwy today
Lame
Thank you
I started with this one
I mean this is where I am right now
But this course I think it's pretty nice I though it's video at the beginning but it's not so it's good
Have you guys ever though to write house of mystery app?
Thank you Hemlock
Like I said, that's more about the Android operating system, kernel, etc
Yes
Emulator and stuff
I though I'm not be able to run it but it doesn't requires 12 gb ram as it says I guess
It's working on me
So how does any one managing lockdown?
I been talking with dogs for several months
🤔
Lockdown
I mean 1 year 2 months
Have a nice day guys it was nice to talk with you all
@golden marsh do you write songs?
then why do you have ableton?
lol ok
makes sense
ooh
what's your setup
lol i have no idea what that is but it sounds cool
so are you one of those people who don't listen to music with headphones?
yeah i've heard they're like sennheiser but cheaper
oh ok
so you only listen to .flac or something?
cool
is there really a difference?
interesting
so where does "impedance" come into play
and what is it
lol i see
so if you connect low-impedance headphones to a high-impedance output you might break them, right?
ok thanks, bye for now 👋
sorry i would have to look it up again its not something i know of the top of my head
class MyHelp(commands.HelpCommand):
def get_command_signature(self, command):
return '%s%s %s' % (self.clean_prefix, command.qualified_name, command.signature)
async def send_bot_help(self, mapping):
channel = self.get_destination()
embed = discord.Embed(title=f"{bot.user.name} bot help",description=f"This is {bot.user.name}, looking over **{channel.guild.name}** server. \nTo get more information about a specific command, type in: `!help <command name>`", color=3447003)
for cog, commands in mapping.items():
command_signatures = [self.get_command_signature(c).strip(" ") for c in commands]
if command_signatures:
cog_name = getattr(cog, "qualified_name", "No Category")
embed.add_field(name=cog_name, value="\n".join("`" + item + "`" for item in command_signatures), inline=True)
embed.set_thumbnail(url=bot.user.avatar_url)
await channel.send(embed=embed)
async def send_command_help(self, command):
embed = discord.Embed(title="Command Help",color=3447003)
embed.add_field(name="Command", value=f"```{command.qualified_name}```", inline=False)
embed.add_field(name="Description", value=command.help, inline=False)
embed.add_field(name="Usage", value=self.get_command_signature(command), inline=True)
alias = command.aliases
if alias:
embed.add_field(name="Aliases", value=", ".join("`" + item + "`" for item in alias), inline=True)
channel = self.get_destination()
await channel.send(embed=embed)
async def send_error_message(self, error):
embed = discord.Embed(title="Error ", description=error)
channel = self.get_destination()
await channel.send(embed=embed)```
class Tools(commands.Cog):
"""The description for Tools goes here."""
def __init__(self, bot):
self.bot = bot
self._original_help_command = bot.help_command
bot.help_command = MyHelp()
bot.help_command.cog = self```
Base OS is, but all stuff around Google Play Store/Apps which include Notification Service isn't
wrong chat? did you mean #code-help-voice-text
def __init__(self, bot):
self.bot = bot```
Thank you
yes, sorry
bot.help_command = MyHelp(bot=self.bot)```
AttributeError: 'ProactorEventLoop' object has no attribute '_closed'
!paste
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.pydis.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.
def setup(bot):
bot.add_cog(Tools(bot))```
raceback (most recent call last):
File "c:\python38\lib\site-packages\discord\ext\commands\bot.py", line 619, in _load_from_module_spec
setup(self)
File "c:\Users\Kyriakos\Python Scripts\trading-server-bot\commands\tools.py", line 53, in setup
bot.add_cog(Tools(bot))
File "c:\Users\Kyriakos\Python Scripts\trading-server-bot\commands\tools.py", line 50, in __init__
bot.help_command = MyHelp(bot=self.bot)
File "c:\python38\lib\site-packages\discord\ext\commands\help.py", line 298, in __new__
self.__original_kwargs__ = {
File "c:\python38\lib\site-packages\discord\ext\commands\help.py", line 299, in <dictcomp>
k: deepcopy(v)
File "c:\python38\lib\copy.py", line 172, in deepcopy
y = _reconstruct(x, memo, *rv)
File "c:\python38\lib\copy.py", line 269, in _reconstruct
state = deepcopy(state, memo)
File "c:\python38\lib\copy.py", line 146, in deepcopy
y = copier(x, memo)
File "c:\python38\lib\copy.py", line 229, in _deepcopy_dict
y[deepcopy(key, memo)] = deepcopy(value, memo)
File "c:\python38\lib\copy.py", line 172, in deepcopy
y = _reconstruct(x, memo, *rv)
File "c:\python38\lib\copy.py", line 269, in _reconstruct
state = deepcopy(state, memo)
File "c:\python38\lib\copy.py", line 146, in deepcopy
y = copier(x, memo)
File "c:\python38\lib\copy.py", line 229, in _deepcopy_dict
y[deepcopy(key, memo)] = deepcopy(value, memo)
File "c:\python38\lib\copy.py", line 161, in deepcopy
rv = reductor(4)
File "c:\python38\lib\socket.py", line 272, in __getstate__
raise TypeError(f"cannot pickle {self.__class__.__name__!r} object")
TypeError: cannot pickle 'socket' object```
Traceback (most recent call last):
File "c:/Users/Kyriakos/Python Scripts/trading-server-bot/app.py", line 61, in <module>
bot.load_extension(f"commands.{filename.stem}")
File "c:\python38\lib\site-packages\discord\ext\commands\bot.py", line 664, in load_extension
self._load_from_module_spec(spec, name)
File "c:\python38\lib\site-packages\discord\ext\commands\bot.py", line 624, in _load_from_module_spec
raise errors.ExtensionFailed(key, e) from e
discord.ext.commands.errors.ExtensionFailed: Extension 'commands.tools' raised an error: TypeError: cannot pickle 'socket' object
Exception ignored in: <function BaseEventLoop.__del__ at 0x000002951E90E940>
Traceback (most recent call last):
File "c:\python38\lib\asyncio\base_events.py", line 645, in __del__
if not self.is_closed():
File "c:\python38\lib\asyncio\base_events.py", line 642, in is_closed
return self._closed
AttributeError: 'ProactorEventLoop' object has no attribute '_closed'```
def save_cookies(requests_cookiejar, filename):
with open(filename, 'wb') as f:
pickle.dump(requests_cookiejar, f)
def load_cookies(filename):
with open(filename, 'rb') as f:
return pickle.loads(f.read())
many times this is used 🙂
if you want to write byte encoded cookies into a file
Version 0.10
Released 2013-06-13, codename Limoncello
Changed default cookie serialization format from pickle to JSON to limit the impact an attacker can do if the secret key leaks.
lol
with open("./data/settings.json") as file:
TOKEN = json.load(file)["discord_token"]
bot = commands.Bot(command_prefix="!")```
bot.run(TOKEN)
class MyHelp(commands.HelpCommand):
def get_command_signature(self, command):
return '%s%s %s' % (self.clean_prefix, command.qualified_name, command.signature)
async def send_bot_help(self, mapping):
channel = self.get_destination()
embed = discord.Embed(title=f"{bot.user.name} bot help",description=f"This is {bot.user.name}, looking over **{channel.guild.name}** server. \nTo get more information about a specific command, type in: `!help <command name>`", color=3447003)
for cog, commands in mapping.items():
command_signatures = [self.get_command_signature(c).strip(" ") for c in commands]
if command_signatures:
cog_name = getattr(cog, "qualified_name", "No Category")
embed.add_field(name=cog_name, value="\n".join("`" + item + "`" for item in command_signatures), inline=True)
embed.set_thumbnail(url=bot.user.avatar_url)
await channel.send(embed=embed)
async def send_command_help(self, command):
embed = discord.Embed(title="Command Help",color=3447003)
embed.add_field(name="Command", value=f"```{command.qualified_name}```", inline=False)
embed.add_field(name="Description", value=command.help, inline=False)
embed.add_field(name="Usage", value=self.get_command_signature(command), inline=True)
alias = command.aliases
if alias:
embed.add_field(name="Aliases", value=", ".join("`" + item + "`" for item in alias), inline=True)
channel = self.get_destination()
await channel.send(embed=embed)
async def send_error_message(self, error):
embed = discord.Embed(title="Error ", description=error)
channel = self.get_destination()
await channel.send(embed=embed)```
bot.help_command = MyHelp()#command_attrs=attributes
@unique raptor come on
ok
@merry mica https://yeethon.org/
hi
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
read the text
Voice Chat 0
@misty sinew
from the pydis code of conduct https://pydis.org/coc:
Examples of unacceptable behavior by participants include:
Trolling, insulting/derogatory comments, and personal or political attacks
Public or private harassment
Your name start with Z, yeah
but you cant cant cant sleep
You are very very sweet, oh yeah
and i give my heart for you to keep
Z A A R A
Z A A R A
Z A A R A
Z A A R A
I love to talk to you
and i miss you too
you got a million assignment to doo
and your geo teacher's a junk too
Z A A R A
Z A A R A
Yeah i love ya
Z A A R A
Z A A R A
Yeah i love ya
Z A A R A
Z A A R A
And yeah i love ya so much too```Made a song bout the girl i love ❤️ ❤️
Oh @crystal aurora, I found this thing you might like to use when you stream: http://pythontutor.com/live.html#mode=edit
I knew about pythontutor, but not the live programming mode.
Oh yeah. It think it was open sourced at some point.
Pythontutor that is.
This one is cool because it shows you the structure of the data 😄
Yep, can hear you 👍
Thanks 😄
Yep @hidden cliff
!stream 255840559678095370 30M
@hidden cliff
✅ @hidden cliff can now stream.
Yep, I would lower the resolution and framerate.
Its getting compressed.
Nah, I'm getting the glitchyness too.
What is everyone else up to?
making boring discord bots lmao
Working on micro micro service
I'm currently working on a bot for this competition.
Oh yeah, nice 😄
nano service? 🤔
a solid 5/7 from me
so 5 containers is still a microservice?
Microservice container concept
It’s Kubernetes learning exercise about how Microservice can work in abstract
ah
3 main services with 3 services supporting them
Oh sorry Maroloccio
I'm currently doing this: https://www.codingame.com/contests/spring-challenge-2021
Right now my bot is just if-statements 😄
Cya 👋
Describe "Math Service" -Tags "Math Micro" {
Context "Micro" {
#All Invoke-RestMethods is due to return of Invoke-RestMethod and Json Comparsion is best way to confirm
It "Add Online" {
(Invoke-RestMethod -Uri "$($URI)/math/api/add?number1=15&number2=5" | ConvertTo-JSON) | Should -Be (@{result = 20} | ConvertTo-JSON)
}
It "Subtract Online" {
(Invoke-RestMethod -Uri "$($URI)/math/api/subtract?number1=15&number2=5" | ConvertTo-JSON) | Should -Be (@{result = 10} | ConvertTo-Json)
}
It "Multiply Online" {
(Invoke-RestMethod -Uri "$($URI)/math/api/multiply?number1=15&number2=5" | ConvertTo-Json) | Should -Be (@{result = 75} | ConvertTo-Json)
}
It "Divide Online" {
(Invoke-RestMethod -Uri "$($URI)/math/api/divide?number1=15&number2=5" | ConvertTo-Json) | Should -Be (@{result = 3} | ConvertTo-Json)
}
It "Expo Online" {
(Invoke-RestMethod -Uri "$($URI)/math/api/expo?number1=15&number2=5" | ConvertTo-Json) | Should -Be (@{result = 759375} | ConvertTo-Json)
}
It "Remainder Online" {
(Invoke-RestMethod -Uri "$($URI)/math/api/remainder?number1=22&number2=5" | ConvertTo-Json) | Should -Be (@{result = 2} | ConvertTo-Json)
}
}
Context "Main" {
It "Calc Online" {
$a = @{
op = 'add'
number1 = 23
number2 = 19
}
(Invoke-RestMethod -Uri "$($URI)/math/calc" -Method POST -Body ($a | ConvertTo-JSON) | ConvertTo-JSON) | Should -Be (@{result = 42} | ConvertTo-Json)
}
}```
so math has 7 endpoints, 1 main endpoint and 6 operator endpoints
I have a date service with with 2 main endpoints and 4 supporting endpoints
@router.post("/today")
def calc(body: Date):
r = requests.get(url=f"{os.getenv('base_url')}/date/api/today_month")
month = r.json()['month']
r = requests.get(url=f"{os.getenv('base_url')}/date/api/today_day")
day = r.json()['day']
r = requests.get(url=f"{os.getenv('base_url')}/date/api/today_year")
year = r.json()['year']
if body.format == 'american':
return {"today": f"{month}/{day}/{year}"}
elif body.format == 'iso8061' or body.format == 'ISO8061':
return {"today": f"{year}/{month}/{day}"}
elif body.format == 'european':
return {"today": f"{day}/{month}/{year}"}
else:
return {"today": f"{year}/{month}/{day}",
"message": "Unknown format, defaulting to ISO8061"}```
if youre gonna do multiple requests i recommend making a session so it can reuse the connection
otherwise requests is gonna have to recreate the session everytime
that's no fun and also, it's more about building Load balancers and containers, not speed
i mean, its such a simple thing to do
:effort:
Fine, I'll make sure I credit you in Git Commit message
lmao do whatever you want
Might be back later 👋
Who can I reach out to for python help?
any of the open help channels
@golden marsh
Refusing to do a TTS on the URL is not a bug its a feature. 🙂
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
\.|;|,|"|\?|' @golden marsh
I finally got this massive method to fit in the pycharm view without all that annoying scrolling!
what could possibly go wrong?
def __setattr__(self,n,v):
setattr,getattr=__builtins__.object.__setattr__,__builtins__.object.__getattribute__;
victim=__import__('ctypes').py_object.from_address(id(self)+8);
d={n:v};a,b=len(getattr(self,'__list__'))==1,lambda:getattr(self,'__list__')[0].update(d);
if isinstance(v,(lambda:None).__class__):victim.value=type("struct",(victim.value,),d);
elif isinstance(v,print.__class__):setattr(victim,'value',
type("struct",(victim.value,),{n:lambda s,*o,**k:v(*o,**k)}));
else:getattr(self,'__dict__').update({n:v});a and b();return;
if n in getattr(self,'__dict__'):del getattr(self,'__dict__')[n];
elif a:b();
"victim" just stands out
__setattr__,__builtins__ -> setattr,builtins
'__list__'))==1 --> listone
lmfao, she sounds intoxicated in that one. 😂
improved heyayayaya
https://tts.yadamiel.com/embed/eUwRkWLqBiKQg5RzaHKz2o
lol, ok good job error checking this one
SOME LATIN CHANTING
https://tts.yadamiel.com/embed/CFsiAHoPA9wdCov9TRxZDX
who did it better
https://tts.yadamiel.com/embed/dA6hCrj43upPXn4mo6aURw
https://www.youtube.com/watch?v=27cA9oQbov0
Subscribe to Season Of Mist for new releases : https://som.lnk.to/YouTube
Taken from the forthcoming album Futha. Release Date: June 28th, 2019. Order here: https://smarturl.it/HeilungFutha or via the band here: https://som.lnk.to/HeilungTM
Follow Heilung:
https://www.facebook.com/amplifiedhistory
Follow Season of Mist:
http://www.season-of-mi...
greetings
How does one access a site without being blocked by their uni?
I'm trying to download Kali Linux
@wary fable
✅ @wary fable can now stream.
SO PRETTY TY
I see rock pools 👀
that's a rock!
im hungry
There's the Loony Dook
The Loony Dook is an annual event held on New Years' Day in which people dive into the freezing waters of the Firth of Forth at South Queensferry (north of Edinburgh, Scotland), often in fancy dress.The name "Loony Dook" is a combination of "Loony" (short for "lunatic") and "Dook", a Scots term meaning "dip" or "bathe".
i kept forgetting i was suppressed and realized i was talking to myself
I do that anyway
yeah i got an ant fried one time
ah
lul
hm, extra }
😔
🎉
@ebon wharf just ask your question here
Erm, yep. Dealing with something, one sec.
Given a string and a set of characters, return the shortest substring containing all the characters in the set.
For example, given the string "figehaeci" and the set of characters {a, e, i}, you should return "aeci".
👀
guys, help me, i bad speak english, i want understand speech, but i dont have eng friends, i a lonely python. do you have any discord servers where you can talk to people like me? preferably about python and programming. please write, I do not understand the speech
@ebon wharf , what do you mean when you say you don't understand speech?
do you mean you have trouble understanding accent?
he doesn't understand english voice, he can understand text
for me eng is fast spoken and I don't have time to understand the meaning in movies for example
oh, I see! Keep practising, watch movies, tv shows with subtitles
you'll become good very soon
Hmm, I guess ||if the string contains all the characters, then the shortest suffix starts at the earliest last occurrence of any of the characters in the set||. That could be a starting point towards an efficient d.p. solution. I'm sure I've solved this exact problem before like 10 times, but my brain is not working today 😄
I wanted to find a discord server with eng people
I think ||sliding window|| is more appropriate here!
my original thought was ||two pointers, simply widen by increasing the second pointer until it is solved, then refine by shortening by increasing the first pointer||
yeah, this is ||sliding window "technique"||
yeah
I think the people here mostly talk English!
4. This is an English-speaking server, so please speak English to the best of your ability.
ok, thank
cool @ebon wharf , good luck! have fun with your English practice
Brb
@hearty heath , where do you find the time to spend on vc?
Erm, I mostly have it on in the background tbh 😄
or do you multitask while trying to bust bad mouth
Also I'm not here just to police the chat (unless it's obviously breaking our rules). I actually quite like listening in on the conversation...
hmm

Can anyone help me in python Tkinter coz I am a newbie
If you know it plz do call me
i can budd
hai gois and gols
@peak frigate i used a bandade to stick the stick on my pc back on
is that shit on the flore?
oh oof
did you cat pull out its claw
what happed?
NOOOOOWKS
HE OKKKK???????????????
ok
yes
yes
oh 😦
he called me sis and big br0ther
i did
hes 14
im 15
14 /=/ 15
im never gonna be able to share my voice anymore
Not in the foreseeable future
parole
anyone wanna see my py program
is it cool?
Nothing in the infraction said "never"
ok
it makes a file with random because im making a obfuskastion
neat
wanna see??????????????::))))))
no
ok 😦
@true valley wanna see my code?
obfuskastion
yes
no its a program that does obfuskastion
you still have int(128)?
no
yes
also return isn't a function, so you don't need ()
SORRY
functions args in lowercase too 🙂
the function is also pretty long, you could split it up into a few functions. maybe one to generate the charactesr and one to write to the file
im new
except x and y
did you read my feedback lol
how about using context managers
that too
also in the imports, you import random and shuffle, could use just one import statement
from random import choice, shuffle
could simply just
"".join(random.choices(Characters, k=X))
intsead of that inner loop
look if this is all "omg look at this disgusting code i must fix" im new and these are mistakes i didnt even know were real
it's not stylistic, it's a legit criticism
burh
using += on strings in a loop like that is inefficient because of how strings behave
!note
Joining Iterables
If you want to display a list (or some other iterable), you can write:
colors = ['red', 'green', 'blue', 'yellow']
output = ""
separator = ", "
for color in colors:
output += color + separator
print(output)
# Prints 'red, green, blue, yellow, '
However, the separator is still added to the last element, and it is relatively slow.
A better solution is to use str.join.
colors = ['red', 'green', 'blue', 'yellow']
separator = ", "
print(separator.join(colors))
# Prints 'red, green, blue, yellow'
An important thing to note is that you can only str.join strings. For a list of ints,
you must convert each element to a string before joining.
integers = [1, 3, 6, 10, 15]
print(", ".join(str(e) for e in integers))
# Prints '1, 3, 6, 10, 15'
🎉
!p note
Converting to "int" failed for parameter "pep_number".
!pep <pep_number>
Can also use: get_pep, p
Fetches information about a PEP and sends it to the channel.
is there note
uhh, i think that's a staff thing
!note this is how you get spoon fed code
eh?
nothing 🙂
im happy
just improvements
because strings are immutable, using += causes python to create a completely new string
(except in certain cases, cpython will optimize)
i know howo += works
it's inconsistent though, you use random.choice and shuffle
YES
pretty good
no idea what kind of hardware you're on, but half a second is snail's pace

🎉
you can skip some extraneous operations and use join which would make it much faster
looks like aserteric
¯_(ツ)_/¯
now to start codeing in batch again
is this understandable?
the Rem commands i mean
i think this works ??
what the fuck
did you build that page rn, lol
i don't get why you use batch still
cuz you don't need to install python, lol
that and you can put programs inside shortcut files
lmao
it keeps skipping to 0:40 :T
what song?
deja vu
yeah
wack
wish i could join
you have the playlist right, you can just listen to it
i know
anyone wanna join my spodify
nct and oh my girl released new album/song today
not the same :T
queuing it lol
someone join my thing or whatever
i don't have premium ;-;
ah
lol every time I read eels I perceive it the wrong way
no i think it's EELS
it is
extremely eloquently lying squirrels?
i need someone to join
Electron energy loss spectroscopy/spectrum
brb
you can do >> and << math operations in batch
bitshift?
available in python too
idk
!bitwise
idfk
what was the point then lol
so bitshift
Or import .Net math library into Powershell and go to town
why not
No, but I was talking modern supported shells
lul
with bit shift
pretty much any language has the ability to bitshift things
PowerShell provides bitwise shift operators which are useful to shift the bits. -shl shifts the bits left, and -shr shifts the bits to right.
what is bitshifting anyway
!e
a = 4
print(bin(a))
a <<= 2
print(bin(a))
@warm tendon :white_check_mark: Your eval job has completed with return code 0.
001 | 0b100
002 | 0b10000
so it adds 2 0 on the end?
no, it shifts the bits
what?
it moves the bits to the left or right
!e
a = 4
print(bin(a))
a >>= 2
print(bin(a))
@misty sinew :white_check_mark: Your eval job has completed with return code 0.
001 | 0b100
002 | 0b10
bullshit
ok
!e
a = 4
print(bin(a))
a >>= 2
print(bin(a))
@misty sinew :white_check_mark: Your eval job has completed with return code 0.
001 | 0b100
002 | 0b1
still what is the 0b100 thing?
a binary representation of the int
wdym what can it do
what happends when i convert 0b1 into from binary text
mhm
change back from bin
what do you expect to happen
i don't think that happens
???
???
Rob van der Woude's Scripting Pages: Batch Files for DOS, Windows (all flavors) and OS/2; PowerShell; Rexx; KiXtart; VBScript; Perl; HTA
powershell 🙂
mhm
?
happy
said something?
you got this answer?
i did
nice
? that was like a day ago
ya
but why
oh i wanted to try it too that's why i asked
do you have the problem?
@warm tendon whats your opinion on vtubers?
"Given a string and a set of characters, return the shortest substring containing all the characters in the set."
no, that's a different question
im making tis in batch rn 😮
oh
are you sure? it's a relatively tough problem
i can try
in batch? lol
lol in python
if you want the actual problem that that solution is for:
Given an unsorted array of integers, find the longest consecutive element subsequence (1, 2, 3, ...).
For example, given [100, 1, 4, 2, 200, 3], the answer would be 4, because of the sequence [1, 2, 3, 4].
(i know this is a shit definition for subsequence, but whatever)
why you guys in vc1 ?
1 > 0
ok
hmm, makes sense
that's the 5th time you've posted that
Get started with Google Chrome's built-in web developer tools.
Learn how to use Chrome DevTools to find and fix JavaScript bugs.
oh well
hello
@true valley
I can't speak yet
What were you guys donin?
okay
hmm
I like to talk to people (or rather listen to them)
no
no, i don't listen to podcasts
nah
so, networking huh
yeah
not computer networking
hmm
tell me more
nope, but I've heard of Erdos number!
hmm
it took an anthropologist to figure this out?!
33.33 horuse
hours
I am laughing as well
hmm, I never had that many "friends"
hmm
do people always have something to share
I never have anything to tell
yeah
hmm, that's good I suppose
It's not that I don't have something to talk about
it's more like I don't think it's worth to talk about...
hmm, news?
me neither
but I like
it's a template for a lot of memes
Do you still live in taiwan?
I see
huh, what's good about taiwan?
I see; I've heard that the health care is f*ed up
yeah; the quality is good, but very expensive
hmm
I've heard that canada is good
I see
also about Taiwan
what's good about Taiwan
hmm
how's it as a place to live in
how hot is hot?
I like cold
lol, I don't know about Florida
uuuu, that's hot
I already live in a weather that's like that
40 degrees and humid
I does at my place
yeah, that right
but it's not 40 always
only in the summer and at specific places
that hot but also dry
yeah
ND is liveable
nope
it's new d&
It is not
they are right
what were they harassed about?
lol
yeah, that happens
lol, i don't think they would take a hit by handing money to the beggars
but it's awkward at best
yeah
I agree
yup
can you say that again
hmm
not much to see in my opinion
that's right
you have good stuff to eat
but not that many good stuff to see
Food is just amazing
yup
🤦♂️
now, I want to go to Taiwan
what do they speak?
Chinese?
Mandarian
do people speak english?
that's good
hmm
What did you do in Taiwan if you don't mind me asking
what is the faster way of doing var = var + thing
what happened to my message
yeah, I'm back
temporary outage
not sure
if it was a discord bug
or a network bug
or rather glitch
hmm
okay
can someoe help me please
@misty sinew var += thing
thank you
I can't hear vestergurkan
sorry wrong room
!e
from abc import ABC
class Message(ABC):
def send(self):
raise NotImplemented("Yikes")
class TaskMessage(Message):
def send(self):
print("Here is a task for you: bll")
class ProcessMessage(Message):
def send(self):
print("Here is a process Message :Yeet:")
message_q: list[Message] = []
message_q.append(TaskMessage())
message_q.append(ProcessMessage())
for message in message_q:
message.send()
@charred creek :white_check_mark: Your eval job has completed with return code 0.
001 | Here is a task for you: bll
002 | Here is a process Message :Yeet:
*RGB
aah got it
!voice This'll tell you what you need to know!
Voice verification
Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
Sorry, only just saw your message
@leaden flare your mic is making a VERY loud background noise. we all had to leave the channel because of it.
sorry about that, didn't realize my mic was on 😖
@cold acorn Join VC 1, Ill screenshare
Not necessarily a bad thing from time to time.
i think you should unmute me huh
h
@misty sinew #voice-verification
is there a #video-verification?
we give out video permissions on a needed basis
I have to go eat lunch, good luck!!!
Hello
so if anyone want to cowork more silently join to #799641437645701151
chillin beats
So... 😄
The dog walked you...
nettle
typing terminal commands into discord not my terminal 
ls | less
why
nettle - a herbaceous plant which has jagged leaves covered with stinging hairs.
Enterpirse VR Headset - the training & simulation choice of professional pilots, drivers & experts. Software compatibility, fully offline, 6DoF, and 180° FoV.
@wintry dew from what anime does your profile come from? I used to watch it but forgot the name
Would I be able to get perms to stream?
What do you want to stream?
just my camera
!stream @random minnow 15M
@random minnow
✅ @random minnow can now stream.
Anyone have any ideas if ive done git add foo.py by accident how can I unstage this
Burnistoun stars @Iain Connell and @Robert Florence.
Eleven.
anyone watched that ^
!user 670802831678373908

Created: 1 year, 3 months and 16 days ago
Profile: @raw wren
ID: 670802831678373908
Joined: 4 months, 8 days and 6 hours ago
Roles: <@&463658397560995840>, <@&764802720779337729>, <@&764245844798079016>, <@&585529568383860737>, <@&267630620367257601>
Total: 1
Active: 0
have you watched that series @fair sierra
@fair sierra https://www.youtube.com/watch?v=LjBUZ43bLjE
I literally had JUST built this fence to keep Stella in the yard and was admiring it.....
Burnistoun stars @Iain Connell and @Robert Florence.
Eleven.
from PyPlotter import Plotter, Graph
plotter = Plotter("Graph", 800, 500)
graph = Graph(400, 250, 100, 200)
graph.draw()
graph.set_origin(0, 0)
graph.draw_axis()
graph.draw_number()
graph.calculate(-100, 100, "x^2")
graph.draw_points()
plotter.main_loop()
Graphing manipulated data through discord.py. Contribute to Xithrius/Xythrion development by creating an account on GitHub.
async with httpx.AsyncClient() as client:
r: httpx.Response = await client.get(url)
if r.status_code != 200:
raise ValidationError(r.text, status_code=r.status_code)
async with ctx.bot.http_session.get(url) as resp:
That's how I would make my request with dpy
A more generalised aiohttp example
async with aiohttp.ClientSession() as session:
async with session.get(url) as response:
if response.status != 200:
print(f"Response status: {response.status}")
They are basically the same tbh
yeah, the same
Just a little bit different syntax.
i probably used aiohttp wrong
Lol :p
it was my first expereince with async 😄
excellent experience imho
Ok, today I decided that I'm going to try to implement Turing machine using iptables. From the start it was obvious to me that I'll use stre...
Python library to "send a letter to Santa" using emailsanta.com and receive a properly-formatted plaintext reply - fffelix-jan/emailsanta-py
this is a implementation of private functions in python, created as a challenge - privat.py
.roll d2
Your input was invalid: Converting to "int" failed for parameter "num_rolls".
Usage:.roll [num_rolls=1]
.roll 1

.roll

!ban 696977135382036541 NSFW content
:incoming_envelope: :ok_hand: applied ban to @rancid cove permanently.
question - if i create a new windows 10 user login
shouldn't my pycharm installation still work lol
now it's a blank icon that i can't run..
yeh idk i am re-installing
where abouts are you?
ah i see
are you snow white
me?
jake lol
let's see
do you want me to finish the voice verification DM issue @mild flume ?
OMG!!! Baboon Herd Rescue Mouse Success From Python Swallowing – Snake vs Mongoose, Capuchin Monkey.
Please go here to donate to the channel if you love it:
https://www.paypal.me/africawildanimals
Welcome to Wild Things Channel!
- Have a nice time watching our content.
- The content we build with the aggregation of various sources on Youtube, B...
@mild flume yup looks good now
waow
@mild flume sir how do i get stream access ?
What do you need it for?
like if i want to show some error and..
I typically grant it, but for specific things like helping or receiving help, coding or doing code reviews, or doing something significant for the server like making assets for us or video editing
And if I'm not around, you can DM @crisp hazel and one of our staff will hop to it
ok
do you guys use any project management software?
Did you sort it out? @golden marsh
@winter slate Kind of... 🙃
@pearl ruin backend functionalities
Magic, are you in the industry?
print(key["_source"].keys())
@mild flume Almost... I’m doing an internship learning C++ and Qt but my heart is undeniably with Python.
Oh very cool
I m also doing internship learning flutter android developer and learning python also 😁😁😁
some know their true alliance
C++ coolest and easier language ever
@mild flume I wanna improve my logical skills
🙄🙄
How do you mean?
Is there a specific thing in Python that you're finding hard to grasp?
@pearl ruin https://www.youtube.com/watch?v=YnWhqhNdYyk
http://www.Cppcon.org
—
Presentation Slides, PDFs, Source Code and other presenter materials are available at: https://github.com/cppcon/cppcon2015
—
To this day most people who set out to help others learn C++ start with "introduction to C" material. I think this actively contributes to bad C++ code in the world. For the past few years I've bee...
What is project management software? We use JIRA at work
ye like jira, notion, trello, etc
Jira at work, I wouldn't use it unless forced
!resources Well we have a bunch of resources that can be pretty helpful
The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.
this one is much better
what are you guys talking abouth??
okay I'm talking here now
it's against the rules to ask for / assist with malicious or tos violating software
!rule 5
5. Do not provide or request help on projects that may break laws, breach terms of services, be considered malicious or inappropriate. Do not help with ongoing exams. Do not provide or request solutions for graded assignments, although general guidance is okay.
and a part of it is a hell of fame
Speaking of Toggl
and we are trying to just to verify if the participant machine are on or off for legal purpose
because the competition is about attack defense machine
you can just visit
duude
!warn 704957696645922917 We do not, will not, and never will assist with this. DDoS scripts, regardless of your particular use case, is prohibited on this server.
:incoming_envelope: :ok_hand: applied warning to @turbid oasis.
This is on point
@crisp hazel
really ?? actually u r a fucking admin if you can't help others
ty @sleek parrot for help
boom and he's gone. what a shot
hot rum
Vodka 👌
Ah HA
Found the thingy
@mild flume that was a dramatic exit.
Yeeeeeep
Found out that someone was asking for help on something I already told them not to
I was none too happy
This changes everything. 🤯
With GPT-3, I built a Figma plugin to design for you.
I call it "Designer" https://t.co/OzW1sKNLEC
3232
14449
I built a UI creator in Figma using @OpenAI's GPT3.
Define your UI component in simple English, and GPT3 + @figmadesign will create full blown mockup for you. With accurate text, images and logos.
Very impressed with GPT3! It is absolutely incredible⚡️
How it works? Read on... https://t.co/ryqO48VDPc
243
1257
@pearl ruin @leaden flare ^
INFO: 127.0.0.1:56176 - "GET /first?userid=abcd HTTP/1.1" 200 OK
INFO: 127.0.0.1:56182 - "POST /first?userid=abcdasdf HTTP/1.1" 200 OK
INFO: 127.0.0.1:56186 - "GET /first?userid=abcdasdf HTTP/1.1" 200 OK
INFO: 127.0.0.1:56190 - "POST /first?userid=abcdasdf HTTP/1.1" 409 Conflict``` This was more difficult then I wanted it to be
userid first_name
------ ----------
abcd Dante
PS C:\Users\rabbi> Invoke-RestMethod -method post -Uri "$($uri)/first?userid=abcdasdf"
userid first_name
------ ----------
abcdasdf Omar
PS C:\Users\rabbi> Invoke-RestMethod -method get -Uri "$($uri)/first?userid=abcdasdf"
userid first_name
------ ----------
abcdasdf Omar```
Yeah, sorry about that, need to do some parenting, I’ll lurk for a while. 👋
Invoke-RestMethod : {"detail":"User ID already exists"}```
Yes and no, they do have a cough but categorically deny they’re sick... So not serious, lots of energy....
np it is fine as long as kiddo and you are fine.
There are far noisier people in channel daily.
Did sound phlegm filled. Do you guys have... oh what's it called.... Mucinex?
I think that's the brand name
In computer networking, HTTP 451 Unavailable For Legal Reasons is an error status code of the HTTP protocol to be displayed when the user requests a resource which cannot be served for legal reasons, such as a web page censored by a government. The number 451 is a reference to Ray Bradbury's 1953 dystopian novel Fahrenheit 451, in which books ar...
.wiki
Your input was invalid: search is a required argument that is missing.
Usage:.wikipedia <search>
.wiki HTCPCP
.wikipedia HTCPCP
@mild flume Nothing at home, the recommendation is to give nothing as long as sleep is ok so we’re waiting to see for now.
A humidifier might loosen it as well
Maybe some tea
Sorry, I know you know this
Just force of habit to give advice
I relate...
.wa graph hyperbolic function
I swear to god I don't mansplain. I just like to help too much for my own good
@mild flume I honestly didn’t even think the thought, so you’re intent was well understood. :)
.wa graph square with side equal 1
Squate is my favorite shape
.github sir lancebot
.github
Can also use: gh, git
Commands for finding information related to GitHub.
Subcommands:
repository [repo...]
Fetches a repositories' GitHub information.
user <username>
Fetches a user's GitHub information.
.source
!server
Hey how are you guys
I'm good too
Does anyone playing ESO here?
Yes
Do you want to play?
Whaaat
Noo
But you can now
Now you can share the quests
Through
True
at Hollywood in Vienna 2018
The World of Hans Zimmer
Vienna Radio Symphony Orchestra
Martin Gellner, conductor
Hans Zimmer, guitar
Amir John Haddad, guitar
Eliane Correa, piano
Juan Garcia Herreros, bass
Rusanda Panfili, violin
Marie Spaemann, cello
Pedro Eustache, flute
Aleksandra Suklar, percussion
Lucy Landymore, drums
Luis Ribeiro, ethni...
The Inception Button - BRRRRRRRAAAAAWWWWRWRRRMRMRMMRMRMMMMM!!!
It's really
Really loud
goes right up to 0db
You may not use this command on users other than yourself.
Ghydra
Complexity is increasing. Trust eroding. In the wake of Spectre and Meltdown, when it seems that things cannot get any darker for processor security, the last light goes out. This talk will demonstrate what everyone has long feared but never proven: there are hardware backdoors in some x86 processors, and they're buried deeper than we ever imagi...
Aaaaaand this is where my brain starts melting
haha
by Christopher Domas
In x86, beyond ring 0 lie the more privileged realms of execution, where our code is invisible to AV, we have unfettered access to hardware, and can trivially preempt and modify the OS. The architecture has heaped layers upon layers of protections on these negative rings, but 40 years of x86 evolution have left a labyrinth ...
A processor is not a trusted black box for running code; on the contrary, modern x86 chips are packed full of secret instructions and hardware bugs. In this talk, we'll demonstrate how page fault analysis and some creative processor fuzzing can be used to exhaustively search the x86 instruction set and uncover the secrets buried in your chipset....
why this chat went into gametalk
I post some of the hacking hardware videos and we went into games 😄
Yep, that's just how our conversations roll
roll pun intended? :p




































50333
148315