#voice-chat-text-0

1 messages · Page 720 of 1

near niche
#

it averages around 3000-4000

#

it would fail if the user inputted more than 6000 chars in the "write your own comments" section

weary zephyr
rugged root
#

3k to 4k is still massive

near niche
#

"all user input is evil"

faint ermine
near niche
#

oh wiat

#

haha

weary zephyr
near niche
#

right

#

i'm safe then 🙂

rugged root
#

Even if they did, worst it would do is error out and just wouldn't send

#

Bot would still be live

#

Just that command call would fail

near niche
#

ok, at least it wouldn't crash, so i guess i'm safe

weary zephyr
#

mhm

near niche
#

time to "fix" my code

#

@faint ermine do the formatting codes **bold** and *italics* work in embed boxes?

faint ermine
#

depends on the field

limber blaze
#

[0, 1, 2, 3]

weary zephyr
#

"Brackets" is literally the vaguest description you could give lmao

near niche
#

@faint ermine is the name mandatory for a field in an embed?

faint ermine
#

check the docs

grave osprey
#

if u have the file/folder open in the ide u cant delete it

#

close pycharm, i get that error in vscode if its loaded somewhere it says 'not sufficient perms'

#

b4

#

@limber blaze

#

nobody listenin to me hehe

#

🙂

#

i fix

#

i do good

#

yes

#

im here

weary zephyr
#

i don't like talking :/

faint ermine
limber blaze
rugged root
#

@graceful grail 👋

faint ermine
#

!e ```py
iterable = [
{"thing": [True, False]},
{"thing": [False, False]},
{"thing": [False, True]}
]

f = filter(lambda x: x["thing"][0], iterable )
print(list(f))

wise cargoBOT
#

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

[{'thing': [True, False]}]
rugged root
#

λ

#

Such a dick

faint ermine
#
sum(map(lambda x: x.range.timedelta, entries), timedelta())
rugged root
#

@faint ermine I'm so mad because I'm failing to do it

#

I concede

#

Yeah, I'm dumb and can't figure it out

wraith ridge
#

do what?

rugged root
#

Back in a bit

#

Cool, got an audit laptop that won't boot

#

Wheeee

#

Will be a bit longer for me than I anticipated

lime plaza
amber raptor
#

No

#

Don't listen to EMac Prophets

#

they are spreading falsehoods

amber raptor
stoic ore
#

Hi people

hushed elm
amber raptor
#

Unfortunately, it's not as simple as a revert since the original change was made in response to other customer issues with the fmod function. We're currently evaluating a solution to make all parties happy.

hushed elm
#

VIM

#

VIM FTW

#

well vim is really straightforward

#

if it's running on ARCH LINUX it's even better

hushed elm
#

well vim is a great editor

#

and arch linux is a good OS

#

i use arch btw

#

a lot, i feel

#

cuz i use canon because of that same logic

#

i've got big pants too

amber raptor
#

and VSCode is just as powerful as EMacs

#

only people who use EMacs are grizzled Unix Veterans who grew up with it

rugged root
#

With mighty neckbeards

#

That could shave through steel

digital jackal
#

what is docker used for and how can i use it

#

like the thing in VS

amber raptor
#

no one is saying "Don't use EMACs", everyone is saying "Don't be EMac Prophet"

limber blaze
#

so guys

#

in python

#

does this work the same as self

#

like in a constructor

#

this.sessionID

#

can i do constructor.sessionID to get said sessionID outside the object

wraith ridge
#

whats constructor?

limber blaze
#

like in node

wraith ridge
#

you can access the instance of the object yes

limber blaze
#

okay cool

#

just using name.variable

wraith ridge
#

checkout dir to see what you have access to

#

yup

limber blaze
#

okay cool thank you

rugged root
#

@vivid palm There's something oddly satisfying about the fact that the hat stays in place in your avatar. It's like it's waiting for the bunny booty to be in the right place.

vivid palm
#

lolll. i originally wanted the hat to animate along with it but nah too much work. sad xmas is now over 😦

rugged root
#

Honestly it was hard to tell with COVID

#

Everything just felt..... off

#

Hey LX, just noticed you on here. And yeah, I'm usually on here for most of the day on weekdays

#

Although the topics tend to shift wildly in content

stuck furnace
#

Hey hey 😄

#

How's the holidays going?

rugged root
#

Decent enough

#

We've always got a shoulder for that. Or suggestions. Not necessarily good ones, but....

rugged root
amber raptor
#

Hows your email conversion going?

stuck furnace
#

Yeah not bad 😄

#

I drank too much bucks fizz and I'm feeling the effects

#

champagne and orange juice is a dangerous combination

#

Always finding new things in the standard library

#

@lime plaza check out our website:

#

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

amber raptor
#

Java is better for learning programming as in the concepts

#

for production use, it's awful

rugged root
#

!projects

wise cargoBOT
#

Kindling Projects

The Kindling projects page on Ned Batchelder's website contains a list of projects and ideas programmers can tackle to build their skills and knowledge.

stoic ore
#

every thing but slowly

rugged root
#

I feel your pain on so many levels. And yeah, tax season destroys me. Not because of how it hits me, but because of how it hits the accountants

#

Scary stuf

stoic ore
#

😄 fghmkgf

vivid palm
#

documentation

stuck furnace
#

:=

vivid palm
#

aw lol

grave osprey
#

@wraith ridge u leavin?

stuck furnace
#

Is that a new channel?

wraith ridge
#

Pooping

stuck furnace
#

Also I think machine learning people are kind of weary of people asking about the subject 😄

#

Because of all the hype

#

Square is normally a bit 'nicer' than absolute value.

#

Because it's more analytical/smooth.

#

The absolute value function has a kink in it 😄

vivid palm
#

this sounds like math hahahah

limber blaze
#

[2, 6, 8, 3, 2]

#

[4, 6, 3, 4, 3]

tidal salmon
#

!e

import numpy as np
a = np.random.randint((5,))
b = np.random.randint((5,))
print(a, b)
a **= 2
b **= 2
print(a, b)
c = np.sqrt(a + b)
print(c)
limber blaze
#

sqrt(sum([(a - b)**2 for a, b in zip(vec1, vec2)]))

wise cargoBOT
#

@tidal salmon :white_check_mark: Your eval job has completed with return code 0.

001 | [2] [0]
002 | [4] [0]
003 | [2.]
tidal salmon
#

!e

import numpy as np
a = np.random.randint(-10, 10, size=(5,))
b = np.random.randint(-10, 10, size=(5,))
print(a, b)
c = np.sqrt((a - b) ** 2)
print(c)
wise cargoBOT
#

@tidal salmon :white_check_mark: Your eval job has completed with return code 0.

001 | [ 9 -3 -7  4 -1] [ 0 -3 -7  8  5]
002 | [9. 0. 0. 4. 6.]
tidal salmon
#

!e

import numpy as np
a = np.random.randint(-10, 10, size=(5,))
b = np.random.randint(-10, 10, size=(5,))
print(a, b)
c = np.sqrt(np.sum((a - b) ** 2))
print(c)
wise cargoBOT
#

@tidal salmon :white_check_mark: Your eval job has completed with return code 0.

001 | [  4  -3 -10   7   5] [ 7 -2 -5  5 -9]
002 | 15.329709716755891
tidal salmon
#

!e

import numpy as np
a = np.random.randint(-10, 5, size=(5,))
b = np.random.randint(-10, 5, size=(5,))
print(a, b)
c = np.sqrt(np.sum((a - b) ** 2))
print(c)

a, b = np.abs(a), np.abs(b)
print(np.sqrt(np.sum((a - b) ** 2)))
wise cargoBOT
#

@tidal salmon :white_check_mark: Your eval job has completed with return code 0.

001 | [-1 -9 -2  4 -5] [-8  1 -8 -2  1]
002 | 16.0312195418814
003 | 13.0
stuck furnace
#

What is the context sorry?

#

Haven't really been listening.

tidal salmon
stuck furnace
#

Oh right. That's the Euclidean distance.

#

Yo @gentle flint

#

Anyone have any resolutions? 😄

#

Trying to think of a conversation starter 😅

#

.topic

viscid lagoonBOT
#
**If you could be anyone else for one day, who would it be?**

Suggest more topics here!

stuck furnace
#

We have a bot for that 😄

stoic ore
#

I'l be out see u later

stuck furnace
#

That sounds like it would have been a good place to use property-based testing.

amber raptor
#

my favorite test for rest API is extra field test

#

we check to see if there is any fields we don't expect

#
Describe "Calc API Tests" -Tags "API"{
    Context "Calc Tests"{
        It "Adds 5+5"{
            $testURI = "$($URI)/calc/add?number1=5&number2=5"
            (Invoke-RestMethod $testURI | ConvertTo-Json) | Should -Be (@{result = 10} | ConvertTo-Json)
        }
        It "Subtract 20-10"{
            $testURI = "$($URI)/calc/subtract?number1=20&number2=10"
            (Invoke-RestMethod $testURI | ConvertTo-Json) | Should -Be (@{result = 10} | ConvertTo-Json)
        }
        It "Multiply 2*5"{
            $testURI = "$($URI)/calc/multiply?number1=2&number2=5"
            (Invoke-RestMethod $testURI | ConvertTo-Json) | Should -Be (@{result = 10} | ConvertTo-Json)
        }
        It "Divide 100/10"{
            $testURI = "$($URI)/calc/divide?number1=100&number2=10"
            (Invoke-RestMethod $testURI | ConvertTo-Json) | Should -Be (@{result = 10} | ConvertTo-Json)
        }
        It "Expo 5^5"{
            $testURI = "$($URI)/calc/expo?number1=5&number2=5"
            (Invoke-RestMethod $testURI | ConvertTo-Json) | Should -Be (@{result = 3125} | ConvertTo-Json)
        }
        It "Calc JSON Post / Adding 5+15"{
            $testURI = "$($URI)/calc/calc"
            $body = @{
                op = 'add'
                number1 = 5
                number2 = 15
            }
            (Invoke-RestMethod -Method POST -Body ($body | ConvertTo-Json) -Uri $testURI | ConvertTo-Json) | Should -Be (@{result = 20} | ConvertTo-Json)
        }
    }
}``` Pester tests
whole bear
#

