#voice-chat-text-0

1 messages · Page 721 of 1

cosmic thorn
#

Brazil

paper rain
cosmic thorn
whole bear
#

theres no money in that

paper rain
paper rain
cosmic thorn
paper rain
cosmic thorn
#

"Perform support service in order to answer questions in the operation of Ecommerce ERP system or analysis regarding technical problems reported by users."

paper rain
cosmic thorn
#

if you can solve the problem, the job is yours

#

i send you a dm

paper rain
cosmic thorn
#

agreed

paper rain
#

What do you prefer, self-taught or get taught by teachers?

mighty finch
#

you need to check for duplicate

cosmic thorn
#

prince, you are really eloquent

mighty finch
#

your tool to scrape will probably have checking

paper rain
#

After high school, I don't think I can learn by teachers anymore 'cause I'm really self taught py_guido

fiery hearth
mighty finch
#

well it's based on each person ability to absorb knowledge, some people need mentor some people can self learn @whole bear

#

raise or return if you in a function

#

red dot is the IDE debugger

paper rain
#

For sure it is ,that's why I'm finishing college

mighty finch
#

if in a loop break; is ok too

#

there alot of way

whole bear
#

import os
os.system("pause")

cosmic thorn
#

about what you said you can go on any channel and someone appears from void and responds with precision and quality, that's impressive

#

it's like going to a good college for free

whole bear
#

this server is one of the most incredible toolls

#

you can become like master programmer in no time

#

IF you know how to present your code and pose your question

cosmic thorn
#

yes and it's not like searching something on the internet and something static and bureaucratic

#

appears

whole bear
#

exactly

cosmic thorn
#

it's literally a conscious person

whole bear
#

as it should be

cosmic thorn
#

and a person can understand you

whole bear
#

yes

#

nah

digital fractal
#

do you guys think 60k in austin is low for an entry level software engineer?

#

damn

#

not really sure yet but

#

they offered 60 and I already signed the offer letter

#

I've just been thinking about how low it is

#

it's not a big tech company either so I'm sure it won't be too difficult?

#

yeah, I was just worried

#

if they didn't accept my offer

#

idk it's a big company so i'm not sure they will

#

but they did tell me that based on a performance evaluation every 6 months I can raise my salary by like 4.5%

#

so I'm thinking 9% isn't bad at all

#

assuming I do well on the evaluations

#

yeah, this is my first

#

thanks

#

also

#

should I be throwing in 2k a month in my 401k?

#

or is that too much

#

so based on the calculations, I make like 48k after taxes

#

but I'm not sure howw much people usually throw in

#

oh wait. I just read something online where it said I can only throw in 6k pretax dollars

#

takje that back.. it was just for ira

whole bear
#

@graceful grail did you mute me?

sick cloud
#

@somber heath did u change ur pfp again ?

somber heath
#

@sick cloud I did.

paper rain
#

Powershell is oop cmd not

whole bear
#

hello

#

how are you?

sick cloud
sweet helm
#

WHY CANT I TALK

hidden cove
#

Check voice chat verify channel

steel meteor
#

@gentle merlin :D

lusty marsh
hidden cove
lusty marsh
#

ä

#

Simo Häyhä

faint ermine
#

üöä

#

ß

lusty marsh
#

Z++

glacial osprey
#

Anyone here tried WordAI?

sick cloud
versed island
#

@sick cloud

glacial osprey
sick cloud
#

@versed island wtf is that ?

glacial osprey
#
Anyone used WordAI here?
sick cloud
versed island
#

this is not me

glacial osprey
#
import random

random('Even', 'Odd')
mighty finch
glacial osprey
#
import random

random.choice('Even', 'Odd')
#

import random

print(random.choice('Even', 'Odd'))

#

import random

mylist = ["Even", "Odd"]

print(random.choices(mylist, weights = [10, 1, 1], k = 14))

lusty marsh
#

!e

import random

print(random.choice(["Even", "Odd"]))
wise cargoBOT
#

@lusty marsh :white_check_mark: Your eval job has completed with return code 0.

Odd
glacial osprey
#

@somber heath would you like to play with me?

lusty marsh
#

😉

somber heath
#

@glacial osprey No, and I don't intend to in the future. Thanks. 🙂

#

Nothing to do with you, specifically, so much as a general policy.

faint ermine
#

@sick cloud im sorry im so fucking tired i clicked the link before realizing it was gonna start the game

glacial osprey
#

Ok get it

cosmic thorn
#

a secondary thought

mighty finch
#

what is this ?

mighty finch
#

ok...

glacial osprey
#

I have a programming related blog.

but i am confused to whether write general stuff about a particular programming language or write project based blog posts.

Like How to create this and that.

Or pick certain language and explain basics about it just like Books and Notes?

Please help.

I am listening in Voice Chat

lusty marsh
faint ermine
lusty marsh
#

@winged cedar Can't talk? Check out the #voice-verification channel! (764802555427029012)

faint ermine
whole bear
#

hey @somber heath hows it going?

glacial osprey
#

You need to be active for 30 minutes at least and send around 50 messages. then you can use voice verification

glacial osprey
mighty finch
#

i remember a class when i was in college we have to write coordinate to connect lines, somehow we made a 3d park with just coordinate @@!

lusty marsh
#
#version 330

out vec4 outColour;
in  vec2 passTextureCoord;

uniform sampler2D texSampler;

void main()
{
    vec4 color = texture(texSampler, passTextureCoord);
    
    outColour = color;
}
somber heath
#

@whole bear It goes.

