#voice-chat-text-1
1 messages · Page 113 of 1
cursed gifs are the best
i can't wait for the moment when we will be learning python in my class lol
anyway i have to go cuz school tommorow
so cya people
See you around
how can i make a function that :
takes [[[1]], [[2]]]) → [[[1, 2]]]
@fossil citrus maybe you could help
Why are you not in the VC?
What was the error?
what you mean ?
Did you try restarting Discord completely? How about your device (the option next to "Shutdown" / "Power off" that just turns it off and back on)?
i did try .. xd
anyone could help me pls?
how can i make a function that :
takes [[[1]], [[2]]]) → [[[1, 2]]]
what help channel did you open?
Hello?
how can i make a function that :
takes [[[1]], [[2]]]) → [[[1, 2]]]
that looks a lil copy-pasted
they are cross-posting their question as well
outside the help channel apparently :/
well i have tried to make a function that do the opposite lol
i need a func that
takes [[[1]], [[2]]]) → [[[1, 2]]]
Gtg 👋
Using infrared (IR) light pens and the Wii Remote, it is possible to create very low-cost multi-point interactive whiteboards and multi-point tablet displays. Johnny Chung Lee, Carnegie Mellon University. The software can be downloaded at http://johnnylee.net
Very old video but was amazing for its time.
*insert Windows XP vibes*
'rtheracecario'
'rtheracecari'
'rtheracecar'
'rtheraceca'
'rtheracec'
'rtherace'
you still working on that password cracker @gray seal
or that rainbow dictionary
keep in mind that most passwords today have capital letters/numbers/special characters