uwu

#

i cant speak

stuck furnace
#

Alright 😄

#

don't they have an upside-down question mark in Spanish?

gentle flint
#

ij

#

vs

#

ij


#

#

vs

#

ff

stuck furnace
#

Combinatorics can actually be pretty rough 😄

#

Nice. I've heard of classes where they drop your worst two assignments from your grade.

#

See ya

#

Oh, that sucks

#

At Berkeley they do the opposite and give you altruism points for helping others.

#

*In some CS courses

#

Even from one department within the college to the next 😄

#

The maths department at my uni was way better at doing undergraduate teaching than the CS department.

#

I'm off too. See Ya

eternal bough
#

@grave osprey can you hear us

digital jackal
#
while True:
    ret frame = video_capture.read()
#

anything wrong with this code?

#

im getting a syntax error and i know its wrong

#

but in the course im learnin the guy put this and it worked just fine

stuck furnace
#

Weird, can you send the link?

#

Ah right, thought it might be some weird python interpreter 😄

digital jackal
#

while True:
ret, frame = video_capture.read()

#

AttributeError: partially initialized module 'face_recognition' has no attribute 'load_image_file' (most likely due to a circular import)
[ WARN:0] global C:\Users\appveyor\AppData\Local\Temp\1\pip-req-build-qjdp5db9\opencv\modules\videoio\src\cap_msmf.cpp (435) `anonymous-namespace'::SourceReaderCB::~SourceReaderCB terminating async callback

stuck furnace
#

Maybe you named a module the same as a library module?

#

Is your file called face_recognition.py?

#

And you do import face_recognition inside that file?

#

Ah, that's the issue 😄

#

Erm, what module are you trying to import?

limber blaze
#

py -m pip install face_recognition

stuck furnace
#

CMake is a build tool

digital jackal
#

CMake must be installed to build the following extensions: _dlib_pybind11
*******************************************************************

----------------------------------------

ERROR: Command errored out with exit status 1: 'C:\python39\python.exe' -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\Users\Marven\AppData\Local\Temp\pip-install-9_ytej55\dlib_8c2066af32724798900e39f529cd134e\setup.py'"'"'; file='"'"'C:\Users\Marven\AppData\Local\Temp\pip-install-9_ytej55\dlib_8c2066af32724798900e39f529cd134e\setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(file);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, file, '"'"'exec'"'"'))' install --record 'C:\Users\Marven\AppData\Local\Temp\pip-record-zwjva_9s\install-record.txt' --single-version-externally-managed --compile --install-headers 'C:\python39\Include\dlib' Check the logs for full command output.

stuck furnace
#

Ah, I'm not very knowledgeable about Windows sorry.

#

Do you also have python 3.8 installed?

#

The package is more likely to have pre-built wheels for that.

#

Try installing it into 3.8

#

py -3.8 -m pip install face-recognition

#

If you've heard of Make, CMake is like a tool that generates makefiles.

#

And that's pretty much the extent of my knowledge. 😄

#

It may take a while.

#

Do you have a progress bar?

digital jackal
#

/"

#

\

stuck furnace
#

Oh right 😄

#

Yep. Is your computer getting hot? 😄

#

That might be a sign of progress.

#

Compilation can take a while.

digital jackal
#

IT WORKED

#

F YES

#

ValueError: operands could not be broadcast together with shapes (1,720,1280,3) (128,)

stuck furnace
#

brb

grave osprey
#

@eternal bough i can hear now, airpod wasnt working but shud be gud now

hushed elm
#

lol

past pebble
#

Why don't I have permission to speak in this channel?

digital jackal
#

my_face_encoding = fr.face_encodings(Marven_image)[0,1]

#

TypeError: list indices must be integers or slices, not tuple

hushed elm
#

i gotta go, see ya!

versed breach
#

Hi @grave osprey

past pebble
#

Any clue on what permissions are needed to speak?

digital jackal
#

!voiceverification

past pebble
#

!voiceverification

#

I see now.

#

Yes, voice-verification

uncut meteor
#

my_face_encoding = fr.face_encodings(Marven_image)[0,1]

#

my_face_encoding = fr.face_encodings(Marven_image)[0:1]

grave osprey
#

@versed breach aha hey

versed breach
#

whats up homie?

grave osprey
#

just configuring my laptop / programs / setting n stuff wbu?

past pebble
#

Technically, he's right.

versed breach
#

@grave osprey about to check out that link in your server that was sent to you

grave osprey
#

oh ya that phising thing, its always fun to try n figure out how that stuff works aha

versed breach
#

@grave osprey lets pull this to dm's

digital jackal
#

raceback (most recent call last):
File "d:\Users\Marven\Desktop\opencv\facerecognitionz.py", line 9, in <module>
Marven_face_encoding = fr.face_encodings(Marven_image, Charbel_image)[0:1]
File "C:\python39\lib\site-packages\face_recognition\api.py", line 213, in face_encodings
raw_landmarks = _raw_face_landmarks(face_image, known_face_locations, model)
File "C:\python39\lib\site-packages\face_recognition\api.py", line 158, in _raw_face_landmarks
face_locations = [_css_to_rect(face_location) for face_location in face_locations]
File "C:\python39\lib\site-packages\face_recognition\api.py", line 158, in <listcomp>
face_locations = [_css_to_rect(face_location) for face_location in face_locations]
File "C:\python39\lib\site-packages\face_recognition\api.py", line 49, in _css_to_rect
return dlib.rectangle(css[3], css[0], css[1], css[2])
TypeError: init(): incompatible constructor arguments. The following argument types are supported:
1. _dlib_pybind11.rectangle(left: int, top: int, right: int, bottom: int)
2. _dlib_pybind11.rectangle(rect: dlib::drectangle)
3. _dlib_pybind11.rectangle(rect: _dlib_pybind11.rectangle)
4. _dlib_pybind11.rectangle()

Invoked with: array([ 83, 128, 63], dtype=uint8), array([ 82, 127, 62], dtype=uint8), array([ 82, 127, 62], dtype=uint8), array([ 82, 127, 62], dtype=uint8)
[ WARN:0] global C:\Users\appveyor\AppData\Local\Temp\1\pip-req-build-qjdp5db9\opencv\modules\videoio\src\cap_msmf.cpp (435) `anonymous-namespace'::SourceReaderCB::~SourceReaderCB terminating async callback