faint ermine
surreal glacier
#

hi does anyone know oops

#

in python

lusty marsh
#
#version 330

layout(location = 0) in vec3  inVertexPosition;
layout(location = 1) in vec2  inTextureCoord;
layout(location = 2) in float inCardinalLight;

out vec2 passTextureCoord;
out float passCardinalLight;

uniform mat4 projViewMatrix;
uniform float globalTime;


vec4 getWorldPos()
{
    vec3 inVert = inVertexPosition.xyz;
    inVert.y += sin((globalTime + inVert.x) * 1.5) / 8.8f;
    inVert.y += cos((globalTime + inVert.z) * 1.5) / 8.1f;
    inVert.y -= 0.2;
    return vec4(inVert, 1);
}

void main()
{
    gl_Position = projViewMatrix * getWorldPos();

    passTextureCoord    = inTextureCoord;
    passCardinalLight   = inCardinalLight;
}
#
#version 330

out vec4 outColour;
in  vec3 passTextureCoord;

uniform samplerCube texSampler;

vec3 brightnessContrast(vec3 value, float brightness, float contrast)
{
    return (value - 0.5) * contrast + 0.5 + (brightness-1);
}

vec4 color;

vec3 gamma(vec3 value, float param)
{
    return vec3(pow(abs(value.r), param),pow(abs(value.g), param),pow(abs(value.b), param));
}


void main()
{
    color = texture(texSampler, passTextureCoord);
    color = vec4(brightnessContrast(color.xyz, 1.15f, 1.15f), color.w);
    color = vec4(gamma(color.xyz, 4.8f),color.w);

    outColour = color;
    if (outColour.a == 0) discard;
}
mighty finch
#

alot of maths that why he got a bunch of likes on that

surreal glacier
#

bro

#

is there anyone who knows oops?

#

please

#

i dont

lusty marsh
surreal glacier
#

okay noone to help?

#

fwck me

#

bye

mighty finch
somber heath
#

In geometry, a frustum[1] (plural: frusta or frustums) is the portion of a solid (normally a cone or pyramid) that lies between one or two parallel planes cutting it. A right frustum is a parallel truncation of a right pyramid or right cone.In computer graphics, the viewing frustum is the three-dimensional region which is visible on the screen. ...

sick cloud
#

your aren't voice verified ;-;

lusty marsh
hushed elm
faint ermine
hushed elm
severe elm
craggy zephyr
#

Cool❣️

hard wyvern
#

hello

craggy zephyr
#

Hi

eternal bough
#

plotly

whole bear
#

thats beatiful i imagined everything under snow!

#

@neon sleet hey got some stalanium

#

i wanted to build a pc

meager shale
#

hi

sick cloud
#

@whole bear helo

meager shale
#

whatsup

sick cloud
meager shale
#

good thanks

#

wonderful day

sick cloud
#

umm, nope

meager shale
#

why not?

#

I feel very good

sick cloud
meager shale
#

ov ok

sick cloud
#

i'm having a good-ish day though

#

thx

meager shale
#

super

#

print("Hi to everone")

#

interesting

#

! help

sick cloud
wise cargoBOT
#

@sick cloud :white_check_mark: Your eval job has completed with return code 0.

helo
meager shale
#

wow thanks

#

!e for x in range(10): print("This is the " + x + "th try.")

wise cargoBOT
#

@meager shale :x: Your eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "<string>", line 1, in <module>
003 | TypeError: can only concatenate str (not "int") to str
meager shale
#

!e for x in range(10): print("This is the " + str(x+1) + "th try.")

wise cargoBOT
#

@meager shale :white_check_mark: Your eval job has completed with return code 0.

001 | This is the 1th try.
002 | This is the 2th try.
003 | This is the 3th try.
004 | This is the 4th try.
005 | This is the 5th try.
006 | This is the 6th try.
007 | This is the 7th try.
008 | This is the 8th try.
009 | This is the 9th try.
010 | This is the 10th try.
meager shale
#

yes

sick cloud
wise cargoBOT
#

@sick cloud :white_check_mark: Your eval job has completed with return code 0.

001 | This is the 0th try.
002 | This is the 1th try.
003 | This is the 2th try.
004 | This is the 3th try.
005 | This is the 4th try.
006 | This is the 5th try.
007 | This is the 6th try.
008 | This is the 7th try.
009 | This is the 8th try.
010 | This is the 9th try.
meager shale
#

i didnt know that

sick cloud
#

now u do

#

u have been typing forever lol

meager shale
#

for i in range(4): print(f"I am counting to ten: {x+1}")

#

forgot e

#

!e for i in range(4): print(f"I am counting to ten: {x+1}")

wise cargoBOT
#

@meager shale :x: Your eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "<string>", line 1, in <module>
003 | NameError: name 'x' is not defined
sick cloud
meager shale
#

!e for i in range(4): print(f"I am counting to ten: {i+1}")

wise cargoBOT
#

@meager shale :white_check_mark: Your eval job has completed with return code 0.

001 | I am counting to ten: 1
002 | I am counting to ten: 2
003 | I am counting to ten: 3
004 | I am counting to ten: 4
sick cloud
#

@pliant atlas helo

meager shale
#

!e for i in range(3): print(f"I am counting to three: {x+1}")

wise cargoBOT
#

@meager shale :x: Your eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "<string>", line 1, in <module>
003 | NameError: name 'x' is not defined
meager shale
#

it is super fun

#

and quick too

sick cloud
#

go to #bot-commands @meager shale

meager shale
#

