#voice-chat-text-0

1 messages Β· Page 13 of 1

whole bear
#

dogekek sry that was silly of me i guess lol πŸ˜‚

#

oh alright

#

yeah understandable thank you mate

neat acorn
#
for x in range(100):
  if (x % 3 == 0)
            print("fizz")


  elif (x % 5 == 0):
                print("buzz")

  elif (x % 3 == 0 and x % 5 == 0):
       print("fizz, buzz")
  else:
    print('eleminated')
surreal wyvern
#

!e

for x in range(100):
  if (x % 3 == 0)
            print("fizz")


  elif (x % 5 == 0):
                print("buzz")

  elif (x % 3 == 0 and x % 5 == 0):
       print("fizz, buzz")
  else:
    print('eleminated')
wise cargoBOT
#

@surreal wyvern :x: Your 3.11 eval job has completed with return code 1.

001 |   File "<string>", line 2
002 |     if (x % 3 == 0)
003 |                    ^
004 | SyntaxError: expected ':'
neat acorn
#

!e

wise cargoBOT
#
Missing required argument

code

#
Command Help

!eval [python_version] <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.

If multiple codeblocks are in a message, all of them will be joined and evaluated, ignoring the text outside of them.

By default your code is run on Python's 3.11 beta release, to assist with testing. If you run into issues related to this Python version, you can request the bot to use Python 3.10 by specifying the python_version arg and setting it to 3.10.

We've done our best to make this sandboxed, but do let us know if you manage to find an issue with it!

surreal wyvern
#

!e
!e

for x in range(100):
  if (x % 3 == 0):
            print("fizz")


  elif (x % 5 == 0):
                print("buzz")

  elif (x % 3 == 0 and x % 5 == 0):
       print("fizz, buzz")
  else:
    print('eleminated')
wise cargoBOT
#

@surreal wyvern :white_check_mark: Your 3.11 eval job has completed with return code 0.

001 | fizz
002 | eleminated
003 | eleminated
004 | fizz
005 | eleminated
006 | buzz
007 | fizz
008 | eleminated
009 | eleminated
010 | fizz
011 | buzz
... (truncated - too many lines)

Full output: https://paste.pythondiscord.com/xohevuhagi.txt?noredirect

lone sun
#

hey i needed help in n queens and knights problem with simulated annealing approach

#

i have a code for n queens with simulated annealing can someone add knights logic in that

wise cargoBOT
somber heath
#

Whoever came in just now, said something, then left, I didn't see who you are or what was said.

#

"[garble] is the best", maybe?

#

Could have been "Mustafa is the best". @lavish rover, people are complimenting you behind your back.

#

I mean, that has actually happened, too, elsewise.

lavish rover
somber heath
#

Perhaps, but that doesn't make it untrue.

lethal thunder
#

@warm hamlet

#

talk here

#

@warm hamlet

warm hamlet
#

yeah bro

lethal thunder
#

!voice

wise cargoBOT
#

Voice verification

Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.

lethal thunder
#

@toxic grove

toxic grove
#

i know

#

it is ezier

#

to send messages here

#

in voice chat 0

#

instead of dms

#

colombia

#

guatamala

#

china or india?

#

@lethal thunder china or india?

#

pakistan?????

#

kazakstan

#

kazakstan @lethal thunder

#

i

#

have

#

to

lethal thunder
#

ur the closest so far

toxic grove
#

get out

#

my map

#

😠

#

is austrailia and oceania difrent continents?

#

YES

#

new zealend is a bost now

#

i know it sounds fake

#

but its true

#

i know

#

what does β€’ You have been active for fewer than 3 ten-minute blocks.

#

@lethal thunder

#

β€’ You have been active for fewer than 3 ten-minute blocks.

#

what it mean

lethal thunder
#

you have to be active on the server for 3 ten-minute blocks

toxic grove
#

what does it mean?

#

?????

#

please let

#

me know

#

in the

lethal thunder
#

be active on the server 3 times

toxic grove
#

form of

#

writing

lethal thunder
#

and you have to be active for longer than ten minutes

toxic grove
#

ok thank you the scrubb lord

#

that

lethal thunder
#

np

toxic grove
#

was

#

good information

#

for me

#

to consume

#

today

lethal thunder
#

i cant tell if you are being sarcastic

toxic grove
#

it is a beutiful day today

#

just copy

#

all

#

the

#

stuff

#

from

#

stack

#

overflow

#

how you forget a

#

FOR LOOOP

#

lool

#

if you memmorise itt goes faster

#

so you should try to memorise

#

it makes coding easier

peak ice
#

``py

somber heath
#

@peak ice I'm struggling to hear and understand, sorry.

peak ice
#
def dselection_sort(a):
    c = a.copy()
    a = c
    n = len(a)
    ini = 0
    for i in range(n):
        for j in range(i + 1, n):

            if a[i] > a[j]:
                temp = a[i]
                a[i] = a[j]
                a[j] = temp

    return c


a = [156, 141, 35, 94, 88, 61, 111]
b = dselection_sort(a)
print(a)
print(b)
#

copy() or slicing list[:] β€”is linear to the number of elements in the list. For n list elements, the time complexity is O(n). Why? Because Python goes over all elements in the list and adds a copy of the object reference to the new list (copy by reference).

surreal wyvern
#
def dselection_sort(a):
    c = []
    a = c
    n = len(a)
    ini = 0
    for i in range(n):
        for j in range(i + 1, n):

            if a[i] > a[j]:
                temp = a[i]
                c[i] = a[j]
                a[j] = temp

    return c


a = [156, 141, 35, 94, 88, 61, 111]
b = dselection_sort(a)
print(a)
print(b)
peak ice
somber heath
#

There's the copy module.

somber heath
#

!e ```py
class MyClass:
def function_or_method(self):
pass

instance = MyClass()

print(type(MyClass.function_or_method))
print(type(instance.function_or_method))

wise cargoBOT
#

@somber heath :white_check_mark: Your 3.11 eval job has completed with return code 0.

001 | <class 'function'>
002 | <class 'method'>
somber heath
#

I am.

#

Because I can.

trail tusk
#

good to see you 😊

somber heath
#

My fingers were feeling left out.

trail tusk
somber heath
#

Let me see if I understand the question. You want to take a list and...break it into pieces?

#

Oh.

#

You want copy.deepcopy.

surreal wyvern
#

He want to break the memory location

trail tusk
#

!e

def dselection_sort(a):
    c = []
    a = c
    n = len(a)
    ini = 0
    for i in range(n):
        for j in range(i + 1, n):

            if a[i] > a[j]:
                temp = a[i]
                c[i] = a[j]
                a[j] = temp

    return c


a = [156, 141, 35, 94, 88, 61, 111]
b = dselection_sort(a)
print(a)
print(b)
wise cargoBOT
#

@trail tusk :white_check_mark: Your 3.11 eval job has completed with return code 0.

001 | [156, 141, 35, 94, 88, 61, 111]
002 | []
somber heath
#

But if you're talking about integers, there'd be no point.

#

Oh, hang on.

#

Well, once I understand what is wanted to be done, quite possibly.

#

So you want the same data, but in a different list?

#

!e py a = [1, 2, 3] print(id(a)) b = a.copy() print(id(b)) print(a) print(b)

wise cargoBOT
#

@somber heath :white_check_mark: Your 3.11 eval job has completed with return code 0.

001 | 139981234514112
002 | 139981234516736
003 | [1, 2, 3]
004 | [1, 2, 3]
somber heath
#

This?

#

Or are you talking about the references within the list as well?

#

Okay.

peak ice
#

but thanks

somber heath
#

Yeah, I saw that, but I was being queried, so...

#

Yet another way is use of the list constructor.

#
a = [1, 2, 3]
b = list(a)```
#

