#voice-chat-text-0
1 messages Β· Page 845 of 1
why?
i need to send msgs
Erm, it's like macedonia, boznia, etc I think?
you could start again
π π π π i was making a jokeπ π π π
!vban 465541905716084739 Insisting to pester and ask in the voice chat for help with your question, despite being asked to stop, is not the way we behave in this server. You have shown that you are not able to behave in a controlled manner. You are no longer able to use the voice chat privilege.
:incoming_envelope: :ok_hand: applied voice ban to @frosty lodge permanently.
!voice
Voice verification
Canβt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
Leave it.
But please don't spam to get there!
ok
lx do you know colab
I don't sorry π
do you know anyone thata knows colab
Erm, it's like Jupyter notebook right?
yea
β’ You have sent less than 50 messages.
β’ You have been active for fewer than 3 ten-minute blocks.
sad
sad
Yeah, it's annoying, but it's been pretty effective at deterring trolls.
i chatted like a year ago
shayan i told them those rules are dumb lol but they get mad
you have 20 messages left
try searching from: Shayan#3849 after: 2020-08-21
If you want to appeal an infraction, contact @rapid crown
Erm, better to ask Hemlock tbh π
I've not watched it.
shouldn't bean be banned from the chat as he is banned from the VC?
no
No U
stop
this is my channel i was born here
language!!!
shayan is bullying me!!!!
@frosty lodge you are treading a fine line...
im just waiting for pineapple help
its a joke.
what do you need help with?
dw shayan the people here haven't heard of those
colab
im trying to import files into colab
learning programming with books?
intersting
β’ You have sent less than 50 messages.
im near
Should be 'fewer' tbh π
im on 43 now...
fax?
aren't they outdated?
cool.
@paper gale you should have the British accent.
many businesses still use it.
hey shayan you can talk now to boost your messages
what is the first letter of the alphabet
as you are in britain
F then U
wtf!!!!!!!!!!!!!!!!!!!!1
@knotty blaze A bit uncalled for.
hihi
I don't understand...
as you are using a british vpn
...wow
ammogus
this kinda matches up
lol
this matches even better
Griff π
?
big cungus
hi rival
Rival?
Cya @knotty blaze π π
Kemal, fix. Ur. Bot. Code. P l e a s e
Bruh
and it will be epic
I should not have intorduced you to AoC2
Yes
Kompot, yes
I am on phone
lol
Lol
Yez, i strengthen economy of my nation, then make a very big mistake and declaring war on germany again, and watch my nation go bye bye
I have 8
lol
And they start from 1 30pm
yes you do
10 or 11 lol
lol
Sir
When im not online, that doesnt necissarly mean
i have to get up at 7
That i sleep till that time lol
Y e p
?
Oh right
me
kden...
dm
did oof send the definition of filip
@gentle flint dont you have to go to bed
YES
y'all aren't my parents
we have mini dm here
or are we
hMMMMMMMMMMM
..
..
What
Ues?
how much is 69 + 69
Ur mom
flip do you know how to help pepole with code
What the fuck...
and off i saw
Sort of
well then switch interrupters
....
...
not untill you dont start using venv's
Wat
yea
there was this dued
that was anoying
and he got vc ban
and he cant get his problem sorterd
Bruh?
that was the chat
and it was a bruh
moment
he made me not finish my joke
now im sasd
and im going sue
lol
of
Kemals code ^
Aaaaand with that i goe
lol
...
im a small kid
...
....
What
i miss them
Or learns js
Aoc2
Not really
lol me 2
AoC2
I think there was a multiplayer mod in development but they stopped
no, u bad with spelling
Ok, anyways i go watch yt vids
now run
burh
bai
@brisk current
whatever_folder_name/
setup.py
your_package_name/
your_module.py
i wanna generate all number combination of 8 digits which are greater than 23 and less than 49 and are not consecutive any idea how can i do so?
so far i can generate the sum format of greater than 23 and less than 49 but cant make a condition out of the consecutive thingy
my code so far :
import itertools
nums = "0123456789"
p = itertools.permutations(nums, 8)
for j in list(p):
if sum(int(x) for x in "".join(j) if x.isdigit()) <= 49 and sum(int(x) for x in "".join(j) if x.isdigit()) >= 23:
print("".join(j))
any idea?
01496782
import itertools
nums = "0123456789"
p = itertools.permutations(nums, 8)
for j in list(p):
if sum(int(x) for x in "".join(j) if x.isdigit()) <= 49 and sum(int(x) for x in "".join(j) if x.isdigit()) >= 23:
j = [int(i) for i in j]
if not sorted(j) == list(range(min(j), max(j)+1)):
print(j)
Hello! @whole bear
hi
!voice @whole bear
Voice verification
Canβt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
ohhhhh
hey can you help me with my code?
thankuuu I will send it ere
here
https://paste.pythondiscord.com/iyarikegam.py - server.py
https://paste.pythondiscord.com/aqekuwitot.rb - client.py
Do you know how can I make an ADMIN to the server that can disconnect clients by typing /kick name and that there will be only one admin with an specific name and IP (his messages won't be shown in the chat.)
Does anybody know how can I do that? please help me its for school.
Adding the code here (server and client). (:
every help will be good (:
yes
yes and the problem is, all the chat is on the same IP
oh a password is a good idea
but how can i do that
oh i will do a "break"?
oh I understand
thank u very much I will try it now
hey, do you have an idea of how I can know what is the start of the message only.
I mean to ignore like if my message is "/kick Adam", how can I check if the message starts with "/kick" and ignore what comes after?
@faint ermine
!d str.startswith
str.startswith(prefix[, start[, end]])```
Return `True` if string starts with the *prefix*, otherwise return `False`. *prefix* can also be a tuple of prefixes to look for. With optional *start*, test string beginning at that position. With optional *end*, stop comparing string at that position.
!e ```py
print("abcd".startswith("ab"))
@faint ermine :white_check_mark: Your eval job has completed with return code 0.
True
ohhhhhhhh
thanks
everything ?
oh
Its super good
ok, got you
thank u so much bro
!e ```py
print(dir(str))
@faint ermine :white_check_mark: Your eval job has completed with return code 0.
['__add__', '__class__', '__contains__', '__delattr__', '__dir__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__getitem__', '__getnewargs__', '__gt__', '__hash__', '__init__', '__init_subclass__', '__iter__', '__le__', '__len__', '__lt__', '__mod__', '__mul__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__rmod__', '__rmul__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', 'capitalize', 'casefold', 'center', 'count', 'encode', 'endswith', 'expandtabs', 'find', 'format', 'format_map', 'index', 'isalnum', 'isalpha', 'isascii', 'isdecimal', 'isdigit', 'isidentifier', 'islower', 'isnumeric', 'isprintable', 'isspace', 'istitle', 'isupper', 'join', 'ljust', 'lower', 'lstrip', 'maketrans', 'partition', 'removeprefix', 'removesuffix', 'replace', 'rfind', 'rindex', 'rjust', 'rpartition', 'rsplit', 'rstrip', 'split', 'splitlines', 'startswith', 'strip', 'swapcase', 'title', 'translate', 'upper', 'zfill']
wow.
!e print(dir(int))
@faint ermine :white_check_mark: Your eval job has completed with return code 0.
['__abs__', '__add__', '__and__', '__bool__', '__ceil__', '__class__', '__delattr__', '__dir__', '__divmod__', '__doc__', '__eq__', '__float__', '__floor__', '__floordiv__', '__format__', '__ge__', '__getattribute__', '__getnewargs__', '__gt__', '__hash__', '__index__', '__init__', '__init_subclass__', '__int__', '__invert__', '__le__', '__lshift__', '__lt__', '__mod__', '__mul__', '__ne__', '__neg__', '__new__', '__or__', '__pos__', '__pow__', '__radd__', '__rand__', '__rdivmod__', '__reduce__', '__reduce_ex__', '__repr__', '__rfloordiv__', '__rlshift__', '__rmod__', '__rmul__', '__ror__', '__round__', '__rpow__', '__rrshift__', '__rshift__', '__rsub__', '__rtruediv__', '__rxor__', '__setattr__', '__sizeof__', '__str__', '__sub__', '__subclasshook__', '__truediv__', '__trunc__', '__xor__', 'as_integer_ratio', 'bit_length', 'conjugate', 'denominator', 'from_bytes', 'imag', 'numerator', 'real', 'to_bytes']
!e print((5).bit_length())
@faint ermine :white_check_mark: Your eval job has completed with return code 0.
3
!e print(dir(print))
@faint ermine :white_check_mark: Your eval job has completed with return code 0.
['__call__', '__class__', '__delattr__', '__dir__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__gt__', '__hash__', '__init__', '__init_subclass__', '__le__', '__lt__', '__module__', '__name__', '__ne__', '__new__', '__qualname__', '__reduce__', '__reduce_ex__', '__repr__', '__self__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '__text_signature__']
even print has something.
!e print(print.__doc__)
@faint ermine :white_check_mark: Your eval job has completed with return code 0.
001 | print(value, ..., sep=' ', end='\n', file=sys.stdout, flush=False)
002 |
003 | Prints the values to a stream, or to sys.stdout by default.
004 | Optional keyword arguments:
005 | file: a file-like object (stream); defaults to the current sys.stdout.
006 | sep: string inserted between values, default a space.
007 | end: string appended after the last value, default a newline.
008 | flush: whether to forcibly flush the stream.
wow
There are so manythings
Yeah
Its kind of everything I can think about python has it all
Thanks hahah
Sorry for asking so many questions
but, now that I finished the if's, how do it check the name.
like in "/kick adam", how do I get only "adam"?
def broadcast (message):
if message.decode(FORMAT) == "/password ADMIN 1234":
if (message.decode(FORMAT)).startswith("/kick"):
for client in clients:
client.send(message)
This is what I did so far
Deleting your repository or changing its visibility affects that repository's forks.
@faint ermine (:
Oh ok
Oh I get only one message oops
Um I don't think I got you, can you somehow simplify it to me?
ok
right
@stray harness please chat here
Oh ok I got you, but I dont see how I can mix it in my code
I mean how can I write it as a code
yes sure I will try and look it up now
thank u very much
ok
hi
can u help me
i cant dowload discord libreary to do a discord bot
library*
I have already put (pip install discord.py
but when I code import discord
there isnt a library
yes
windowns
ngrok
yes
can u plz help @stray harness
please dont ask random people, consider a help channel #βο½how-to-get-help or for django questions #web-development
hey @faint ermine I think I did it, I saw someone on YouTube and it seems good to me.
what do you think?
def HandleClient(client):
while True:
try:
message = client.recv(1024)
if (message.decode(FORMAT)).startswith("/admin 5270"):
admins.append(clients.index(client))
break
else:
broadcast(message)
except:
index = clients.index(client)
nickname = nicknames[index]
clients.remove(client)
nicknames.remove(nickname)
client.close()
break
try redownloading from python.org
already done that
where python
i have this handled, you are missin everything im explaining in VC
okay then
i appreciate that you want to help, but we've already gone thorough all of what you've said

py -0p
Hey @faint ermine
def HandleClient(client):
while True:
try:
message = client.recv(1024)
if (message.decode(FORMAT)).startswith(f"{nicknames[clients.index(client)]}: /admin 5270"):
admins.append(clients.index(client))
print(f"Im checking {admins[0]}")
else:
broadcast(message)
except:
index = clients.index(client)
nickname = nicknames[index]
clients.remove(client)
nicknames.remove(nickname)
client.close()
break
Do you know what's the problem?
Its ignoring and priniting anyway
Um can you somehow show me how to do it ?
I just dont understand what am I supposed to do
!e ```py
msg = "[name]: whatever message"
name, rest = msg.split(":", 1)
print(name, rest)
@faint ermine :white_check_mark: Your eval job has completed with return code 0.
[name] whatever message
um I'm sorry but I still don't understand how I can write it in my code and make it work
Is there a way you can enter my code and show me how to do that?
yeah i get you its not a solution its a project that I am submitting but if you still can't help I get you (:
!e ```py
greetings_by_name = {
"laundmo": "hey",
"Hodni3": "whats up"
}
msg = "laundmo: /greet"
name, msg = msg.split(":", 1)
print(name)
print(msg)
msg = msg.strip()
print(msg)
if msg.startswith("/greet"):
greeting = greetings_by_name[name]
print(greeting)
@faint ermine :white_check_mark: Your eval job has completed with return code 0.
001 | laundmo
002 | /greet
003 | /greet
004 | hey
hi
brb
Hello!
Go eat some hagelslag: http://goo.gl/Cfsd6 Trust me.
Twitter: http://twitter.com/#!/cgpgrey
espeak
!voice @valid yoke We have a voice gate system. This will 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.
Do you not have to the ! point anymore
<#channel_id_here>
mmmm, look tastie lmao
thats toasted!
ah yes
I'm feeling that
Anyone know off hand if Discord fixed the whole joining a voice chat you don't have permissions to join via the vc link?
if the function will be going to return either a list or None
so in that case, can I like this
def localInfo() -> list/None:
pass
You'd use Optional I believe
The fake join on client but not according to server thing?
Right
I'm double checking, Bro
from typing import Optional
def mah_function(stuff) -> Optional[list]:
pass
I think that's right
can you give any tips for a python programmer??
Practice practice practice
Don't explode your brain.
why
What kind of tips are you wanting specifically?
Hard to know what to offer without more like context
Oh like what to start with?
yes
The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.
free code camp (youtube and website), w3schools
We typically suggest "Automate the Boring Stuff" and "A Byte of Python" for beginners
@rugged root can you give video perms to @molten pewter (588068033415741525)
!stream 588068033415741525
@molten pewter
β @molten pewter can now stream.
Thank you π
!kindling
Kindling Projects
The Kindling projects page on Ned Batchelder's website contains a list of projects and ideas programmers can tackle to build their skills and knowledge.
@glad sandal
is this an '@' symbol?
Looks like it
it might be due to network prob my bad excuse me please
integrate.yml file
I may be back later. I may be back later than that.
can i be a helper?..or should i do something u be a one?
good bye everyone
The Python Discord FAQ.
oh ok ok..arigatho
so it's jus like mentioned in roles instruction...thax
@rugged root
so i should help with communities doubt and all..right

Created: 5 years, 8 months and 10 days ago
Profile: @rugged root
ID: 98195144192331776
Joined: 3 years, 1 month and 5 days ago
Roles: <@&542431903886606399>, <@&463658397560995840>, <@&764245844798079016>, <@&295488872404484098>, <@&267630620367257601>, <@&797891034906099752>, <@&587606783669829632>, <@&831776746206265384>, <@&267629731250176001>, <@&807415650778742785>, <@&267628507062992896>
Total: 23
Active: 1
Member information
Joined: 2 years, 8 months and 21 days ago
u beat me
98195144192331776
334775600319299584
!user
You are not allowed to use that command here. Please use the #bot-commands channel instead.
You are not allowed to use that command here. Please use the #bot-commands channel instead.
!user 96456757445943296
Integrate your service with Discord β whether it's a bot or a game or whatever your wildest imagination can come up with.
brb meeting
'Description' 'Variable Name' 'Label' 'Value'
'Flag for Main Campus' 'MAIN' '0' 'for not main campus'
'1' 'Main campus'
class Data():
def __init__(self, desc, variable, name, label, value):
self.desc = desc
self.variable = variable
self.name = name
self.label = label
self.value = value
example = {
'Flag for Main Campus': {
'MAIN': {
'0': 'for not main campus',
'1': 'Main campus'
},
'Satellite': {
'0': 'nearby satellite campus',
'1': 'farther ones'
}
}
}
Flag for Main Campus
Sensitivity setting nudged.
!zen
Beautiful is better than ugly.
Explicit is better than implicit.
Simple is better than complex.
Complex is better than complicated.
Flat is better than nested.
Sparse is better than dense.
Readability counts.
Special cases aren't special enough to break the rules.
Although practicality beats purity.
Errors should never pass silently.
Unless explicitly silenced.
In the face of ambiguity, refuse the temptation to guess.
There should be one-- and preferably only one --obvious way to do it.
Although that way may not be obvious at first unless you're Dutch.
Now is better than never.
Although never is often better than right now.
If the implementation is hard to explain, it's a bad idea.
If the implementation is easy to explain, it may be a good idea.
Namespaces are one honking great idea -- let's do more of those!
https://en.m.wikipedia.org/wiki/Common_ringtail_possum
https://en.m.wikipedia.org/wiki/Common_brushtail_possum
and not this, but something darker and otherwise similar to https://en.m.wikipedia.org/wiki/Mahogany_glider
The common ringtail possum (Pseudocheirus peregrinus, Greek for "false hand" and Latin for "pilgrim" or "alien") is an Australian marsupial. It lives in a variety of habitats and eats a variety of leaves of both native and introduced plants, as well as flowers, fruits and sap. This possum also consumes a special type of faeces that is produced ...
The common brushtail possum (Trichosurus vulpecula, from the Greek for "furry tailed" and the Latin for "little fox", previously in the genus Phalangista) is a nocturnal, semi-arboreal marsupial of the family Phalangeridae, native to Australia, naturalised in New Zealand, and the second-largest of the possums.
Like most possums, the common brush...
...I was expecting one preview at most. Oops.
and then it attacked you, right?
No.
Stoopid question can you automate two step verification ?
it didn't ask for how the picture came out? π
yeshish
talking about otp that comes in mobile?
or email otp?
It was being harrassed by crows and my presence was keeping the crows away. Between the crows and myself, I was the one not actively attacking it.
I wanna automate it
Where at?
yeah, my work make me fill feedback form, I automated it π
@rugged root Every morning???
ππππ
australia is amazing, if you take out poisonous animals
is the 2nd step some otp ?
Awh
Itβs a self check
captcha?
So you're in the US, right?
Or...?
You have tigers and troupes of monkeys and cobras. @wise glade
I mean, not where I live
but in aus you can find em everywhere, right?
Don't know about snakes right now. Spiders, probably.
the only thing I've had sneak into my house is a stray cat
nope, nope
Does it work?
you've had possum's come in π
π
Possums.
God tier achieved
Opossum
Connor O'Possum
Yeah but like can you automate an access to the linked page then automate the fill in processes
yeah
Teach me daddy
Selenium okok
yeah, super
Would I still have to access it everyday
I use python, C# and java
you can run it on a schedular
Yeah let's not with that last one
np
Hey mods can you delete the link to the company site
That you wrote
Srry
Hope not a concern just to be safe
I deleted my links
The photos
Thanks
β€οΈ
Iβm an intern
So I could care less
They pay me shit
ππ
phlegm
That's memeable.
Like e-bay asking for photographic proof of nondelivery of an order.
I mean past you suggested you do so...
Copy out your code onto toilet paper.
The Peter Principle is a concept in management developed by Laurence J. Peter, which observes that people in a hierarchy tend to rise to their "level of incompetence": employees are promoted based on their success in previous jobs until they reach a level at which they are no longer competent, as skills in one job do not necessarily translate to...
brb
Marketing
Others can hear me.
The all-new alternative to chicken, cockatiel sausages.
We ended the campaign in Ravenloft and started another in the same setting.
We ended up destroying it the first time around.
Monk plushies.
Build-a-Monk
Monk bears.
"If a tree falls in the forest, we're probably around to hear it."
Sleep calls.
what have you made so far @whole bear
hello @molten pewter
wget url here "feffefefef"
boom automated
oh no i meant
like it was a joke
wget is linux
i think you can implement it into cmd with some program I forget
its not a project 
make a client / server program
always fun
@whole bear
!voice @whole bear
Voice verification
Canβt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
hhhhhhhey

does anyone can see where the requirements.txt is? Or just does not exists...? https://github.com/Alexmhack/Django-Signup
sounds like there's no requirements.txt file in that repository @rigid goblet
yeah, it's in fact weird π you can simply try running it and then install requirements as the interpreter complains
yeah i did...still errors though
what errors?
man i wish i could talk
!voice Zomi
Voice verification
Canβt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
i need to stay for a bit longer
gotta head to bed, gn o/
gn
bot#1629
!codeblock
!code
Here's how to format Python code on Discord:
```py
print('Hello world!')
```
These are backticks, not quotes. Check this out if you can't find the backtick key.
gym, will be back later
from tkinter import *
import os
root = Tk()
root.geometry('280x100')
root.title('Program Overflow')
def RUN():
programToRun = program.get()
timesToRunEntry = timesToRun.get()
for i in range(int(timesToRunEntry)):
os.startfile(programToRun)
programTitle = Label(root, text='Enter the program to run')
programTitle.pack()
program = Entry(root)
program.pack()
timesToRunTitle = Label(root, text='Enter how many times you want to run the program')
timesToRunTitle.pack()
timesToRun = Entry(root)
timesToRun.pack()
runButton = Button(root, text='RUN!', command=RUN)
runButton.pack()
root.mainloop()
implying jake can resolve anything
oh 3d files, I was think of c files at link time
how can i eliminate numbers which doesnot meet the following criteria :
first 3 digits should not be consecutive in any way
middle 2 digits can be and cannot be consecutive doesnt matter
last 3 digits again should not be consecutive
eg : 45176760 is valid but 45678901 is not
any idea
import itertools
nums = "0123456789"
p = itertools.permutations(nums, 8)
for j in list(p):
if sum(int(x) for x in "".join(j) if x.isdigit()) <= 49 and sum(int(x) for x in "".join(j) if x.isdigit()) >= 23:
j = [int(i) for i in j]
if not sorted(j) == list(range(min(j), max(j)+1)):
print(''.join(map(str, j)))
figured out the way to remove consecutive numbers but cant seem to do it the way i want
tried 3 times no one answered lol
aight
is discord acting up for anyone else
with two hours to a spare
LOL
lol since when do you use windows?
it's at least 50% equations
it dies on my pc
oh rip
how long did you have to wait for that
and how do you get whitelisted
isnt the GPT3 trained on wikipedia and other libraries.
yay'
from ursina import *
from pypresence import Presence
from time import time as time_fixed
from time import sleep
from threading import Thread
client_id = "851930772796604426"
RPC = Presence(client_id=client_id)
version_number = "0.1.0"
app = Ursina()
player = Entity(model='cube', color=color.orange, scale_y=2)
watermark = Text(version_number, scale=2)
watermark.x = 0.5
watermark.y = -0.4
app.mouse.locked = False
class settings(object):
def __init__(self):
self.title = 'CrystalSky'
self.show_fps = True
self.fullscreen = False
self.borderless = True
self.show_x = False
data = settings()
window.title = data.title
window.fps_counter.enabled = data.show_fps
window.borderless = data.borderless
window.fullscreen = data.fullscreen
window.exit_button.visable = data.show_x
def discord_presence():
RPC.connect() # Handshake!
start_time=time_fixed.time() # get the time
RPC.update(start=start_time, state="Testing", details=f"Version: {version_number}") # set the Presence
sleep(15)
discord_presence_thread = Thread(target=discord_presence)
def update(): # update gets automatically called.
camera_control()
player_movement()
discord_presence_thread.start()
discord_presence_thread.join()
def player_movement():
player.x += held_keys['d'] * 1 * time.dt
player.x -= held_keys['a'] * 1 * time.dt
player.z -= held_keys['s'] * 1 * time.dt
player.z += held_keys['w'] * 1 * time.dt
def camera_control():
camera.x += held_keys['d'] * 1 * time.dt
camera.x -= held_keys['a'] * 1 * time.dt
camera.z -= held_keys['s'] * 1 * time.dt
camera.z += held_keys['w'] * 1 * time.dt
app.run()
RuntimeError: threads can only be started once
from threading import Thread
def discord_presence():
RPC.connect() # Handshake!
start_time=time_fixed.time() # get the time
while True:
RPC.update(start=start_time, state="Testing", details=f"Version: {version_number}") # set the Presence
sleep(15)
thread = Thread(target=discord_presence)
thread.start()
app.run()
thread.join()
openai?
RuntimeError: There is no current event loop in thread 'Thread-1'.
PS C:\Users\Name\Desktop\crystalsky> python3 .\crystalsky.py
ursina version: 3.5.0
package_folder: C:\Users\Name\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\LocalCache\local-packages\Python39\site-packages\ursina
asset_folder: .
blender_paths:
{}
screen resolution: (1920, 1080)
Known pipe types:
wglGraphicsPipe
(3 aux display modules not yet loaded.)
size; LVector2f(1536, 864)
render mode: default
no settings.py file
no filter quad
size; LVector2f(1536, 864)
Exception in thread Thread-1:
Traceback (most recent call last):
no settings.py file
File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.1520.0_x64__qbz5n2kfra8p0\lib\threading.py", line 954, in _bootstrap_inner
development mode: True
application successfully started
self.run()
File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.1520.0_x64__qbz5n2kfra8p0\lib\threading.py", line 892, in run
self._target(*self._args, **self._kwargs)
File "C:\Users\Name\Desktop\crystalsky\crystalsky.py", line 32, in discord_presence
RPC.connect() # Handshake!
File "C:\Users\Name\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\LocalCache\local-packages\Python39\site-packages\pypresence\presence.py", line 42, in connect
self.update_event_loop(self.get_event_loop())
File "C:\Users\Name\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\LocalCache\local-packages\Python39\site-packages\pypresence\baseclient.py", line 83, in get_event_loop
loop = asyncio.get_event_loop()
File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.1520.0_x64__qbz5n2kfra8p0\lib\asyncio\events.py", line 642, in get_event_loop
raise RuntimeError('There is no current event loop in thread %r.'
RuntimeError: There is no current event loop in thread 'Thread-1'.
no filter quad
changed aspect ratio: 1.777 -> 1.778
im that close to speak in voice chat
Hey Chris o/
π
from ursina import *
app = Ursina()
player = Entity(model='cube', color=color.orange, scale_y=2)
def update(): # update gets automatically called.
player.x += held_keys['d'] * .1
player.x -= held_keys['a'] * .1
app.run() # opens a window and starts the game.
a
from ursina import *
from pypresence import Presence
from time import time as time_fixed
from time import sleep
from threading import Thread
import asyncio
client_id = "851930772796604426"
version_number = "0.1.0"
app = Ursina()
player = Entity(model='cube', color=color.orange, scale_y=2)
watermark = Text(version_number, scale=2)
watermark.x = 0.5
watermark.y = -0.4
app.mouse.locked = False
class settings(object):
def __init__(self):
self.title = 'CrystalSky'
self.show_fps = True
self.fullscreen = False
self.borderless = True
self.show_x = False
data = settings()
window.title = data.title
window.fps_counter.enabled = data.show_fps
window.borderless = data.borderless
window.fullscreen = data.fullscreen
window.exit_button.visable = data.show_x
def discord_presence():
RPC = Presence(client_id=client_id, loop=asyncio.new_event_loop())
RPC.connect() # Handshake!
start_time=time_fixed.time() # get the time
while True:
RPC.update(start=start_time, state="Testing", details=f"Version: {version_number}") # set the Presence
sleep(15)
def update(): # update gets automatically called.
camera_control()
player_movement()
def player_movement():
player.x += held_keys['d'] * 1 * time.dt
player.x -= held_keys['a'] * 1 * time.dt
player.z -= held_keys['s'] * 1 * time.dt
player.z += held_keys['w'] * 1 * time.dt
def camera_control():
camera.x += held_keys['d'] * 1 * time.dt
camera.x -= held_keys['a'] * 1 * time.dt
camera.z -= held_keys['s'] * 1 * time.dt
camera.z += held_keys['w'] * 1 * time.dt
thread = Thread(target=discord_presence)
thread.start()
app.run()
thread.join()
RuntimeError: threads can only be started once
ursina version: 3.5.0
package_folder: C:\Users\Name\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\LocalCache\local-packages\Python39\site-packages\ursina
asset_folder: .
blender_paths:
{}
screen resolution: (1920, 1080)
Known pipe types:
wglGraphicsPipe
(3 aux display modules not yet loaded.)
size; LVector2f(1536, 864)
render mode: default
no settings.py file
no filter quad
size; LVector2f(1536, 864)
Exception in thread Thread-1:
Traceback (most recent call last):
File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.1520.0_x64__qbz5n2kfra8p0\lib\threading.py", line 954, in _bootstrap_inner
no settings.py file
development mode: True
application successfully started
self.run()
File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.1520.0_x64__qbz5n2kfra8p0\lib\threading.py", line 892, in run
self._target(*self._args, **self._kwargs)
File "C:\Users\Name\Desktop\crystalsky\crystalsky.py", line 33, in discord_presence
RPC = Presence(client_id=client_id, loop=asyncio.get_event_loop())
File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.1520.0_x64__qbz5n2kfra8p0\lib\asyncio\events.py", line 642, in get_event_loop
raise RuntimeError('There is no current event loop in thread %r.'
RuntimeError: There is no current event loop in thread 'Thread-1'.
no filter quad
changed aspect ratio: 1.777 -> 1.778```
get_event_loop -> new_event_loop
ursina version: 3.5.0
package_folder: C:\Users\Name\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\LocalCache\local-packages\Python39\site-packages\ursina
asset_folder: .
blender_paths:
{}
screen resolution: (1920, 1080)
Known pipe types:
wglGraphicsPipe
(3 aux display modules not yet loaded.)
size; LVector2f(1536, 864)
render mode: default
no settings.py file
no filter quad
size; LVector2f(1536, 864)
no settings.py file
development mode: True
application successfully started
no filter quad
changed aspect ratio: 1.777 -> 1.778
Exception in thread Thread-1:
Traceback (most recent call last):
File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.1520.0_x64__qbz5n2kfra8p0\lib\threading.py", line 954, in _bootstrap_inner
self.run()
File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.1520.0_x64__qbz5n2kfra8p0\lib\threading.py", line 892, in run
self._target(*self._args, **self._kwargs)
File "C:\Users\Name\Desktop\crystalsky\crystalsky.py", line 35, in discord_presence
start_time=time_fixed.time() # get the time
AttributeError: 'builtin_function_or_method' object has no attribute 'time'
Integrate your service with Discord β whether it's a bot or a game or whatever your wildest imagination can come up with.
Integrate your service with Discord β whether it's a bot or a game or whatever your wildest imagination can come up with.
are you using a venv or smth
Trigger Happy TV is a hidden camera comedy television programme. The original British edition of the show, produced by Absolutely Productions, starred Dom Joly and ran for two series on Channel 4 from 2000-2001. Joly made a name for himself as the sole star of the show, which he produced and directed with cameraman Sam Cadman.
In this video you...
Time for bed π
can I be voice verified even though I haven't been a member for 3 days?
i was a member like, 6 months ago. dunno.
Please π
lol ok
I don't think that's unreasonable
from ursina import *
app = Ursina()
player = Entity(model='cube', color=color.orange, scale_y=2)
def update(): # update gets automatically called.
player.x += held_keys['d'] * .1
player.x -= held_keys['a'] * .1
app.run() # opens a window and starts the game.
At this moment he knew... he fucked up.
mmm yes
!voice
Voice verification
Canβt talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.
@spring turtle
You're good lol π
Thank you. First time being on such a discord channel.
Also please make your name not blank
Yes sir π
You guys rock
even me? 
<@ID>
Even you @uncut meteor

@spring turtle What are you wanting to ask
I think I missed the notification here on how to chat
Still see myself muted
This place is huge
read #voice-verification closely
Hey @hushed dragon!
Uh-oh! It looks like your message got zapped by our spam filter. We currently don't allow .txt attachments, so here are some tips to help you travel safely:
β’ If you attempted to send a message longer than 2000 characters, try shortening your message to fit within the character limit or use a pasting service (see below)
β’ If you tried to show someone your code, you can use codeblocks
(run !code-blocks in #bot-commands for more information) or use a pasting service like:
Suffering as I am just a long time lurker here
sigh π¦
last_run = time.time()
def update():
if time.time() - last_run > 15:
RPC.update(...)
last_run = time.time()
...
I will not be a doosh
If that's how you spell it right
Just wanted to ask in voice on your wisdom gents
Typing is meh
Any chance for like a 2 min question?
If you can't put it on paper, you will most likely ramble on while speaking?
I'm sorry guys I don't mean to be harsh
hiiiiiii luna
Gents, I've attempted to learn python for about 3+ years. I've tried probably over 10+ sites to get started but after about a week of trying, I lose interest.
Any other learning advice from you guys?
In fairness, I ramble even if it's written down
Web site of the pyglet project
College? Bootcamps?
Just listening to you guys is like ear candy
No idea what you guys are talking about but the debugging over voice is just exciting
Hi, been a while
SO
Python is the way to go
!resources For folks just starting out, we typically recommend "Automate the Boring Stuff" and/or "A Byte of Python". There's also links to a couple YouTube channels if that's more your jam
The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.
@dense ibex did you have a request?
@vivid palm https://www.bing.com/
Any advice on like a first basic project?
if time_fixed() - last_run > 15:
UnboundLocalError: local variable 'last_run' referenced before assignment```
!warn 107226564030156800 Don't respond to our users with saying "just Bing it"
:incoming_envelope: :ok_hand: applied warning to @uncut meteor.
The dream is to learn python to be able to scrape / automate things online
what have you done so far?
start_time=time_fixed()
last_run = time_fixed()
def update(): # update gets automatically called.
camera_control()
player_movement()
camera_rotation()
if time_fixed() - last_run > 15:
RPC.update(start=start_time, state="Testing", details=f"Version: {version_number}") # set the Presence
last_run= time_fixed()
Automate the Boring Stuff sounds right up your alley then
Registered to like 20+ sites and then I start the basic training then just die of boredom
I've tried probably about 30+ times within the past few years
Oh lol no nvm
Amazon.com: Blue Yeti USB Mic for Recording & Streaming on PC and Mac, 3 Condenser Capsules, 4 Pickup Patterns, Headphone Output and Volume Control, Mic Gain Control, Adjustable Stand, Plug & Play β Blackout: Musical Instruments
Bing is clearly couple hour ban for such a bad recommendation
^^^
Hope y'all have a good day
I'll try to be more active here to be able to chat with y'all one day
How goes your migration hemlock?
Buy Klipsch 7.1 Ebony System with 2 RP-280F, 1 RP-450C, 4 RP-250S, 1 SPL-120 Sub: Surround Sound Systems - Amazon.com β FREE DELIVERY possible on eligible purchases
Almost done
Having to untangle a mess of appointment
It's like fucking christmas lights
Well, itβs short term pain for massive long term gain
Buy Sennheiser PXC 550 Wireless β NoiseGard Adaptive Noise Cancelling, Bluetooth Headphone with Touch Sensitive Control and 30-Hour Battery Life: Over-Ear Headphones - Amazon.com β FREE DELIVERY possible on eligible purchases
Buy Sony WH-1000XM4 Wireless Industry Leading Noise Canceling Overhead Headphones with Mic for Phone-Call and Alexa Voice Control, Black: Over-Ear Headphones - Amazon.com β FREE DELIVERY possible on eligible purchases
def update(): # update gets automatically called.
last_run = time_fixed()
camera_control()
player_movement()
camera_rotation()
if time_fixed() - last_run > 15:
RPC.update(start=start_time, state="Testing", details=f"Version: {version_number}") # set the Presence
last_run= time_fixed()
else:```
Buy Razer Seiren Mini USB Streaming Microphone: Precise Supercardioid Pickup Pattern - Professional Recording Quality - Ultra-Compact Build - Heavy-Duty Tilting Stand - Shock Resistant - Classic Black: Everything Else - Amazon.com β FREE DELIVERY possible on eligible purchases
!code
Here's how to format Python code on Discord:
```py
print('Hello world!')
```
These are backticks, not quotes. Check this out if you can't find the backtick key.
oh but there's a pink
sry what?
Why are you laying a trap for me
so i checked our DM history and that amazon link is now a 404
but is it https://www.amazon.com/Mpow-Single-Sided-Microphone-Headphone-Comfort-fit/dp/B0822BLRP3?th=1 ? unavailable lol
a
I'll hunt it down
I.... did I get the last one?
lmao
shoulda grabbed one when i had the chance
you are the only headset user with a decent mic i feel like
that i know of
Still, I'd look for something similar
Single ear headsets
They're more business acceptable
know anyone that's used jabra headsets?
abra ka-jabra?
i do
Which one are you lookin' at?

you know youre proud
^ at home??
I am...
bc griff your headset at home is a 

unless it's an oculus
Are you using the mic on it?
oui
Then that's a decent mic
"we'll be back soon"
griff can you vc with me from work so i can hear it
hear what?
the jabra
they are mine
lemme hear pls
python3 -m pip install arcade
!otn a helper hemlock helps
:ok_hand: Added helper-hemlock-helps to the names list.
@uncut meteor when do I get an otn
I shoulda done