!e for i in range(3): print(f"I am counting to three: {i+1}")

wise cargoBOT
#

@meager shale :white_check_mark: Your eval job has completed with return code 0.

001 | I am counting to three: 1
002 | I am counting to three: 2
003 | I am counting to three: 3
severe pulsar
#

griff with that new pfp looking fresh

sick cloud
#

@severe pulsar hheelloo

severe pulsar
#

hey

sick cloud
#

@uncut meteor helo

whole bear
#

ohhh

#

yeahhh

#

this is veri good

uncut meteor
whole bear
#

ohhhh

#

gus

uncut meteor
#

Gus!

whole bear
#

gus

uncut meteor
#

who is gus

whole bear
#

this is gus

uncut meteor
#

Gus!

whole bear
#

Gus!

#

gus

#

gus

uncut meteor
whole bear
#

i like gus

#

bunny

#

troll bunny

#

))

uncut meteor
#

chunGUS

sick cloud
#

how do i make tic tac toe in discord ?

uncut meteor
#

izi

#

well

whole bear
#

what

uncut meteor
#

kinda

whole bear
#

is

#

it

#

gus

sick cloud
#

yepp

whole bear
#

gus

#

Gus!

sick cloud
#

👍

whole bear
#

yes

#

this

#

is v

#

very

#

good

#

learn js?

sick cloud
#

alr, thx

whole bear
#

what

sick cloud
#

pYtHon

#

yep

whole bear
#

i learn programming lang for 30 days

#

sites**

sick cloud
#

i'm using cogs

whole bear
#

gus

#

gussssss

#

gys

#

gus

#

guyss

#

gus

#

no(

#

gys

#

guys

#

gyus

#

bruh

#

ohhh

#

gusb

#

🙂

#

how are you?

sick cloud
uncut meteor
#

🔴 🔵 🟢
🟩 🟥 🟦
💙 💚 ❤️

whole bear
#

ohhh

#

php?

#

is this bad>?

#

php bad?

#

vk written on php

#

vkontakte

#

)

#

facebook

#

js?

#

for backend

#

i need backend

#

xD'

#

sc

#

cs

#

noo

#

gus

#

gyd

#

gys

#

gus

sick cloud
#

goose

whole bear
#

goose

#

yes

#

OMG

#

yes

#

:)))

sick cloud
#

?_?

whole bear
#

ok, i go write sites on c++ xD

#

i knoe

#

know

#

i am crazy xD

#

this is good idea)

#

backend

#

)

#

my social network

#

^))

#

i know

#

django

#

python very easy :)))

#

ff

#

i can't talk

#

but i have role

#

gus

uncut meteor
whole bear
#

goose

sick cloud
#

at home or when i'm outside ?

#

goose

#

@uncut meteor we say goru ଗୋରୁ

whole bear
#

ohhh

sick cloud
#

gohhh-ru

cloud stratus
#

Ghus

sick cloud
#

smth like dat

whole bear
#

buura russian

cloud stratus
#

nope

whole bear
#

ghus

cloud stratus
#

But Ghus reminds me of a character

#

Ghus from Saga comics

uncut meteor
#

E

#

goose == E

cloud stratus
#

E

whole bear
#

s

#

s

#

s

#
***s***
#

ohhhh

#

fc js

sick cloud
#

s

whole bear
#

among as -> s

#

goodbye

#

i go sleep

sick cloud
#

👍

#

@uncut meteor ^^^^^^^^^^^

rugged root
#

On in a bit, getting settled in at work

wise glade
#

localhost:8000

rugged root
sick cloud
rugged root
sick cloud
#

helo

whole notch
#

??

wise glade
#

scp -r my_project.git user@git.example.com:/opt/git is scp a linux command?

sick cloud
whole notch
#

oh

#

lol

sick cloud
#

it is kind of ezy

wise glade
#

python -m http.server, to run an http server
what for running an ssh server

#

so I did this

>> scp -r proj.git localhost:8000/repository
ssh: connect to host localhost port 22: Connection refused
lost connection
uncut meteor
#
/path/to/venv/Scripts/python /path/to/python/script.py
#
/path/to/venv/Scripts/activate
cedar briar
wise glade
#

python -m http.server, this server doesn't give read write access?

#

where python, didn't work for me

rugged root
#

py -0

wise glade
rugged root
wise glade
#

python -m http.server

#

can i use XAMPP?

#

anyone ever used it

#

anyone know sql? you must have setup a local server to practice with it

#

i'm gonna get some dinner, brb

rugged root
#

One sec, IT is calling

vague wing
#

Anyone help

#

@wise glade @rugged root

uncut meteor
#

what you need help with?

vague wing
#

@uncut meteor

uncut meteor
#

don't send photos of code

#

just copy paste it

#

!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.

uncut meteor
#

and like that ^ for highlighting

vague wing
#

But code at pc

#

Me from mobile

uncut meteor
#

discord can be on pc too

#

just go to the website

vague wing
uncut meteor
#

and login using qr code scan

vague wing
sick cloud
#

@uncut meteor Like i'm almost done with the game

uncut meteor
#

quick easy

sick cloud
proud briar
#

hi

fiery juniper
proud briar
#

plz someone help me in a small project

sick cloud
fiery juniper
rugged root
#

I'm talking to him in here

fiery juniper
sick cloud
#

@rugged root i'll try it

proud briar
#

k

sick cloud
#

editing the embed...

frozen oasis
#

did uk 1+1-1 = 0!?

fiery juniper
rugged root
#

1+1-1 = 0!

fiery juniper
#