limber blaze
#

😎

faint ermine
uncut meteor
#

🕵️

faint ermine
#

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

uncut meteor
faint ermine
eternal bough
#

sorry be back in 15min

faint ermine
#

PRAWW

uncut meteor
faint ermine
uncut meteor
faint ermine
grave osprey
#

yall wanna send me ur theme/config 😛

uncut meteor
grave osprey
#

whoevers is better lol

uncut meteor
#

so mine

grave osprey
#

griffs

#

lololol

#

ye just sync it

uncut meteor
#

PRAW-PRINT

#

PRAWvent

faint ermine
whole bear
#

:sofunntbhai:

orchid hollow
#

CООСАААААТЬ

#

ПРОСТО БРАТЬ И СОСАЛЬ БОЛЬШОЙ ЧЛЕН БОЛЬШИЕ ЯЙЦА

whole bear
#

hi

worthy granite
#

Hi

whole bear
#

i dont speak

#

why

neon sleet
#
num1 = input('Enter the first value')
num2 = input('Enter the second value')
operation = input('Operation : ')
...
#

str.split()

long hill
#

yeah

#

congraturation

#

he y

fast gyro
#

hello

whole bear
#

hi

fast gyro
#

How do I put + or - as a condition

#

in python

whole bear
#

idk

#

i am a nebie in py

fast gyro
#

anyone can help?

ocean sail
#

yo

digital jackal
#

hey

ocean sail
#

sup bro

digital jackal
#

welcome

ocean sail
#

ty

digital jackal
#

XD

ocean sail
#

i started to learn python and im loving it

digital jackal
#

good

#

if you need any help just let me know

ocean sail
#

gotcha

worn walrus
#

hi

ocean sail
#

sup

worn walrus
#

hey

#

do u just started lerning pytohn

ocean sail
#

yeah

#

i started a couple weeks ago

#

any tips?

worn walrus
#

hmmm idk

#

btw i am making my own website using python

#

where are u from

ocean sail
#

im watching a course on freecodecamp by charles severance but i kinda wanna start doing some projects alone

#

any ideas?

worn walrus
#

u can with me

ocean sail
#

im fron lebanon, im @digital jackal friend

worn walrus
#

i am on intermediate level

digital jackal
ocean sail
#

idk im still kind of a beginner

digital jackal
#

😩

ocean sail
#

hahahahaha marven moss ayre

worn walrus
#

hey can we come on voice call i guess it will be better

ocean sail
#

im busy rn

worn walrus
#

oki

ocean sail
#

nice to meet you

rugged root
#

Spooky. First time I've seen the voice chat empty in a long time

sick cloud
#

@ocean sail are you always Greg ?

ocean sail
#

No im his friend from school

sick cloud
neon sleet
rugged root
#

We do everything using pipenv, which handles all that jazz, like Inherit said

neon sleet
#

oh, sorry, didn't know that

rugged root
#

No reason to apologize

neon sleet
#

thanks

rugged root
#

I want people to ask questions and learn