But a.copy() is a nice, Pythonic-feeling sort of way, so mm.

trail tusk
#

!e

def dselection_sort(a):
    c = []
    a = c
    n = len(a)
    ini = 0
    for i in range(n):
        for j in range(i + 1, n):

            if a[i] > a[j]:
                temp = a[i]
                c[i] = a[j]
                a[j] = temp

    return c


a = [156, 141, 35, 94, 88, 61, 111]
b = dselection_sort(a)
print(a)
print('a', id(a))
print(b)
print('b', id(b))
wise cargoBOT
#

@trail tusk :white_check_mark: Your 3.11 eval job has completed with return code 0.

001 | [156, 141, 35, 94, 88, 61, 111]
002 | a 140369922975936
003 | []
004 | b 140369922978688
somber heath
#

Hah. Yeah.

#

You can either replace the variable referencing the list, if appropriate, or you can use the list.clear method.

#

Or you can overwrite with the [:] slice.

#

Using either del or assignment.

trail tusk
#

use this @peak ice

#
def mooo(lst):
    new_lst = []
    while lst:
        new_lst.append(lst.pop(0))
    return new_lst

a = [156, 141, 35, 94, 88, 61, 111]
c = [1, 2, 3]
b = copy(a)
d = copy(c)

print(a)
print(id(a))
print(b)
print(id(b))
print(c)
print(id(c))
print(d)
print(id(d))
somber heath
#

!e ```py
a = [1, 2, 3]
b = a.copy()
a.clear()
print(a)
print(b)

wise cargoBOT
#

@somber heath :white_check_mark: Your 3.11 eval job has completed with return code 0.

001 | []
002 | [1, 2, 3]
somber heath
#

!resources

wise cargoBOT
#
Resources

The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.

knotty marlin
#

test

warped raft
#

hello

#

@nova prawn

somber heath
#

!voice @whole bear

wise cargoBOT
#

Voice verification

Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.

whole bear
#

I won't be able to talk for 3 days it says

#

why would they do that in a coding server though?

#

Oof cant talk yet

#

Thats fair

#

πŸ‘

#

πŸ˜†

#

Welp I might be screwed then

#

I'm having trouble coding rn

#

O_o

#

I'm getting an str error

#

I can

#

πŸ€“

#

Traceback (most recent call last):
File "main.py", line 13, in <module>
print( str(name) + ("will have to practice the language") + adv1 ("to make it easier to ") + verb ("with people.") )
TypeError: 'str' object is not callable

#

I can show the coding i've done so far

somber heath
#

"..."()

whole bear
#

I should probably explain what i'm doing for the assignment

#

Man I took robotics class as an elective for my senior year of highschool and I had no idea that we would be coding. This is by far the hardest thing i've had to do in a class other than math my whole life. It's very challenging

somber heath
#

!e py age = 17 name = "Peter" print(f"Hello, {name}. You are {age} years old.")

wise cargoBOT
#

@somber heath :white_check_mark: Your 3.11 eval job has completed with return code 0.

Hello, Peter. You are 17 years old.
somber heath
#

f-strings

whole bear
#

so the f string substitutes the regular string? but does the same thing?

#

you can do math with it

#

that's crazy

#

print("Let's play Silly sentences!")
name = input("Enter a name:")
adj1 = input("enter an adjective")
adj2 = input("enter an adjective")
adv1 = input("enter an adverb")
food1 = input("Enter a food")
food2 = input("enter another food")
noun = input ("enter a noun")
place = input("enter a place ")
verb = input("enter a verb")
print( str(name) + ("was planning a dream vacation to ") + place )
print( str(name) + ("was especially looking forward to trying the local cuisine, including ") + adj1 + food1 + food2 )
print( str(name) + ("will have to practice the language") + adv1 ("to make it easier to ") + verb ("with people.") )
print(str(name) + ("has a long list of sights to see, including the ") + noun ("museum and the") + adj2 ("park.") )

#

this is what i'm working with right now

#

i'm having to do a mad libs

#

this is just how my teacher teaches me at school

#

I've been coding for 2 weeks so far

#

regex?

#

How do you know all of this information about coding? This stuff is so difficult, I try to find joy out of it but it's hard to do. You seem to find joy out of it. Can you tell me how you find it so interesting?

#

that's where i'm at right now

#

So the joy out of it is achievement and success

#

when i put f infront of the verb it just gives me another error

#

does the f stand for filter?

somber heath
#

!e py a = 123 print(f"Hello. {a}.") print("Hello. {a}.")

wise cargoBOT
#

@somber heath :white_check_mark: Your 3.11 eval job has completed with return code 0.

001 | Hello. 123.
002 | Hello. {a}.
somber heath
#

f-string.

#

format string

whole bear
#

print( str(name) + ("will have to practice the language") + adv1 ("to make it easier to ") + verb ("with people.") )

#

the only way i know how to input the name into the sentence is by using str before it

#

wait hold on i think you figured out the error

#

I needed more plusses

#

get rid of which "s?

restive meadow
#

i have to open an account at oracle.com will be there a problem if i write random things about opening an acc like "Company Name : 12412","Company No : 124124" etc

whole bear
#

there's no way he made a video game

#

what the hell

#

OH MY GOD

#

DUDE

#

Thank you so much for helping me we did it bro

#

Jade was planning a dream vacation to Australia
Jade was especially looking forward to trying the local cuisine, including charming chicken noodles
Jade will have to practice the language never to make it easier to smell with people.
Jade has a long list of sights to see, including the bed museum and the fantastic park.

#

the print?

#

print( str(name) + ("was planning a dream vacation to ") + place )
print( str(name) + ("was especially looking forward to trying the local cuisine, including ") + adj1 + food1 + food2 )
print( str(name) + ("will have to practice the language") + adv1 + ("to make it easier to ") + verb + ("with people.") )
print(str(name) + ("has a long list of sights to see, including the ") + noun + ("museum and the") + adj2 + ("park.") )

#

i'm getting errors from deleting the "

#

oh my god i'm an idiot

#

ok don't tell me what's wrong with this

#

i'm going to try to fix

#

File "main.py", line 14
print( name + "has a long list of sights to see, including the " + noun + "museum and the" + adj2 + "park".)
^
SyntaxError: invalid syntax

#

what exactly is the string?

#

yes but what part is the string? is it the words?

#

print( name + "was planning a dream vacation to" + place )
print( name + "was especially looking forward to trying the local cuisine, including" + adj1 + food1 + food2 )
print( name + "will have to practice the language" + adv1 + "to make it easier to " + verb + "with people." )
print( name + "has a long list of sights to see, including the " + noun + "museum and the" + adj2 + "park.")

wise cargoBOT
#

@whole bear :x: Your 3.11 eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "<string>", line 1, in <module>
003 | EOFError: EOF when reading a line
whole bear
#

okay @somber heath does this suit you?

#

print( name + "was planning a dream vacation to" + place )
print( name + "was especially looking forward to trying the local cuisine, including" + adj1 + food1 + food2 )
print( name + "will have to practice the language" + adv1 + "to make it easier to " + verb + "with people." )
print( name + "has a long list of sights to see, including the " + noun + "museum and the" + adj2 + "park.")

#

wow that's a lot shorter than what i was having to do before

#

thank you

forest zodiac
whole bear
#

you helped me a lot

forest zodiac
#

@whole bear

somber heath
#

Now try it with f-strings.

whole bear
#

bruh

#

I don't know how to use the f strings

forest zodiac
mild quartz
#

f"{}"

somber heath
#

!e py age = 17 name = "Peter" print(f"Hello, {name}. You are {age} years old.")

wise cargoBOT
#

@somber heath :white_check_mark: Your 3.11 eval job has completed with return code 0.

Hello, Peter. You are 17 years old.
whole bear
#

ok so there's { these things

somber heath
#

!e py age = 17 name = "Peter" print("Hello, " + name + ". You are " + str(age) + " years old.")Roughly equivalent to above but uses concatenation.

wise cargoBOT
#

@somber heath :white_check_mark: Your 3.11 eval job has completed with return code 0.

Hello, Peter. You are 17 years old.
somber heath
#

{} curly braces

terse needle
#

!e @somber heath

import sys
from io import StringIO

sys.stdin = StringIO("Hello, World!")
x = input()
print(x)
wise cargoBOT
#

@terse needle :white_check_mark: Your 3.11 eval job has completed with return code 0.

Hello, World!
somber heath
#

[] square brackets

#

() parentheses

whole bear
#

so you want me to try and do the whole program again but with f strings?

somber heath
#

Look at my previous two executed examples.

#

Which looks nicer?

terse needle
#

it's so worth it

somber heath
#

Not only do f-strings look nicer, they're easier.

whole bear
#

wait another question

#

{name}

#

could i just do this at the beginning of my sentences and not have to put a +?

#

print( name + "will have to practice the language" + adv1 + "to make it easier to " + verb + "with people." )

#

^that for example

terse needle
#

yes

#

you put it in the string

whole bear
#

i'm going to have to make a new replit

somber heath
#

!e py name = "Peter" adv1 = "conscientiously" verb = "program" print(f"{name} will have to practice the language {adv1} to make it easier to {verb} with people.")

whole bear
#

ok i've made a new one to experiment with

wise cargoBOT
#

@somber heath :white_check_mark: Your 3.11 eval job has completed with return code 0.

Peter will have to practice the language conscientiously to make it easier to program with people.
whole bear
#

you don't have to put name =imput(Enter a name:")

#

?

#

you can just do name = "peter"

somber heath
#

If you want to enter it in at runtime, you may.

#

But I knew what I wanted those variables to be.

whole bear
#

oh okay I understand now

#

i'll try one

somber heath
#

Be wary. () [] and {} are contextually dependant. Depending on where they are, they can mean different things. {} won't always be part of an f-string or have anything to do with substitution.

whole bear
#

name = "Peter"
adv1 = "downstairs"
print(f"{name} will have to practice how to the play violin at his parents house {adv1}.")

#

Peter will have to practice how to the play violin at his parents house downstairs.
ξΊ§

#

the x at the end is an ad on my screen

somber heath
#
my_set = {1, 2, 3, "a", "b", "c"}
my_dictionary = {"apple": "fruit", "rock": "mineral"}```
#