ohhh

#

ok

rugged root
#

It fucked with me too

fiery juniper
#

makes sense now 😄

#

I was scared

#

that I forgot the basic of math

rugged root
#

EVERYTHING I KNOW IS WRONG

#

Yeah, exactly

sick cloud
uncut meteor
#

!e

x = 0
while x < 26:
  print(chr(97+x))
  x -=- 1
wise cargoBOT
#

@uncut meteor :white_check_mark: Your eval job has completed with return code 0.

001 | a
002 | b
003 | c
004 | d
005 | e
006 | f
007 | g
008 | h
009 | i
010 | j
011 | k
... (truncated - too many lines)

Full output: https://paste.pythondiscord.com/leqotofiwi.txt

fiery juniper
#

I know x -= 1 is equal to x = x - 1, but what does x -=- 1 equal to?

uncut meteor
#

so think about it the same

#

x -= -1

#

its minusing minus 1

fiery juniper
#

why won't you use x += 1?

uncut meteor
#

cos im evil

rugged root
#

Spite

frozen oasis
#

subtracting

uncut meteor
#

🙈

fiery juniper
sick cloud
uncut meteor
#

!e

class SubTact0r:
    """
 ___  __  __  ____  ____   __    ___  ____  ___  ____ 
/ __)(  )(  )(  _ \(_  _) /__\  / __)(_  _)/ _ \(  _ \
\__ \ )(__)(  ) _ <  )(  /(__)\( (__   )( ( (_) ))   /
(___/(______)(____/ (__)(__)(__)\___) (__) \___/(_)\_)
    """

    def __call__(self, *args, **kwargs):
        assert len(args) == 2, "Tract0rs requires only two numbers. murrr"
        assert all(type(a) is int for a in args), "Tract0rs only like ints, burrr"
        return args[0] - args[1]

TracKt0R = SubTact0r()
print(TracKt0R(420, 69))
cosmic thorn
#

hey guys

wise cargoBOT
#

@uncut meteor :white_check_mark: Your eval job has completed with return code 0.

351
cosmic thorn
#

what are you guys talking about

sick cloud
#

brb

cosmic thorn
#

fain

#

?

frozen oasis
#

faint

#

ur voice is too low

sick cloud
#

nope

#

@cosmic thorn

uncut meteor
#

@cosmic thorn ur static/background noise is awful. i've muted you till you get it sorted. let me know when you do

frozen oasis
#

he muted him personally

#

just for himself

sick cloud
#

oh, i thought he could muted ppl lol

frozen oasis
#

lol

warped tapir
#

hmmmm...

#

i want to get voice verified

#

but i dont want to spam

#

bc, i dont have stuff to talk...

uncut meteor
sick cloud
#

same

warped tapir
#

i know, but i dont have 50 messages

#

and i dont want to spam to get the 50 messages

sick cloud
#

how did u get channel id ?

uncut meteor
#

Channel Desc, for this chan

warped tapir
#

hmmmmm....

#

idk

gentle flint
sick cloud
warped tapir
#

;)

frozen oasis
warped tapir
#

im just going to keep sating random stuff

#

till i get the 50 messages

sick cloud
warped tapir
#

to get voice verified

#

but im not going to spam

sick cloud
warped tapir
#

sry if i annoy any of u

warped tapir
#

i see

sick cloud
warped tapir
#

aaa

#

like

#

im not trying to be annoying

#

and im not going to be toxic

#

i just wanted to get the voice verified

gentle flint
warped tapir
#

and im sending messages till i get the 50 i need

#

idk how many messages i sent

#

sry if im being annoying

cosmic thorn
#

i see what you are doing

warped tapir
#

like, im not trying to be spam

#

i just wanted to get voice verified

frozen oasis
#

kakashi sensei

digital jackal
#

yo guys

warped tapir
#

?

#

what?

#

lol

digital jackal
#

quick question

#
if text == "task manager" or "manager":
            sub.Popen("C:\\Windows\\system32\\Taskmgr.exe")
#

anything wrong with this code?

warped tapir
#

hmmmmm....

digital jackal
#

OSError: [WinError 740] The requested operation requires elevation

#

this is the error im getting

warped tapir
#

admin permissions?

#

idk

#

i dont know much about it

#

sry

digital jackal
#

i dont think task manager requirest admin permition

warped tapir
#

idk

digital jackal
warped tapir
#

sryy

digital jackal
#

i will look into it

warped tapir
#

well

#

good luck :D

digital jackal
#

ty

sick cloud
#

its 5:47 pm for me

cosmic thorn
#

coding in windows seems a nightmare

sick cloud
#

and its noice

gentle flint
#

I'm on Linux

#

and it's noicer

cosmic thorn
#

both are noice

#

but not noicer than me

warped tapir
#

is linux better than windows?

#

(in your opinion)

gentle flint
#

I think it is
but others will disagree

warped tapir
#

i have never used linux before

cosmic thorn
#

why windows 10 is so slow

warped tapir
#

idk

#

;w;

cosmic thorn
#

when I tried Ubuntu everything was fast

warped tapir
#

hmmmm...

cosmic thorn
#

8x

warped tapir
#

wow

#

0_0

#

yooo

#

now i need to send 50 messages

#

yeey

rugged root
#

Remember not to spam your way to it

warped tapir
#

ye

#

i know

rugged root
#

👍 Force of habit to remind

warped tapir
#

i was just about to ask if what i was doing was spamming

#

lol

rugged root
#

Eh... it was enough to make me go "ehhhh"

cosmic thorn
#