amber raptor
hard wyvern
#
import datetime
import win32com.client

scheduler = win32com.client.Dispatch('Schedule.Service')
scheduler.Connect()
root_folder = scheduler.GetFolder('\\')
task_def = scheduler.NewTask(0)

# Create trigger
start_time = datetime.datetime.now() + datetime.timedelta(minutes=5)
TASK_TRIGGER_TIME = 1
trigger = task_def.Triggers.Create(TASK_TRIGGER_TIME)
trigger.StartBoundary = start_time.isoformat()
# Create action
TASK_ACTION_EXEC = 0
action = task_def.Actions.Create(TASK_ACTION_EXEC)
action.ID = 'DO NOTHING'
action.Path = "C:\\Users\\akash\\AppData\\Local\\Programs\\Python\\Python37\\python.exe"
action.Arguments = 'C:\\Users\\akash\\Documents\\python\\IP_address.py'

# Set parameters
task_def.RegistrationInfo.Description = 'Test Task'
task_def.Settings.Enabled = True
task_def.Settings.StopIfGoingOnBatteries = False
task_def.Settings.WakeToRun= True
task_def.Settings.DisallowStartIfOnBatteries= False

# Register task

# If task already exists, it will be updated
TASK_CREATE_OR_UPDATE = 6
TASK_LOGON_NONE = 0
root_folder.RegisterTaskDefinition(
    'Test Task',  # Task name
    task_def,
    TASK_CREATE_OR_UPDATE,
    '',  # No user
    '',  # No password
    TASK_LOGON_NONE)```
rugged root
digital jackal
#

he is my freind

#

he just got into coding and stuff

#

nice name tho Xd

sick cloud
#

but pfp looked to similar to the one u had before x)

digital jackal
#

yeah he is our teacher lmao

#

XD

whole bear
#

.

digital jackal
#

just like a jole between us

sick cloud
balmy nymph
digital jackal
rugged root
amber raptor
uncut meteor
high ingot
#

Were you thinking to get a new console or something?

#

Yea Ps5 looks pretty nice 8)

#

Whyyyy

#

It’s future looking

#

Lol

neon sleet
#

!e

class Class:
  pass
print(type(Class))
wise cargoBOT
#

@neon sleet :white_check_mark: Your eval job has completed with return code 0.

<class 'type'>
rugged root
whole bear
#

how much does a ps5 cost at ur place?

high ingot
#

Whose

#

?

amber raptor
#

499USD

whole bear
#

ok

amber raptor
#

you can look on EBay if you want to pay a scalper

whole bear
#

so just for reference how much does the cheapest mcd burger cost at your place?

amber raptor
#

1USD?

high ingot
#

???

#

1??

uncut meteor
#

free if you go out back and search the bins

high ingot
#

Lol ew

amber raptor
#

USD = United States Dollar

high ingot
#

I know

#

I dollar is surprisingly cheep

whole bear
#

oh here its like 1lac inr or say 100,000 inr

#

its super expensive

high ingot
#

Oh nvm

rugged root
whole bear
#

wtf

#

is this

#

so you can adjust the keys right?

high ingot
#

Loool

uncut meteor
ocean sail
hushed elm
#

it's gonna save your hands haha

uncut meteor
#

step-board im stuck in the key

digital jackal
#

F

ocean sail
#

who tf uses that lmao

uncut meteor
#

I type like I live my life "I just keep doing things and it works."

high ingot
#

You might like this

hushed elm
#

make your hands better guys

ocean sail
#

ah yes LTT lol

digital jackal
#

Lmao

faint ermine
digital jackal
#

thats flat keycap

#

not flat keyboard

uncut meteor
#

🤢

faint ermine
#

this is my dream, my current one is a bit less flat

hushed elm
#

hmm interesting

ocean sail
#

yh it has faster speed for gaming

limber blaze
#

i’m in a meeting, it’s boring

ocean sail
#

mr savage uses it

#

i think

digital jackal
rugged root
#

Adam Savage?

ocean sail
#

who?😂

rugged root
#

You said Mr Savage

#

I didn't know who you were talking about

digital jackal
ocean sail
#

oh

#

its a gamer

#

mr savage

#

he uses roccat flat keycap keyboard

rugged root
#

Ah, gotcha

faint ermine
#

ive looed at the roccat one ngl

ocean sail
#

its like 130$ and really comfy and good for gaming

ocean sail
#

yh roccat has great kb's

faint ermine
#

i just need the money first and then a CPU upgrade is more important than keyboard

rugged root
#

Unless you have wrist pain/forearm pain

uncut meteor
#

pain is power

ocean sail
#

hahahahahaha no pain no no gain

faint ermine
#

i dont, i have a bit larger keycaps right now but no wrist pain thanks to wrist rest

uncut meteor
digital jackal
#

oui oui

ocean sail
ocean sail
uncut meteor
#

Keyboard > CPU

digital jackal
#

JK

#

Jk

uncut meteor
#

bigbrain*

digital jackal
#

yep

ocean sail
#

CEO of high iq

#

😂

digital jackal
#

CPU > keyborard

uncut meteor
#

Deceiver. stop that

#

Keyboard > CPU

ocean sail
#

jk jk

#

😂 😂

digital jackal
ocean sail
#

gerrara here

#

😂

hushed elm
#

sorry guys my bad, my sibling came by haha

ocean sail
#

HAHAHAHAAHHAHAHAHAA

high ingot
#

Mouse > CPU

uncut meteor
#

Rat > Mouse > CPU

high ingot
#

Perfect

digital jackal
ocean sail
#

😂

uncut meteor
#

Bra > in

digital jackal
digital jackal
ocean sail
#

from brain import iq

#

😂

digital jackal
#

print("brain size : " + len(brain_size))

uncut meteor
#

!e

for a in "a":
  from string import ascii_lowercase as a
  print(a[0])
wise cargoBOT
#

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

a
uncut meteor
#

we did it

#

we finally did it

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied mute to @digital jackal until 2020-12-29 16:54 (9 minutes and 58 seconds) (reason: discord_emojis rule: sent 23 emojis in 10s).

ocean sail
#

HAHAHAHAHAHAHAHAHHAAA

uncut meteor
#

get rekt lol

high ingot
#

uh oh

balmy nymph
#

!unmute @digital jackal

wise cargoBOT
#

:incoming_envelope: :ok_hand: pardoned infraction mute for @digital jackal.

uncut meteor
#

PikaWave @digital jackal

balmy nymph
#

Well, please don't

digital jackal
#

lol

uncut meteor
#

he is bragging about it dead

ocean sail
#

AHAHAHAHA F

high ingot
#

Smh

digital jackal
#

F

ocean sail
#

F

uncut meteor
#

^ shouldn't it say mute? @balmy nymph

That is what he got dm'ed

faint ermine
#

should be temp mute^^

high ingot
#

Lmao

ocean sail
#

lol

uncut meteor
#

!source

wise cargoBOT
uncut meteor
#

^ go here @digital jackal

versed island
#
(venv) prime@mac project % import flask           
zsh: command not found: import
(venv) prime@mac project % 
#

getting this error

#

mac

uncut meteor
#

python

versed island
#

okhay

high ingot
#

Less interaction?

#

How?

#

Lol

#

Loool

#

Big brain move

golden burrow
#

can someone help me

uncut meteor
#

sure

tidal salmon
golden burrow
#

lets say i've been given a string something like that: Hello how are you #today. and I want to remove everything from the sign and beyond is there a method or someway to do that?

high ingot
#

sry what country?

#

did you say?

uncut meteor
#

my_string.split('#')

#

!e

my_string = "Hello how are you #today"

parts = my_string.split('#')

print(parts)
wise cargoBOT
#

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

['Hello how are you ', 'today']
uncut meteor
#

you now have the two portions of the string

golden burrow
#

thank you very much

uncut meteor
#

np FatT

high ingot
#

he's talkin

#

lol

#

🔥

vivid gull
uncut meteor
#

gg close game

high ingot
#

wtf

#

lol

craggy zephyr
#

I think we all should move to AFK vc

shadow trout
#

nice vc

limber blaze
#

what are the applications of sequence space in math

uncut meteor
#

#maf

golden burrow
uncut meteor
#

only take the first element of the list

#

like so

#

!e

my_string = "Hello how are you #today"

parts = my_string.split('#')

first_part = parts[0]
print(first_part)
wise cargoBOT
#

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

Hello how are you 
uncut meteor
#

split gives you a list of strings, creating a new element of the list when it meets the character specified. In this case #

#

if we want everything before the first # we can take the first element of the list it gives us back

#

by using the [0] to gather index 0

ocean sail
#

guys quick question, i looked at the curriculum for computer science at uni, it has 15 credits of maths like calculus 3 linear algebra and all that

#

but when do i actully need these

#

like while coding

amber raptor
#

to graduate

ocean sail
uncut meteor
#

math will get used, there has been a few times where I have been confused of what a symbol means etc.

#

but even then its very basic and if I can google it and pick it up

#

its nothing massive

amber raptor
#

depends on the job

#

some jobs do use them heavily, others do not

uncut meteor
#

there probs is a further extension of this tho

ocean sail
#

jobs like what

#

can you give me an example

amber raptor
#

gaming engine programming jobs

#

Database Software Designers

#

Operating System stuff depending

uncut meteor
#

renderings usually use mathematical equations right? I guess thats why you said Game engines

amber raptor
#

yep

#

even then, speed is important so any math needs to be most efficient

#

in any case, debating their usefulness is pointless, you need it to graduate

uncut meteor
#

^ if ur signed up and paid for it, get it done

whole bear
#

hey guys

#

I just have a quick question

ocean sail
#

so is there a place i can kinda start learning the math i might need

whole bear
#

not about solving problem

ocean sail
#

like self learn it

uncut meteor
#

google

whole bear
#

but just if something is possible in python

ocean sail
uncut meteor
#

i usually just google what I need at the time, soz

whole bear
#

i did but I don't know how to explain it properly I just want to see if it makes sense

#

Its just an idea

amber raptor
#

just take the classes

#

it's really best way to learn it

ocean sail
#

oh ok, thx

uncut meteor
amber raptor
#

if you want to get head start, see if your school or look at community college (US)

whole bear
#

Alright so

#

is it possible to use the a class attributes more then one. and assign them in a list

uncut meteor
#

kinda

whole bear
#

Because i don't want to make an object out of it

#

I just want to store values of the attributes in a list

#

then use that list

#

hope that makes sense

#

sounds logical

amber raptor
#

!e ```python
class Rabbit:
def init(self):
self.rabbit = "Hello Rabbit"
b=[]
for x in range(0,10):
b.append(Rabbit())
print(b)

