#voice-chat-text-0
1 messages ยท Page 935 of 1

import math
symbols = ['+', '-', '*', '/']
dict = {}
def BruteForce():
for i in symbols:
dict[f"10 {symbols[0]} 10"] = [f"{eval(f'10 {symbols[0]} 10')}"]
!e ```py
symbols = ['+', '-', '*', '/']
num1 = 10
num2 = 10
print(f"{num1} {symbols[0]} {num2} = {eval(f'{num1} {symbols[0]} {num2}')}")
@whole bear :white_check_mark: Your eval job has completed with return code 0.
10 + 10 = 20
import math
symbols = ['+', '-', '*', '/']
dict = {}
def BruteForce():
for i in symbols:
dict[f"{n1} {symbols[0]} {n2} {symbols[0]} {n3} {symbols[0]} {n4} {symbols[0]} {n5} {symbols[0]} {n6}"] = [f"{eval(f'{n1} {symbols[0]} {n2} {symbols[0]} {n3} {symbols[0]} {n4} {symbols[0]} {n5} {symbols[0]} {n6}')}"]
PEMDAS
or BEDMAS
!eval py print("\n".join(f"{num1} {symbol} {num2} = {eval(f'{num1} {symbol} {num2}')}" for num1, num2, num3 in [(1,2,"*"), (10,30,"+")]))
aaaaa
!eval py print("\n".join(f"{num1} {symbols[0]} {num2} = {eval(f'{num1} {symbol} {num2}')}" for num1, num2, symbol in [(1,2,"*"), (10,30,"+")]))

!eval py print("\n".join(f"{num1} {symbol} {num2} = {eval(f'{num1} {symbol} {num2}')}" for num1, num2, symbol in [(1,2,"*"), (10,30,"+")]))
@rocky kiln :white_check_mark: Your eval job has completed with return code 0.
001 | 1 * 2 = 2
002 | 10 + 30 = 40
!eval py print("\n".join(f"{num1} {symbols[0]} {num2} = {eval(f'{num1} {symbol} {num2}')}" for num1, num2, num3 in [(1,2,"*"), (10,30,"+"),(2,4,"^")]))
for x in range(6):
n1 = int(input(f"No. {x+1} = "))
!eval py print("\n".join(f"{num1} {symbol} {num2} = {eval(f'{num1} {symbol} {num2}')}" for num1, num2, symbol in [(1,2,"*"), (10,30,"+"),(2,3,"^")]))
@rocky kiln :white_check_mark: Your eval job has completed with return code 0.
001 | 1 * 2 = 2
002 | 10 + 30 = 40
003 | 2 ^ 3 = 1
!eval py print("\n".join(f"{num1} {symbol} {num2} = {eval(f'{num1} {symbol} {num2}')}" for num1, num2, symbol in [(1,2,"*"), (10,30,"+"),(2,3,"**")]))
@rocky kiln :white_check_mark: Your eval job has completed with return code 0.
001 | 1 * 2 = 2
002 | 10 + 30 = 40
003 | 2 ** 3 = 8
@tiny seal :white_check_mark: Your eval job has completed with return code 0.
[1, 2, 3, 4, 5, 6]
n: list[int] = []
for _ in range(6):
n.append(int(input(f"No. {x+1} = ")))
n1 = int(input("Enter number 1: "))
n2 = int(input("Enter number 2: "))
n3 = int(input("Enter number 3: "))
n4 = int(input("Enter number 4: "))
n5 = int(input("Enter number 5: "))
n6 = int(input("Enter number 6: "))
my_list = []
for i in range(6):
my_list.append(i)
# is the same as
my_list = [i for i in range(6)]
fuck
my_list = [int(input()) for _ in range(6)]
๐ its the same execpt for the fact the normal for loop runs normally while the comprehension makes a call to a function implemented in C
aaaaaaaaa
!e ```py
print('"'+''.join(r'\u{:04X}'.format(i)for i in b'MONKS#0001')+'"')
@whole bear :white_check_mark: Your eval job has completed with return code 0.
"\u004D\u004F\u004E\u004B\u0053\u0023\u0030\u0030\u0030\u0031"
!eval py import itertools def make_table(rows: List[List[Any]], labels: Optional[List[Any]] = None, centered: bool = False) -> str: return "\n".join((start + mid.join((pad_char * ((padding := column_width - len(str(row[index]) if index < len(row) else "")) // 2 if centered else 1) + (cell_content := str(row[index]) if index < len(row) else "") + pad_char * (-(-padding // 2) if centered else (column_width - len(cell_content)) - 1)) for index, column_width in enumerate(list(max(len(str(item)) + 2 for item in list((row[index] if len(row) > index else "") for row in (rows + [labels] if labels else rows))) for index in range(max(len(row) for row in (rows + [labels] if labels else rows)))))) + end) for start, mid, end, pad_char, row in itertools.chain(([("โ", "โฌ", "โ", "โ", []), ("โ", "โ", "โ", " ", labels), ("โ", "โผ", "โค", "โ", [])] if labels else [("โ", "โฌ", "โ", "โ", [])]), (("โ", "โ", "โ", " ", row) for row in rows), [("โ", "โด", "โ", "โ", [])])) print(f'`{make_table([["i", "love", "oneliners"],["if", "you", "havent", "noticed"],["by", "now"]], ["these", "are", "some", "titles"])}`)
@rocky kiln :x: Your eval job has completed with return code 1.
001 | File "<string>", line 4
002 | print(f'`{make_table([["i", "love", "oneliners"],["if", "you", "havent", "noticed"],["by", "now"]], ["these", "are", "some", "titles"])}`)
003 | ^
004 | SyntaxError: unterminated string literal (detected at line 4)


!eval py import itertools def make_table(rows: List[List[Any]], labels: Optional[List[Any]] = None, centered: bool = False) -> str: return "\n".join((start + mid.join((pad_char * ((padding := column_width - len(str(row[index]) if index < len(row) else "")) // 2 if centered else 1) + (cell_content := str(row[index]) if index < len(row) else "") + pad_char * (-(-padding // 2) if centered else (column_width - len(cell_content)) - 1)) for index, column_width in enumerate(list(max(len(str(item)) + 2 for item in list((row[index] if len(row) > index else "") for row in (rows + [labels] if labels else rows))) for index in range(max(len(row) for row in (rows + [labels] if labels else rows)))))) + end) for start, mid, end, pad_char, row in itertools.chain(([("โ", "โฌ", "โ", "โ", []), ("โ", "โ", "โ", " ", labels), ("โ", "โผ", "โค", "โ", [])] if labels else [("โ", "โฌ", "โ", "โ", [])]), (("โ", "โ", "โ", " ", row) for row in rows), [("โ", "โด", "โ", "โ", [])])) print(f'`{make_table([["i", "love", "oneliners"],["if", "you", "havent", "noticed"],["by", "now"]], ["these", "are", "some", "titles"])}`')
import itertools; def make_table(rows: List[List[Any]], labels: Optional[List[Any]] = None, centered: bool = False) -> str:
return "\n".join((start + mid.join((pad_char * ((padding := column_width - len(str(row[index]) if index < len(row) else "")) // 2 if centered else 1) + (cell_content := str(row[index]) if index < len(row) else "") + pad_char * (-(-padding // 2) if centered else (column_width - len(cell_content)) - 1)) for index, column_width in enumerate(list(max(len(str(item)) + 2 for item in list((row[index] if len(row) > index else "") for row in (rows + [labels] if labels else rows))) for index in range(max(len(row) for row in (rows + [labels] if labels else rows)))))) + end) for start, mid, end, pad_char, row in itertools.chain(([("โ", "โฌ", "โ", "โ", []), ("โ", "โ", "โ", " ", labels), ("โ", "โผ", "โค", "โ", [])] if labels else [("โ", "โฌ", "โ", "โ", [])]), (("โ", "โ", "โ", " ", row) for row in rows), [("โ", "โด", "โ", "โ", [])])); print(f'`{make_table([["i", "love", "oneliners"],["if", "you", "havent", "noticed"],["by", "now"]], ["these", "are", "some", "titles"])}`)
!eval py import itertools from typing import List, Optional, Any def make_table(rows: List[List[Any]], labels: Optional[List[Any]] = None, centered: bool = False) -> str: return "\n".join((start + mid.join((pad_char * ((padding := column_width - len(str(row[index]) if index < len(row) else "")) // 2 if centered else 1) + (cell_content := str(row[index]) if index < len(row) else "") + pad_char * (-(-padding // 2) if centered else (column_width - len(cell_content)) - 1)) for index, column_width in enumerate(list(max(len(str(item)) + 2 for item in list((row[index] if len(row) > index else "") for row in (rows + [labels] if labels else rows))) for index in range(max(len(row) for row in (rows + [labels] if labels else rows)))))) + end) for start, mid, end, pad_char, row in itertools.chain(([("โ", "โฌ", "โ", "โ", []), ("โ", "โ", "โ", " ", labels), ("โ", "โผ", "โค", "โ", [])] if labels else [("โ", "โฌ", "โ", "โ", [])]), (("โ", "โ", "โ", " ", row) for row in rows), [("โ", "โด", "โ", "โ", [])])) print(f'{make_table([["i", "love", "oneliners"],["if", "you", "havent", "noticed"],["by", "now"]], ["these", "are", "some", "titles"])}')
!e
!eval [code]
Can also use: e
*Run Python code and get the results.
This command supports multiple lines of code, including code wrapped inside a formatted code block. Code can be re-evaluated by editing the original message within 10 seconds and clicking the reaction that subsequently appears.
We've done our best to make this sandboxed, but do let us know if you manage to find an issue with it!*
!e
import itertools; def make_table(rows: List[List[Any]], labels: Optional[List[Any]] = None, centered: bool = False) -> str:
return "\n".join((start + mid.join((pad_char * ((padding := column_width - len(str(row[index]) if index < len(row) else "")) // 2 if centered else 1) + (cell_content := str(row[index]) if index < len(row) else "") + pad_char * (-(-padding // 2) if centered else (column_width - len(cell_content)) - 1)) for index, column_width in enumerate(list(max(len(str(item)) + 2 for item in list((row[index] if len(row) > index else "") for row in (rows + [labels] if labels else rows))) for index in range(max(len(row) for row in (rows + [labels] if labels else rows)))))) + end) for start, mid, end, pad_char, row in itertools.chain(([("โ", "โฌ", "โ", "โ", []), ("โ", "โ", "โ", " ", labels), ("โ", "โผ", "โค", "โ", [])] if labels else [("โ", "โฌ", "โ", "โ", [])]), (("โ", "โ", "โ", " ", row) for row in rows), [("โ", "โด", "โ", "โ", [])])); print(f'`{make_table([["i", "love", "oneliners"],["if", "you", "havent", "noticed"],["by", "now"]], ["these", "are", "some", "titles"])}`)
@scenic wind :x: Your eval job has completed with return code 1.
001 | File "<string>", line 2
002 | return "\n".join((start + mid.join((pad_char * ((padding := column_width - len(str(row[index]) if index < len(row) else "")) // 2 if centered else 1) + (cell_content := str(row[index]) if index < len(row) else "") + pad_char * (-(-padding // 2) if centered else (column_width - len(cell_content)) - 1)) for index, column_width in enumerate(list(max(len(str(item)) + 2 for item in list((row[index] if len(row) > index else "") for row in (rows + [labels] if labels else rows))) for index in range(max(len(row) for row in (rows + [labels] if labels else rows)))))) + end) for start, mid, end, pad_char, row in itertools.chain(([("โ", "โฌ", "โ", "โ", []), ("โ", "โ", "โ", " ", labels), ("โ", "โผ", "โค", "โ", [])] if labels else [("โ", "โฌ", "โ", "โ", [])]), (("โ", "โ", "โ", " ", row) for row in rows), [("โ", "โด", "โ", "โ", [])])); print(f'`{make_table([["i", "love", "oneliners"],["if", "you", "havent", "noticed"],["by", "now"]], ["these", "are", "some", "title
... (truncated - too long)
Full output: https://paste.pythondiscord.com/iwatidapem.txt?noredirect
@rocky kiln :white_check_mark: Your eval job has completed with return code 0.
001 | โโโโโโโโโฌโโโโโโโฌโโโโโโโโโโโโฌโโโโโโโโโโ
002 | โ these โ are โ some โ titles โ
003 | โโโโโโโโโผโโโโโโโผโโโโโโโโโโโโผโโโโโโโโโโค
004 | โ i โ love โ oneliners โ โ
005 | โ if โ you โ havent โ noticed โ
006 | โ by โ now โ โ โ
007 | โโโโโโโโโดโโโโโโโดโโโโโโโโโโโโดโโโโโโโโโโ
do you remember who did this for the code jam?
what is this cursedness
in 1 line
my submission for the summer code jam qualifier
By the way
If you really want to, here's how
for i in range(6):
exec("x" + str(i) + "=" + str(i))
print(x3)
!e ```py
(lambda i: [
print(chr(x), end='') for x in (lambda i=i: [
globals().update({"h": (lambda =(i[-1] + i[2]): ( * _) + i[3])
()}) or h, h - i[2],
globals().update({"l": h + i[3]}) or l, l,
globals().update({"o": l + i[2]}) or o, (i[-1] + i[0]) * 4, o +
(i[3] * 2), o, o + i[2], l, h - i[3], i[4] * 2
])()
])([
_.code.co_argcount
for _ in ((lambda _: None), (lambda _, __: None),
(lambda _, __, ___: None), (lambda _, __, ___, ____: None),
(lambda _, __, ___, ____, _____: None),
(lambda _, __, ___, ____, _____, ______: None),
(lambda _, __, ___, ____, _____, ______, _______: None))
])
@whole bear :white_check_mark: Your eval job has completed with return code 0.
hello world
!e
for i in range(6):
exec("x" + str(i) + "=" + str(i))
print(x3)
@sweet lodge :white_check_mark: Your eval job has completed with return code 0.
3
I actually used this in production at work when I was first learning
import math
symbols = ['+', '-', '*', '/']
dict = {}
def BruteForce():
for i in symbols:
dict[f"{n[0]} {symbols[i]} {n[1]} {symbols[i]} {n[2]} {symbols[i]} {n[3]} {symbols[i]} {n[4]} {symbols[i]} {n[5]}"] = [f"{eval(f'{n[0]} {symbols[i]} {n[1]} {symbols[i]} {n[2]} {symbols[i]} {n[3]} {symbols[i]} {n[4]} {symbols[i]} {n[5]}')}"]
n = [int(input("Enter number: ")) for _ in range(6)]
print(dict)
though its not just python i abusejava public int daysPassedThisYear() { return IntStream .range(1, this.month) .map(i -> Date.daysInMonth(i, this.year)) .sum() + this.day; }
re-creating discord's ui itself is actually one of the easiest things to do
!e Modern version
for i in range(6):
exec(f"x{i} = {i}")
print(x3)
@sweet lodge :white_check_mark: Your eval job has completed with return code 0.
3
import math
symbols = ['+', '-', '*', '/']
dict = {}
def BruteForce(n):
for i in symbols:
dict[f"{n[0]} {symbols[i]} {n[1]} {symbols[i]} {n[2]} {symbols[i]} {n[3]} {symbols[i]} {n[4]} {symbols[i]} {n[5]}"] = [f"{eval(f'{n[0]} {symbols[i]} {n[1]} {symbols[i]} {n[2]} {symbols[i]} {n[3]} {symbols[i]} {n[4]} {symbols[i]} {n[5]}')}"]
n = [int(input("Enter number: ")) for _ in range(6)]
BruteForce(n)
print(n)
dict[f"{n[0]} {symbols[i]} {n[1]} {symbols[i]} {n[2]} {symbols[i]} {n[3]} {symbols[i]} {n[4]} {symbols[i]} {n[5]}"] = [f"{eval(f'{n[0]} {symbols[i]} {n[1]} {symbols[i]} {n[2]} {symbols[i]} {n[3]} {symbols[i]} {n[4]} {symbols[i]} {n[5]}')}"]
TypeError: list indices must be integers or slices, not str
!e
symbols = ['+', '-', '*', '/']
for symbol in symbols:
print(symbol)
@scenic wind
@woeful salmon :white_check_mark: Your eval job has completed with return code 0.
001 | +
002 | -
003 | *
004 | /
dict[f"{n[0]} {[i]} {n[1]} {[i]} {n[2]} {[i]} {n[3]} {[i]} {n[4]} {[i]} {n[5]}"] = [f"{eval(f'{n[0]} {[i]} {n[1]} {[i]} {n[2]} {[i]} {n[3]} {[i]} {n[4]} {[i]} {n[5]}')}"]
File "<string>", line 1
5 ['+'] 5 ['+'] 5 ['+'] 5 ['+'] 5 ['+'] 5
^
SyntaxError: invalid syntax
me add
import math
symbols = ['+', '-', '*', '/']
dict = {}
def BruteForce(n):
for i in symbols:
dict[f"{n[0]} {i} {n[1]} {i} {n[2]} {i} {n[3]} {i} {n[4]} {i} {n[5]}"] = [f"{eval(f'{n[0]} {i} {n[1]} {i} {n[2]} {i} {n[3]} {i} {n[4]} {i} {n[5]}')}"]
n = [int(input("Enter number: ")) for _ in range(6)]
print(dict)
Enter number: 5
Enter number: 5
Enter number: 5
Enter number: 5
Enter number: 5
Enter number: 5
{}
@alpine path
You're in VC1
I'm good
1 + 2 + 3 + 4 + 5 + 6
1 + 2 + 3 + 4 + 5 - 6
1 + 2 + 3 + 4 - 5 - 6
1 - 2 -3 - 4 - 5 - 6
If you guys are in VC1, use that text channel
Change subjects swiftly...
oh no, i need to send 50 messages before i can talk ๐ฎ ๐ฎ ๐ฎ
@honest pier Java christmas person
oh, i could not hear you
Is this a hobby?
can anyone help me?
If I can sure
i have this 3 codes. i want to them to interact to each other
the first code is to make a folder inside images folder and store some captured images
the second one is that i want to read all those images and train them
last code is to recognize the images that has been stored inside the images folder
im sorry didnt quite hear you
the problem with the codes is the first one doesnt create a folder inside the images folder. i want it that everytime i run the code it automatically creates a new folder inside the 'images' folder
didnt quite hear u ? pardon?
yes
it doesnt overwrite the folder instead it adds more new captured images
on 1st run there are 20.imgs, next run it adds 21-40
yes on the same folder
os.path.exists()```
how do i do that inside the images folder?
yes ive been following
i hate to say thins but im a noob
pycharm
yes
can u write it down ?
!e py text = "Hello, world." print(text.replace("Hello", "Die"))
@somber heath :white_check_mark: Your eval job has completed with return code 0.
Die, world.
Source code: Lib/base64.py
This module provides functions for encoding binary data to printable ASCII characters and decoding such encodings back to binary data. It provides encoding and decoding functions for the encodings specified in RFC 4648, which defines the Base16, Base32, and Base64 algorithms, and for the de-facto standard Ascii85 and Base85 encodings.
The RFC 4648 encodings are suitable for encoding binary data so that it can be safely sent by email, used as parts of URLs, or included as part of an HTTP POST request. The encoding algorithm is not the same as the uuencode program.
!e py print("\"Hello\"")
@somber heath :white_check_mark: Your eval job has completed with return code 0.
"Hello"
@somber heath
!rule 5
5. Do not provide or request help on projects that may break laws, breach terms of services, or are malicious or inappropriate.
!e
class E(BaseException):
def __new__(cls, *args, **kwargs):
return cls
def a(): yield
a().throw(E)
@cosmic lark :x: Your eval job has completed with return code 1.
001 | Traceback (most recent call last):
002 | File "<string>", line 5, in <module>
003 | File "<string>", line 4, in a
004 | TypeError: calling <class '__main__.E'> should have returned an instance of BaseException, not type
lol it needs more code from my vpn to decode it's very secure
surely
thats the kind of program a programmer would write for the the last time
Yello
Jello!
Look at the stars...๐ต
Ah.
Any advancement on the urn saga?
The apparatus used to boil water.
currently
What?
not to be confused with voltagely
eating lunch
...watt?
we're wired for it
I feel a surge of pride at that.
pride comes before a fall
surges come before a blackout
ordered a dictionary
now I await it
it's async delivery
async def deliver_dictionary(user: str) -> dict
return {"a": "a letter", "b": "a different letter"}
async def order_dictionary(user: str) -> dict:
dictionary = await deliver_dictionary(user)
return dictionary
print(order_dictionary("verboof"))
Uh huh.
hey verbose got any idea ow python handles infinite decimals @gentle flint
!e
print(format(1/3, '.60g'))
@gentle flint :white_check_mark: Your eval job has completed with return code 0.
0.333333333333333314829616256247390992939472198486328125
!d decimal
Source code: Lib/decimal.py
The decimal module provides support for fast correctly-rounded decimal floating point arithmetic. It offers several advantages over the float datatype:
!d fractions
Source code: Lib/fractions.py
The fractions module provides support for rational number arithmetic.
A Fraction instance can be constructed from a pair of integers, from another rational number, or from a string.
@lofty grotto๐
It's not great, but it's okay.
@cosmic lark
Pretty snowy.
@tranquil rune ๐
Ayoush. ๐
Many things.
aha
@somber heath can u help me withsomthing?
What's up?
import cv2, sys, numpy, os
size = 4
fn_haar = 'data/haarcascade_frontalface_default.xml'
#fileExists = os.path.exists('images/folder1')
#if fileExists is False:
fol=1
images_path = os.makedirs('images')
os.path.join('images/', os.makedirs('images/subfolder' + str(fol+1)))
print(images_path)
images_path.mkdir(exist_ok=True)```
i have this code but it give me an errror like this
File "C:/Users/USER/PycharmProjects/FaceRecog/scan-face.py", line 10, in <module>
os.path.join('images/', os.makedirs('images/subfolder' + str(fol+1)))
File "C:\Python\Python379\lib\ntpath.py", line 115, in join
genericpath._check_arg_types('join', path, *paths)
File "C:\Python\Python379\lib\genericpath.py", line 153, in _check_arg_types
(funcname, s.__class__.__name__)) from None
TypeError: join() argument must be str or bytes, not 'NoneType'```
The call to os.makedirs is probably returning None
Have all arguments to os.path.join be strings.
brb
Hoydle.
I would ask myself, "Do I care?"
What did they do?
๐ค
@dense ibex The event as a whole is of a higher purpose than the competitions of which it is comprised. There is a darkness that lives in the world and it aims itself at those who are other. Torches light the way, chase away shadows and, in a pinch, make a handy bludgeon. You could be right every single time with respect to the smaller picture stuff but be missing the forest for the trees and be completely and utterly wrong with respect to the larger picture. The event sends a signal that can change the world for the better, but only if we let it.
As to the smaller picture...I think most of us lack standing. Not all opinions are valid nor ought to be of consequence.
Yahoy, Rabbit.
Beg pardon?
Yup yup.
Lurky lurk lurk.
By travel, do you mean a light stroll to the home office?
Or actual travel?
Hmmmm.
Mingle mingle.
๐คฎ
I know.
I think he may have mentioned he would be.
I don't recall.
Do you guys get days off prior to Thanksgiving, too, or something, kinda sorta? Like is it a "Yeah, it's Thanksgiving. Most of y'all are shirking off anyway, so let's just call it."
?
ive think ive fixed it but it gives me an error like this
import cv2, sys, numpy, os
size = 4
fn_haar = 'data/haarcascade_frontalface_default.xml'
fileExists = os.path.exists('images/')
fol=0
path = 'images/'
images_path = os.makedirs(path)
os.path.join(path, os.makedirs('images/subfolder' + str(fol+1)))
print(images_path)
images_path.mkdir(exist_ok=True)
It's blatant cheating though am I wrong?
And it's supposed to be a competition to show who is most skilled yes there is other historical meaning
Traceback (most recent call last):
File "C:/Users/USER/PycharmProjects/FaceRecog/scan-face.py", line 11, in <module>
os.path.join(path, os.makedirs('images/subfolder' + str(fol+1)))
File "C:\Python\Python379\lib\ntpath.py", line 115, in join
genericpath._check_arg_types('join', path, *paths)
File "C:\Python\Python379\lib\genericpath.py", line 153, in _check_arg_types
(funcname, s.class.name)) from None
TypeError: join() argument must be str or bytes, not 'NoneType'
As before. Your os.makedirs call is returning None.
os.path.join("images/", None)
That's what Python is seeing
and why it's complaining
Hi
os.path.join("images/", None) this doesnt work either
Not everything is a suggestion.
sorry sir '
can u fix the code ?
os.makedirs('images/subfolder' + str(fol+1)) This, in addition to performing its function, is the object, None.
That None being given to os.path.join
Hence TypeError: join() argument must be str or bytes, not 'NoneType'
What's the path you want to create?
Give os.path.join the relevant strings that represent the paths you need for that.
i want to create a subfolder inside the folder 'images' everytime i run the program
Have you used the help channel system, before?
okay sorry for interrupting you
V8 Vegetable Juice, sometimes just called V8, is a trademarked name for a number of beverage products sold worldwide that are made from eight vegetables, or a mixture of vegetables and fruits. Since 1948, the brand has been owned by the Campbell Soup Company.The original V8 vegetable juice was tomato-based and got its name from the fact that it ...
It's...okay.
Does it use more UDP?
๐
I am pretty sure it's always on Thursday
white man savior complex
where can i find someone to talk
6 underground - this is the movie i was thinking of, with ryan reynolds
see #voice-verification for instructions
WHAT WHY BULLIES
cac scores
Coronary artery calcium (CAC) scoring, also called a coronary calcium scan, is a test that measures the amount of calcium in the walls of the heart's arteries.
when is thanksgiving?
Buttmobile?
The only time I've used Windows recently is to exit it.
is there any free django courses
Iโd ont why
My mic wonโt work
I can hear you
Umm
Oh gosh
Ok
This is hard
But
I am gonna try my own code from what I learnt
Tkinter
gonna eat ppรฅ
I did that
And still facing same issues
And donโt why
Can you hear me
bonjour
i think you're missing a function name before the () there
Like where
because that right now is a tuple with keyword args (not valid)
and tuples also don't have a .place method
^ add your function name which you wanted to give login and other things to before that opening (
Why does my colour donโt show up
Bcuz
Is it bcuz
Replit has an worst
Tkinter
Support
Thanks
But
You probably have more money than me, to be perfectly honest ๐
The colour wonโt show up
Perfectly
Hey
Bcuz of replit
Has worst tkinter support?
๐คทโโ๏ธ i don't use either of replit or tkinter so no idea
Um
Who uses real python
Here
Bucz
Replit just wonโt show th colours properly
Can someone test it
Hey
I just ate garlic bread for snacks
Lol
Ok
Anyways
Is there any better ide than repl
For ios
online ones, not really
@dense ibex ls -A && rm -rf .git
No more git?
@gentle flint i dont want to bother you but could you help me maybe with a problem im having
@gentle flint Im making a chess program, i have already set up the board, made by a 2d list, with all the pieces and made 2 dictionaries with ranks and files, but with that coordinate system how could i make it so when the user writes: e2 to e4, the pieces would move
Could you repeat what this island is?
รle de Brรฉhat
Thanks!)
help him
to get all the houses to get aligned
public class ABR {
int valeur;
ABR gauche;
ABR droite;
public static void main(String[] args) {
ABR tree = new ABR(31);
}
void ABR() {
this.gauche = null;
this.droite = null;
}
void ABR(int valeur) {
this.valeur = valeur;
this();
}
}
Le flamand franรงais (autonyme : Fransch Vlaemsch, /frรฃnส flamส/) ou flamand de France (Vlaemsch van Frankryke, /vlamส fรฃn frankrik/) est la variรฉtรฉ du flamand occidental qui est traditionnellement utilisรฉe en France dans le dรฉpartement du Nord. D'autre part, ce dialecte est subsistant dans quelques localitรฉs du Pas-de-Calais au XIXe siรจcle.
D'ap...
@unborn storm
get ATNT
@olive talon maybe you may disable you mic and stop these
yes
!pypi yfinance
:incoming_envelope: :ok_hand: applied mute to @wise minnow until <t:1637826439:f> (9 minutes and 59 seconds) (reason: duplicates rule: sent 4 duplicated messages in 10s).
Wait more
you need 5 more messages I believe
if self.killbot:
self.find_sarah_connor()```
I'll add it to my notebook I'm keeping of all the potentially silly and embarrassing things you say. Don't let that make you self conscious or anything, though
flask api website displays player data
client sends url to flask website to update player data
if I make a change to client and make a release on the client github page the client on the clients computer downloads release and replace it
One too many.
what will that even mean?
yea i recognised that
i was just asking what would one too many mean
"I have all these things. I have one too many. Now everything is on fire."
okay but i still can't get what this means ๐คทโโ๏ธ
oh wait i get it
my english is not good
could someone help me with an error in my code?
show your code
#ban checker
if message.content.startswith("+ban"):
username = message.content.split(" ")[1]
async def check(username, session):
async with session.get(f"https://shop.2b2t.org/checkout/packages/add/1994771/subscription?ign={username}") as request:
output = f"{Fore.LIGHTBLACK_EX}<{Fore.LIGHTBLUE_EX}{username}{Fore.LIGHTBLACK_EX}> " + (" " * (16 - len(username)))
if request.headers["Connection"] != "keep-alive":
print(Fore.WHITE + f"RATE LIMITED: {username} (Connection: {request.headers['Connection']})")
return
if "Set-Cookie" in request.headers:
response = request.headers["Set-Cookie"].split("; ")[0][8:]
# TODO: Add a switch statement but need to wait for python 3.10
if (response == "XRxlbOYKOzX5HYSsk7VO79kWPpwubYetzyPeyIphpZPxM%2BTo3%2BDuWHTzXALpQCz%2FyK8QCd0VpduRCEow0JIFDg%3D%3D"):
output += Fore.LIGHTYELLOW_EX + "Unable to find a player with that username"
elif (response == "AeSOVxjOOOMBhHAGYvcmCdJEE6pUQYonWMSJbkGLdUV2oNeagFeBuFUSV3NdTnIa"):
output += Fore.YELLOW + "That is not a valid username"
elif (response == "deleted"):
output += Fore.RED + "That user is banned"
banList.append(username)
else:
output += Fore.GREEN + "Unbanned"
unbanList.append(username)
await message.channel.send(output) ```
theres my code
Traceback (most recent call last): File "/home/container/.local/lib/python3.10/site-packages/discord/client.py", line 343, in _run_event await coro(*args, **kwargs) File "/home/container/2bstats.py", line 242, in on_message if request.headers["Connection"] != "keep-alive": NameError: name 'request' is not defined
but i get this error
you have mis indented a block
which block?
[offtopic] - anyone faced this error
Xdebug: [Step Debug] Could not connect to debugging client. Tried: host.docker.internal:9003 (fallback through xdebug.client_host/xdebug.client_port)
?
#ban checker
if message.content.startswith("+ban"):
username = message.content.split(" ")[1]
async def check(username, session):
async with session.get(f"https://shop.2b2t.org/checkout/packages/add/1994771/subscription?ign={username}") as request:
output = f"{Fore.LIGHTBLACK_EX}<{Fore.LIGHTBLUE_EX}{username}{Fore.LIGHTBLACK_EX}> " + (" " * (16 - len(username)))
if request.headers["Connection"] != "keep-alive":
print(Fore.WHITE + f"RATE LIMITED: {username} (Connection: {request.headers['Connection']})")
return
if "Set-Cookie" in request.headers:
response = request.headers["Set-Cookie"].split("; ")[0][8:]
# TODO: Add a switch statement but need to wait for python 3.10
if (response == "XRxlbOYKOzX5HYSsk7VO79kWPpwubYetzyPeyIphpZPxM%2BTo3%2BDuWHTzXALpQCz%2FyK8QCd0VpduRCEow0JIFDg%3D%3D"):
output += Fore.LIGHTYELLOW_EX + "Unable to find a player with that username"
elif (response == "AeSOVxjOOOMBhHAGYvcmCdJEE6pUQYonWMSJbkGLdUV2oNeagFeBuFUSV3NdTnIa"):
output += Fore.YELLOW + "That is not a valid username"
elif (response == "deleted"):
output += Fore.RED + "That user is banned"
banList.append(username)
else:
output += Fore.GREEN + "Unbanned"
unbanList.append(username)
await message.channel.send(output) ```
like that?
it should be more like this
!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.
could you paste that code in here
#ban checker
if message.content.startswith("+ban"):
username = message.content.split(" ")[1]
async def check(username, session):
async with session.get(f"https://shop.2b2t.org/checkout/packages/add/1994771/subscription?ign={username}") as request:
output = f"{Fore.LIGHTBLACK_EX}<{Fore.LIGHTBLUE_EX}{username}{Fore.LIGHTBLACK_EX}> " + (" " * (16 - len(username)))
if request.headers["Connection"] != "keep-alive":
print(Fore.WHITE + f"RATE LIMITED: {username} (Connection: {request.headers['Connection']})")
return
if "Set-Cookie" in request.headers:
response = request.headers["Set-Cookie"].split("; ")[0][8:]
# TODO: Add a switch statement but need to wait for python 3.10
if (response == "XRxlbOYKOzX5HYSsk7VO79kWPpwubYetzyPeyIphpZPxM%2BTo3%2BDuWHTzXALpQCz%2FyK8QCd0VpduRCEow0JIFDg%3D%3D"):
output += Fore.LIGHTYELLOW_EX + "Unable to find a player with that username"
elif (response == "AeSOVxjOOOMBhHAGYvcmCdJEE6pUQYonWMSJbkGLdUV2oNeagFeBuFUSV3NdTnIa"):
output += Fore.YELLOW + "That is not a valid username"
elif (response == "deleted"):
output += Fore.RED + "That user is banned"
banList.append(username)
else:
output += Fore.GREEN + "Unbanned"
unbanList.append(username)
await message.channel.send(output)
thanks
container@pterodactyl~ Server marked as running...
File "/home/container/2bstats.py", line 242
if request.headers["Connection"] != "keep-alive":
^```
IndentationError: unindent does not match any outer indentation level
it seems like you are using different type of indentation type i am using 1 tab = 4 space
Hey @orchid stone!
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:
@whole bear
# import package
import turtle
# method to action
def fxn(x,y):
# some motion
turtle.goto(x, y)
# turtle speed to slowest
turtle.speed(1)
# motion
turtle.fd(100)
# allow user to click
# for some action
turtle.onclick(fxn)
import turtle
screen = turtle.Screen()
draw = turtle.Turtle()
draw.penup()
def button1(x, y):
print(x, y)
if 0 < x < 100 and 0 < y < 100:
print('Button Clicked!')
def draw_button1():
draw.goto(0, 0)
draw.pendown()
draw.goto(100, 0)
draw.goto(100, 100)
draw.goto(0, 100)
draw.goto(0, 0)
draw.penup()
draw_button1()
screen.onclick(button1)
screen.mainloop()
@trim pulsar aren't you streaming ? I don't know ,I can hear keyboard tapping sound only.
import turtle
import random
rsp = turtle.Turtle()
scr = turtle.Screen()
rsp.speed(0)
cursorSize = 20
def menu():
def rtclick(x, y):
if -150 < x < -50 and -50 < y < 50:
return True
scr.title("Rock Paper Scissors - Simon ")
rsp.penup()
rsp.goto(-100, 0)
rsp.dot(100, "green")
rsp.goto(-100, -15)
rsp.color("white")
rsp.write("Start", align="center", font=("arial", 20, "bold"))
rsp.goto(100, 0)
rsp.dot(100, "red")
rsp.goto(100, -15)
rsp.write("Quit", align="center", font=("arial", 20, "bold"))
rsp.goto(0, 120)
rsp.color("black")
rsp.write("Rock Paper Scissors", align="center", font=("arial", 50,"bold"))
rsp.goto(120,110)
rsp.write("by Simon", align="left", font=("arial", 10,"bold"))
scr.onclick(rtclick)
scr.listen()
rsp.hideturtle()
turtle.mainloop()
while True:
menu()
if menu() == True:
print("It is true!")```
nice
does anyone want to fix my code?
wanna call me so i can maybe see what is going worng
sure
add me
I don't know in the rtclick() function's the first if statement condition is used for what?
?mol
can we use recursive function here?
bro , can you state the problem here? So,we can actually try , I can't see what are you doing and problem is not clear.
its not returning the menu function as true as it should, instead it is not doing anything
so ,is it like- there is no error and not returning anything?
but I can see here, menu function doesn't have any return value. only rtclick() function have return value if certain condition matches in the if statement.
exactly and im trying to return the return value from the rtclick to the entire menu() function
ohhhh, now I got it.
so what am i doing
okay, i'm going to my shell and try to solve this problem ..
please ping or dm me when/if you solve the problem thanks!
Bro, You can try this , let me know if it works.
at the main function return,you can add the function you've defined rtclick() with values.
ok ill try
this is where I currently am
baking paper
Amsterdam
๐
๐
There we go
๐
White torture, often referred to as โwhite room torture,โ is a type of psychological torture technique aimed at complete sensory deprivation and isolation. A prisoner is held in a cell that deprives them of all senses and identity. It is particularly used in Iran; however, there is also evidence of its use by the Venezuelan and the United States...
basically my room without furniture
My friend Justin let me borrow his Mink Abby while my mink are on maternity leave. Abby and my dog Onsa catch more rats that we expected to find in such a little area!
To buy my book, hat, or T-shirt follow this link... https://the-mink-man.myshopify.com/
If you would like to help support my channel another way, this is a link to my Patreon ac...
seen it
happy gravy day ! gravy is the main part in any thanksgiving meal
What
๐ Nice!
Hello @digital olive, You don't quite meet the criteria to voice-verify yet, as you haven't been in the server for three days.
Although I've removed the auto-mute that was applied by the bot.
No worries
hi
or a way to not have 18 bots in a server
๐
@uneven yarrow
This is a compilation of the top 1000 gifs/videos from the subreddit r/happycowgifs!๐๐๐๐
This project was mainly an excuse for me practice coding, and learn some new libraries, all while creating something awesome that lots of people could enjoy๐ฅณ๐ฅณ๐ฅณ๐ฅณ. Apologies if you encounter any ads, that wasn't up to me but rather due to claims made on some ...
Sufganiyah (Hebrew: ืกืืคืื ืืื or ืกืืคืื ืืโ [หsufษกaniหja]; plural: sufganiyot, Hebrew: ืกืืคืื ืืืชโ [หsufษกaniหjot]) is a round jelly doughnut eaten in Israel and around the world on the Jewish festival of Hanukkah. The doughnut is deep-fried in oil, filled with jam or custard, and then topped with powdered sugar. The doughnut recipe originated in Euro...
Dulce de leche (Spanish: [หdulse รฐe หletสe/หdulฮธe รฐe หletสe]; Portuguese: doce de leite IPA: [หdosi dสi หlejtสi]), also known as caramelized milk or milk jam in English, is a confection from Latin America prepared by slowly heating sugar and milk over a period of several hours. The resulting substance, which takes on a spreadable, sauce-like con...
So everybodyโs just sharing pic of desserts?
yes
I made these
I think so
ask Yali
Oooh u made croissants
yep
Thatโs nice. Iโve always wanted to make those but theyโre kinda intimidating
Reaaly ๐ฎ
Then I shall try very soon
What was the first
Butter is super expensive here so thatโs another reason why I hesitate
I wonder if itโll work with margerine
;-;
And less healthier too
Is it โless healthyโ or โless healthierโ ๐ค
less healthy
healthier means more healthy
so less healthier would mean less more healthy
It could also be more less healthy
more(less_healthy)
in python, yes; in english, no
can somebody help me out in #ot0-psvmโs-eternal-disapproval
sad
yes
c++
n = 3 in that case
I want it for i<3
ignore the ; i wrote it in here
ignore n
maybe something to do with refernces or pointers?
But is it sustainable
yeah it does run 3 times
bitcoin emerged
with its many faces
from the depths of silicon
through copper traces
with a flashing of bits and bytes
Ooh back in the days poets make really good money
Would you guys consider lyricists poets? ๐ค
What makes a poem anyway
Lyrics rhyme
Ryme
But you can just add melody and instrumentals to a poem and make it music. ๐คท๐ปโโ๏ธ
So then the poem will be the lyrics
Idk man
Cute
to be or not to be *guitar riff
Teyine
๐คฏ
Pfft
Byee
x)
can i ask you a question ?
when my program is finished, it stop immediatly do you are a solution ?
Marcin
Afk brb
Brand GNU.
@uncut meteor I am all grown up now
The colours are sick
wym
So how have you been @uncut meteor
it's been a bit since we've last talked
about a 3
nvm
โฆ๐ด๐คค๐ช๐ต๐ค๐คข๐คฎ๐คง๐ท๐ค๐ค๐ค๐ค ๐๐ฟ๐น๐บ๐คก๐ฉ๐ป๐โ ๏ธ๐ฝ๐พ๐ค๐๐บ๐ธ๐น๐ป๐ผ๐ฝ๐๐ฟ๐พ๐คฒ๐คฒ๐ป๐คฒ๐ผ๐คฒ๐ฝ๐๐พ๐คฒ๐ฟ๐๐๐ป๐๐ผ๐๐ฝ๐๐พ๐๐ฟ๐๐๐ป๐๐ผ๐๐ฝ๐๐พ๐๐ฟ๐๐๐ป๐๐ผ๐๐ฝ๐๐พ๐๐ฟ๐ค๐๐๐ป๐๐ผ๐๐ฝ๐๐พ๐๐ฟ๐๐๐ป๐๐ผ๐๐ฝ๐๐พ๐๐ฟ๐๐๐ป๐๐ผ๐๐ฝ๐๐พ๐๐ฟโโ๐ปโ๐ผโ๐ฝโ๐พโ๐ฟ๐ค๐ค๐ป๐ค๐ผ๐ค๐ฝ๐ค๐พ๐ค๐ฟ๐ค๐ค๐ป๐ค๐ผ๐ค๐ฝ๐ค๐พ๐ค๐ฟ๐ค๐ค๐ป๐ค๐ผ๐ค๐ฝ๐ค๐พ๐ค๐ฟโ๏ธโ๐ปโ๐ผโ๐ฝโ๐พโ๐ฟ๐ค๐ค๐ป๐ค๐ผ๐ค๐ฝ๐ค๐พ๐ค๐ฟ๐ค๐ค๐ป๐ค๐ผ๐ค๐ฝ๐ค๐พ๐ค๐ฟ๐๐๐ป๐...
@grizzled zenith
๐
@uncut meteor ๐ฃ๏ธ
"Code like an Egyptian..." ๐ต
Good mornin
or evening
sorry for the trashy mic
if you're working at retail I don't think it'll be a chill day
considering it's Black Friday and all
cya
sooo, how's the weather
Warm
@gray tapirhi, onlly english sorry
for us we had a very short period of sleet in the morning because of scattered snow showers
Is that sunmi?
yeah we got like a shower of ice pellets in the morning
okay๐
first time of the year
yup sunmi queen
wait @somber heath you said it's windy for you right?
In the profile photos
I heard that there was some powerful storm that's gonna impact Britain or is it just cold air
idk
that's what I heard from the TV station tho
Oooo i really like TAIL
ahh
i do too, but pporappippam has my heart forever pretty much
๐
์ ๋ฏธ(SUNMI) - ๋ณด๋ผ๋น ๋ฐค (pporappippam) ๋ฎค์ง๋น๋์ค(MV)
๐ฟ ์ ๋ฏธ(SUNMI) - ๋ณด๋ผ๋น ๋ฐค (pporappippam)
๐ง Melon: http://kko.to/Uj_4WTDYH
๐ง genie: http://genie.co.kr/88KYK5
#์ ๋ฏธ #SUNMI
#๋ณด๋ผ๋น๋ฐค #pporappippam
โถSUNMI Official
SUNMI FB: https://www.facebook.com/officialsunmi/
SUNMI FB Group: https://www.facebook.com/groups/officialsunmi/
SUNMI TW: https://twitter.com/officia...
yes
the 10 minute version of all too well is amazing
awesome for flights I hear
yep but for example a two hour flight is only 12 listens
very convenient
Itโs LALALAY for me
hmm fair point PSVM
I usually find a song and play it on replay
then go to the next song
Same. I always have 3 songs on repeat every other week
Is thAt Hemlock
Oh i thought hemlock was here
Your avatar is from that song, I guess.
yup
all too well, I knew you were trouble, and 22 are all on repeat rn
I'm pretty much a bandwagon when it comes to music
I thought you're chinese. ๐ Lol
Is there anyone can help me? I'm lost. I don't know the topic of discussion. Most Probably I've missed it.
Siren is alright. As for black pearlโฆIโm not really familiar with the b-sides.
Then Iโll have a listen.
I gotchu i gotchu
Yeaaa thatโs rly cool tho
curves, black pearl
since it's quite quiet - what are your all's favorite beverage
https://open.spotify.com/track/1A3T3npKsrElQTjTEcr3LR?si=fa7f0aa70dfe4d6a and a collab with ed sheeran, who knows why
๐ค๐ป
I think itโs a warner music korea thing. They did something with chanmina, jamie, saweetie and doja cat a while back. It was reeeally nice.
https://youtu.be/mQvhn_LvxA0 the rap parts were nuts
#JAMIE #CHANMINA #BestFriend
๐ฅJAMIE, CHANMINA์ Best Frined ๋ น์ ๋นํ์ธ๋ ํ์ฅ ๊ณต๊ฐ๐ฅ
๐ญ์ค์ํฐ, ๋์ ์บฃ, ์ ์ด๋ฏธ, ์ฐฌ๋ฏธ๋, ํ์ฌ ๊ฐ์ฅ ํซํ 4๋ช ์ ์ํฐ์คํธ๊ฐ ํจ๊ปํ Best Friend๋ฅผ ์ง๊ธ ๋ฐ๋ก ์์์ฌ์ดํธ์์ ๋ง๋๋ณด์ธ์๐ญ
๐ฅJAMIE, CHANMINA 'Best Friend' Behind The Studio๐ฅ
๐ญ 'Best Friend' by 4 of the baddest artists, Saweetie, Doja Cat, JAMIE, and CHANMINA are now available on all pla...
i like jamie-numbers
Enjoying my vacation
what's a book
I'm planning on buying Dune this Christmas so that's on my read list
I just read research papers unfortunately lol
Ooh iโm 1/3 through the book
But iโve put it on pause. Now iโm reading Asimovโs Foundation.
What do u research?
the last book i read was oryx and crake, and it was alright
Fantasy?
uhh, dystopian. it's by margaret atwood
the martian is really good
more on theoretical computer science
the maths side at least
Yeah it was reaaallly nice. But project hail mary takes the cake for me.
Sqlmodel?
did you watch the hulu series?
There has currently not been any work done on improving the performance of Prisma Client Python queries, this is something that will be worked on in the future and there is room for massive improvements.
I havenโt ๐ฆ thereโs no hulu hereโฆ but Iโve watched some clips on youtube
oo it's good.
gets a bit mediocre as seasons go on
but early seasons are very good, very eerie
hi can anybody tell me how to install python idle in linux!
like its avm in my pc
vm = virtual machine
sudo apt update
sudo apt install python3.9
Yeah even watching the clips was very disturbing. I do not want to live in a world like that.
Aww
So did u end up going alone?
You may need to add deadsnakes PPA too, if you haven't already ```bash
sudo apt install software-properties-common
sudo add-apt-repository ppa:deadsnakes/ppa

stupefied or excited by a chemical substance (especially alcohol)


.aoc
**```
.adventofcode
**Can also use:** `aoc`
*All of the Advent of Code commands.*
**Subcommands:**
**`about `**
*Learn about Advent of Code*
**`countdown `**
*Return time left until next day*
**`join `**
*Learn how to join the leaderboard (via DM)*
**`stats `**
*Get daily statistics for the Python Discord leaderboard*
**`subscribe `**
*Notifications for new days*
.aoc count
The Advent of Code event is not currently running. The next event will start in 4 days.
4 days.!!
.aoc stats
Day โญ โญโญ | %โญ %โญโญ
================================
1) 0 0 | 0.00% 0.00%
2) 0 0 | 0.00% 0.00%
3) 0 0 | 0.00% 0.00%
4) 0 0 | 0.00% 0.00%
5) 0 0 | 0.00% 0.00%
6) 0 0 | 0.00% 0.00%
7) 0 0 | 0.00% 0.00%
8) 0 0 | 0.00% 0.00%
9) 0 0 | 0.00% 0.00%
10) 0 0 | 0.00% 0.00%
11) 0 0 | 0.00% 0.00%
12) 0 0 | 0.00% 0.00%
13) 0 0 | 0.00% 0.00%
14) 0 0 | 0.00% 0.00%
15) 0 0 | 0.00% 0.00%
16) 0 0 | 0.00% 0.00%
17) 0 0 | 0.00% 0.00%
18) 0 0 | 0.00% 0.00%
19) 0 0 | 0.00% 0.00%
20) 0 0 | 0.00% 0.00%
21) 0 0 | 0.00% 0.00%
22) 0 0 | 0.00% 0.00%
23) 0 0 | 0.00% 0.00%
24) 0 0 | 0.00% 0.00%
25) 0 0 | 0.00% 0.00%
Okay! You have been subscribed to notifications about new Advent of Code tasks. You can run .adventofcode unsubscribe to disable them again for you.
WWWBrowser is a prototype WWW Browser implemented in the functional programming language Haskell using the Fudget Library.
โ ๏ธ
my old school still has a python 2 course xD
poetry export -f requirements.txt --output requirements.txt
just run this and make rabbit happy
Thatโs fine
Yea, that's how we pull reqs into our docker containers
Error: Cannot find module 'react-is'
at Function.Module._resolveFilename (internal/modules/cjs/loader.js:581:15)
at Function.Module._load (internal/modules/cjs/loader.js:507:25)
at Module.require (internal/modules/cjs/loader.js:637:17)
at require (internal/modules/cjs/helpers.js:20:18)
at Object.<anonymous> (/home/github/actions-runner/_work/boron/boron/openapi/node_modules/redoc-cli/node_modules/styled-components/dist/styled-components.cjs.js:1:207)
at Module._compile (internal/modules/cjs/loader.js:689:30)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:700:10)
at Module.load (internal/modules/cjs/loader.js:599:32)
at tryModuleLoad (internal/modules/cjs/loader.js:538:12)
at Function.Module._load (internal/modules/cjs/loader.js:530:3)
internal/modules/cjs/loader.js:583
throw err;
๐ฆ
npx npkill does it tho i think
I may also ask you to wait to delete your module, so that the chaos from each deletion is separated by a few weeks to maximize the impact.
does npkill say that? ๐ฎ
its supposed to be used to remove node modules folders not being used anymore
@vivid palm Sushi isnt good in north dakota ๐ฆ
cause it's north dakota lmfao
They try to sell caviar up here
@amber raptor I pre order steam deck also the 600 one
I like what it did for linux gaming in general
Secret Hitler only looks bad on you if you keep winning as hitler
^ True that's a good site
@dense ibex taste differs a bit in different regions as well tho
๐ค we have veg and fish burgers which are pretty good.... we don't really eat beef or pork in india so
pork too
really? i figured that would mainly be a kashmir thing
yeah we don't eat either of those for the most part
there's ofc some families that do but its super rare
they probably went to america lol
we don't even eat turkey much xD
i've never eaten it neither have i ever heard of anyone around me eating turkey
yes i'm gr8 at england ๐
Just trying to help
ik just joking
I only get it right after thanks giving because it gets super super cheap
hahah yeahthink o fit as a after holiday sale with all the left overs
rather i still have no idea what it is except people eat turkey and give each other shit
most people dont lol but its a day off typically or extra pay to work
oh nice 
most indian holidays are just based on some kinda god's tale from one of the millions we have
All noodles are pasta but not all pasta are noodles in america. For something to be legally a noodle it has to be 5.5% whole egg or more
i can't england again what i just typed above makes sense but also doesn't to me lol
i guess xD
i'm just happy i finally finished my build script to set up my vim config and plugins on any system
i havent gotten fast enough to need vim
i don't need it
but for me its just fun to use and it can help do so much in such simple ways once you learn it
i can probably code about just as fast on vs code though i'd need plugins there to handle some things for me which in vim i can just use vimscript
once i become a fulltime programmer I will probably do it I just cant use it at work till i convince them to get me a profile
i just attach vim like movements plugin
to vs code
or in pycharm
i still do that for typescript and javascript
i mean vscode's tooling for builtin jsdoc, emmet, tsconfig, plugins for prettier and eslint, etc
just make it so good for typescript and javascript
Fastapi is nice. nexjs just got a great upgrade
yeah i'm trying out next js 12 rn its nice
the rust compiler is definitely faster lol
yeah thats a great thing
I have been need to go through the conference https://www.youtube.com/watch?v=dMBYI7pTR4Q&list=PLBnKlKpPeagnJYpc5geAHU40ld5hk8i82
@woeful salmon Haha
@woeful salmon the speed buff on image loading in nextjs is nice also, it looks slick
nextjs 12
ah right cuz they change the image size according to viewport and render without blocking
Yep
๐ altho that's solving a non-existent problem depending on how you work with images in general
things like picture and imgset could already do similar things without js
Yeah but the more we dummy proof things the better
Hi @leaden coral I hear you touching your mic
yes!
@whole bear php = xss attack
eggzactly, theres no wae php good
I remember it being on most intro to hacking post in 2007. It was considered skiddie level
LMAOOOO
II didnt knew what skiddie was, looked it up and its interesting that this word exists
reminds me of so many kids
scroldy is for boomers that try to mash code
geez where do u learn these from ๐
Use to be an edgy teen with a net connection
lmao
noice
Shoulda done something with it
Now i am though
what r u?
CEO of Google?
Ha Quality Engineer at a food factory
lmaifjosifod
I got back into python programming to beef up my data intake and excel skills
"Do you do R language"
ah i see
R is pretty easy tbh if you know excel its easy gets even easier if you know python
my experience is a lil too insufficient to opine on it
im horrible in python and I have average knowledge in R
I have only played around in it, not enough to help anyone really. Have you tried stack exchange?
no
int& ivlist::operator[](int index){
ivnode* prev = nullptr;
ivnode* curr = pHead;
for(;curr != nullptr; prev = curr, curr = curr->next){
if(curr->index > index){
if(prev == nullptr) prev = pHead;
prev = new ivnode(index, 0, curr);
return prev->value;
}
if(curr->index == index)
return curr->value;
}
prev = new ivnode(index, 0, nullptr);
return curr->value;
};
int& operator[](int index);
// modifying indexing operator
// if index exists in the list returns reference to the ivnode value
// if index does not exist: creates new node with (index, 0) pair
// and returns reference to the value in newly created node
if(prev == nullptr) prev = pHead;
prev = new ivnode(index, 0, curr);
Jesus im about to bash my head into a wall I have to do an assignment in Matlab and its such a shyt language
Learn algorithms together on binarysearch. Create a room, invite your friends, and race to finish the problem.
thumbnail
Hi
The Functions the Twitter bot have is
โ Able to tweet something,
โ Like the tweet on some hashtags which are provided as an list
โ and also unlike the liked tweets
these are the some of the features that the Twitter bot have
๐ต Now I am seeking some ideas that I can improve this little bit.
๐ Here is the module link: https://pypi.org/project/simpletwitter/
You said you were seeking ideas for inclusion. I don't really care nor know much about Twitter bots, so my ideas on the subject may be limited. The idea for any kind of service like this is that it should fill a niche...fulfill a need. Ideally, but not necessarily, something novel. It needn't be practical. It could be frivolous.
Perhaps people might play some kind of game. Perhaps people could Tweet photos at it and it transforms them in some way.
Maybe it uses a machine learning algorithm to generate poetry or philosophy.
Hat facts.
As you said that the ideas may not be novel I have an idea that,
โ
We can use NLP to summarize the tweets that translate them into some other language for those who don't know English or the language of that particular tweet.
โ
Also as per your idea, we can also do that too like Photo modeling and facts
Go nuts
Do you have any idea of something related that will be improving the Twitter analytics of the particular user by using this Bot Module?
Not really.
Ok but thanks for you valuable time @somber heath ๐
Oh
@frozen jetty
Yeah i see it
@frozen jetty
What did u say
But i am an old member
I just am not active on this servee
server
are you a old member of discord or here?
tnx
Act 1 of William Shakespeare's Macbeth, performed at the John F. Kennedy Center for the Performing Arts' Family Theater in 2007, by Weber State University. Stage direction by Tracy Callahan.
We provide 100% OEM Dell laptop key for replacement. All models keyboard key kits come with key cap, hinge clip and rubber cup.
Repair replace your broken faulty loose keyboard key. Brand new fresh keys function keyboard like when you first got the device function, flex cable. Tool Included, Will work perfect, easy install , plug and play. With frame, no backlight. Compatible with Dell Inspiron 15 3000 3541 3542 3543 3551...
7567
Repair replace your broken faulty loose keyboard key. Brand new fresh keys function keyboard like when you first got the device function, flex cable. Tool Included, Will work perfect, easy install , plug and play. With frame, no backlight. Compatible with Dell Inspiron 15 3000 3541 3542 3543 3551...
When we saw the classic "Zener ESP Card" designed keyboard in the awesome CHVRCHES video for the song "How Not To Drown" (ft Robert Smith!) we were smitten. So goth! So ...
https://www.pythondiscord.com/resources/ @vivid igloo
We're a large, friendly community focused around the Python programming language. Our community is open to those who wish to learn the language, as well as those looking to help others.
@tall bramble !voice
any gods here?
Traceback (most recent call last):
File "C:/Users/USER/PycharmProjects/FaceRecog/train-scan.py", line 40, in <module>
recognize.train(x_train, np.array(y_labels))
cv2.error: OpenCV(4.5.4-dev) D:\a\opencv-python\opencv-python\opencv_contrib\modules\face\src\lbph_faces.cpp:362: error: (-210:Unsupported format or combination of formats) Empty training data was given. You'll need more than one sample to learn a model. in function 'cv::face::LBPH::train'
i keep getting this error
https://www.toptal.com/developers/hastebin/agijeyafuk.lua
this is the code
@stark shuttle Please don't try to ping @everyone or @here. Your message has been removed. If you believe this was a mistake, please let staff know!
for help from gods, I suggest you visit your local temple
i now shall be known as Eki Eki Eki Eki P'tang Zoo Boing
Hey @whole bear!
It looks like you tried to attach file type(s) that we do not allow (.jfif). We currently allow the following file types: .gif, .jpg, .jpeg, .mov, .mp4, .mpg, .png, .mp3, .wav, .ogg, .webm, .webp, .flac, .m4a.
Feel free to ask in #community-meta if you think this is a mistake.
I love dry aged steaks and making awesome steak experiments is my passion and today as my Aussie viewers requested I am making the vegemite 35 days dry age experiment. When I did this happened.
Try vegemite: https://amzn.to/2ZlfILE
- Watch Other Episodes *
Nutella Dry Age: https://youtu.be/tZa6xxhtWXw
Peanut Butter Dry Age: https://youtu.be/34...
Sintering or frittage is the process of compacting and forming a solid mass of material by heat or pressure without melting it to the point of liquefaction.
Sintering happens as part of a manufacturing process used with metals, ceramics, plastics, and other materials. The atoms in the materials diffuse across the boundaries of the particles, fus...
๐ง
and we don't celebrate that