everyone I met in USA says

warped tapir
#

yeeeeey

#

i got it :D

cosmic thorn
#

that im look like indian

warped tapir
#

the voice verified

#

:)

uncut meteor
#

how can I shorten this?

_=[0,1]
while len(_)<31:_.append(sum(_[-2::]))
print(*_,sep='\n')
rugged root
#

Eso would know better. Just seeing that makes me sad

molten tinsel
cosmic thorn
#

happy_sloth

#

you thought process is very fast

#

i'm noticing that with people here

#

the pace is different

digital jackal
#
import speech_recognition as sr
import os
import subprocess as sub
import webbrowser as web
r = sr.Recognizer()
while True:
    with sr.Microphone() as source:
        print("speak:")
    
        audio = r.listen(source)
        try :
            text = r.recognize_google(audio)

            print("You said : ", format(text) )
        except:
            print("sorry cant hear anything")
        # if text == "exit" or "quit":
        #     quit()

        if text == "calculator":
            sub.Popen("C:\\Windows\\System32\\calc.exe")

        # if text == "task manager" or "manager":
        #     sub.Popen("C:\\Windows\\system32\\Taskmgr.exe")
        if text == "google" or "chrome" or "google chrome":
            web.open("google.com")
        
rugged root
#

!or-gotcha

wise cargoBOT
#

When checking if something is equal to one thing or another, you might think that this is possible:

if favorite_fruit == 'grapefruit' or 'lemon':
    print("That's a weird favorite fruit to have.")

While this makes sense in English, it may not behave the way you would expect. In Python, you should have complete instructions on both sides of the logical operator.

So, if you want to check if something is equal to one thing or another, there are two common ways:

# Like this...
if favorite_fruit == 'grapefruit' or favorite_fruit == 'lemon':
    print("That's a weird favorite fruit to have.")

# ...or like this.
if favorite_fruit in ('grapefruit', 'lemon'):
    print("That's a weird favorite fruit to have.")
uncut meteor
#

        if text == "google" or "chrome" or "google chrome":

        if text in ["google","chrome","google chrome"]:

        if text == "google" or text == "chrome" or text == "google chrome":
rugged root
#

The second one that griff has (the one with the list) is ideal

#

Lets you add or remove things more easily

#

Actually

#

A set might be more efficient.... but it's kind of moot in this case

digital jackal
#

text = r.recognize_google(audio)

#

text1 = text.lower

uncut meteor
#

lower()

digital jackal
#

()

uncut meteor
#

text = r.recognize_google(audio).lower()

hushed elm
#

@gentle flint what did you say?

gentle flint
#

I'm playing around with the tuning of a low whistle
it's heating up as I play it, thus getting longer

#

so the tuning is changing

hushed elm
#

what's a low whistle?

gentle flint
hushed elm
gentle flint
#

low whistle

hushed elm
#

ahaa

#

it's probably because it's made of metal

gentle flint
#

Yeah

hushed elm
#

wooden whistles don't have that problem

gentle flint
#

They change too

#

but because of damp breath

hushed elm
#

yeah?

#

aah yehh

#

oof

cosmic thorn
#

its not efficient

hushed elm
#

hover over me baby

cosmic thorn
#

using the mic of computer

gentle flint
#

UwU @hushed elm

cosmic thorn
#

to capture sound

#

I dont know why

hushed elm
digital jackal
#

765915388554641457-793517851007778847

gentle flint
#

OwO

#

hugs macro

hushed elm
#

aww

#

:*

gentle flint
#

looks at hen tie

hushed elm
#

hhhhh

digital jackal
#

765915388554641457-793517851007778847

hushed elm
#

oh boy

lusty marsh
gentle flint
#

perfect

digital jackal
#

765913831612350545

hushed elm
lusty marsh
#

Cock tie is not a wise thing to google 🤢

hushed elm
#

yeah i wouldn't recommend it

cosmic thorn
#

a while loop creating files

#

it happens

severe elm
#

hey @eternal bough, did you get some sleep

hushed elm
#

@severe elm you interrupt people a lot

gentle flint
#

it is his pride and his joy

severe elm
#

^^

hushed elm
#

yeah i saw

lusty marsh
cosmic thorn
#

seriously?

severe elm
#

i started the conversation about the plugins so i should have a admin-role like thing for this conversatoin

cosmic thorn
gentle flint
#

they will hunt you

warped tapir
#

im korean but i hate kimchi

gentle flint
#

and eat you

warped tapir
#

lol

gentle flint
#

and maybe even tickle you

#

(presumably before eating you)

severe elm
#

@lusty marsh saved the img

#

thx for that

lusty marsh
#

lol

#

new ProfilePic?

severe elm
#

it'll definetly have some great use

wise glade
#

what does Daemon mean in programming? I've seen it at a bunch of places now

gentle flint
#

it's a program running as a background process

#

In multitasking computer operating systems, a daemon ( or ) is a computer program that runs as a background process, rather than being under the direct control of an interactive user. Traditionally, the process names of a daemon end with the letter d, for clarification that the process is in fact a daemon, and for differentiation between a daemo...

severe elm
gentle flint
#

like, for instance, systemd

severe elm
#

i've to think about it

wise glade
#

so anything running in background, not necessarily a process

lusty marsh
wise glade
rugged root
#

!paste

wise cargoBOT
#

Pasting large amounts of code

If your code is too long to fit in a codeblock in discord, you can paste your code here:
https://paste.pydis.com/