whole bear
#

just never thought of it till today

uncut meteor
#

!e

class MyClass:
  def __init__(self):
    self.val_a = 5
    self.val_b = 2
    self.val_c = 12

  @property
  def allVals(self): 
    return [self.val_a, self.val_b, self.val_c]


c = MyClass()
print(c.allVals)
wise cargoBOT
#

@amber raptor :white_check_mark: Your eval job has completed with return code 0.

[<__main__.Rabbit object at 0x7f9e95b19400>, <__main__.Rabbit object at 0x7f9e95b197c0>, <__main__.Rabbit object at 0x7f9e95b198b0>, <__main__.Rabbit object at 0x7f9e95b19970>, <__main__.Rabbit object at 0x7f9e95b19af0>, <__main__.Rabbit object at 0x7f9e95b19b50>, <__main__.Rabbit object at 0x7f9e95b19c40>, <__main__.Rabbit object at 0x7f9e95b19ca0>, <__main__.Rabbit object at 0x7f9e95b19d90>, <__main__.Rabbit object at 0x7f9e95b19fd0>]
#

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

[5, 2, 12]
uncut meteor
#

wait

#

one of us misunderstood

#

probs me 😂

#

the thing is with mine, is you're just getting the values

amber raptor
#

!e ```python
class Rabbit:
def init(self):
self.rabbit = "Hello Rabbit"
b=[]
for x in range(0,10):
b.append(Rabbit())
for x in range(0,10):
print(b[x].rabbit)

wise cargoBOT
#

@amber raptor :white_check_mark: Your eval job has completed with return code 0.

001 | Hello Rabbit
002 | Hello Rabbit
003 | Hello Rabbit
004 | Hello Rabbit
005 | Hello Rabbit
006 | Hello Rabbit
007 | Hello Rabbit
008 | Hello Rabbit
009 | Hello Rabbit
010 | Hello Rabbit
uncut meteor
#

you could make it the other way, so the properties are val_a, val_b, val_c and they point to a index in a self contained list. Then return that

amber raptor
#

depends on your requirements, I like mine because cleaner

uncut meteor
#

we are doing different things?

amber raptor
#

I believe so

uncut meteor
#

yours is a list of instances

#

mine is a list on the instance

amber raptor
#

well, you could use the class to store attributes

#
then use that list```
uncut meteor
#

i assume attributes means instance attributes

amber raptor
#

Who knows!