def isPalindrome(s):
return s == s[::-1]
for start in range(0, len(text) - 1):
for end in range(start + 1, len(text)):
using = text[start:end]
result = ''
...
return result if result else None
Improve your coding skills with our library of 300+ challenges and prepare for coding interviews with content from leading technology companies.
what's ISP?
Image Signal Processor?
internet service provider
hey, the channel got archived, as it was only up for the event; I still am periodically on this server, and if you ask a pyqtgraph question someone will answer (potentially me) eventually 😄
Does anyone know of some good resources or videos on good examples of how you should set up a github repository?
that looks like skopje
I need help with finding the difference of 2 values in a NumPy array
!mute 767825895774748744 investigating
:incoming_envelope: :ok_hand: applied mute to @cloud gust until <t:1637173233:f> (59 minutes and 58 seconds).
!pban 767825895774748744 so far you have done nothing but spamming N and copypastas, despite being told roughly four times to stop. Feel free to appeal if you actually want to engage in the community in a meaningful way.
:incoming_envelope: :ok_hand: applied purge ban to @cloud gust permanently.
Hi...i'm not....why ya?
i see...okeyh...
hello guys
i can´t speak lol
i need to write 50 messaagfes to do so
so here i go
are you guys from britain?
cause I here your accent
:incoming_envelope: :ok_hand: applied mute to @wary swallow until <t:1637339716:f> (9 minutes and 53 seconds) (reason: burst rule: sent 8 messages in 10s).
Hello
Good morning
what-
hi
Hello
@fathom tartan@wary swallowwhen you both meet the requirements to voice verify, see #voice-verification
& don't spam or you'll be voice banned and won't be able to verify for another 2 weeks at least
i mean, what is a palindrome xd
A palindrome is a word or phrase that is the same backwards and forwards.
An example is racecar
yea
like noon or smth
ok mr helmock
they say u need 50 messages
:incoming_envelope: :ok_hand: applied mute to @regal pulsar until <t:1637668014:f> (9 minutes and 59 seconds) (reason: duplicates rule: sent 4 duplicated messages in 10s).
1 - 2 - 3 - 4 - 5 * 6
1 / 2 / 3 / 4 / 5 / 6
* @param {number} target The target to solve for.
* @param {number} numBigOnes The number of random "big numbers" to select.
* @param {number} numSelections The total number of numbers to select (big and little).
* @param {number[]} bigOnes Array of the big numbers to choose from.
* @param {number[]} littleOnes Array of the little numbers to choose from.
*/
constructor(target, numBigOnes, numSelections, bigOnes, littleOnes) {
if (target == null) target = 100 + this.random(900);
if (numBigOnes == null) numBigOnes = 2;
if (numSelections == null) numSelections = 6;
if (bigOnes == null) bigOnes = this.standardBigOnes();
if (littleOnes == null) littleOnes = this.standardLittleOnes();
bigOnes = [...bigOnes];
littleOnes = [...littleOnes];
this.shuffle(bigOnes);
this.shuffle(littleOnes);
this.values = [];
for (let i = 0; i < numBigOnes; ++i) {
this.values.push(bigOnes.pop());
}
const numLittleOnes = numSelections - numBigOnes;
for (let i = 0; i < numLittleOnes; ++i) {
this.values.push(littleOnes.pop());
}
this.target = target;
}
/** Return an array of the standard big numbers. */
standardBigOnes() {
return [100, 75, 50, 25];
}
/** Return an array of the standard little numbers. */
standardLittleOnes() {
const littles = [];
for (let i = 1; i <= 10; ++i) {
littles.push(i, i);
}
return littles;
}
morning pythonista
???
!tvban 370631674951892995 14d do not spam to get voice verified. see voice-verification
:incoming_envelope: :ok_hand: applied voice ban to @warped wadi until <t:1639152761:f> (13 days and 23 hours).
we need voice verification
you can get the role now.. type !voiceverify in #voice-verification
Hi guys, how can I get rights to enable microfone?
Hi, can someone help me with importing from a sibling package?
stupid question but when in pycharm the console at the bottom can it be made to be a seperate window?
@flat silo
@solid frigate
Here is my relative import in FeedCreateTable:
from ..constants import dynamodb
And here is the error:
ImportError: attempted relative import with no known parent package
FeedCreateTable
from G:\x\xx\xxx.py import FILE
ohhhh
@upbeat spruce
nothing much going on just joined python 2
i am a student from bangladesh
nah like the oob python
yeah p lol
@hard holly so i need a help in a specific part of my code
here
im trying to use the super to obtain the previous variables
but there's an error
and it says "unresolved refrence"
Ohhhhhhhhh
i get it now, i thought it wasn't needed cuz i assumed super was supposed to fetch it from the other class
but thnx for letting me know
do i still need to type the previous values in the current super as "name:int" or "name" only?
i meant "name:str"
sorry mistype
ohh alright
I have a question
Im studying numbers and their types
I get, ints and floats
But what is a "complex" type
hey
Its for representing complex number types? Like 2 + 3j (where j = sqrt(-1))
Agree
!voiceverify
#voice-verification is what you are looking for
let solve_one input =
let (x, y) = List.fold input ~init:(0, 0) ~f:(fun (x, y) (direction, value) ->
match direction with
| "forward" -> (x + value, y)
| "down" -> (x, y + value)
| "up" -> (x, y - value)
| _ -> failwith "unreachable"
)
in
x * y
@fallen pine
h
guys
@stuck bluff i just came cause i was free rn
sup
nice
oh
ye
@unreal root @misty sinew i am here
how can i check how many messages i sent??
maybe 20
at all
im not really active on this server, cuz i only come to this server when i need help in py XD
ive been in this server for 10 months
yes
yesss
alright
got it
i read the message
OKEY
btw
how do you like the idea that i create c# syntax in python? (its my own idea and i am really proud of it XDDD)
@unreal root
bro do you really pronounce it "pyson"? 💀
you say "pyson"
XDDD
XD
?
i call my project "PySharp"
ye but maybe a c# programmer wants to program in python but cant program python then he can use my project
XDDD
do you like c++?
how long do you program?
what games do u play?
bro can you please stop saying "pyson" XDDD pls say "python"
yes u are
xd
yes
nono
python
not pyson
dude
f
with f
pyfon
yes
yes
thats better
what country do you come from ?
🇸🇰?
yes
xd
no
x
d
oh
ye
i am from germany
AHAHAHAAHAH
AHAHAHAHAHHAHAHA
YXXDDDDDDD
HAHAHAHAHAH
BRO
💀
say "ich liebe temal"
jk
lol
NONO
DONT
TRANSLATE
....
KASSE?
OR KATZE?
the animal?
this one
ah
XDD
bro french is hard 💀
i must learn it in school
je suis temal
ca-va?
je regarde baguette
invite ur friend to the voice channel
14
u?
18
19
52
oh
damn
old grandpa?
120
damn
u have much sex?
u adopted cats
ayo
u also adopted dogs?
🐶
nono
its not a joke at all
u mean it seriously
nono
💀
pls speak english...
cant understand a single word
ah
okey
lets join voice chat 0
How to verify?
Msg in this chat or other??
Hello any one here??
🇦 🇳 🇭 🇮
@misty sinew for voiceverify msg in this chat or othe channels?
! voiceverify
!voiceverify
have you verifed
Well even I forgot
No
My account was verified
Ohk
Hey
Ohkk bro
0.0
!play noob song 1h
Lol
!stream 717983911824588862
✅ @boreal timber can now stream until <t:1639762713:f>.
@peak frigate either joe or hemlock can maybe add you or i'm not supposed to know that exists
one of the two
Oh yeah, one sec
lol who bumped us to vc1
Me
to what? the staff testing server? i'm on it
python bot itself isn't on the server
there's an emoji server tho isn't there?
different topic
the idea is if the real bot is in another server with me i can turn DMs off for this server
this server
although that's likely admin+
not entirely sure tbh
wait when did discord update how voice channels work
permissions (in voice!) are now asserted when roles are updated!
@mild flume ^ I'm curious if this works, could you manually give me the muted role to see what happens? 🥺
you've done it before with me and i remember that
neat
So what were you checking, sorry?
this is wrong, ignore this
Yeah it's tied to the command itself
well, its a discord limitation
Most things are
yeah ;-;
@peak frigate I have to go and implement some other features on other projects, did you want me for anything else?
no problem!
thanks for the fix
👍
@boreal timber sry i'll be turning DMs back off now lol
oh 😔
import random
import time
start = int(input("Enter starting number: "))
end = int(input("Enter Ending number number: "))
amount = int(input("How many winners would you like? "))
for i in range(amount):
number = random.randint(start, end)
time.sleep(3)
print(number)
from PySide6 import QtWidgets, QtCore, QtGui
class Settings(QtWidgets.QWidget):
def __init__(self, central_widget, main_window):
super(Settings, self).__init__()
self.central_widget = central_widget
self.main_window = main_window
button = QtWidgets.QPushButton("Confirm")
button.clicked.connect(self.on_click)
self.layout = QtWidgets.QVBoxLayout()
self.setLayout(self.layout)
self.layout.addWidget(button)
def on_click(self):
self.central_widget.setCurrentWidget(self.main_window)
class WindowWhichWillContainTheProgram(QtWidgets.QWidget):
def __init__(self):
super(WindowWhichWillContainTheProgram, self).__init__()
self.setStyleSheet('background-color:black;')
class Main(QtWidgets.QMainWindow):
def __init__(self):
super(Main, self).__init__()
self.central_widget = QtWidgets.QStackedWidget()
self.setCentralWidget(self.central_widget)
self.settings = None
self.main_window = None
self.initialise()
self.central_widget.addWidget(self.settings)
self.central_widget.addWidget(self.main_window)
current = 1
self.central_widget.setCurrentWidget(self.settings)
def initialise(self):
self.main_window = WindowWhichWillContainTheProgram()
self.settings = Settings(self.central_widget, self.main_window)
if __name__ == "__main__":
app = QtWidgets.QApplication([])
app.setApplicationName("Test")
window = Main()
window.show()
app.exec()
ok thankyou
What's wrong with a gaming PC?
from PySide6 import QtWidgets, QtCore, QtGui
class Settings(QtWidgets.QWidget):
def __init__(self, central_widget, main_window):
super(Settings, self).__init__()
self.central_widget = central_widget
self.main_window = main_window
button = QtWidgets.QPushButton("Confirm")
button.clicked.connect(self.on_click)
self.layout = QtWidgets.QVBoxLayout()
self.setLayout(self.layout)
self.layout.addWidget(button)
self.setApplicationName("te")
def on_click(self):
self.central_widget.setCurrentWidget(self.main_window)
class WindowWhichWillContainTheProgram(QtWidgets.QWidget):
def __init__(self):
super(WindowWhichWillContainTheProgram, self).__init__()
self.setStyleSheet('background-color:black;')
self.setApplicationName("Test")
class Main(QtWidgets.QMainWindow):
def __init__(self):
super(Main, self).__init__()
self.central_widget = QtWidgets.QStackedWidget()
self.setCentralWidget(self.central_widget)
self.settings = None
self.main_window = None
self.initialise()
self.central_widget.addWidget(self.settings)
self.central_widget.addWidget(self.main_window)
current = 1
self.central_widget.setCurrentWidget(self.settings)
def initialise(self):
self.main_window = WindowWhichWillContainTheProgram()
self.settings = Settings(self.central_widget, self.main_window)
if __name__ == "__main__":
app = QtWidgets.QApplication([])
window = Main()
window.setMinimumSize(1100, 700)
window.show()
app.exec()
stylesheet = """
MainWindow {
background-image: url("D:/_Qt/img/cat.jpg");
background-repeat: no-repeat;
background-position: center;
}
"""
Does that work?
Speaking of Nick Cage.... https://youtu.be/OT_aDZc3vXY
The Unbearable Weight of Massive Talent – In Theaters April 22, 2022. Nicolas Cage, Pedro Pascal, Sharon Horgan, Ike Barinholtz, Alessandra Mastronardi, Jacob Scipio, Lily Sheen, with Neil Patrick Harris, and Tiffany Haddish
Subscribe to the LIONSGATE YouTube Channel for the latest movie trailers, clips, and more: https://bit.ly/2Z6nfym
#UWM...
Local paths in CSS?
!warn @tender sand Don't threaten to murder helpers. Again
:incoming_envelope: :ok_hand: applied warning to @tender sand.
stylesheet = """
MainWindow {
background-image: url("DesktopWallpaper1.jpg");
background-repeat: no-repeat;
background-position: center;
}
"""
if __name__ == "__main__":
app = QtWidgets.QApplication([])
app.setApplicationName("BGS Tombola")
app.setStyleSheet(stylesheet)
window = Main()
window.resize(1920, 1080)
window.setMinimumSize(1100, 700)
window.setMaximumSize(1920, 1080)
window.show()
app.exec()
-sighs- Am I going to end up changing my mind again
Am I seriously considering now doing this in JS?
And why would I try to think to do this when I'm planning on using SQLite
Write it in raw SQL and eval it in python
I'm tempted
God damn it I'm too indecisive. I just want to make a crude ticket system
I just need to add tickets and notes to those tickets, filter, and export them so I can print them
blazer
Hmm
Does it have to be fast?
Not in the slightest
Bc honestly it sounds like python would be fine if it doesn't matter
Yeah but I hate making GUIs in Python
Bleh, I just don't know
I just want to get it done
I blame the weather for making me so indecisive
I mean if I did Blazer I can do that, essentially
If you're doing a GUI you could use HTML and JS or Ruby or whatever
It might actually make sense
HTMX?
Sure but I just want it as a little program on my machine. I worry that as soon as I start tying in a lot of extra stuff that I'm going to over complicate it, need to run a local server, etc
Hmm true
Eh.... It's starting to look like this will be easiest for me.... https://pypi.org/project/Eel/
God damn iiiiiiiiiit
3.8
self.label_2 = QLabel(self)
self.label_2.setStyleSheet("background-image : url(DesktopWallpaper1.jpg)")
self.label_2.resize(1920, 1080)
@mild flume - Take the opportunity to learn something new and make your ticketing system in Rust
MS Power Apps?
It's actually pretty neat these days
And you can sync the data to Power BI to make fancy report buttons for managment
Use CosmosDB!
CREATE TABLE my_big_table (
sender VARCHAR(30) PRIMARY KEY,
count INTEGER NOT NULL DEFAULT 0
)
WITH (
fillfactor = 80,
autovacuum_vacuum_scale_factor = 0,
autovacuum_vacuum_threshold = 40000
);
SQL API
The WITH clause can specify storage parameters for tables, and for indexes associated with a UNIQUE, PRIMARY KEY, or EXCLUDE constraint. Storage parameters for indexes are documented in CREATE INDEX. The storage parameters currently available for tables are listed below.
Santa WITH Claus
self.label_2 = QLabel(self)
self.label_2.setStyleSheet("background-image : url(DesktopWallpaper1.jpg)")
self.label_2.resize(self.width(), self.height())
HIIIIIIIII
👋
@stuck bluff cant speak permission not granted lol
no, not random messages. constructive messages. check out all our other text channels too! :)
else you'll be barred from voice verifying for 2+ weeks
a
can me help someone? what its wrong here
Can you show line 4,5
What's up @austere skiff?
Basically you need to chat in text for a while before you can chat in voice.
oh i see
A bot should have messaged you with the details of that.
Yea, this server has a lot of hoops because it's really well organized and thought out.
They have queued text channels for people to ask for help.
Pretty cool.
So how new are you to Python?
Pretty much, started for about 4 or 5 week ish
or i have been programming on and off in python for quite a while, but just recently trying to learn it well
Similar story here.
Ah nice
I'm here to lament how every guide is like "Ok here is a string, an int, and a float. When you get more advanced we'll tackle lists and tuples."
Hehe
And close to none of that is actually used in python scripts. Python scripts almost invariably are like...
import some_stuff
import other_stuff
variable = some_stuff.Thing(obscureParam)
otherVariable = other_stuff(variable)
def function():
blah = some_stuff.blah()
# here's a comment before we print something
print(f"Blah blah blah "+ str(variable))
if something(param) == True
other_stuff.Wtf(param)
else:
print("You're screwed!")
loop_forever():
hahaha xd
Then when you go for help to an expert and you're like "Hey I don't understand ANYTHING about the some_stuff.Thing bit! Can you explain it like I'm 5?
They go "Oh you shouldn't be using that text editor. Also that's been answered in this other forum post. And your camel case is not python orthodoxy-- that's more of a perl thing. But yea, read the docs."
So you go to the docs.
And the docs are like
"In the beginning the earth was without form, and void, and then there were fundamental discrete fields... We are getting to explaining maybe some of what has to do with what you probably already forgot we promise."
Then you scroll.
For 11 years.
And you have 137 tabs open.
You're reading about electron hole pairs.
In silicon.
You open 19 more tabs.
It's next week already.
Silicon?
You've long since forgotten who you are, whether you have a name or not. Or what you were originally trying to do.
Yes. Silicon. On tab #89? The source for the wikipedia article that was tab #73? You weren't paying attention?? How will you ever learn python like that!
-sarasm-
Anyway, that's been my experience so far.
Beautiful summary
Hmm.
I guess that's more confined.
I'm trying to build an IoT project type thing.
Involves modules and circuit boards and raspberry pi and ssh, and mqtt, and flask eventually...
Getting hands on alot of stuff then, nice
It's a lot of stuff that confuses me.
But thats good isent it? Means you are learning
You know what would make this whole process much more efficient?
In docs, there's a pereto distribution on what parts of the docs get referrenced.
Basically, 80% of the time the docs are being read, it's to find only 20% of what's actually in any given doc.
If docs pages could be sorted by popularity, it would cut out a lot of the superfluous crap that newcomers have to read through and get confused by.
That's luckily not the case here in this discord
But it's pretty typical for docs pages to be alphabetically sorted.
Yup
Klein
In topology, a branch of mathematics, the Klein bottle () is an example of a non-orientable surface; it is a two-dimensional manifold against which a system for determining a normal vector cannot be consistently defined. Informally, it is a one-sided surface which, if traveled upon, could be followed back to the point of origin while flipping t...
Scheveningen
Support my work on Patreon: https://www.patreon.com/melodysheep | Get the soundtrack: https://bit.ly/2HKl9fi | How's it all gonna end? This experience takes us on a journey to the end of time, trillions of years into the future, to discover what the fate of our planet and our universe may ultimately be.
We start in 2019 and travel expone...
this is normal
no it's not
!e
print(id(float(1)) == id(float(2)))
a = (float(1))
b = (float(2))
print(id(a) == id(b))
print(id(float(3)) == id(float(4)))
import turtle
import colorsys
t = turtle.Turtle()
s = turtle.Screen()
s.bgcolor('black')
t.speed(0)
n = 36
h = 0
for i in range(360):
c = colorsys.hsv_to_rgb(h, 1, 0.8)
h+=1/n
t.color(c)
t.circle(180)
t.left(10)```
;compile py
!e```py
import turtle
import colorsys
t = turtle.Turtle()
s = turtle.Screen()
s.bgcolor('black')
t.speed(0)
n = 36
h = 0
for i in range(360):
c = colorsys.hsv_to_rgb(h, 1, 0.8)
h+=1/n
t.color(c)
t.circle(180)
t.left(10)```
ß´Sup Dude
df = pd.read_sql_query("SELECT * FROM apeval_results WHERE whispBridgeMacAddr = ?", (whispBridgeMacAddr,))
Exception has occurred: AttributeError
'tuple' object has no attribute 'cursor'
df = pd.read_sql_query("SELECT * FROM apeval_results WHERE whispBridgeMacAddr = ?", connection, params=(whispBridgeMacAddr,))
for row in [results for _ in range(1)]:
꧁₂₀₂₁꧂ 𝘏𝓪𝒑𝒑𝕪 Ņệ𝜔 Ⲩệ𝓪Г ꧁₂₀₂₂꧂
yes
I am intermediate python programmer
I hate libraries
Every program I write is in shell
Hey, can anyone help me with a code i am building
got nerd sniped and ended up making an NTFS floppy filled only with illegal (to windows) filenames, productive! https://t.co/PomNMaDBU1
274
Using various Super Mario World glitches, I injected the code for Flappy Bird (code written by p4plus2). This is the first time a human has ever completed this kind of exploit. Special thanks to p4plus2 and MrCheeze who helped me a ton with this project.
Livestream Archive: https://www.twitch.tv/sethbling/v/57032858
Route Notes: https://docs.goo...
Coders and support for the run: noahkiq, masterjun, and dwangoAC.
Runner introduction starts at 0:12.
Run starts at 0:36.
Raelcun is the host.
This speedrun was recorded live at Awesome Games Done Quick 2019, a weeklong charity speedrun marathon raising money for the Prevent Cancer Foundation. Awesome Games Done Quick 2019 is just one of the ma...
This is a speedrun of TASBot plays Brain Age by micro500, xy2_ from Awesome Games Done Quick 2016. The run starts at 15:22.
AGDQ2016 raised over $1,200,000 for Prevent Cancer Foundation, and is just one of the many charity marathons from Games Done Quick.
To download high quality MP4s of every run at the event, visit our Archive.org page ...
hello
where is ++ method implemented? + is add
o
discord/user.py lines 96 to 97
def __str__(self) -> str:
return f'{self.name}#{self.discriminator}'```
@raw wren this is what discord.py did
str(some_user_object)
target: hikari.User = ctx.options.target @raw wren
hikari/users.py lines 714 to 717
def __str__(self) -> str:
if self.username is undefined.UNDEFINED or self.discriminator is undefined.UNDEFINED:
return f"Partial user ID {self.id}"
return f"{self.username}#{self.discriminator}"```
I heard "Opal, could you mute that?" Did I hear incorrectly or something?
I'm always paranoid about how much noise I'm making.
It's often difficult to judge.
sup bluenix and jake 👋
@elder wraith are you still using azure service bus?
yes why?
what is this?
ahhh
could someone say something so i can see if my headphones are set up properly?
ty
what's a weak valued dictionary?
er what's a weak reference?
oh fun
how do you make that?
!d weakref
Source code: Lib/weakref.py
The weakref module allows the Python programmer to create weak references to objects.
In the following, the term referent means the object which is referred to by a weak reference.
A weak reference to an object is not enough to keep the object alive: when the only remaining references to a referent are weak references, garbage collection is free to destroy the referent and reuse its memory for something else. However, until the object is actually destroyed the weak reference may return the object even if there are no strong references to it.
yknow, that reminds me of why i love git
i was writing some feature last night
and i got so confused with my implementation, that I just reset my code. checked out master, started from scratch
after I did that I had an implementation in about~ 15 minutes
oh, this wasnt in git 🤡
I said f it, and destroyed my last hour of work because i had confused myself so much
iterating through a 18k item list o(n^2) times
so that code was great to be deleted
horrible solution, not worth it at all
but it does work now, so I'm happy
after scrapping it I realised that
- i didn't need to iterate through all of them, they will only be attributes of the parent, so there's no need to iterate through... os for sys attributes
- they're defined in order, so the parent will always be defined before the children, so I don't need to worry about the children being orphans
made the implementation a lot easier 💀
BTW I didn't know you could use pytest on an api client
it seems tough to mock endpoints and such
ah, so you can mock ratelimiting
yeah that makes sense duh
are you using pytest or unittest internally?
we should call it mockcord
Implementation of Discord's backend. Rewrite of https://gitlab.com/luna/litecord-reference
not because i already have the mockcord name on pypi or something
nah lol, i had the idea to work on one of these myself earlier
seems kinda dead
defintely have stuff there and not a namesquat thx
@sage shuttle also I pronounce it ar-l
arL?
arrul?
yes that (what you're saying, not the above)
Yarrrl! 
could someone kick me from voice? I'm afk
NFT Worlds is an open virtual worlds ecosystem for creatives & digital visionaries on the Ethereum blockchain.
.
Are there here dutch people here who can help me with Python maybe ?
fat cat
@delicate isle
hi
fizzbuzz :: [String]
fizzbuzz = zipWith disp [1..] $ zipWith (++) fizz buzz
where
fizz = cycle ["", "", "Fizz"]
buzz = cycle ["", "", "", "", "Buzz"]
disp n "" = show n
disp _ s = s
main :: IO ()
main = mapM_ putStrLn (take 100 fizzbuzz)
@random minnow here's a working FizzBuzz in Haskell with nothing that really looks like a for loop
My point was you could emulate a for loop with recursion, there are many ways of going about fizzbuzz in haskell
Buyed a new mouse btw from logi
which one?
Le Mont-Saint-Michel (French pronunciation: [lə mɔ̃ sɛ̃ miʃɛl]; Norman: Mont Saint Miché, English: Saint Michael's Mount) is a tidal island and mainland commune in Normandy, France.
The island lies approximately one kilometre (0.6 miles) off the country's north-western coast, at the mouth of the Couesnon River near Avranches and is 7 hectares (...
God save our gracious Queen!
Long live our noble Queen!
God save the Queen!
Send her victorious,
Happy and glorious,
Long to reign over us:
God save the Queen!O Lord our God arise,
Scatter her enemies,
And make them fall:
Confound their politics,
Frustrate their knavish tricks,
On Thee our hopes we fix:
God save us all.Thy choicest gifts in store,
On her be pleased to pour;
Long may she reign:
May she defend our laws,
And ever give us cause,
To sing with heart and voice,
God save the Queen!
Acronym:
HTML (Hyper Text Markup Language)
Abbreviation:
Sr. Dev. (Senior Developer)
Vinegar
Imagine the smell! 💨 😍 Website ~ http://fartjarsnft.com / Discord ~ https://discord.gg/EvBQAvhJ
431
416
ISO 3103 is a standard published by the International Organization for Standardization (commonly referred to as ISO), specifying a standardized method for brewing tea, possibly sampled by the standardized methods described in ISO 1839. It was originally laid down in 1980 as BS 6008:1980 by the British Standards Institution, and a revision was pu...
The Hyper Text Coffee Pot Control Protocol (HTCPCP) is a facetious communication protocol for controlling, monitoring, and diagnosing coffee pots. It is specified in RFC 2324, published on 1 April 1998 as an April Fools' Day RFC, as part of an April Fools prank. An extension, HTCPCP-TEA, was published as RFC 7168 on 1 April 2014 to support brewi...
headset now needs to charge.
and its difficult to hear while keeping volume low
so i'll hop off
nice
CNN's Rick Santorum: "We birthed a nation from nothing. I mean, there was nothing here. I mean, yes we have Native Americans but candidly there isn't much Native American culture in American culture" https://t.co/EMxOEYDbg7
4460
10738
bye. @raven orbit delayed.
about right for Right Wing Lunatic
They have been going mask off
yeah, that's from last year but we were talking about the founding of america
so it was relevant
From the makers of Wallmart, Floormart and Ceilingmart.
It's ceasing to be about the votes, anyway.
"Nah, y'all are votin' for the wrong guy. We're going to elect the guy we want. Fraud! Fraud!"
We're all boned.
so what are you supposed to talk abt in vc?
how the French stole Aquitane
and french fries
legit question tho, what do y'all talk abt here?
So cool. People wanted to blow up the establishment. Mission accomplished.
No democracy for anyone, anymore.
No going out in society without catching a deadly virus.
So. Much. Winning.
👏 👏 👏
It's a general conversation room. There is no set topic.
anyone know where joe went?
Fell down a well. Very sad.
it's so weird to hear peoples voices
If you, as a web dev, stick eyebrows on your site, are you browsing it?
hmmm
ig
so, do i just open my mic and say hi?
matter -> people mover
Should you desire.
alr
Hello! In my course you need to make a Client for sending metrics. And I need to use the asynio library.
Can you advise me on resources for a beginner
!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 put a car on your car so you can car while you car.
money money
Train for a car chuuu chuuu !
Ooh. Conveyor belts.
i just need to spam messages if i wanna talk xD
don't do that.
You do so at your peril.
i mean like it said "youve send less then 50 messages"
i dont mean like spam spam but like talk in chats
ok
i am new to programing doing html the second day xD
btw dont get decived i am not a girl
O...kay?
I made fireworks.
like on your pc with python ?
Yes.
huh can i see?
how does the final product looks like
not the code but like
the animation
||https://imgur.com/gallery/z9ZQQpo||Flashing lights advisory.
ow pretty
i am wating for a tesla 5000$ tesla car xD
How Much Does the Ford Mustang Mach-E Cost? The 2022 Ford Mustang Mach-E has a $42,895 starting price. That's pricier than electric SUVs like the Volkswagen ID. 4 and Kia Niro EV, but it's less expensive than the Tesla Model Y
You mean Tesla can't fix their doors with a software update push?
xD
What is this abomination
omg XD

i mean in europe we like try to reduce carbon emissions
If not enough of them are driving along a section, do the wires all fall down?
and they do everything to reduce it. I would take it with a pinch of salt whatever we do in eu
one of the real applications of self driving is consistent long trucking routes
no
wiring them in is pretty funny though
isnt this how a tram works though?
yea it is a tram
its not that crazy
same concept
its a tram where you can take any truck and plug it in
yea but it does look ugly
it does
and if there will be an accident
there will be a lot of damage
and people might get electrified
well the AV companies are trying to do this without any rails
its funny that they spend a few billion dollars and have nothing
then someone comes along and solves it with these rails lol
It wouldn't take off in the US unless it had a gun attached.
I used to be an adventurer like you, but then I tried to lean on a window in VR
"Don't argue with the man who broke his arm in VR" - Rabbit
what are the dark colours and what are the green
i dont understand the description
and the green what is it
so dark green have like potential ?
florida kinda sus
we dont want beef per say but we want
@long gust apartments for cows ?
Giant cow pasture. Is it the pasture that's giant, or the cows? Maybe if we breed cows to be giants, we can just have one cow per year that just feeds everyone.
Hard to make cows pay rent
Gas capture.
they can pay with their body
Harvest methane for energy generation?
¬_¬
Man that phrase really takes a different turn when you apply it to cows
Taking interracial to a whole new level
Wales?
ow moooooooo xD
rabbit meant that horizontal scaling is cheaper than vertical scaling
Sure.
Good point
you accidentally said the opposite, I know what you meant.

??? Stab me???
because they have to pay rent to live in a cow apartment
and they have no way to pay other to sell their farts to use methane to burn it for energy
or sell their body literally
I have never seen this unicorn meme before, does it have more context??
not really
like
i guess in among us
someone said stab me daddy
then they just added a unicorn
and then i use it to relate to cow struggles
ah... ok, now it makes more sense.
Why is there a specific place earmarked for wildfires
now I want a cow skin for my among us game. 😛
more like Wildfire on my grill
You definitely want the science to govern things, there, and very conservatively. It's a gun you can't unfire easily. Australia has a cautionary tale in the cane toad.
Rabbits.
Foxes.
so that is why smoked jerky from Australia is so delicious.
That land is reserved for gender reveal parties.
They just replant all the grass after the "it's a boy!" fireworks burn it down again
Absolutely magical
i can talk wooo hoo
Frederator Networks is a pioneer in streaming video, and the leading independent producer of cartoons for television and video.
The Texas state border, where else?
It's already even a straight line, for your convenience
We are
We're the best thing
if not for oklahoma arkansas adn the entire nation of mexico texas would be a square
Lipo explodes by agressive overcharge.
Don't try this at home :-)
It's been a long time since I've done a quiz or game show on this channel, but finally: introducing Lateral! Pull down this description for links to everyone's channels. Joining me are:
Helen Arney, http://helenarney.com @helenarney
Kat Arney, https://katarney.com @Kat_Arney
Simon Clark, https://www.youtube.com/channel/UCRRr_xrOm66qaigIbwFLvbQ ...
My company for today!
WHy is thi so think? What is this?
Get iFixit's Marlin Screwdriver Set today for only $24.99 USD at https://www.ifixit.com/linus
Grab the G.Skill Trident Royal Z DDR4 Ram here on Amazon: https://lmg.gg/ATridentRoyalZ or on NewEgg: https://lmg.gg/NTridentRoyalZ
Your iPhone's battery ain't got nothing on this 13,000 mAh phone.
Buy the Ulefone Power 5 (note: North American cellul...
not this link the one about how stack overflow hates python the hard way
This is an off topic question. But I'm a CS student and I'm looking to hire a tutor. HMU if you have some free time with your rates and credentials. :3
!rule 9
If you need help with something, feel free to ask here or see #❓|how-to-get-help
it just doesn't feel right to ask for help on my college work for free...
it's not even like I want people to do my homework for me, I truly want to learn how all this shit works. Zybooks is trash and it's frustrating.
I was suggesting the bortolleto try rust...
I mean we're more than willing to offer assistance. Help explain concepts you're having trouble with, clarify anything you need, nudge you in the right direction
We're a learning resource, don't feel bad
It's like going to a tutor
Well I just posted in the help channel like a good boi.
Would love to talk with somoene one-on-one and get some confusion off my chest.
I'll take a peek. Which one?
popcorn
There's the studio tour thing.
this is the UK one
oooohh....
also the rails on diagon alley....
it's just a warehouse pretty much
not a fan.
like the train though...
autobots use their ... something to destroy the evil forces of... the Decepticons.
:D
Who else is stuck inside due to the snowstorm?
@wary fable Lot of noise.
I have shoveled my driveway, and will be taking the kids sledding soon.
so I will be stuck outside shortly.
I apologize for my microphone being good, I'll pull out the terrible one as a special favor just for you.
Krisp... unless you are on linux... we seem to be stuck with push to talk...
I'm on Linux today.
m2, technically a Chromebook, it's "Linux"
@true valley those people who dont play games they just go out and like to have fun outside and doing exercises
like if you have a gym bro
pobably he is not playing anything
or something basic
hmm
i am not eaven speaking
xD
so a yea
xD
@fair heart jsut eat it raw
make a salmon popsicle
@solid gyro try fries
....
?
corn and eggs
thats like i dunno
....
ghost pepper
you wanna die bro?
whatXD
xD Hey alexa
Hey alexa
how many salmons can you fit in a tesla
EVERYTHING IS WORNG
with push to talk
so spice girls are just
salt and pepper girls ?
only the white one
Actual spice
Scary?
yes scarry
I can't remember, I never liked their music
That was around when I was mainly just listening to CDs
For his it'd be 263.15 kelvin
The original performance of Shipoopi, from the movie The Music Man (1962)
Bye Bisk 🙂
Peter Griffin's showboating song, Shipoopi, on the football field.
Family Guy VIDEO OF THE WEEK → http://bit.ly/FGVideoOfTheWeek
My fare-lady.
It is odd I have gone my whole life, and this is the first time I have ever heard of Shipoopy or the Music man.
that's possible depending on what appeal_testing looks like
well.. it doesnt like it, says int is not iterable
I never had patience for those old musicals, it took family guy to turn me on to it.
Is it a list of numbers or is it just possibly one of those numbers
Because there is an itertools thing that would apply here
i'm thinking it's just 1
Mkay, one sec
like it gives it 1 at a time.. so itertools, checking.
Trying to find the right thing
sec, I'll post the code.. it's not long.. trying to not have to repeat it for every variation of priority and eval position :/
Found what I was looking for
this all depends on what evalpriority is expected to look like?
from itertools import zip_longest
for priority, position in zip_longest((evalpriority,), evalposition, fillvalue=evalpriority):
```I think that works?
No
Wait, I've got a better one
from itertools import repeat
for priority, position in zip(repeat(evalpriority), evalposition):
There we go
This is assuming that evalpriority is a single value
it is, the apeval list is a list of tuples like,
[('0a-00-3e-b3-59-5d', '0a-00-3e-60-64-12', 1, 'secondary', 102, -68.0), ('0a-00-3e-b3-59-5d', '0a-00-3e-60-c5-d6', 1, 'tertiary', 14, -70.0),
is the entire repeat thing not just redundant there?
he has the evalpriority variable already from the outer for loop
and it's staying the same for each thing in the zip right?
It's kicking back an int isn't iterable
And zip naturally only goes until the shortest iterable runs out
priority = evalpriority
for position in evalposition:
isn't that essentially the same thing as what you're doing?
gtg... 👋
@uneven rock I think you're going awry in that second for loop. I can't quite square in my head what you're actually trying to do
well.. after some testing, the zip method isnt going to work for me, but basically I think I'm trying something that should be in it's on function and pass each and everything to it..
EuSpRIG offers Risk Managers the world's only independent, authoritative & comprehensive web based information describing the current state of the art in Spreadsheet Risk Management.
I just posted in my popcorn chat my confusion line-by-line. As you can see. I'm very lost.
The main known risks of spreadsheets include:
a) Human Error – To err is human, hence the majority (>90%) of spreadsheets contain errors. Because spreadsheets are rarely tested [Panko, 2006] [Pryor, 2004] these errors remain. Recent research has shown that about 50% of spreadsheet
models used operationally in large businesses have material defects [Powell, Baker, Lawson, 2007] [Croll, 2008]. Approximately 50% of executives recently surveyed had encountered spreadsheet related problems up to and including staff dismissal [Caulkins, Morrison & Weideman, 2007].b) Fraud – Because of the ease with which program code and data is mixed, spreadsheets are the perfect environment for perpetrating fraud [Mittermeir, Clermont, Hodnigg, 2005]. The $600m fraud perpetrated by John Rusnak at AIB/Allfirst was spreadsheet related [Butler, 2002]. Other spreadsheet related frauds have occurred and have been notified to the regulator, but have not been reported.
c) Overconfidence – Because spreadsheet users do not go looking for errors, they don’t find any or many. Spreadsheet users are therefore overconfident in their use of spreadsheets [Panko, 2003].
d) Interpretation – Translation of a business problem into the spreadsheet domain can “…lead to a position where decision makers may act in the belief that decisions can be made with confidence on the output from the spreadsheet despite evidence to the contrary” [Banks & Monday, 2002].
e) Archiving – “The case of failed Jamaican commercial banks demonstrates how poor archiving can lead to weaknesses in spreadsheet control that contribute to operational risk” [Lemieux, 2005].
EuSpRIG offers Risk Managers the world's only independent, authoritative & comprehensive web based information describing the current state of the art in Spreadsheet Risk Management.
brb
Wow, I really want to hear the conversation around this post.
It's just a high level overview of categories of spreadsheet risk that I was trying to get people interested in by showing anecdotes earlier. The page on best practices doesn't say, "use Python or R" but I'm sure that's what some of the papers they link to say to do for some use-cases. I'll get around to reading them eventually but right now I have to go to the store...
if you're bored with your pi and wanna do that NixOS thing this weekend I can probably squeeze you in and we can talk about spreadsheet risk while we do it - lol
So convert to Access is what you are saying? 

A common statistic quoted about spreadsheets is that as many as 90% contain a mistake. The rate of error in any one cell can be quite low, but extrapolated to the size of a typical spreadsheet, the chance that a mistake will be made is compounded. Several types of errors can occur within a spreadsheet, including:
Data integrity errors:
the source information is incorrect, leading to the infamous problem of “garbage in, garbage out”.Formula errors:
the data is incorrectly used in calculations, providing flawed results.Process errors:
the spreadsheet’s management is compromised through errors, such as using an incorrect version.Communication errors:
where the spreadsheet is misleading, or its results are not presented or explained well.Meta errors:
outside the scope of the spreadsheet’s cells, such as when the right question is not asked.
Reduce the risk that your spreadsheet gives you the wrong answer
You have to really read between the lines. What I'm really saying:
cuneiform, clay tablets, and abacuses.
hey