After pasting your code, save it by clicking the floppy disk icon in the top right, or by typing ctrl + S. After doing that, the URL should change. Copy the URL and post it here so others can see it.

wise glade
#

anyone uses Gitlab?

rugged root
#

Used to

wise glade
#

so its worth it, to learn it, gonna do it

lusty marsh
#

!e ```py
import threading
import time

class Thread(threading.Thread):
def init(self):
threading.Thread.init(self)
self.daemon = False
self.dt = time.time()

def run(self) -> None:
    while True:
        pass

thread = Thread()
for i in range(1000000):
pass

print(f"thread ran for {time.time()-thread.dt}(s)")

wise cargoBOT
#

@lusty marsh :white_check_mark: Your eval job has completed with return code 0.

thread ran for 0.08312225341796875(s)
rugged root
#

@lusty marsh Use #bot-commands if you don't mind

#

Oh no sorry

#

Sorry, I see that it's relevant

#

That's on me

lusty marsh
#

This was a demo to Accelerator to show what Daemon means

uncut meteor
#

we going tier 4 on the 31st

rugged root
#

Yeah I see that now

uncut meteor
#

rip work

rugged root
#

Sorry, Sam

wise glade
lusty marsh
#

np

amber raptor
#

Discord doesn't require Admin rights

digital jackal
#

PermissionError: [WinError 5] Access is denied

amber raptor
#

if it doesn't have it, it installs into userland AppData

#

I'm assuming Windows

#

Wait, Is this Python issue?

#

You already have that.......

#

Windows has Cortana and you can enable "Hey Cortana"

cosmic thorn
#

are you trying to open discord like

#

open a browser

#

with webbrowser.open()

wise glade
#

forget it 1gb, I think

amber raptor
#

run Virtual Machine with Gitlab

wise glade
amber raptor
#

ok

wise glade
#

.ova files, they run in VirtualBox?

amber raptor
#

yes

digital jackal
cosmic thorn
#

i know

digital jackal
#

not the actual app

cosmic thorn
#

yes

digital jackal
#

i need the actual app

wise glade
#

I want to learn sql, so should I start with what is server, host, router, etc stuff, or just dive into making tables and working with queries (is that what they're called)?

amber raptor
#

256525845961637888

#

Database servers do not require auto increment PKs, only require PK is unique

cosmic thorn
#

a id which increment with time?

#

snowflake is like uuid4()

#

right?

wise glade
#

you guys did paid internships?

rugged root
#

Not I

digital jackal
#

sub.Popen("cmd.exe")

#

Microsoft Windows [Version 10.0.19041.685]

#

???????????????????

#

why is it giving me this output

wise glade
#

i googled define jaded, comes out, bored or lacking enthusiasm, typically after having had too much of something 😂😂, so Rabbit's bored

amber raptor
#

like College = automatic great job

#

debt you take on in college will be easily paid because becuase it's not a ton of debt

wise glade
#

which one?

amber raptor
#

🇩 Rabbit

wise glade
digital jackal
#

if text == "cmd":
sub.Popen("cmd.exe")

#
import speech_recognition as sr
import os
import subprocess as sub
import webbrowser as web
r = sr.Recognizer()
while True:
    with sr.Microphone() as source:
        print("speak:")
    
        audio = r.listen(source)
        try :
            text = r.recognize_google(audio).lower()

            print("You said : ", format(text) )
        except:
            print("sorry cant hear anything")
        if text == "exit" or text =="quit":
            quit()

        if text == "calculator":
            sub.Popen("C:\\Windows\\System32\\calc.exe")

        if text == "google" :
            web.open("google.com")

        if text == "youtube" :
            web.open("youtube.com")
            
        if text == "cmd":
            sub.Popen("cmd.exe")
wise glade
#

talk is cheap, show him the code

digital jackal
#

Microsoft Windows [Version 10.0.19041.685]
(c) 2020 Microsoft Corporation. All rights reserved.

wise glade
#

what if you run your script in powershell? would it open cmd then?

digital jackal
#

more?

amber raptor
#

no

#

it opens cmd line

uncut meteor
#

please sir, can I haf some more?

digital jackal
#

TypeError: open() missing required argument 'flags' (pos 2)

cosmic thorn
#

BAKE

#

can you speak?

severe pulsar
#

eyy rabbits back

#

post-rabbit vc is in session

rugged root
#

@cosmic thorn If you click on their name you can see the roles they have

#

It'll tell you if they have the voice-verified role

cosmic thorn
#

oh

#

i see

#

thanks

rugged root
#

Not a big deal just letting you know

#

Yep!

wise glade
#

so, when i fork a repo on Github, I create a copy of that repo to work on, and when I make changes to that fork, the original repo person can pull my changes anytime when they think appropriate.
is that how it all works in companies?

amber raptor
#

No

wise glade
#

ok, let me read the thing again

amber raptor
#

Companies don't fork internally

#

we branch

#

unless some other team is really really big jerks

wise glade
amber raptor
#

That's Open Source with unknown people contributing to your code

#

at companies, you assume a coworker isn't a complete idiot hacking at your code

wise glade
#

so coworkers have access to the origin/master, they just branch and work on their branches, and then merge later

#

ok, so no write access, they create pull requests, and the admin pulls in changes if they like em

amber raptor
#

Yea

wise glade
#

what's bullshit? 😂

#

corporate stuff, i get it

rugged root
#

Trying to get the right permissions, possibly filling out forms, having to ask multiple people, etc.

wise glade
#

yeah in my country, if a coworker is a jerk, he (and believe me its a man) gets beaten outside probably, and if he goes to police "that guy slapped me", police goes "he slapped you cause you deserve it, now get the f*** outta here" 😂

rugged root
#

Wait like

#

Actually physically attacked?

cosmic thorn
#

same here

wise glade
#

india, you know how crazy it can get here

rugged root
#

Yeesh

limber blaze
#

im so full

#

but my breakfast place gave me extra food today

rugged root
#

Have it delivered?

limber blaze
#

i can’t start working until i finish it

wise glade
rugged root
#

You can always save some for later

limber blaze
#

no just takeout

#

they gave me extra sausage and eggs

rugged root
#

Just save it as a snack for later

#

The sausage will keep. Eggs might end up a bit rubbery

limber blaze
#

i could but i typically don’t eat until 10 hours from now

#

im j tryna cram rn before i take my meds

rugged root
#

Ahhh, okay yeah I feel you there

wise glade
narrow mango
#

can you tell me how and when we use import math or from math import i'm a student so i'm a beginner

limber blaze
#

oh that’s interesting

wise glade
#

hearing Rabbit's talk, I read somewhere, "Companies don't want their employees to hve a creative thinking, they want em to work a certain way forever " 😂 , seems legit now

cosmic thorn
#

lol

limber blaze
#

yes that is facts

wise glade
limber blaze
#

numpy tho

narrow mango
#

yes@wise glade

rugged root
#

My right click context menu is a BIT insane

narrow mango
#

how

wise glade
#

oh.. ok 😅

#
from math import sqrt
print(sqrt(12321312))
narrow mango
#

oh okay thanks

pure path
#

is there a way to undo ```cmd
pipenv sync --dev