uncut meteor
#

true

amber raptor
#

there is also dict()

uncut meteor
#

its not defined enough

#

true. dict then get the list using .values()

#

thats probs the better way

amber raptor
#

or list(dict())

#

!e python b = [{"Person":"Rabbit"}] b[0]['OtherPerson'] = "Griff" print(b[0])

limber blaze
amber raptor
#

Not sure if serious

limber blaze
#

no i am genuinely looking for helo

#

help

graceful grail
#

()

#

{}

#

[]

#

<>

#

^

amber raptor
#

Do you like hotdogs? How about horseshoes? Hand grenades? (everyone likes hand grenades) Anyway, we've got all that, and guns. So if you like cooking, lawn games, and ordnance, this is the VR sandbox game for you.Hot dogs, Horseshoes and Hand Grenades is a lazy Sunday trip over to your friends house… if your friend was a retired gun-nut with a w...

Price

$19.99

Recommendations

8636

▶ Play video
#

Welcome to LYNX, the galaxy’s leading ship-salvaging corporation!Across your career, you’ll have the privilege of paying your debt to us by purchasing salvaging rights to increasingly large and valuable ships. Cut them open and extract as much value as possible!You are equipped with the latest in LYNX tech. Carve entry points, salvage valuable m...

Price

$17.49

Recommendations

6709

▶ Play video
graceful grail
#

test

graceful grail
#

curl www.file.exe > file.exe

#

wget www.file.exe

gentle flint
#

If not told otherwise, curl writes the received data to stdout. It can be instructed to instead save that data into a local file, using the -o, --output or -O, --remote-name options.

near niche
uncut meteor
#

i like the Orang tho

gentle flint
#

thx

#

it's a variant of the RNLAF roundel

#

had enough of how to wire my PC

#

decided to draw it

honest pier
#

wack

rugged root
#

What'd I miss

honest pier
#

😳 your mother

rugged root
#

I mean I talked to her recently

limber blaze
amber raptor
#

Is this inside Python application?

limber blaze
amber raptor
limber blaze
gentle flint
steep garden
#

Ah thanks

#

gg kvsrajput

rugged root
coral frigate
honest pier
#

ur mom

coral frigate
rugged root
fierce summit
steep garden
#

what's your rating?

#

me hall

#

I'll send a link after this game!

#

It's irish for Michael

#

I'm only rated 508...

#

Ah ok, you send a link then

#

sounds good

#

I'll throw in some crap moves too

#

Stream it to the chat?

#

gg

#

got close in the end there 👀

#

Gotta run - See yous later!

rugged root
#
class Student:
    def __init__(self, name, favorite_subject, grade):
        self.name = name
        self.favorite_subject = favorite_subject
        self.grade = grade

    def study(self):
        print(f"I love studying {self.favorite_subject}.")

    def eat_lunch(self):
        print("Yuck!  Meatloaf again!")

    def introduce(self):
         print(f"My name is {self.name} and I am in {self.grade} grade.")

billy = Student("Billy", "Math", "6th")
sally = Student("Sally", "Science", "5th")
broken cedar
#

hey guys, i cannot speak since i am new to the server but can someone help me in a doubt about conways game of live?

hidden cove
#

@broken cedar I'm familiar with the game but not an expert in it. What's your question?

broken cedar
#

can some admin give me permissin to talk?

amber raptor
#

see voice-verification channel

rugged root
#

!e

class Student:
    students = []
    def __init__(self, name, favorite_subject, grade):
        self.name = name
        self.favorite_subject = favorite_subject
        self.grade = grade
        self.students.append(self)

    def study(self):
        print(f"I love studying {self.favorite_subject}.")

    def eat_lunch(self):
        print("Yuck!  Meatloaf again!")

    def introduce(self):
         print(f"My name is {self.name} and I am in {self.grade} grade.")
    
    def __repr__(self):
        return self.name

billy = Student("Billy", "Math", "6th")
sally = Student("Sally", "Science", "5th")

print(Student.students)
wise cargoBOT
#

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

[Billy, Sally]
broken cedar
#

so i already defined a function that counts the neighbours and tells me if my cell is going to be alive or dead in the next generation, but now i got to do a function that updates the state of every cell in the world according to my first function

#

and i dont really know how to do it

hidden cove
#

Do you know how to use loops germano?

broken cedar
#

not really

hidden cove
#

You probably want to use a for or while loop

broken cedar
#

oh yes i know how to do loops

#

my bad

#

i used a for loop

hidden cove
#

Does that answer your question then, or is there something else you don't understand how to do?

broken cedar
#

but then it goes trough each cell and updates it, so the next cell (second in case) will consider the first cell already updated

hidden cove
#

You need to create a second list or tuple then which is the new game board.

#

Don't update the preexisting one until the next iteration of the loop.

broken cedar
#

i think i did that

#

cau u give me the permission to share my screen?

hidden cove
#

I can't, and I don't think you will get permission from a mod.

#

Can you share a screen_shot_?

broken cedar
#

the names are in portuguese

#

so that is kinda weird

#

and i cannot talk so it difficults a lot...

hidden cove
#

Language doesn't really matter since they're just identifiers.

broken cedar
#

celula_vive is the name of the function that identifies the neighbours

hidden cove
#

So in the first bit you have if... and elif... which look exactly the same. @broken cedar

broken cedar
#

btw in that lines is suposed to be True and False

#

not True and True

hidden cove
#

Hey, btw, if you can paste your code in chat rather than screenshots, that would make it easier to copy and paste and comment btw, esp. since it's portuguese.

broken cedar
#

def itera_mundo(mundo, regra = (3, 2, 3)):
matriz = mundo[:]
for i in range(len(matriz)):
for j in range(len(matriz[i])):
if i > 0 and i < len(matriz)-1 and j > 0 and j < len(matriz[i])-1:
l1 = [matriz[i-1][j-1],matriz[i-1][j],matriz[i-1][j+1]]
l2 = [matriz[i][j-1],matriz[i][j],matriz[i][j+1]]
l3 = [matriz[i+1][j-1],matriz[i+1][j],matriz[i+1][j+1]]
if celula_vive([l1,l2,l3], regra = (3, 2, 3)) == True:
atribui_valor_celula(mundo, i, j, 1)
elif celula_vive([l1,l2,l3], regra = (3, 2, 3)) == False:
atribui_valor_celula(mundo, i, j, 0)
return print(mundo)

hidden cove
#

No, it says == True in both.

#

There it says False

broken cedar
#

its suposed to say false

hidden cove
#

Okay, looks like we caught a mistake then.