Looks like you've got the idea.

#

If you wanted to be really disgusting, you can even do something like this...

#
text = f"This is how to annoy your teacher. Your answer is: {input('Say a thing')}"
print(text)```
#

Do not do this.

#

You can. Don't.

#
answer = input("Say a thing: ")
text = f"Your answer was {answer}."
print(text)```This is a better pattern.
whole bear
#

okay i've done some practicing

#

name = "Peter"
adv1 = "downstairs"
crazy = "the crazy cat decided not to join along "
faster = "the cheetah decided to run even faster though"
print(f"{name} was a very lovely lad that enjoyed eating a lot of peanut butter, unfortunately there was none {adv1} his aunt on the other hand was crazy and as was her cat as {name} was running down the stairs his aunt started chasing him but {crazy} as they were running around the house a cheetah charged in hungry for a kitten supper the cat then started running very fast {faster} the cat unfortunately was supper in the end and {name} ended up with no peanut butter")

#

it came out like this

#

Peter was a very lovely lad that enjoyed eating a lot of peanut butter, unfortunately there was none downstairs his aunt on the other hand was crazy and as was her cat as Peter was running down the stairs his aunt started chasing him but the crazy cat decided not to join along as they were running around the house a cheetah charged in hungry for a kitten supper the cat then started running very fast the cheetah decided to run even faster though the cat unfortunately was supper in the end and Peter ended up with no peanut butter

#

the f strings are a lot better you're right

somber heath
#

😁

whole bear
#

So my teacher is just teaching us in a weird way that makes things way more complicated

somber heath
#

Concatenation is worth knowing.

#

f-strings are worth knowing.

#

Most people learn how to achieve this result with concatenation, first.

whole bear
#

is that what I was doing?

#

all of this

#

print("Let's play Silly sentences!")
name = input("Enter a name:")
adj1 = input("enter an adjective")
adj2 = input("enter an adjective")
adv1 = input("enter an adverb")
food1 = input("Enter a food")
food2 = input("enter another food")
noun = input ("enter a noun")
place = input("enter a place ")
verb = input("enter a verb")
print( str(name) + ("was planning a dream vacation to ") + place )
print( str(name) + ("was especially looking forward to trying the local cuisine, including ") + adj1 + food1 + food2 )
print( str(name) + ("will have to practice the language") + adv1 ("to make it easier to ") + verb ("with people.") )
print(str(name) + ("has a long list of sights to see, including the ") + noun ("museum and the") + adj2 ("park.") )

#

now this looks crazy to me

somber heath
#

Joining strings together with + to form one string is called string concatenation.

whole bear
#

the way you can just make it so much shorter is absurd

whole bear
#

Well thank you very much for all of your help! I will be back in the server at some point but I must leave now to do my homework. You were a very nice person and I appreciate that. Have a good one!

molten pewter
#

Alpha Bank is the second largest Greek bank by total assets, and the largest by market capitalization of €2.13 billion (as of 4 December 2018). It has a subsidiary and branch in London, England and subsidiaries in Albania, Cyprus and Romania. Founded in 1879, it has been controlled by the Costopoulos family since its inception. Most recently, Io...

muted lotus
#

.

muted lotus
#

what is is the russian gov say to the people

#

what is is the russian gov saying to the people about the war @frigid shard

#

the american gov is saying the govermentel head of russia had a stroke bassed is this ture

#

true

#

fear is a good motivation to thing that is not smart @molten pewter

#

to do things that

#

@somber heath east and west berlin ?

#

oh

#

the african gruilla mittary

#

afiaca

muted lotus
#

the indian nmentionables @molten pewter

#

.

muted lotus
#

.

#

is the mafia still big over since the 90s and eraly 2000s @frigid shard

#

ummm wym

somber heath
somber heath
#

@lethal thunder hoy

#

I'm listening.

#

Not a mask in sight...

molten pewter
#