on a project?
craggy zephyr
#

Hey @rugged root did you forgot to wear your santa cap?

uncut meteor
#

its nae chrimbo

rugged root
wise glade
#

what does git add --patch do?

#

I'll google it, just was wondering someone would tell me in a line or something, talking

craggy zephyr
hard wyvern
#
$action = New-ScheduledTaskAction -Execute "notepad.exe" 
$trigger = New-ScheduledTaskTrigger -Weekly -AT "23:00" -RepetitionDuration "3:00:00" -RepetitionInterval "00:20:00" -DaysOfWeek 'Monday', 'Tuesday', 'Wednesday','Thursday'```

pls help I am getting error in this powershell script
#
At line:1 char:12
+ $trigger = New-ScheduledTaskTrigger -Weekly -AT "23:00" -RepetitionDu ...
+            ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidArgument: (:) [New-ScheduledTaskTrigger], ParameterBindingException
    + FullyQualifiedErrorId : AmbiguousParameterSet,New-ScheduledTaskTrigger```
#

error

wise glade
#

oh god, what is git add --patch, I did this, and

diff --git a/file2.py b/file2.py
index 83f38f3..d96e724 100644
--- a/file2.py
+++ b/file2.py
@@ -1 +1,3 @@
-print("master 1")
\ No newline at end of file
+print("master 1")
+
+print("hello")
\ No newline at end of file
(1/1) Stage this hunk [y,n,q,a,d,e,?]? 
``` popped up
pure path
#

Heya

#

Good, gotta go to sleep soon

rugged root
#

@ocean comet I just realized that your avatar is a potato and not a Twinkie

pure path
#

11:15

ocean comet
#

@rugged root lmao

hard wyvern
wise glade
#

am I the only one , who thinks its a ||turd||

ocean comet
#

wot seriously

uncut meteor
#

are you telling me you don't have 8bit poops

#

?

ocean comet
#

Full 256 here m8

wise glade
ocean comet
#

Yes that's what I see too lol

hushed elm
wise glade
#

well if its a potato, I'm don't wanna eat it ever

ocean comet
#

ok

#

it's a staple of my minecraft diet

#

well cooked anyway

wise glade
rugged root
#

Ahhhh, for some reason I thought it was from Stardew Valley

hard wyvern
#

great

wise glade
pure path
wise glade
ocean comet
#

Nice

wise glade
hard wyvern
pure path
wise glade
#

i gonna go to bed now, see you later, bye

ocean comet
#

Mine rn

wise glade
hushed elm
wise glade
#

let me show you guys something intresting, I took

wise glade
#

comments

hard wyvern
#

nice

wise glade
#

anyone grossed out, I could delete em

ocean comet
#

Damn what festival?

wise glade
#

for the unknown , its a rat

ocean comet
hushed elm
#

@rugged root

wise glade
#

I seriously read today, Nurse got vaccinated, and after 8-9 days was found positive for Corona
not kidding

rugged root
wise glade
#

what's fizer? I think I've heard the term in The wolf of wall street

#

ok pfizer

hushed elm
wise glade
#

geez you've got everything

limber blaze
#

want a break from the ads

candid venture
uncut meteor
#

my background

hushed elm
uncut meteor
#

my one at work is blue

hushed elm
amber raptor
#

I wish Borderlands was easier to play MP

uncut meteor
#

whats mp?

amber raptor
#

Multiplayer

uncut meteor
#

ah

#

i played on console for most of my MP experience. so it was pretty easy

hushed elm
hard wyvern
#
$action = New-ScheduledTaskAction -Execute "notepad.exe" 
$trigger = New-ScheduledTaskTrigger -Weekly -AT "23:00" -RepetitionDuration "3:00:00" -RepetitionInterval "00:20:00" -DaysOfWeek 'Monday', 'Tuesday', 'Wednesday','Thursday'```



pls help I am getting error in this powershell script


error:-