broken cedar
#

when i had both trues i was testing something

hidden cove
#

Ah

#

gotcha

ebon junco
#

What does this indicate ???

DEBUG print mod:  Vanilla
Exception in Tkinter callback
Traceback (most recent call last):
  File "C:\Users\hlyng\AppData\Local\Programs\Python\Python38\lib\tkinter\__init__.py", line 1883, in __call__
    return self.func(*args)
  File "app.py", line 409, in openTraderEditor
    TraderEditor(self.window,self.selectedMods,self.database)
  File "G:\LootEditor\dayz_loot_editor\ui\setprices.py", line 26, in __init__
    self.createSubTypes()
  File "G:\LootEditor\dayz_loot_editor\ui\setprices.py", line 47, in createSubTypes
    for subtype_in_mod in Dao.getSubtypesMods(mod):
TypeError: getSubtypesMods() missing 1 required positional argument: 'mod'
hidden cove
#

@broken cedar So it looks like there's probably something wrong with your atribui_valor_celula function.

robust agate
#

shit

#

i can't talk

hidden cove
#

@robust agate lol nice name

robust agate
#

it's all good tho

broken cedar
#

that function is only to give a value to the cell

#

mundo[linha][coluna] = valor
return mundo

#

just that

hidden cove
#

@broken cedar Hold on a sec

broken cedar
#

okok

limber blaze
hidden cove
#

@broken cedar So then it looks like the first line might be the problem.

#

mundo[linha][coluna] = valor

robust agate
#

shii can't talk

broken cedar
#

so that function is suposed to give a value to a cell
so i wrote something like world[i][j] = value
and i refers to the line and j to the column

rugged root
broken cedar
#

isn't that right?

robust agate
#

Mass censorship is happening rn on ig

amber raptor
hidden cove
#

The problem is that matriz is defined from mundo, so when you update mundo it's going to change how the values are intepreted. @broken cedar

#

You need something like nuevo_mundo.

robust agate
#

anon is coming back boys

#

stay tuned

broken cedar
#

ahh i see

robust agate
#

it's gonna be a revolution

broken cedar
#

so where do i need to change exactly?

hidden cove
#

You need a new world (nuevo_mundo) to store the new values in so they don't mess up the other ones.

broken cedar
#

i will only implement this new world on this function right?

amber raptor
#

MSSQL runs on Linux, pretty sure client driver is efficient on both

broken cedar
#

do i need to use numpy? or something like that?

hidden cove
#

or, sorry, nuevo_mundo becomes mundo @broken cedar

#

Everything clear @broken cedar ?

amber raptor
broken cedar
#

i'm trying to correct it

#

i will let you know

hidden cove
#

okay okay

broken cedar
#

do i need to use something like numpy to do a copy of the world and call it new_world?

#

@hidden cove

hidden cove
#

hold on a sec

#

@broken cedar No, you don't need to use numpy. You can just copy the [i] and [j] indices from mundo to nuevo_mundo

#

Just make a new list or tuple and copy each element in the same indices.

broken cedar
#

how do i do it?

#

just world = new_world ?

hidden cove
#

nuevo_mundo[i][j] = matriz[i][j] is essentially what you do.

#

There will be more to it than that, but that is the basic thing you have to do.

#

And then the next time you enter the loop, you do something like mundo = neuvo_mundo

broken cedar
#

if u can go on a call that would be very apreciated

hidden cove
#

okay fine, dm me.

amber raptor
#

Here comes the VIM Prophets

#

yesterday was EMac Prophets

#

I mean, according to JetBrains Python Poll, top popular editors are Pycharm/VSCode/VIM (In really far 3rd Place)

rugged root
#

@dire folio Hiiiiiiiii

honest pier
#

🤔

dire folio
#

hey @rugged root 😄

rugged root
#

Heading home

#

Catch you folks later

amber raptor
#

Bye

dire folio
#

alter

#

later

digital jackal
#
import speech_recognition as sr
r = sr.Recognizer()

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")
#

C:\python.exe: No module named speech_recognition

coral frigate
digital jackal
vital sable
#

u need to select py extentsion

coral frigate
#

he might not have activated the right environment

vital sable
#

then it will appear

faint ermine
coral frigate
faint ermine
#
import sys
print(sys.version_info)
digital jackal
#

sys.version_info(major=3, minor=9, micro=0, releaselevel='final', serial=0)

honest pier
#

3.9.0

#

it may not have support for 3.9

#

ah

faint ermine
wise cargoBOT
#

Hey @coral frigate!

It looks like you tried to attach file type(s) that we do not allow (.whl). We currently allow the following file types: .3gp, .3g2, .avi, .bmp, .gif, .h264, .jpg, .jpeg, .mkv, .mov, .mp4, .mpeg, .mpg, .png, .tiff, .wmv, .svg, .psd, .ai, .aep, .xcf, .mp3, .wav, .ogg, .webm, .webp, .flac, .afdesign, .m4a, .csv.

Feel free to ask in #community-meta if you think this is a mistake.

honest pier
#

yikes

vital sable
#

pip --upgrade

#

not update

digital jackal
#

pipwin

coral frigate
#

It requires Pyaudio

#

pip install PyAudio‑0.2.11‑cp39‑cp39‑win_amd64.whl

#

I saw a stack article, that dude was installing Pyaudio using pipwin

#

that is why he is getting a problem

#

He should pip installl directly

faint ermine
coral frigate
#

lol

coral frigate
#
pip uninstall SpeechRecognition
pip uninstall pipwin
pip uninstall pyaudio
pip install PyAudio‑0.2.11‑cp39‑cp39‑win_amd64.whl
honest pier
#

install visual studio build tools 😔

coral frigate
#

Yayy software engineering! Just don't touch the code now @digital jackal

coral frigate
#

There should be a teamviewer integration to discord to debug faster🤔🤔

#

Consent based lol😂

digital jackal
coral frigate
#

did you install PyAudio using the whl?

#

Use the whl for 3.9

worthy granite
#

i guess you need to install it

digital jackal
#

WARNING: Requirement 'PyAudio‑0.2.11‑cp39‑cp39‑win_amd64.whl' looks like a filename, but the file does not exist

coral frigate
#

open the cmd in the download folder and install it from them

#

Have you downloaded the amd64 version?

#

are you windows/linux?

worthy granite
#

he is windows

digital jackal
coral frigate
#

no you didn't

#

You are opening it in System32

digital jackal
#

pip install PyAudio‑0.2.11‑cp39‑cp39‑win_amd64.whl

coral frigate
#

finally