Mesopotamia is a historical region of Western Asia situated within the Tigris–Euphrates river system, in the northern part of the Fertile Crescent. Today, Mesopotamia occupies modern Iraq. In the broader sense, the historical region included present-day Iraq and Kuwait and parts of present-day Iran, Syria and Turkey.The Sumerians and Akkadians (...

#

Ψ¨ΩΩ„ΩŽΨ§Ψ― Ω±Ω„Ψ±ΩŽΩ‘Ψ§ΩΩΨ―ΩŽΩŠΩ’Ω†

lethal thunder
#

β€œI don’t even know what A’s are anymore.”

Check out more awesome videos at BuzzFeedVideo!
http://bit.ly/YTbuzzfeedvideo

MUSIC
Here’s How We Do It
Licensed via Warner Chappell Production Music Inc.

STILLS
'Brooklyn' Premiere - Arrivals - 2015 Sundance Film Festival
Araya Diaz / Getty Images

BUZZFEED.COM VIDEO POST OF PUBLISHED VIDEO
www.buzz...

β–Ά Play video
molten pewter
#

Tadgh

somber heath
#

"Ooh ooh, ahh ahh, sexy eyes... I wanna take you to paradise..." 🎡

lethal thunder
#

Caoimhe

somber heath
#

Kao-iim-heh

lethal thunder
#

kee-vah

somber heath
#

Sibohan.

#

She-vorn

#

Hm. Rosemary sprigs.

lethal thunder
rugged root
#

@somber heath On in a bit

#

As SOON as I got into work, "Oh hey, 3 computers can't connect to the network

warm vapor
#

Hello how are you?

rugged root
#

No idea why yet

sweet lodge
#

For local computers?

#

Did you mean DHCP?
Or like Active Directory DNS?

rugged root
#

Yes

#

I don't know

sweet lodge
#

Mexico

#

But there was already a conversation about rotating tires

#

I think that's a euphemism for something

somber heath
#

"Hi, I'm Murder McMurderface."

rugged root
lunar mulch
rugged root
#

.xkcd 1125

#

Wait is that right?

sweet lodge
#

.xkcd 1125

viscid lagoonBOT
#

Universes in mirror, like those in windshield, are larger than they appear.

sweet lodge
#

Thank you bot

rugged root
#

Oh, so it just hates me

#

Fair

rugged root
#

I love Far Side

#

So much

viscid lagoonBOT
#

Universes in mirror, like those in windshield, are larger than they appear.

sweet lodge
rugged root
#

Same

#

Oh very very very same

sweet lodge
#

NO

#

Heck GCP

#

No GPUs for me 😦

quasi condor
lavish rover
#

Hello

#

How be y'all

amber raptor
somber heath
#

Know your Playstation.

rugged root
sweet lodge
#

Embrace PowerShell!

lavish rover
sweet lodge
#

Wait really?
I used the AZ CLI just because that was in the quick start

#

Google

somber heath
#

Dogfooding?

rugged root
#

That's a gorgeous view

sweet lodge
quasi condor
#

in order to understand what user experience is like

rugged root
#

I'd never heard of that term

sweet lodge
#

Eating your own dog food or "dogfooding" is the practice of using one's own products or services. This can be a way for an organization to test its products in real-world usage using product management techniques. Hence dogfooding can act as quality control, and eventually a kind of testimonial advertising. Once in the market, dogfooding can dem...

lavish rover
steel lodge
#

hello

#

how's everyone doin?

rugged root
#

Good, you?

whole bear
#

can i change color on socket chat script?

quasi condor
regal raptor
#

@amber raptor do you like em?

quasi condor
sweet lodge
#

....... why?

#

You already have Teams
Why make a Skype account?

quasi condor
#

Five top comedians try and paint the best picture of a horse whilst riding a horse. Also, expect melon-eating, bath-emptying and pop-u tents.

Follow the show at http://www.twitter.com/taskmaster
Become a fan at https://www.facebook.com/officialtaskmaster
Get the Taskmaster book and board game: https://taskmaster.tv/over-you

----...

β–Ά Play video
#

Matt Berry ^

sweet lodge
#

Denholm Reynholm

zenith radish
rugged root
#

@vernal bridge Wave

#

Al Gore Rhythms

zenith radish
quasi condor
#

I think pretty much the same thing as what Americans think of it

#

they tend to like it if they like the royals

mild quartz
vernal bridge
rugged root
quasi condor
zenith radish
#

::1

sweet lodge
#

Where you're #1

willow light
#

Same day apparently

rugged root
#

@south bone You been doing well?

willow light
#

Been sleeping in this, and sometimes on the board in a lake, for the past week

south bone
#

Yeah, I been alright bro, been learning a bunch of stuff , amping up my resume bud

sweet lodge
#

@rugged root - You lost data?

#

@rugged root - You lost physical data?

lavish rover
#

I have introduced at least a dozen people to it

quasi condor
lavish rover
#

the real question is

willow light
#

i am not familiar

lavish rover
#

have you seen taskmaster Norway

quasi condor
#

have you seen the New Zealand version?

lavish rover
#

it is a new level of amazing

#

yes, I've seen new zealand

quasi condor
#

I haven't - the only international variant I've watched is NZ

lavish rover
#

Norway is better

#

Everyone tries so fucking hard

#

it's actually amazing

quasi condor
#

I've only heard good things about the Norwegian one, I just need to actualyl get around to watching it

willow light
#

If it is a tv show that you can't get by putting a coat hanger into the back of your television, then I probably haven't seen it

lavish rover
#

highly, highly recommend it

#

honestly norway s1 was the only thing that's come as close to the hype as the UK season 1 for me

#

the other seasons are good but they don't have the same oomph

quasi condor
#

the UK S1 has something special going for it

lavish rover
#

I'm with grandparents, cannot talk

willow light
#

I cannot read, I'm a Murican

lavish rover
#

I'm not even going to entertain that thought

#

they couldn't get the remote for the blinds working at our airbnb, I don't think I'm going to ever be able to explain to them what aecor is

lavish rover
#

the host is not as good as greg davies, no one is, but all the contestants are like significantly funnier and just better

quasi condor
#

I'll watch it soon and almost certainly love it - I'll let you know how I find it

lavish rover
#

they do some of the same challenges as the UK one, and it's especially great because you get to compare how much harder there people are actually trying

#

some of them are straight up psychotic, it's amazing

sweet lodge
#

You guy actually know where you applied?

#

I don't even read the company names

#

So, some quick housekeeping questions
What made you interested in our application -- what stuck out to you?
Uh.... I have no idea
I don't even know what application this is for

#

But honestly seriously - Sometimes even if you remember the company name, then you get a email from a random recruitment company, so it doesn't even match anyways

lavish rover
#

"why did you apply at XYZ"
"I personally really resonate with the goals XXX tries to achieve, I have heard that the work environment is great and I feel like my technical skills would be a really good fit for the positions I am applying for"

#

Copy pasta, ez interviews

willow light
#

"Why are you applying for this job?"
"Bro, have you seen medical bills in my home country?"

#

Something tells me that won't fly

lavish rover
#

Unless you're applying for the position of a doctor at a small clinic, I guess

willow light
#

cries in $40,000 for a twelve-second CT scan of my right elbow

sweet lodge
#

"I'm at a small company by myself with no room to grow, I'd like to move into spot where I can grow and be apart of a team"
Is what I've been going with

willow light
#

That's so relatable it hurts.

quasi condor
#

@zenith radish

#

here

#

is the link

#

@zenith radish

#

in case

#

you didn't see it

#

@rugged root

Node("Thing") - Node("Other Thing") # complains at me for not using the result

lavish rover
#

@zenith radish can I bait you into helping me finish aecor LSP

#

I'm so close

#

But typescript

zenith radish
#

Can't I'm too busy arguing

#

😦

lavish rover
#

Sadge

#

I can now trigger completions from the CLI, I just need to hook it up to vscode extension and debug typescript

zenith radish
#

@lavish rover how do you personally call the __init__ function in python?

#

initialiser or constructor?

quasi condor
#

or init?

lavish rover
#

Just init

#

Pretty straightforward, innit?

zenith radish
#

ur all wrong

terse needle
lavish rover
#

how do you personally call it
ur wrong

#

bruh

zenith radish
#

precisely

#

I was checking to see if you're right or wrong

lavish rover
#

How am I wrong about what I personally call it

terse needle
lavish rover
terse needle
#

you're so wrong

zenith radish
#

Mustafa is dead to me

quasi condor
#
from aws.compute import Batch
with Diagram:
    Batch("thing 1") >> Batch("thing 2")
lavish rover
rugged root
zenith radish
#

Incorrectafa

rugged root
#

That'll tell you what you need to know

lavish rover
sharp pebble
#

if there is anyone that can help me for 2 sec id really apritiate it

lavish rover
#

I can only imagine the shits and giggles y'all are having about this in VC

sharp pebble
#

dm me

rugged root
sharp pebble
#

it says Failed to create a virtual environment

#

;/

#

im really new to this

rugged root
#

Hmm. Might be better to snag a help channel for that one then. You'll probably want to provide more details / screenshots / error codes and what have you. See #β“ο½œhow-to-get-help for more details

brisk shale
#

Hey, anyone having connections with someone in UK or CA who might know software dev openings? would love to explore the foreign opportunities, indian btw

zenith radish
#

linkedin jobs

rugged root
#

#career-advice might be a good place to talk about stuff like that, specifically how to get into that rather than asking for folks directly

#

We kind of have a thing about asking jobs and what have you

brisk shale
#

okay cool thanks ill post there,

zenith radish
molten pewter
willow light
#

This mandatory harassment training includes CA state law, which strikes me as odd since we have no offices in CA, and I can think of several hundred reasons to never live on or even visit the West Coast.

molten pewter
#

The monarch is dead

#

How about King Fred?

sweet lodge
#

Get back in the house!

#

Poor Dale

quasi condor
whole bear
#

Yup Edgerunner

#

Neon genesis evangelion

#

Yup

#

Trigun

#

Vash the Stampede

#

Baccano

#

Just like Bullet Train

#

Durarara

#

I stopped watching Anime nowadays

#

Did anybody watched Terraformers

#

Yeah and series too with all that censorship

#

Yup Credit

tacit dome
#

So what in the world are people talking about here

rugged root
#

I just don't know anymore

whole bear
#

World-Issues

#

Don't Disturb

tacit dome
#

Ok...

#

I was just curious

rugged root
#

Please disturb

#

I don't know why this is happening

gentle flint
rugged root
whole bear
#

Leave eveything

#

First solve this pinocchio problem

sweet lodge
tacit dome
#

that must be true

whole bear
#

then he's lying

tacit dome
#

it will eventually grow somehow i guess

whole bear
#

IDK

tacit dome
#

idk either

willow light
whole bear
#

He's a mouth-breather

gentle flint
#

why is peter pan always flying?

#

because he neverlands

tacit dome
#

lol

#

Idk what i expected to hear here

#

but im sure it wasnt politics

#

πŸ€” ...it was interesting

sweet lodge
#

"A" Scarlett Letter?

#

NO
Heck international shipping
Prices are ridiculous

whole bear
#

Is that why they send postcard in the movies?

sweet lodge
#

You guys have one friend?

whole bear
#

Yup it costs less to send postcards internationally that way

zenith radish
gentle flint
molten pewter
faint ermine
#

flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo

quasi condor
#

there is nothing concrete about issues with snap in that post

#

I have had issues with Jetbrains IDE - but the issue was the fact it was storing its config in funky places

#

but that was just because I didn't know how snap fucked messed with filepaths

faint ermine
#

draw call test:

gentle flint
gentle flint
#

@zenith radish

#

with 3d symbols enabled you ould make a box around it

#

you need to export the model as a vrml from kicad, which will export a wrl file

#

then do import wrl in blender

daring orbit
#

Hello all

rugged root
#

Voip sistem to Asterisk

snow cedar
#

@sonic hatch u working on Python?

#

is anyone in voice chat 0 able to help me with dictionary in python for my college assignment? I am stuck breaking down a text file to extract the information I need

rugged root
#

What's got you stuck

snow cedar
#

Example:
Example. For a scifibookfavorite.txt file containing:

2 Alone Against Tomorrow --Ellison, Harlan
2 Agent of Vega --Schmitz, James H
2 A Mirror for Observers --Pangborn, Edgar
2 A Midsummer Tempest --Anderson, Poul
2 A Knight of Ghosts and Shadows --Anderson, Poul
2 A Gift from Earth --Niven, Larry
2 A Fine and Private Place --Beagle, Peter S
1 A Connecticut Yankee in King Arthur's Court --Twain, Mark

The expected output is (EXACTLY):

Anderson: 2 books with 4 total nominations
Beagle: 1 book with 2 total nominations
Ellison: 1 book with 2 total nominations
Niven: 1 book with 2 total nominations
Pangborn: 1 book with 2 total nominations
Schmitz: 1 book with 2 total nominations
Twain: 1 book with 1 total nomination

#

@rugged root Can i call u and screen share?

#

#file = open("scifibookfavorites.txt", "r");
file = open("tet.txt", "r");
#text = file.read().split('\n');
text = [];
for line in file:
if line == '\n':
break
else:
text.append(line);
scifi = {};
lastnames = [];
for x in text:
y = x.split("--", ',');
for last in y:
z = last.split(',');
print(z);
#lastnames.append(z[1]);

rugged root
#

I mean for right now, what is the exact issue you're having

#

Also, easier if you use the Discord highlighting

wise cargoBOT
#

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.

snow cedar
#

oh

rugged root
#

Just makes it a bit cleaner to read

snow cedar
#

so, I got each line saved in a list. Now I need to seperate by the -- and the common

#

comma

#

I want to split a list consisting of ['2 Alone Against Tomorrow --Ellison, Harlan '] into ['2', 'Alone Against Tomorrow', 'Ellison']

rugged root
#

So I would use .readlines() and iterate over that

#

So something like for line in file.readlines():

#

That'll let you handle it one line at a time

snow cedar
#
#file = open("scifibookfavorites.txt", "r");
file = open("tet.txt", "r");
#text = file.read().split('\n');
text = [];
for line in file:
    if line == '\n':
        break
    else:
        text.append(line);
scifi = {};
lastnames = [];
for x in text:
    y = x.split("--", ',');
    for last in y:
        z = last.split(',');
        print(z);
        #lastnames.append(z[1]);
#

thats everything I got

rugged root
#

It's the backtick `. On US keyboards, it's on the same key as the ~ tilde next to 1 on the number row

#

There we go, yeah

#

Trying to figure out a way to explain without just giving the answer

snow cedar
#

would voice call be easier?

rugged root
#

Not really

snow cedar
#

ive been stuck for the past 5 hours and my prof wont do office hours even tho he assigned it to be today on zoo,

#

zoom lol

rugged root
#

hmm

snow cedar
#

what is a command i should look into?

#

ive tried nesting for loops together

#

and splitting it multiple times

rugged root
#
with open("mahfile.txt") as file:
  for line in file.readlines():
    ...
#

So that's what I'd do for the reading file. This way you're not having to manually track the new lines and pack them

#

This will just feed you the lines one by one, and will keep going until there are no more lines left

snow cedar
#

Yeah, I am on that track

rugged root
#

You also won't need nested loops or anything

snow cedar
#

I am just stuck on how to break the line up with split with two characters

lunar haven
#

i love your comms

rugged root
#

Yep, so

mild quartz
#

they must be, otherwise you couldn't lookup

snow cedar
#

@rugged root I tried using re.split() but i couldnt get the parameters right any tips

#

i tried:

#
file = open("tet.txt", "r");
text = [];
for line in file:
    if line == '\n':
        break
    else:
        line.re.split('--', file, ',', file);
#

I also need to import re

#
file = open("tet.txt", "r");
text = [];
for line in file:
    if line == '\n':
        break
    else:
        re.split('--', line, ',', line);
        print(line);
#

I tried that and I got an error

#

TypeError: unsupported operand type(s) for &: 'str' and 'int'

rugged root
#

!e

final_group = []
spam = "Bacon is great!  Although, I prefer spam"

ham = spam.split("!")
pork = ham[1].strip().split(",")
final_group = [ham[0], *pork]
print(final_group)
snow cedar
#

damn im stupid

#

let me try that

#

@rugged root

wise cargoBOT
#

@rugged root :white_check_mark: Your 3.10 eval job has completed with return code 0.

['Bacon is great', 'Although', ' I prefer spam']
snow cedar
#

@rugged root lets fricking go

#

I got the last name lol

#

Idk why i tried the exact same thing but using a nested loops lol

#

now I gotta make a dict with last name: [first integer in the line, title of book]

#

let me try it my self

faint ermine
#

!e ```py
source = "Bacon is great! Although, I prefer spam"

bacon, leftover = source.split("!")
although, spam = leftover.strip().split(",")
spam = spam.strip()
print(bacon)
print(although)
print(spam)

wise cargoBOT
#

@faint ermine :white_check_mark: Your 3.11 eval job has completed with return code 0.

001 | Bacon is great
002 | Although
003 | I prefer spam
faint ermine
#

!e ```py

a, b, c = ["aaa", "bbb", "ccc"]
print(a)
print(b)
print(c)

wise cargoBOT
#

@faint ermine :white_check_mark: Your 3.11 eval job has completed with return code 0.

001 | aaa
002 | bbb
003 | ccc
rugged root
#

!stream 516815919272427522

wise cargoBOT
#

βœ… @south bone can now stream until <t:1663619070:f>.

snow cedar
#

is it possible to have a dictionary key like this: key : [int, str]?

#

a key to call a integer or a string

rugged root
#

Yep!

snow cedar
#

are dictionaries also like sets? you cant have multiple keys with the same name?

#

jk u cant

#

Ok another question lol

#

I can set up the key and dictionary now, I understand and broke it down

faint ermine
#

!e ```py
a = {1: 2}
b = {(a, 2): "d"}
a[3] = 5
print(b)

wise cargoBOT
#

@faint ermine :x: Your 3.11 eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "<string>", line 2, in <module>
003 | TypeError: unhashable type: 'dict'
snow cedar
#

but the next problem I have is figuring out when I have a duplicate key (author last name) who has different books (string) and different number of nominations per book (integer), would I have to do a for loop search to check each line for a key with the same last name and then add the nominations together and append the new book title?

#

2 Alone Against Tomorrow --Ellison, Harlan
2 Agent of Vega --Schmitz, James H
2 A Mirror for Observers --Pangborn, Edgar
**2 A Midsummer Tempest --Anderson, Poul
2 A Knight of Ghosts and Shadows --Anderson, Poul **
2 A Gift from Earth --Niven, Larry
2 A Fine and Private Place --Beagle, Peter S
1 A Connecticut Yankee in King Arthur's Court --Twain, Mark

#

ok bet

#

something like a nested loop tho

#

cus i have to check for authors name in every line

#

get?

#

getkey

rugged root
#

.get()

snow cedar
#

bet

#

.get(girls)

#

bet ty, ill look into that command

#

@silent sequoia love u bb

#

anyone here a mechanical engineer lol

#

😦

#

does anyone have any tips for appending a dictionary?

#

i tried:

file = open("tet.txt", "r");
scifi = {}
for line in file:
    if line == '\n':
        break
    else:
        x = line.split('--');
        y = x[1].split(',');
        print(y[0]);# last name
        noms = x[0].split(' ');
        #int(noms[0]); #gets nomination as a number
        scifi.append{y[0] : [int(noms[0]), 5]};
#

My dog when I code, must be nice being that relaxed lol

rugged root
snow cedar
#
file = open("tet.txt", "r");
scifi = {};
for line in file:
    if line == '\n':
        break
    else:
        x = line.split('--');
        y = x[1].split(',');
        print(y[0]);# last name
        noms = x[0].split(' ');
        #int(noms[0]); #gets nomination as a number
        scifi[y[0]]: [int(noms[0]), 5];
rugged root
#

Well shit. My headset is breaking

gentle flint
#

epic
my spare laptop screws fit perfectly in my potentiometer

snow cedar
#

for x in list pop(' ')

quasi condor
#

!e

l = ["  a  ", "    ", "c"]
print([c.strip() for c in l])
wise cargoBOT
#

@quasi condor :white_check_mark: Your 3.10 eval job has completed with return code 0.

['a.', '', 'c']
snow cedar
#

titles = [x.strip(' ') for x in titles]

crimson bay
#
    file_obj = open("nsfw.txt", "r", encoding='utf-8')
    file_data = file_obj.read()
    file_data_list = file_data.split(",")
    nsfw_list = [x.strip(' ') for x in file_data_list]
    file_obj.close()
snow cedar
#
file = open("tet.txt", "r");
scifi = {};
for line in file:
    if line == '\n':
        break
    else:
        x = line.split('--');
        y = x[1].split(',');
        print(y[0]);# last name
        noms = x[0].split(' ');
        title = noms.copy();
        title.pop(0);
        title = [x.strip(' ') for x in title]
        #int(noms[0]); #gets nomination as a number
        scifi[y[0]] = [int(noms[0]), 5];
velvet urchin
gentle flint
velvet urchin
velvet urchin
#

0.000

#

0.001

#

0.010

gentle flint
#

The Yeomen Warders of His Majesty's Royal Palace and Fortress the Tower of London, and Members of the Sovereign's Body Guard of the Yeoman Guard Extraordinary, popularly known as the Beefeaters, are ceremonial guardians of the Tower of London. In principle they are responsible for looking after any prisoners in the Tower and safeguarding the Bri...

nova prawn
#

Find upper bound for f(n) = n^4 + 100n^2 + 50

knotty marlin
#

@serene glade

serene glade
#
def check_guess(guess, answer):
    global score
    still_guessing = True
    attempt = 0
    while still_guessing and attempt < 3:
        if guess.lower() == answer.lower():
            print("Correct Answer!")
            score = score + 1
            still_guessing = False
        else:
            if attempt < 2:
                guess = input("Sorry Wrong Answer, try again...")
            attempt = attempt + 1
    if attempt == 3:
        print("The Correct answer is ")
knotty marlin
#

@rugged root

gentle flint
#

@rugged root what does it mean when a job offer lists this as a requirement:

Able to be part of a week-long on-call schedule once in a while

rugged root
#
while not isinstance(rounds, int):
gentle flint
#

what's on-call schedule?

rugged root
#

On-call means that they can call you to do work any time

gentle flint
#

aha

rugged root
#

"On-call" means that you're only a call away

gentle flint
#

do I need to stay at the workplace then?

#

or near it?

rugged root
#

Nah

#

Neither

#

If you're doing remote work, then just near your machine

gentle flint
#

this is mixed remote and live

rugged root
#

And if it's a physical job, then availability to go to those places, but it shouldn't stop you from doing things in most cases

gentle flint
#

aha

rugged root
#

Then yeah, you'll likely be remote on-call

#

So I wouldn't worry about it

gentle flint
#

I see

#

thanks for explaining

rugged root
#
while True:
  try:
    rounds = int(input("Best of: "))
    break
  except ValueError:
    print("Please only enter integers")
#
class Student:
  def __init__(self, name, age, favorite_subject):
    self.name = name
    self.age = age
    self.favorite_subject = favorite_subject

  def introduce(self):
    print(f"Hi! I'm {self.name} and I'm {self.age} years old. My favorite subject is {self.favorite_subject}.")

sally = Student("Sally", 8, "science")
billy = Student("Billy", 7, "math")

print(sally.name)
print(billy.age)

sally.introduce()
billy.introduce()
#
Student.introduce(sally)
whole bear
#

1 argument is being sent in sally.introduce()

#

"There's too much blood in my caffeine system" - Hemlock 2022

somber heath
#

!e ```py
class MyClass:
def get_self(self):
return self

instance = MyClass()
print(instance is instance.get_self())```

wise cargoBOT
#

@somber heath :white_check_mark: Your 3.11 eval job has completed with return code 0.

True
serene glade
#
hello world.echo
``` ?
terse needle
serene glade
#

Thanks

knotty marlin
#

does this print hello word ?

terse needle
knotty marlin
#

oh I see Isee

serene glade
#

@whole bear Link the name of the book?

knotty marlin
#

btw how do you make your messages appear code like

terse needle
#

!code

wise cargoBOT
#

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.

terse needle
#

or you can do it inline `like this` like this

knotty marlin
#
print("ZA WARUDO")
#

test

#

thanks kj

serene glade
#
### Super Hero question ###

def What super her mix would you like the best?:

  if you mixed ("The Hulk"), with (" Wonderwoman "):
    elif would we get the best wiping Peter Griffin ever:("?")

print (" Post what super hero mix you would like to see below and why it would be so awesome.")
rugged root
#

I hate mac file types

#

So much

#

Just open up your damn codecs, Apple

knotty marlin
#

I am scared of no man but this thing it scares me

#

he's in limbo

rugged root
#

I don't see them in the channel. Probably a client bug for you

terse needle
#

@whole bear my favourite command man man

knotty marlin
vivid palm
#

contribute

knotty marlin
#

contraybute

terse needle
knotty marlin
#

maf

vivid palm
#

and @cobalt fractal

knotty marlin
#

schematic

whole bear
#

Shouldn't it be mathS as in mathematicS?

knotty marlin
#

mafemafics

knotty marlin
rugged root
knotty marlin
cobalt fractal
whole bear
#

@whole bear please send here too

knotty marlin
rugged root
#

A quine is a computer program which takes no input and produces a copy of its own source code as its only output. The standard terms for these programs in the computability theory and computer science literature are "self-replicating programs", "self-reproducing programs", and "self-copying programs".
A quine is a fixed point of an execution env...

knotty marlin
rugged root
#

Aren't we all?

knotty marlin
#

hmmm

#

when u accidently create skynet

rugged root
terse needle
rugged root
#

!stream 489485360645275650

wise cargoBOT
#

βœ… @silent sequoia can now stream until <t:1663686934:f>.

swift olive
#

hi

#

i wanted to see pros code

#

oh

terse needle
#

yeah, "work project"

#

sure

swift olive
#

anyways how are you?

#

since i cant speak

#

yup

wise cargoBOT
#

Voice verification

Can’t talk in voice chat? Check out #voice-verification to get access. The criteria for verifying are specified there.

swift olive
#

i need about 30 more messages

#

!voice

#

awfully quite here

#

yeah ima go do a coding project then

quasi comet
#

but it seems like you improve quite fast @swift olive πŸ˜„

swift olive
rugged root
#

As it should be

#

What're you working on, anyway?

swift olive
#

so it has use

rugged root
#

Neat

swift olive
#

you?

rugged root
#

Well I KIND of have a project in my mind but I don't know if it'll be viable

swift olive
#

make it something you will use a lot like a checker or music or idk i just want my music

rugged root
#

It's going to be a random game picker

swift olive
#

when you object they will hear you then kick you out

rugged root
#

I've got like.... far too many video games

#

And there's no easy way to just spin a wheel and pick one

swift olive
#

i just play terraria and apex so 50% chance

#

so russian rulet

#

nice so the winner lives this time

#

wait i just looked at the roles and saw your a admin

zenith radish
swift olive
#

i wont get kicked for anything of the above right

#

ok good luck

rugged root
#

Context made sense

serene glade
#

@rugged root Nobara

whole bear
whole bear
#

whenever @quasi condor shows up I am tempted to go make myself a cup of coffee or chai

quasi condor
#

you should

whole bear
#

Its your profile picture i swear

lethal oasis
#

can someone add me and help me

#

i need help with a python script

rugged root
#

What's the question?

lethal oasis
#

its hard to explain over text but im trying to get an external program to run

rugged root
#

What are you trying to do over all

lethal oasis
#

im tring to run a lunar menu

#

but ive never done python or VSC

terse needle
#

This exists. So we're taking a look at it.
Download: https://uwuntuos.site/

● Gear I use to make these videos: https://www.kit.co/mjd
Camera: https://amzn.to/3ipyKc5
Tripod: https://amzn.to/3pqxycn
Microphone: https://amzn.to/35UbkXb
Editing Software (Premiere): https://amzn.to/39kawfS
Thumbnail Editor (Photoshop): https://amzn.to/3lVqVN6

● Af...

β–Ά Play video
rugged root
#

What's a lunar menu

#

Oh the modding thing?

lethal oasis
#

yup

terse needle
#

lunar3DS?

lethal oasis
#

im trying to troll my lil cousin lmao

rugged root
#

Ah, we're not helping with that then

lethal oasis
#

oh ok

#

thats fine

rugged root
#

We're not going to help someone be a jerk

lethal oasis
#

i only mod to have fun in private games B_CoolBlob

swift olive
#

oh

somber heath
#

I/O WAN.

#

Bodak?

rugged root
#

Bois D'Arc

waxen aspen
#

Hello everyone

#

@rugged root can you remember swizzy?

rugged root
#

I do indeed

#

Goes by Scrub Lord now

waxen aspen
#

OK tnx

rugged root
#

Why

waxen aspen
#

Is that his ID?

rugged root
#

Why

waxen aspen
#

"Goes by Scrub Lord"

rugged root
#

No no, sorry. I mean why did you ask initially whether I remember him

waxen aspen
#

Actually as u know his parents were iranian

#

I had a question to ask him

#

Do you know his new ID?

#

Once he changed his ID to "Not Mr Hemlock"

somber heath
#

Suggestion. Hang around for long enough until you cross paths.

rugged root
#

Not entirely sure why the Iranian part is relevant

waxen aspen
#

Because I am Iranian

swift olive
#

it sounds like a voice chat for dads when i just entered

waxen aspen
#

I wanted to ask some question s about immigration to Canada

somber heath
swift olive
#

oh

whole bear
swift olive
#

im not even 18 yet

whole bear
swift olive
#

bruh

somber heath
#

Common enough.

waxen aspen
#

Because he has borned in Canada and now he lives in Iran

#

@rugged root
Is that crystal clear?

swift olive
#

ok now i just feel like a baby

#

me

waxen aspen
#

🀣

rugged root
#

It is, but you might have an easier time getting that kind of info in #career-advice

#

Not to mention more details about how that would work with getting a job

#

Pretty sure Swzzy a kid and doesn't have one

somber heath
#

Jen Yun.

rugged root
#

That's actually kind of neat

bold seal
#

! play

#

play! Come

zenith radish
rugged root
serene glade
#

GTG have a good one all o/

rugged root
rugged root
#

Parody of the Fear Mantra from Dune:

I must not fear.
Fear is the mind-killer.
Fear is the little-death that brings total obliteration.
I will face my fear.
I will permit it to pass over me and through me.
And when it has gone past, I will turn the inner eye to see its path.
Where the fear has gone there will be nothing. Only I will remain.

zenith radish
rugged root
#

Although this one is dead, but there are other options

faint ermine
#

myprogram.bat

cd "C:/path/to/project/folder"
py main.py
swift olive
solar fog
#

anyone used docker before?

#

can anyone think of any cool projects i could make to get used to this technology and could be part of it?

faint ermine
#

setting up services you would like to use is a good practice and you also get something out of it

solar fog
crimson bay
faint ermine
crimson bay
zenith radish
crimson bay
solar fog
#

he just has a short neck guys

crimson bay
solar fog
#

😒

crimson bay
rugged root
knotty marlin
#

hey can anyone explain why when I create an object that is not hawk it automatically executes print("what ?")

faint ermine
wise cargoBOT
#

@faint ermine :white_check_mark: Your 3.11 eval job has completed with return code 0.

001 | Defining the class
002 | defining done
003 | instatiating the class
004 | instatiating the class
005 | instatiating the class
006 | method called
faint ermine
#

just to show what happen in various places in the class

stiff stirrup
#

where should i start learning python , should i go with qazi or freecodecamp

rugged root
#

Not sure honestly. Haven't used either

#

We have a bunch of recommended resources on our site:

#

!resources

wise cargoBOT
#
Resources

The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.

crimson bay
#

The only critique I'd say is there needs to be more homework/exercises to implement what you just learned

#

import os
import time
import string
import random


os.system('cls')

pass_length_verify = []

special_chars = ['!', '@', '#', '$', '%', '^',
                 '&', '*', '(', ')', '?', '>', '<', '`', '~']


for y in range(6, 43):
    pass_length_verify.append(str(y))


print("###############################################################\n")
print("######                PASSWORD GENERATOR                 ######\n")
print("###############################################################\n")
time.sleep(1.5)

print("How long would you like your password to be?")
print("*Password must be between 6 - 42 characters*")


while True:
    user_input = input(">: ")
    if user_input in pass_length_verify:
        # name = True
        os.system('cls')
        print("###############################################################\n")
        print("######                PASSWORD GENERATOR                 ######\n")
        print("###############################################################\n")
        time.sleep(1.5)
        break
    else:
        print("\nYOU MUST INPUT A NUMBER BETWEEN 6-42. PLEASE TRY AGAIN\n")


print("\n")
print("Generating your password...")
print("\n")
time.sleep(2)

user_input_int = int(user_input)
passw = ""

for x in range(1, user_input_int):
    y = random.choice([random.choice(string.ascii_lowercase),
                      random.choice(string.ascii_uppercase),
                      random.choice(special_chars),
                      random.choice(range(0, 10))])
    passw += str(y)
print(f"Your {user_input_int} char length password is...")
time.sleep(.75)
print(passw)
print("\n")
#

a small password generator

zenith radish
#

!resources

wise cargoBOT
#
Resources

The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.

bronze pasture
#

Sir, for Open Redirection/URL Manipulation, is Python is the only option or other language is also there?

solar fog
#

james "the butcher" πŸ˜†

rugged root
zenith radish
#

a[b:c-1]

#

for (int i = 0; i >= 12; i++){}

faint ermine
#

hm?

terse needle
#
#include <stdio.h>

int main(void) {
  int arr[5];
  
  for (int i = 0; i < sizeof(arr)/sizeof(arr[0]); i++)
    arr[i] = i * 2;

  for (int i = 0; i < sizeof(arr)/sizeof(arr[0]); i++)
    printf("%d\n", arr[i]);

  return 0;
}
lavish rover
#

Especially when arrays are being passed around

zenith radish
#

array[index1:index2]

lavish rover
#

I felt the presence of bad C code, had to join

rugged root
#

And somehow it wasn't me!

terse needle
lavish rover
#

Real C programmers do i[arr]

terse needle
faint ermine
#

Rust:
exclusive: 0..5
inclusive: 0..=5

lavish rover
#

nub

zenith radish
#

range(start, end) -> [0, 0, 0...] // length of end-start

lavish rover
#
for let i = start; i < end; i += i {
   ...
}

do that with your fancy pants programming languages

lavish rover
terse needle
#

I haven't worked on it in a long time because of my compiler

rugged root
#

Did I miss something?

faint ermine
#

(0..10).step_by(2)

zenith radish
#

range(0, 10, step = 2);

#

range(0, 10, step = getStep(myVar)); you can also do this

rugged root
#

With step, I highly prefer the range

faint ermine
zenith radish
#

call().(|err| { print(err) }); is bad

#

call().((err) -> { print(err) }); is better

#

no unique operator that's only used for something

#

call().(fn (err) { print(err) });

quasi condor
#

call().(fn (err) 🏹 { print(err) }); 
#
call().(fn (err) |> { print(err) }); 
#

!charinfo |

wise cargoBOT
zenith radish
#

call().((err) ~ { print(err) });

#

what about this lads?

quasi condor
#

better

#

that's also how R does it

gentle flint
lavish rover
#

@zenith radish

zenith radish
faint ermine
#
let (thing1, thing2) = ("test", 5);
lavish rover
zenith radish
#

a = anonStruct() // {name: "LP", age: 12}
a.name // a.age

#

name, age = a.defile()

gentle flint
#

rewriting linux in rust sounds fun

#

rewriting python interpreter in rust

#

etc

faint ermine
zenith radish
#

@mild quartz

#

get back in here for a sec pls

#

need advice with CV AI

#

Is there a way that I as an individual can have apple/samsung level of picture/video processing using openly available ML models/techniques?

quasi condor
mild quartz
#

what processing exactly do you want

zenith radish
#

I guess this stuff for a start

#

Can I achieve what smartphones have in terms of image/video processing?

mild quartz
#

um

#

all but the most advanced should be possible

#

but not necessarily plug and play

#

like u can use open source to train an image recognition model

#

the same open source tools as apple

#

but the details will be closed source

zenith radish
#

I don't care that much about recognition

#

I care about making a video stream look better

#

I want to process the video streaming coming from the image sensor

#

In the same regard that modern smartphones do it

amber raptor
#

C and C++ is security risk