```New-ScheduledTaskTrigger : Parameter set cannot be resolved using the specified named parameters.
At line:1 char:12
+ $trigger = New-ScheduledTaskTrigger -Weekly -AT "23:00" -RepetitionDu ...
+            ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidArgument: (:) [New-ScheduledTaskTrigger], ParameterBindingException
    + FullyQualifiedErrorId : AmbiguousParameterSet,New-ScheduledTaskTrigger```
#

@rugged root

hushed elm
#

@rugged root if something fancies you

rugged root
hushed elm
#

@whole bear you could use Unity aswell, it compiles to mobile too

rugged root
hushed elm
#

yeh

amber raptor
#

Javascript/Typescript or Java/Kotlin or C#

rugged root
#

I really need top pick C# back up

amber raptor
#

well, Java/C# go to Bytecode

hushed elm
#

you could try this

rugged root
#

Beeware is fiiiiiiine

amber raptor
#

if you want to do web, javascript/Typescript

hushed elm
#

for MUDs in javascript

rugged root
#

!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.

versed island
#

tech

rugged root
#

We've got a section - ah

#

Not sure then

versed island
#

jon duckett is the best author for frontend

limber blaze
#

frontend isn’t real

hushed elm
#

@limber blaze no u

amber raptor
#

This will end poorly

hushed elm
#

elon is doing it for the marketing

amber raptor
#

very poorly

rugged root
#

@hushed elm Your keyboard is coming through

hushed elm
#

and he succeeded, cuz people are talking about it

hushed elm
#

lots of information is bullshit, don't worry about it

rugged root
hushed elm
#

yeh i guess

cosmic thorn
#

a machine does not have the ability to be kind

#

or sense of justice

hushed elm
#

computers are our tools, it depends on how we use them

cosmic thorn
#

and they work in a pure logical way

#

100% predictable

digital jackal
#

do you know that in 10 years (from 2007 to 2017) the drones have replaced pilots and camera mans jobs

ocean sail
#

yo

cosmic thorn
#

thats automation

digital jackal
ocean sail
#

not much hbu?

digital jackal
ocean sail
#

same hahaha

digital jackal
#

????

ocean sail
#

a course bro

digital jackal
ocean sail
#

hahahaha i finished about half of it

digital jackal
#

nice

ocean sail
#

yo btw

#

when do you guys ever use regex?

#

is it necesarry?

digital jackal
#

why are you learning it

#

as a begginer

hushed elm
#

especially in the US

ocean sail
#

its in the course

digital jackal
#

you shouldnt

ocean sail
#

theres a whole chapter on it bruv

digital jackal
#

lmao

ocean sail
#

when will i need it tho?

digital jackal
#

wait

#

ah you mean the basics

#

not the js and stuff

cosmic thorn
#

wow

ocean sail
#

nah in python

#

import re...

digital jackal
#

kk

#

ye

#

not really

#

perhaps in more advanced projects

#

cz i didint really used it that much

#

i used it like 1 time

ocean sail
#

k

cosmic thorn
#

space junk

#

all codes are space junk..

somber heath
#

The Kessler syndrome (also called the Kessler effect, collisional cascading, or ablation cascade), proposed by NASA scientist Donald J. Kessler in 1978, is a theoretical scenario in which the density of objects in low Earth orbit (LEO) due to space pollution is high enough that collisions between objects could cause a cascade in which each colli...

cosmic thorn
#

thats seems interesting

#

its just statistical anyway

#

if it have a math proof

#

terrible thing to think

hasty fjord
#

this haunts me at night

somber heath
#

The crested pigeon (Ocyphaps lophotes) is a bird found widely throughout mainland Australia except for the far northern tropical areas. Only two Australian pigeon species possess an erect crest, the crested pigeon and the spinifex pigeon. The crested pigeon is the larger of the two species. The crested pigeon is sometimes referred to as a topkn...

rugged root
tranquil barn
#

Ahh....looking good @rugged root

rugged root
tranquil barn
rugged root
#

Oh right right

#

It's what I had before the santa hat

uncut meteor
cosmic thorn
#

I mean

rugged root
#

@hasty plinth Easier to talk to us in here

cosmic thorn
rugged root
#

This is where we usually watch

#

Fuck yes, found the repo

cedar briar
#

can anyone on voice help me with Flask Security?

rugged root
somber heath
sick cloud
somber heath
#

@sick cloud That wouldn't qualify as adequate physical distancing, in my book.

cosmic thorn
#

i have no idea what you guys are talking about

#

but it seems smart

sick cloud
#

i'm not paying attention lol

cosmic thorn
#

im in

#

since this morning

sick cloud
cosmic thorn
#

its 04:05 pm here

pure path
#

WHy

#

nyc is amazing

rugged root
#
mah_string = ""
noble copper
whole bear
#

😥

#

vermicilli noodles

#

vegetable broth

amber raptor
#

here is how you make ramen noodles for anyone who's google is broken

whole bear
#

small can of mixed veggies

amber raptor
pure path
#

@rugged root voice shh would be useful now wouldn't it

rugged root
#

You don't even know

pure path
#

lol

weary zephyr
#

Just joined vc

#

what

amber raptor
#

Voice disconnect button is ultra useful

weary zephyr
#

i am so confusion

whole bear
#

hot sauce of your choice (sracha, texas pete)

#

complete seasoning powder

weary zephyr
#

??

uncut meteor
#

they said it

#

not me

pure path
#

oh it's more darker

#

from the looks of it

weary zephyr
#

lmao

uncut meteor
#

Rahmen

rugged root
#

Rayman