faint ermine
#

py -m speech_recognition

coral frigate
#

google can't shazam.

#

deleting system32 is like deleting root at ubuntu.

#

Try the latter out and you will know what would happen in the former case

worthy granite
#

can i share a video here?

#

Get a signed shirt: http://jlaservideo.com/clothing
Instagram: http://instagram.com/jlaservideo
TikTok: http://tiktok.com/@jlaservideo
Here's how I made a Spider-Man self tightening suit from the Marvel / Sony Spider-Man movie Spider-Man Homecoming. The suit features 23 nitinol springs that contract when heat is applied. This is done by passing ...

▶ Play video
digital jackal
coral frigate
#

decimeter
decameter

#

are useless

#

My favorite measurement of the day : Pirate Ninja XD

#

My mom's an architect, so you can imagine!😂

digital jackal
#

from brain import brain

faint ermine
winter bloom
#

I have watched a lot of movies where advanced programmers hack people, can people who know a lot about python or other programming languages possibly hack you?

faint ermine
#

yes, but its different from the movies are

worthy granite
#

i like him xD

faint ermine
winter bloom
#

How is it different from the movies?

faint ermine
#

way WAY more research and a lot less speedy typing.

#

no progress bars

winter bloom
#

Also how do I protect against people who hack me?

faint ermine
#

and more covert entry

winter bloom
#

Or want too.

coral frigate
#

exurb1a domestically abused his girlfriend for a long time. Just saying.

winter bloom
#

If I join the voice channel could you explain it too me?

worthy granite
#

I guess this theme is a big Mindfuck

winter bloom
#

lol

faint ermine
winter bloom
#

Laundmo could you explain how hacking works and how to protect from it?

faint ermine
#

most vulnerabilities are not technological, but human based

winter bloom
#

Yes

faint ermine
#

or based on covert entry

vivid gull
#

like my vulnerabiulities

#

I have lots

#

Impressing my dad

#

missing my ex

#

needing to fart

#

these are all called vulnerabilities

coral frigate
#

Ohh okay...My bad 🙂

digital jackal
#

apathy

#

want me to explain?

winter bloom
#

Yes

#

Sure

digital jackal
#

k...

winter bloom
#

I want greg to explain

#

Oh okay

#

What is the main take away.

#

Unless you are high risk, got it.

#

I just like privacy.

#

Well they kind of go hand and hand.

#

No I mean in the sense being private.

#

Yes that is what I mean

#

Send the link

#

Or what do you mean?

#

I can do that.

#

Oh no I am not driven off of fear.

#

Oh I agree.

#

They could be

worthy granite
#

Hacking is finding weak points in a system and privacy is protect your own data

coral frigate
#

Discord messages are not encrypted. They can look at the messages.

winter bloom
#

I agree.

#

I feel no danger.

#

You are looking at this all wrong. The reason I want to do this is irrelvant.

#

What should I use to stay anonymous?

coral frigate
#

Use Blackberry, Those phones are highly security oriented

winter bloom
#

lol

#

Okay

#

gtg. see ya.

worthy granite
#

wtf hahaha

#

have only been active on the server for a few days

#

and haven't written that many messages yet

vivid gull
worthy granite
#

der

#

Baum (tree)

faint ermine
worthy granite
#

start

#

Telekommunikationsüberwachungsverordnung

coral frigate
#

Donaudampfschiffahrtselektrizitätenhauptbetriebswerkbauunterbeamtengesellschaft
bruhhh.....german words...

worthy granite
#

i have seen star trek discovery but in English

#

yes

#

bye, maybe see you tomorrow

faint ermine
#

@worn mica

worn mica
#

oops new here

faint ermine
#

thats fine

#

just letting you know

near niche
#

Dear Felix,

#

Dear Hufflez,

#

Hello Felix! Ho ho ho...

#

Hello Hufflez!

#

How are you doing Felix

#

print( var1, var2 )

#

print(var1, var2)

#

System.out.println("hello");

#

Console.WriteLine("hello");

#

cout << "hello\n";

whole bear
#

Hey guys! After over two years of development, I am finally here to show you guys the Redstone Computer v5.0, the latest installment in my series of Redstone Computers! It is improved in every way compared to the Redstone Computer v4.0, and it adds a plethora of new features as well while making existing operations more efficient!

I know I say ...

▶ Play video
digital fractal
#

hey guys, I have a question

near niche
#

ask away!

halcyon flare
#

scroll up and ask in a help channel

digital fractal
#

should I buy a windows laptop or a mac for programming

near niche
#

that's a hard question

#

i program on both

digital fractal
#

no gaming, just programming and work

halcyon flare
#

I would say mac but it's up to you. I think macs are better for productivity

near niche
#

i think so too

#

but it boils down to personal preference

#

however Apple is going to give you a headache when it switches to ARM CPUs

digital fractal
#

mhm, is there any differences in programming or office work stuff?

#

and let's say I do go with a mac

#

would an i5 or the new chips be fine?

near niche
#

if you only program in Python, Java, C# then there shouldn't be any difference

#

yes

#

but C, C++ might be different in the future

digital fractal
#

how so?

#

I only use python and know some java at the moment

halcyon flare
#

You'll be fine, those are only in special cases. If you have the money go with a mac, they tend to have less problems in my experience.

near niche
digital fractal
#

gotcha. thanks.

#

wait one last question

#

would you go with a pro or an air?

#

or does it not matter?

near niche
halcyon flare
#

Depends on use case and budget, the air is actually fairly powerful but if you think you need more than get the pro.

digital fractal
#

gotcha. thanks.

halcyon flare
#

MBP all the way if your budget allows it though

digital fractal
#

I mean it's not too bad of a pricing given that I'd go with the cheapest 13inch model

#

I don't really like to use laptops like that

cosmic thorn
#

how i know how many messages i sent

#

forget it

whole bear
#

30

cosmic thorn
#

are saying that in biology what survives is the best adapted, in fact it is what can reproduce

paper rain
#

Really hard ,one thing that actually got me punched is work permit in order to work remotely

cosmic thorn
#

Santos

#

where are you from?

paper rain
#

I do

cosmic thorn
#

true

paper rain
cosmic thorn
#

Perfectionism will mess you up

cosmic thorn
#

wow

paper rain
cosmic thorn
#

10 hours coding?

#

I can do that, but I get stuck on things that doesnt matter

paper rain
whole bear
#

you mean you get distracted

cosmic thorn
#

i get hyperfocused

paper rain
whole bear
#

adhe I can walk for 300000 hours

#

but whats the point if I dont have a destination

paper rain