#voice-chat-text-0

1 messages · Page 653 of 1

uneven urchin
#

depends on the game engine

#

There's no reasona game engine can't be text-based

#

I've worked with a few, liek glulx

#

basically completely software-driven

quasi condor
uneven urchin
#

oh neat

#

pygame uses SDL

#

I think pygame was transitioning to SDL2?

#

Me too, pygame is awesome

#

yeah its kinda stalled

#

I think its pygame 1.9 and pygame 2

#

F

#

It was used in civ 4

#

It's scripted in python

#

Its got a c++ renderer I believe

#

brb

jovial meadow
quasi condor
uneven urchin
#

ohcool

jovial meadow
whole bear
#

E

jovial meadow
quasi condor
uneven urchin
#

o/

#

long phone call 😢

#

Discord's Electron, which is Chrome

#

It's required for the presence stuff

#

Like how Pycharm has game activity, you can see it interfacing within the dev console so that's probably one reason why

#

They probably should disable it outside of canary

#

I wouldn't lmao its terrible

#

You can use it to steal some emojis you can't access otherwise

#

Like reactions

#

Wasn't there a big betterdiscord hack recently?

slender bison
uneven urchin
#

message-2qnXI6 cozyMessage-3V1Y8y

tall latch
#

string[:-1]

kind crescent
#

['T', 'A', 'G', 'C', 'T', 'A', 'A', 'C',]

slender bison
#

!eval ```python
"Hello, World!"[:-1]

wise cargoBOT
#

You are not allowed to use that command here. Please use the #bot-commands channel instead.

kind crescent
#
    for i in xseq:
        if i == "A":
            new_dna.append("T")
        elif i == "T":
            new_dna.append("A")
        elif i == "C":
            new_dna.append("G")
        elif i == "G":
            new_dna.append("C")

    return new_dna```
slender bison
#
concatenate = lambda l: reduce(lambda x,y: x + y, l[1:], l[0])

print(concatenate(['a', 'b', 'c']))

@kind crescent

stuck furnace
#

nucliatides?

#

horrible spelling sorry

kind crescent
#

nucleotides

gentle flint
#

yeah

slender bison
#
dna = ''
nucleotides = ['a', 'b', 'c']
for nucleotide in nucleotides:
  dna = dna + nucleotide

print(dna)```
stuck furnace
#

Couldn't you use ''.join(nucleotides)?

#

It's a C method, so is fairly fast.

#

.join is nice because you can use any delimiter, like ', '.join(...)

#

Mechatronics?

gilded rivet
#

Kinda

#

It's a bit different because Mechatronics is like a "Robotics" degree

stuck furnace
#

You can do functional programming in Python! 😄

#
def curry(fn):
    return lambda x: lambda *xs: fn(x, *xs)

from operator import add

print(curry(add)(1)(2))
#

I find it's easier to solve hard problems with functional programming.

#

It puts less of a burden on your working memory.

#

Because you don't have to mentally simulate the changing state of the machine in order to understand what a program does.

#

You could learn Haskell as a first programming language, if you have the right learning resources.

slender bison
#
-- Author: Jeremy Gluck
import Data.List (intersect)

range = [1..100]

fizz = [ n | n <- range, (n `mod` 3) == 0]
buzz = [ n | n <- range, (n `mod` 5) == 0]

fizzbuzz = fizz `intersect` buzz

main = print fizzbuzz```
stuck furnace
#

My university insisted on teaching the first programming course of the degree in Haskell. 😄

kind crescent
#

what level of calculus do you think is sufficient? past integral?

gilded rivet
#

Calc 2 + elements of linear algebra

#

80% programming needs no more than this

stuck furnace
#

You mean, what level of calculus do you need for functional programming?

#

Yeah, lambda calculus refers to something different.

#

When people say "calculus", that's usually short for "integral and differential calculus".

primal fog
#

a

stuck furnace
#

The word calculus comes from the latin word for stone, I think. Because people used stones to do calculations.

kind crescent
#

huh did the word callous come from there as well or?

#

cuz stones are callous

slender bison
stuck furnace
#

I particularly like Haskell's structural pattern matching.

#

There may be a similar feature coming to python in version 3.10

hearty cypress
#

i love how

#

i need to get

#

like 50 messages

#

this is fun

#

wait do messages in here count?

stuck furnace
#

Yeah, please don't spam messages to meet the requirement.

kind crescent
#

instead program a bot to do it for you its more fitting

hearty cypress
#

im not this is honestly just how i type im sorry

stuck furnace
#

It's better if you just hang around in the server for a bit, maybe try answering some questions.

hearty cypress
#

It's better if you just hang around in the server for a bit, maybe try answering some questions.
@stuck furnace Im new to coding i really cant answer questions

stuck furnace
#

Ah right

hearty cypress
#

also

im not this is honestly just how i type im sorry
@hearty cypress

#

i type in sentences

#

like this

#

idk its been a habit ive had

#

also anyone wanna have a chat or?

slender bison
#
-- Author: Jeremy Gluck
{- Description:
    Look here's the story. I'm in CSE 4510 Applied Quantum Computing this semester and
    I have to do a lot of linear algebra. Long story short these are big matrices.
    Shoutout to https://www.matrixcalc.org/en/ for having almost exactly what I need.
    I must also typeset all of the work done for the class in LaTeX. matrixcalc has the
    ability to output whitespace seperated values of complex numbers. All I must do is:
        1. Put  '&'s in between matrix row elements
        2. Put '\\'s at the end of each line except the last
        3. For all tokens a/b replace with \frac{a}{b} -}
import Data.List
import Data.List.Split

(+&+) :: String -> String -> String
(+&+) a z = a ++ " & " ++ z

(+\+) :: String -> String -> String
(+\+) a z = a ++ " \\\\" ++ "\n" ++ z

add_separators :: [String] -> String
add_separators (stuff:stuffs) = foldl (+&+) stuff stuffs

add_terminators :: [String] -> String
add_terminators (stuff:stuffs) = foldl (+\+) stuff stuffs

fracify :: String -> String
fracify stuffs
    | stuffs == "" = ""
    | "/" `isInfixOf` stuffs = (\ss-> "\\frac{"++(head ss)++"}{"++((head . tail) ss)++"}") $ (split (dropDelims $ whenElt (=='/'))) stuffs
    | otherwise = stuffs

latex_marks :: String -> String
latex_marks stuffs = "\\(\\begin{bmatrix}" ++ "\n" ++ stuffs ++ "\n" ++ "\\end{bmatrix}\\)"

program :: String -> String
program = latex_marks . add_terminators . (map add_separators) . (map (map fracify))  . (map words) . lines

main :: IO ()
main = interact $ program
hearty cypress
#
-- Author: Jeremy Gluck
{- Description:
    Look here's the story. I'm in CSE 4510 Applied Quantum Computing this semester and
    I have to do a lot of linear algebra. Long story short these are big matrices.
    Shoutout to https://www.matrixcalc.org/en/ for having almost exactly what I need.
    I must also typeset all of the work done for the class in LaTeX. matrixcalc has the
    ability to output whitespace seperated values of complex numbers. All I must do is:
        1. Put  '&'s in between matrix row elements
        2. Put '\\'s at the end of each line except the last
        3. For all tokens a/b replace with \frac{a}{b} -}
import Data.List
import Data.List.Split

(+&+) :: String -> String -> String
(+&+) a z = a ++ " & " ++ z

(+\+) :: String -> String -> String
(+\+) a z = a ++ " \\\\" ++ "\n" ++ z

add_separators :: [String] -> String
add_separators (stuff:stuffs) = foldl (+&+) stuff stuffs

add_terminators :: [String] -> String
add_terminators (stuff:stuffs) = foldl (+\+) stuff stuffs

fracify :: String -> String
fracify stuffs
    | stuffs == "" = ""
    | "/" `isInfixOf` stuffs = (\ss-> "\\frac{"++(head ss)++"}{"++((head . tail) ss)++"}") $ (split (dropDelims $ whenElt (=='/'))) stuffs
    | otherwise = stuffs

latex_marks :: String -> String
latex_marks stuffs = "\\(\\begin{bmatrix}" ++ "\n" ++ stuffs ++ "\n" ++ "\\end{bmatrix}\\)"

program :: String -> String
program = latex_marks . add_terminators . (map add_separators) . (map (map fracify))  . (map words) . lines

main :: IO ()
main = interact $ program

@slender bison what is this

slender bison
#

it's a script to perform one specific textual manipulation

hearty cypress
#

english

slender bison
#

we're discussing haskell in voip

hearty cypress
#

please

#

im new to this sorry

slender bison
#

the details are in the top comment

hearty cypress
#

lmao

stuck furnace
#

Erm, @hearty cypress, maybe have a look at one of the off-topic channels, or the general discussion channel. See if you can get involved in the conversation there.

hearty cypress
#

the details are in the top comment
@slender bison oh i see now

#

i dont know where that is

stuck furnace
#

It will be a bit hard to follow what's going on here without being able to hear what's being said in the voice channel.

kind crescent
#

even then i imagine its still difficult

hearty cypress
#

i have one message left so i guess this is the message? idk

slender bison
#

String -> (String -> String)

stuck furnace
#

Here's the equivalent in python:

#
def add(x):
    def addx(y):
        return x + y
    return addx
#

So, you can do add(1)(2)

#

Or map(add(10), numbers)

#

To add 10 to every number.

slender bison
#

1 + 2

#
plus1 = lambda x: x + 1
answer = plus1(2)
stuck furnace
#

The key thing is to understand that every function has one input and one output.

#

If you want to give two arguments to a function, you can create a function that takes the first argument which returns another function that takes the second argument and returns the answer.

slender bison
#

(=='/')

gilded rivet
#

@stuck furnace TY

#

HMM

#

I didn't know you could do that

stuck furnace
#

Python has a tool you can use to partially apply a function.

#

functools.partial I believe

#

But it's more practical than pure 😄

#

Yeah, so say you call a function many times throughout your program, and you always set the same keyword argument. You could use partial to set the argument once.

#

Hard to think of a good example.

#

This is the example from the documentation:

#
>>> from functools import partial
>>> basetwo = partial(int, base=2)
>>> basetwo.__doc__ = 'Convert base 2 string to an int.'
>>> basetwo('10010')
18
#

So, you know how you can do int('10010', base=2)

#

This just creates a new function basetwo that always sets the base keyword argument to 2

#

Yeah, there's just a reference to the function stored somewhere, and a dictionary containing all the filled-in arguments.

#

Python usually takes a more simple approach to things.

slender bison
stuck furnace
#

There are some really good databases courses by Stanford on edx.org @gilded rivet

#

Did you guys get on to talking about structural pattern matching? I wasn't really listening sorry.

slender bison
#

unfortunately not

stuck furnace
#

Oh yeah, I think I mentioned this, but they might be adding it to Python.

fiery hearth
#

hello gj

pliant atlas
#

@fiery hearth did u get the permission?

fiery hearth
#

nah not yet

#

hello opal mist

#

@somber heath hey mate

#

@pliant atlas not yet mate

#

i dont't have the permission to speak.....need to reach 50 txts @somber heath

sinful pawn
#

Not talking, just testing campus WiFi

#

Certain AP over here outright blocks Discord VC (RTC connecting --> No route)

fiery hearth
#

sounds scary @somber heath

somber heath
#
def main():
    pass
if __name__ == '__main__':
    main()```
regal quiver
#

looks like I need more than 50 sent messages to use voice chat. Is that something new?

#

I can't hear either which is odd

#

I'm looking for some help with a few lines of code in regards to File Access. Anyone able and interested in helping?

fiery hearth
#

Yeah you need 50 messages but you should be able to hear

#

if you're loooking for code help you could post your question in code help section

regal quiver
#

I would but it's due tonight. I'm almost there but can't figure out two lines

#

Is this 50 message thing new?

#

How do I see how many messages I currently have?

fiery hearth
#

Yeah they made the rule like 2-3 days ago

#

I have no idea on how to see the count

#

probably @rapid crown could help

faint ermine
frozen oasis
#

cmon man

#

how long is this thing gonna go on for

#

dudeeeeeeeeee

whole bear
#

hm

fiery hearth
#

i dont may be a while

whole bear
#

hello to everyone in code 1

#

:)

#

dunder short for double underscore

fiery hearth
#

hello there Dhruv

#

where is everyone today

#

code help everyone?

craggy zephyr
#

hi

regal quiver
#
# 5. Save Data.
def saveData(members):
    outText = ()
    filename = input("Filename to save: ")
    print("Saving data...")
    outFile = open(filename, "wt")
    for x in members.keys():
        name = members[x].getName()
        jersey = members[x].getJersey()
        phone = members[x].getPhone()
        outText += (name + "," + jersey + "," + phone + "\n")
    outFile.write(name + "," + jersey + "," + phone + "\n")
    print("Data saved.")
    print(name, jersey, phone)
    outFile.close()```
#
outText += (name, jersey, phone)```
#
outText += name + "," + jersey + "," + phone + "\n"```
jovial meadow
#
    for x in members.values():
        name = x.getName()
        jersey = x.getJersey()
        phone = x.getPhone()
hidden cove
#
def saveData(members):
    outText = ()
    filename = input("Filename to save: ")
    print("Saving data...")
    outFile = open(filename, "wt")
    outText = ''
    for x in members.keys():
        name = members[x].getName()
        jersey = members[x].getJersey()
        phone = members[x].getPhone()
        outText += name + "," + jersey + "," + phone + "\n"
    outFile.write(outText)
    print("Data saved.")
    print(name, jersey, phone)
    outFile.close()
jovial meadow
#
outText = "{}, {}, {}".format(x.getName(), x.getJersey(), x.getPhone())
#

not required:

outText = ''
jaunty elbow
#

why not use a context manager?

#

oh right np

#

f strings

regal quiver
#
# 5. Save Data.
def saveData(members):
    filename = input("Filename to save: ")
    print("Saving data...")
    outFile = open(filename, "wt")
    for x in members.keys():
        name = members[x].getName()
        jersey = members[x].getJersey()
        phone = members[x].getPhone()
        outFile.write(name + "," + jersey + "," + phone + "\n")
    print("Data saved.")
    print(name, jersey, phone)
    outFile.close()```
jovial meadow
#
outFile = open(filename, "a+")
hidden cove
jovial meadow
#
class TeamRoster:
  def __init__(self):
    self.roster = dict()

  def Add(self, member):

  def Remove(self, member):

  def Edit(self, member):
#
class Player:

    def __init__(self, name, jersey, phone):
        self.name = name
        self.jersey = jersey
        self.phone = phone

    # accessor methods

    def getName(self):
        return self.name

    def getJersey(self):
        return self.jersey

    def getPhone(self):
        return self.phone

    def displayData(self):
        print("")
        print("Team Roster: ")
        print("------------------------")
        print("Name:", self.name)
        print("Jersey #: ", self.jersey)
        print("Phone #: ", self.phone)
somber heath
#

Word of the day: Antipattern.

hidden cove
somber heath
#

Math does have more than one right answer, sometimes, but sometimes your right answer is not the right answer that the teacher wants.

#

7x8 vs 8x7 in a solution, for example.

hidden cove
#

Some kinds of math are indeed ambiguous. @somber heath

regal quiver
jovial meadow
whole bear
#

I love Primer

#

He's working on a video for the best election system

#

I can't verify yet

#

Need 50 messages

#

Yeah I'm just going to keep writing

#

Quantum Mechanics proves unpredictability in the atomic level

#

There's this proof where it's like you can't tell the future state of the particle

#

Do I have permission to spam so I can use VC?

#

spam

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied mute to @whole bear until 2020-10-21 08:26 (9 minutes and 58 seconds) (reason: duplicates rule: sent 4 duplicated messages in 10s).

somber heath
#

Whoopsiedoodle, you're a noodle.

limber abyss
#

@whole bear do not spam so you can use the VC

whole bear
#

Freedom 🙂

#

Can I use a word generator instead?

#

Sorry for spamming, mods

faint ermine
#

just dont?

whole bear
#

Ok just counting to 50 messages

faint ermine
#

you only need 9 more

#

just participate using text

whole bear
#

Yeah

#

Does exurb1a make scientific videos?

restive hill
#

      path('forgot/password/', auth_views.PasswordResetView.as_view(template_name='registration/password_reset.html'), name='password_reset'),
      path('forgot/password/reset/', auth_views.PasswordResetDoneView.as_view(template_name='registration/password_resets.html'), name='password_reset_done'),
whole bear
#

Ok

faint ermine
#

Does exurb1a make scientific videos?
not really

whole bear
#

Is it philosophy, because I barely understand the videos....

faint ermine
#

if theres science in them its always as context to a philosophical thing

#

yea

whole bear
#

I was watching that epsilon video

faint ermine
#

thats one of the most abstract ones

restive hill
#
<center>


<div id="backlog">
<br>

<form id="loginform" method="post" action="" style="padding:20px;margin-top:0px; color:black; font-family:'oswald', san-serif; font-size:16px">
    {% csrf_token %}


    
        <input type="text" name="email" id="inputEmail" placeholder="Email address" required autofocus><br>

    <input id="submit" value="Recieve link to reset password" type="submit" style="width:300px;margin-left:2px;border-radius:4px; border:none; padding:10px; font-family:'oswald', san-serif;"/>
    <br><br>
    <div style="font-size:14px;color:silver">Go back? {%if request.user.is_authenticated%}<a style="color:whitesmoke" href="{%url 'home'%}">Home</a>{%else%}<a style="color:whitesmoke" href="{%url 'login'%}">Login</a>{%endif%}</div>
    
</form>

<br><br>
</div>
</center>
#
<h1 style="margin-left:9.8vw;color:Grey;font-family:'oswald',sans-serif;letter-spacing:-8px;font-weight:100">Reset Password</h1>
<div class="container" style="margin-left:10vw;margin-top:-20px;color:grey;font-family:cursive">

    <div class="d-flex flex-column">
          <p class="m-auto p-2">
            We sent a reset password email to {{}}. Please click the reset password link to set your new password.
            <br><br>
          </p>
          <p class="m-auto p-2">
            Didn't receive the email yet?
            Please check your spam folder and make sure you entered the correct email address.
          </p>
          <p class="m-auto p-2">Return to <a style="text-decoration:none;color:rgb(114, 62, 163)"href="{% url 'home' %}"> Home?</a></p>
    </div>
</div>

whole bear
#

My headphones are about to run out of battery so I might have to leave VC anyways

faint ermine
whole bear
#

But I'm almost at 50

faint ermine
#

yea

whole bear
#

Something like 2 more

#

Another

#

Almost....

faint ermine
#

dont

#

just

#

ik its frustrating

#

but at least pretend youre having a conversation

whole bear
#

It worked

restive hill
#

class PasswordResetView(PasswordContextMixin, FormView):
    email_template_name = 'registration/password_reset_email.html'
    extra_email_context = None
    form_class = PasswordResetForm
    from_email = None
    html_email_template_name = None
    subject_template_name = 'registration/password_reset_subject.txt'
    success_url = reverse_lazy('password_reset_done')
    template_name = 'registration/password_reset_form.html'
    title = _('Password reset')
    token_generator = default_token_generator

    @method_decorator(csrf_protect)
    def dispatch(self, *args, **kwargs):
        return super().dispatch(*args, **kwargs)

    def form_valid(self, form):
        opts = {
            'use_https': self.request.is_secure(),
            'token_generator': self.token_generator,
            'from_email': self.from_email,
            'email_template_name': self.email_template_name,
            'subject_template_name': self.subject_template_name,
            'request': self.request,
            'html_email_template_name': self.html_email_template_name,
            'extra_email_context': self.extra_email_context,
        }
        form.save(**opts)
        return super().form_valid(form)


INTERNAL_RESET_SESSION_TOKEN = '_password_reset_token'


class PasswordResetDoneView(PasswordContextMixin, TemplateView):
    template_name = 'registration/password_reset_done.html'
    title = _('Password reset sent')

whole bear
#

I might be back later, battery's out

restive hill
#

      path('forgot/password/', auth_views.PasswordResetView.as_view(template_name='registration/password_reset.html'), name='password_reset'),
      path('forgot/password/reset/', auth_views.PasswordResetDoneView.as_view(template_name='registration/password_resets.html'), name='password_reset_done'),

@restive hill here

hidden cove
#

from django.contrib import messages
#
messages.success(self.request, form.cleaned_data.get('email'))
#

{% for message in messages %}

whole bear
#

hi

#

can someone help with a task?

#

pls?

#

i really need it

somber heath
#

@whole bear What's up?

whole bear
#

i need to do this mission

#

and i did half

#

but i dont know how to do the other part

#

The computer repair company employs 286 technicians. Write a plan that will record for each of the technicians the name and number of repairs he made on a particular day. If the technician made more than 25 repairs that day, the program will print his name and message "BONUS". The plan will also calculate and print the total repairs made by all the technicians in the company that day.

#
sum=0
for item in range (2):
    name=input("insert ur name")
    fixes=float(input("insert ur fixes amount"))
    if (fixes>25):
        
        print ("the name of the fixer is", name, "bonus")
sum=sum+1
print ("the total fixes per day is :",fixes)
#

i dont know how to do it im getting crazy

#

@somber heath can u help me pls pls

somber heath
#

Let's see.

whole bear
#

the total fixes per day aren't working

#

its showing only the last one

somber heath
#

I'm not ignoring you.

#

Just so you know.

whole bear
#

im trying

#

but i dont know

somber heath
#

Yep yep. That's fine.

#

I'm just thinking about what approach would be best for you.

whole bear
#

im suppose to do this with for loop

somber heath
#

Have you covered dictionaries yet?

whole bear
#

no

somber heath
#

Why don't you go ahead and claim one of the help channels in the Python Help: Available category.

whole bear
#

oh

#

ok

somber heath
#

@faint ermine Noted.

pliant atlas
#

@fiery hearth did u get your 50 msges done

onyx geode
#

nope

#

i mean, i have not got my 50 messages yet, as well.

#

@pliant atlas i thought you asked me.

#

Well, have a good day, bye.

pliant atlas
#

bye @onyx geode

#

have a good one

hollow basin
#

ok imma spam until i can talk

#

yay

#

rjh

#

sfcjhb

#

sd bfh

#

fdjks

#

IM TLKING

#

WOWWOOWOWO4

#

QWOW

#

WOW

#

SO

#

HOW P

#

TALKING YAYA

#

still not enough

rugged root
#

@hollow basin I mean if all you're doing is spamming and not actually contributing to the server we can also revoke the permissions as well

#

Just have a conversation with someone, help out in a help channel.

#

Plenty of constructive ways to meet the quota

hollow basin
#

oh

#

sorry

#

didnt know

#

so

#

@rugged root

#

sup

rugged root
#

Nice try.

hollow basin
#

what

#

what do you mean

#

nice try

#

i rlly didnt know

tall latch
#

i wish there was equalizer 3

#

and we need john wick 4 too

rugged root
#

!paste @whole bear

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.

cerulean moth
#

sup hemlock 🙂

#

cool, nice pfp

rugged root
#
list_of_potential_friends = ["Liam", "Noah", "James"] # and so on and so forth for the rest.
list_of_friends = []

user_to_add = input("Who do you want to add to your friend's list?")
if user_to_add in list_of_potential_friends:
    print(f"Sending friend request to {user_to_add}")
    time.sleep(2)
    print(f"{user_to_add} accepeted your friend request.")
    time.sleep(1)
    list_of_friends.append(user_to_add)
    print(f"You and {user_to_add} are now friends!")
else:
    print("Person not found.")
candid venture
gentle flint
whole bear
rugged root
#

Because he's learning?

whole bear
#

I mean yes

rugged root
#

Why shame someone for not knowing how to do stuff initially

tiny socket
#

mfw my mic volume was at 43%

rugged root
#

Called it

tiny socket
#

lol

#

I'll probably come back in ~10 minutes, gonna get some food

rugged root
#

Sounds good

gentle flint
swift valley
#

Good evening

#

Slow day today

candid venture
#

@swift valley
idk u, but join vc

rugged root
swift valley
#

Gimme a minute

tiny socket
#

Ez bookmark

rugged root
gentle flint
rugged root
gentle flint
candid venture
placid bluff
#

@gentle flint Hey

gentle flint
#

hello

placid bluff
#

So

#

what you doing?

gentle flint
#

coding a bit
showing off stuff in my room

#

hbu

placid bluff
#

btw i need to type 50 messages

gentle flint
#

o

placid bluff
#

so

#

let's talk

gentle flint
#

how many do you have so far

placid bluff
#

let me check

#

@gentle flint it dosen't say how many i need to still type

#

😦

#

But

#

i

gentle flint
#

since which date does it count

placid bluff
#

wait

gentle flint
#

25 august right

placid bluff
#

10/11/2020

#

yeah

#

So

#

i have to type around 40 messages

#

awwman

#

will it not count if i just type random thing's?

gentle flint
#

I believe it's expected to come from conversation

candid venture
placid bluff
#

Yeah but how would it know?

#

if we are speaking

#

to each other

gentle flint
#

it wouldn't

placid bluff
#

yeah

gentle flint
#

but mods monitor this chat

placid bluff
#

yeah ture

#

ok

#

So

#

let's talk

gentle flint
#

and they can remove the permission again

placid bluff
#

yeah true

#

ok

#

do you like python?

gentle flint
#

somewhat

placid bluff
#

ok

#

awesome

gentle flint
#

I like it more than PHP

#

how about you

placid bluff
#

Oh alright do you like node.js?

gentle flint
#

how about you

placid bluff
#

i am good

#

i like this system that there won't be people ear raping poeple but people like me who where in this discord server for like 1 year now can't speakkkkk

#

i hate this

#

@candid venture yeah

gentle flint
#

it is kinda sad

placid bluff
#

yeah

#

same with the programming server

#

i was there

#

along time

#

but now i can't see any voice channel

gentle flint
#

9 messages left

placid bluff
#

why don't you guys go to the DevCord discord server?

gentle flint
#

why not

#

this place has more people

placid bluff
#

Yeah ture

#

9 messages left
@gentle flint wowo did you count how mny msg i sent?

gentle flint
placid bluff
#

Github

#

wowowo

#

i love it

gentle flint
#

wowo did you count how mny msg i sent?
yes

placid bluff
#

WOw

#

that cool

#

ok

gentle flint
#

50

placid bluff
#

at this point i am saying what ever i can think of

gentle flint
#

you already reached 50

placid bluff
#

wowowow

#

yaya!

gentle flint
#

try verifying again

swift valley
#

Do an interactive rebase and drop the commits

#

meh, might as well stream in the meantime

#

Vim

candid venture
swift valley
#

@candid venture Remove the uncommented text and do :wq

#

dd lemon_eyes

candid venture
swift valley
#

It's my LISP project lol

pure path
#

what is lisp?

gentle flint
#

a programming language

pure path
#

oh is pure making a language?

gentle flint
#

are you trollling me?

pure path
#

me no?

gentle flint
#

it's from 1958

pure path
#

ohh, I didn;t know that

swift valley
#

assert checks if a condition is true, otherwise, it'll raise an error

rugged root
#

@mighty owl what's the issue with VC?

#

Not entirely sure what noise you're talking about

gentle flint
#

@lusty marsh

swift valley
#

@rugged root Neovide

#

It has a ton of animations

mighty owl
#

I wanna stream me programming C

#

aka blasphemy

rugged root
mighty owl
#

me?

rugged root
#

Yes you

mighty owl
#

I didnt complain

rugged root
#

omg its ear rape in the vc help meee
@mighty owl that isn't complaining?

mighty owl
#

oh no that was earlier, cuz everyone got up and personal to the mic

#

yea that

gentle flint
#

it was simply sensual voice communication

mighty owl
#

sorry boss, I'll learn from my mistake

gentle flint
#

don't tell me you don't appreciate that

whole bear
#

anyone can tell me?

hidden flower
#

ok boss 👍

mighty owl
#

😦

whole bear
#

why im can speak something?

mighty owl
#

master?

whole bear
#

new member

mighty owl
#

aight

frigid panther
#

voice verify @whole bear

whole bear
#

@frigid panther Ohhh my gosh, i dont look it

gentle flint
#
Oh yeah (oh yeah), Yeah (yeah), yeah (yeah)
Master (master), of (of), puppets!
whole bear
#

thanks bro.

frigid panther
swift valley
#

It's a GUI for Neovim

mighty owl
#

where do i do the verify command?

gentle flint
#

git, vim and all those other "useful, easy tools" when I try to use them:

End of passion play, crumbling away
(I'm your source of self-destruction)
Veins that pump with fear, sucking darkest clear
(Leading on your deaths' construction)
rugged root
mighty owl
#

i miss python. My school went on to C sharp and I am hating it

swift valley
mighty owl
#

its brackets on brackets

#

watch me not put a semicolon

frigid panther
#

js does not care about semicolon

#

i never bother using semicolons in js

gentle flint
#

js selectively cares about a semicolon

frigid panther
#

I will leave it to my auto formatter

mighty owl
#

welp, this semester I have to learn
HTML
C#
SQL
javascript

#

all at once

whole bear
#

anyone can help me, install Visual studio code for C++

mighty owl
#

h e l p m e

#

just install CE 2019 of vs

frigid panther
#

i think you missed css in your list @mighty owl

mighty owl
#

html and sql are okay

#

its C

whole bear
#

just install CE 2019 of vs
@mighty owl its not work

mighty owl
#

how to install python

frigid panther
#

why is java scary

#

🤔

whole bear
#

i've been install MINGw

mighty owl
#
import python
swift valley
#

Ek-ma script lemon_eyes

mighty owl
#

thats it bois we going x86 assembly

hidden flower
#

C# vs C/C++ hyperlemon

mighty owl
#

i would say cpp is better than csharp

swift valley
#

tox is gonna take a while

mighty owl
#

my favourite program language is scratch

frigid panther
mighty owl
#

i might need help with C# (maybe)

whole bear
#

@frigid panther sir, i want to invite my friend. Can you make invite link for me?

mighty owl
#

that is moon rnes

frigid panther
#

I can stream the new event management system I am working on, maybe I can get some feedback

hidden flower
#

sure

whole bear
#

i got it

#

thanks yall

frigid panther
#

holy so close to 100k

whole bear
#

Lmao, do some giveway

mighty owl
#

wow invited to python from python

whole bear
#

like aaaa intel processor

rugged root
whole bear
#

@rugged root thanks mr

frigid panther
#

whats the new update

#

I use windows only for league of legends

whole bear
#

hahaha

frigid panther
#

I wish they made it for linux

mighty owl
#

i use notepad

#

pog

#

how have i not sent 50 msgs

whole bear
#

@frigid panther Linux Mint the firts

hollow haven
#

aaah, I can't stop sneezing

frigid panther
#

gratz on your helper role @hollow haven 🎉

hollow haven
#

thank you~

whole bear
#

@mighty owl where you from?

amber raptor
spring kraken
#

now thats wild

#

anyone know a thing or two about domains

quasi condor
graceful grail
#
rugged root
frigid panther
#

when did the user events channel open 🤔

whole bear
#

yaa when

#

??

amber raptor
#

it was probably left open by accident

whole bear
#

wow

#

🙃

#

nice work done 👍

frigid panther
#

how do you usually arrange methods in a class? is it alphabetically or .. ?

quasi condor
#

!e print("\yasdffasd")

hollow haven
#

u wot m8

wise cargoBOT
#

You are not allowed to use that command here. Please use the #bot-commands channel instead.

quasi condor
#

open('yourfile', 'r', 'utf-8')

#

@mighty owl

#

post your code here

#

just the line where you're opening things

mighty owl
#
using (StreamWriter sw = new StreamWriter("D:\Programs\PRG2\Week 1 Part 2\PhoneDirectory.csv", true))
                    {
                        sw.WriteLine(data);
                    }
hidden flower
#

probably in the path

quasi condor
#

"D:\\Programs\\PRG2\\Week 1 Part 2\\PhoneDirectory.csv"

amber raptor
#

if you are using C#

#

Please for love of god try powershell Import-CSV

quasi condor
latent moss
#

hI

swift valley
#

Gonna get some chips

gentle flint
#

was so bored earlier this afternoon that I recorded myself drumming the table for 1.5 minutes

amber raptor
#

lemon_enraged <-- me right now

quasi condor
#
using (StreamWriter sw = new StreamWriter("D:\Programs\PRG2\Week 1 Part 2\PhoneDirectory.csv", true))
                    {
                        sw.WriteLine(data);
                    }
latent moss
#

rabbit triggered

amber raptor
#
Import-Csv -Path C:\path\to\file.csv```
latent moss
#

not related to the current topic, but who has the best looking terminal theme

quasi condor
latent moss
amber raptor
latent moss
#

sugar rushed rabbits are not safe

quasi condor
latent moss
amber raptor
latent moss
#

what is square space

rugged root
#

Am I wrong for saying "not for profit" as opposed to "non-profit"?

latent moss
#

how do you make your websites public from django?

hollow haven
#

You host it

latent moss
#

oh

#

also, how do you assign names to your url?

hollow haven
#

You get a domain from a provider and point the domain to where you're hosting it

latent moss
#

oh

amber raptor
spring kraken
#

DAD

#

IS THAT YOU

whole bear
#

hi i want to know how to create a luncher in python
to lunch 2 scripts

amber raptor
rugged root
#

@atomic edge

atomic edge
#

Thx

#

I just started about a week ago in Python

#

Def.

#

Definitely

#

I made a mad libs with a user interface. But it was in the running thing I don't know the exact wording.

#

So that was fun.

#

Sadly I forgot to put it into a separate project folder and I messed up because of that.

#

Because then I deleted it.

#

And then I cried in a corner.

rugged root
#

Yeah I've done that

#

Reformat a computer and it's just gone

atomic edge
#

lol

#

man getting two monitors soon in order to increase productivity so im excited about that

rugged root
#

Oh dude

#

It's the best

#

You'll have a hard time going back

atomic edge
#

Lol really?

#

im also getting 144hz

#

so getting two huge upgrades

#

Do you know anyone that can help me if I have any problems with my current free courses?

#

For learning Python.

rugged root
atomic edge
#

Thnx

#

S T A C K O V E R F L O W

#

Gotcha.

#

Thanks btw for accepting me

#

Well I'm kind of young and not many people accept me or they did for like 10 minutes then block me for no reason otherwise than being young

#

Thanks. once again.

#

Should I use Mac or Windows for programming?

#

I currently have a windows and after doing a bunch of research I found Mac to be amazing for programming

#

lol

#

How much storage should I use for programming? And HDD or SSD?

#

A bit high end but I also game

#

: P

#

Sata

#

Sata SSD

amber raptor
#

Windows is fine for most programming

atomic edge
#

Gotcha.

#

No

#

But thats including monitora

#

monitors

#

Got it for a deal

#

Why not?

#

should I get the same monitors?

#

or just the same monitor size?

#

Freak well that was the last one in stock.

gentle flint
#

rip

atomic edge
#

also got the 3700x got it for the price of a 3600x so

amber raptor
atomic edge
#

nvidia

#

But I'm going to have on in portrait

#

thts why I chose the 29"

#

OK.

#

Deranker is is g sync compatible just not listed

#

vsync = ew

#

anyway the pc is value not the setup

#

Hemlock do you touch type?

#

Qwerty

#

Yes

#

ye

#

I learned that in a month but trying to get 100wpm

#

just as a fun challenge

viral sierra
#

I'm participating in a competition.
I need to come up with some innovative ideas to make a safe college campus during this period of covid19

atomic edge
#

so is mixing two monitors bad?

#

lol

mighty owl
#

id say if they r similar specs and stuff then ye its fine

atomic edge
#

lemme see that cheap acer monitor

rugged root
#

Let's see, one monitor I have is 19 inches (1280 x 1024) and that one is also my portrait monitor, 24 inches (1920 x 1080) for the middle (and primary) and 21.5 inches (1920 x 1080)

mighty owl
#

but if you care aout aesthetics then ye id say get 2 of the same

atomic edge
#

If i cared about aestheics

#

I wouldnt get one with red highlets

#

i cant spell

#

lol

#

Well its too late

#

Well I thought making it one 29" and one with 24"

#

Just because I thought making one in portrait for programming would be very useful.

vivid snow
#

I am using an ultrawide monitor 20:10

atomic edge
#

I have found my family a pc and coding place

amber raptor
mighty owl
#

random qn, can python code a vst pluin?

rugged root
#

VST?

mighty owl
#

like audio plugins

rugged root
#

Oh... huh I'm not sure, actually

#

@atomic edge Oh, while I have you here:

#

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

mighty owl
#

would be interesting to code and use my own vst plugins

rugged root
#

We've got a whole slew of awesome resources on our site

#

I mean I think there are some libraries for stuff like that but I'm not 100% sure

mighty owl
#

probably is

#

at this point, there are libraries for anything

#

oh unfortunately i think its C that does these plugins

#

hmmm

#

i use wifi

#

0.1mbps

#

lets go

pure path
#

i mistakely downloaded python 2.7 nooo!!!

rugged root
#

How

mighty owl
#

i do not feel ur pain but

#

F

pure path
#

idk , this is my new pc and i downloaded python and thought that it was 3.8.6 but apparently not

#

well gotta downlaod 3.8.6

quasi condor
#

@tiny seal did you're render finish?

mighty owl
#

i have like 6-7 computers at home and inly 1 ethernet port

tiny seal
#

@tiny seal did you're render finish?
@quasi condor yup

#

i'll send it in 10 minutes

mighty owl
#

so ethernet prob gon be impossible for me

#

F

tiny seal
#

i have like 6-7 computers at home and inly 1 ethernet port
@mighty owl use a switch?

mighty owl
#

the thing is

#

my parents never listen to me

#

and they r boomers

tiny seal
#

if y have 1 outlet and just run a cable to your pc and make them to use wifi

rugged root
#

Switches

#

Switches for days

mighty owl
#

and another thing is my family loves google wifi for some god forsaken reason

rugged root
#

I can't get enough of the little bastards

#

They are like candy to me

mighty owl
#

and another thing is my family loves google wifi for some god forsaken reason
i cant port forward or have decent connection because im on the other end of the house

#

they though putting the main router in the corner is better than in the center of the house

tiny seal
#

not being able to port forward sucks

mighty owl
#

Switches for days
ill buy some from you

rugged root
#

They're dirt cheap anymore

mighty owl
#

not being able to port forward sucks
i cant run minecraft server XD

rugged root
#

Where are you based?

#

Like country

mighty owl
#

sg

#

i think my country has different plans for ethernet or wifi

#

but im not sure

mighty owl
#

yoooo

#

hmm

#

my country has only 1 good tech area

#

literally one

tiny seal
#

In a departure from both 10BASE-T and 100BASE-TX, 1000BASE-T and faster use all four cable pairs for simultaneous transmission in both directions through the use of telephone hybrid-like signal handling. For this reason, there are no dedicated transmit and receive pairs. 1000BASE-T and faster require either a straight or one of the crossover variants only for the autonegotiation phase. The physical medium attachment (PMA) sublayer provides identification of each pair and usually continues to work even over cable where the pairs are unusually swapped or crossed.

slender bison
#

ooOOoh

tiny seal
#

@quasi condor

quasi condor
#

that looks very good

tiny seal
#

thx

mighty owl
#

imma head out, cuz its 2am and i have school 8)

pliant atlas
#

bye @mighty owl

tiny seal
quasi condor
#

Thanks

tiny seal
#

but I think these are all forks

stoic ore
#

Hi People

#

😄

#

waow

#

Im unmaried

#

should ı have a best friend ??

#

😄

#

kjfghjgfjhn

#

I know I've been chaty but it was nice to be alowed to talk in this channel 😄

#

I mean ıts hard to type evrythin in my mind

pliant atlas
#

use your mic

stoic ore
#

Permision,

#

kfjgnhmgfn

rugged root
stoic ore
#

sry diditn see it 😄

rugged root
#

@radiant marten What do you need

stoic ore
#

OK ı saw those conditions

#

but ı do know ı cary those conditions ??

#

thats what she saids

#

go d

#

ı cant 😄

rugged root
#

Hmmm

wise cargoBOT
#

Hey @candid venture!

Uh-oh! It looks like your message got zapped by our spam filter. We currently don't allow .txt attachments, so here are some tips to help you travel safely:

• If you attempted to send a message longer than 2000 characters, try shortening your message to fit within the character limit or use a pasting service (see below)

• If you tried to show someone your code, you can use codeblocks
(run !code-blocks in #bot-commands for more information) or use a pasting service like:

https://paste.pythondiscord.com

rugged root
quasi condor
#

@tiny seal script solved all my problems. Thanks

tiny seal
#

no prob

pliant atlas
graceful grail
#

@whole bear #voice-verification

rugged root
frigid panther
#

spend time in help channels

lusty marsh
spring kraken
#
import requests
from bs4 import BeautifulSoup

#NFL
URL = 'https://www.nfl.com/schedules/'
page = requests.get(URL)
soup = BeautifulSoup(page.content, 'html.parser')
soup.prettify

div_list = soup.find_all('a', {'class': 'nfl-c-matchup-strip__left-area'})

#print(soup.title)
print(div_list)
#

thoughts on why print(div_list)only comes up with []

candid venture
#

@rugged root
/give @candid venture @helper role

spring kraken
#

if i just find_all div

#

it shows all the divs

#

but class wont work

frigid panther
#

python3.7 -m pip install <package>

#

@candid venture

rugged root
stoic ore
#

What ?

#

what mark again ?

frigid panther
#

not sure if its same as in venv, but in pipenv , you do pipenv --python 3.7 , try in venv too?

#

@candid venture

rugged root
#

@candid venture

graceful grail
#

@477870815581569034

frigid panther
#

@frigid panther

rugged root
graceful grail
#

@candid venture

#

@

whole bear
#

Omg xD

graceful grail
#

@pliant atlas

whole bear
#

Ima try

candid venture
#

@pliant atlas

whole bear
#

hahha

stoic ore
#

@frigid panther hey where are u from ?

frigid panther
#

India

stoic ore
#

hmm

frigid panther
#

whats wrong?

stoic ore
#

Like Gurkan name 😄

whole bear
#

Can we swear here?

candid venture
#

ý̸̅0̷͂̈n̷̉͂ĺ̵̇i̶̍̒d̵͆̉u̷̎̋

frigid panther
#

my names does not have to be related to anything, lol@stoic ore

lusty marsh
#

‌‌

storm sorrel
#

i cant speak i am muted?

spring kraken
#

now thats a yoink

#

yeet

#

verifi

#

poggers

#

sad champ

#

start typing

#

im

#

still

#

typing

#

i

#

t

#

is

#

sad

rugged root
#

Just have a conversation

#

You can still be in here and listen and we can still talk to you and what not

spring kraken
#

can you look at what i posted above??

#

im doing well shepherd

#

you ?

stoic ore
#

@frigid panther Yeah , İts just I like it

frigid panther
#

The Gurkan Cult

whole bear
#

Umm guys Im sorry but im new to python this might sound stupid but wwhere exactly do I write the code in Vscode

frigid panther
#

create a new file

spring kraken
#

Oh are you saying the nfl website doesnt let you scrape ?

frigid panther
#

and then start typing

whole bear
#

Oh THANKYOUUUU

#

yall are legends

spring kraken
#

Api would probably be easier

#

i was thinking of using google api for nfl

#

but im new to apis

lusty marsh
#

True

spring kraken
#

sad champ

rugged root
spring kraken
#

is that using json

#

?

#

sorry im newish to this

#

so

#

i need to write it in java

whole bear
#

Where is the console on vscode?

#

btw i downloaded the python extenstion

frigid panther
#

press ctrl+`

#

to open terminal

#

or ctrl+shift+`

whole bear
#

U sir are a legend

#

Thank you

frigid panther
#

league has API

hidden flower
#

skirt?

rugged root
frigid panther
#

he dmed me

eager marten
#

Hi, guys!

frigid panther
#

hello o/

whole bear
#

Okay Thank you didn't know that yall had a channel for this

rugged root
#

No problem!

frigid panther
#

what about you hemlock, any sports?

eager marten
#

I'm sorry, but does anyone know C++ language? I have some troubles and I need advise.

frigid panther
eager marten
#

Thx ❤️

spring kraken
#

GET https://<domain>/v1/games

frigid panther
#

if they had examples, it would be the best

#

examples as in programming langs

rugged root
eager marten
#

Oh, I almost forgot. Has anyone worked with CoppeliaSim Player? It's just that when I worked with Open CV, he did not determine the colors of objects. What could be the reason for this?( I used RGB to work)

rugged root
#
https://api.nfl.com/games
vapid seal
#

xD

frigid panther
whole bear
#

Thank you yo every single one of you who bared my dumb questions and helped me... this is such a great community Im excited to learn Python now 🙂 @frigid panther @rugged root @pliant atlas

stoic ore
#

Tor Browser

rugged root
#

!resources @spring kraken

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.

whole bear
#

I must leave now Cya you guys are geniuses every single one of you

rugged root
frigid panther
#

Coding was boring for me too at the starting, until I came across web dev n other software dev stuff

#

or try linux

#

i was fed up with windows being slow, so I installed linux

#

as my pc is quite old

#

you guys want to play among us?

atomic edge
#

Hi Mr. Hemlock/

stoic ore
#

yey

eager marten
#

Hi!

frigid panther
#

o/

atomic edge
#

Got some pizza.

stoic ore
#

ı was wanna to play but didnt have friends

frigid panther
#

maybe we can get a gang on the weekends

atomic edge
#

Nah I'm chilling sry

frigid panther
#

for among us

atomic edge
#

Yeah

stoic ore
#

😄

#

yeah me too

frigid panther
#

I'm gonna head to bed, night

atomic edge
#

good how are you?

stoic ore
#

PLOG

rugged root
#

HOKAY

#

So

#

Okay, I'm here now, sorry

stoic ore
#

Prolog

gentle flint
#

Prolog is a logic programming language associated with artificial intelligence and computational linguistics.Prolog has its roots in first-order logic, a formal logic, and unlike many other programming languages, Prolog is intended primarily as a declarative programming langua...

rugged root
#

Was adding a channel, had to do some permissions handling. @atomic edge How's it going

stoic ore
#

Assembly

lusty marsh
#
>>>>>>>>++************.[-.]
gentle flint
#

brainfux

#

brainfuck-extended

lusty marsh
#
import bs
gentle flint
#
kill all && echo "everything was killed"
lusty marsh
#
,
gentle flint
#
Now we're going to play with processing input. Brainfuck allows you to read a byte as input and store it in the byte at the pointer. This means that entering 123 will be read as the byte-values 49, 50 & 51.
stoic ore
#

I'll be out

#

see u guys later

#

Bye

potent thicket
#

bye

lusty marsh
#
,.,
output:
  
#

i = 0
ram = [x-x for x in range(1024)]

ram[i] += 1
ram[i] += 1
ram[i] += 1
ram[i] *= ram[i]
ram[i] *= ram[i]
ram[i] *= ram[i]
ram[i] *= ram[i]
ram[i] *= ram[i]
while ram[i] > 0:
    ram[i] -= 1
    print(ram[i])
eager marten
#

Bye!

quasi condor
lusty marsh
#
+++ +++ ++++ * ++++>
+++ +++ ++++ * +>
+++ +++ ++++ * ++++ ++++>
+++ +++ ++++ * +++++ +++++ +>
+++ +++ ++++ * +++++ +++++ +++++ ++++>
+++ +++ ++++ * +++++ +++++ ++++>
+++ +++ ++++ *
<<<<<<|>|>||>|>|<|>>|<<<|>>>>|,

Output:
helloworld

quasi condor
gentle flint
lusty marsh
#

bsb build main.bs start

atomic edge
#

Hiiiiiii

#

What's going on/

#

?*

spring kraken
#
IGN = input('IGN: ')
URL = 'https://na1.api.riotgames.com/lol/summoner/v4/summoners/by-name/',IGN,'apikey'
quasi condor
#

URL = 'https://na1.api.riotgames.com/lol/summoner/v4/summoners/by-name/' + IGN + 'apikey'

lusty marsh
#

f"{IGN}"

quasi condor
#

URL = f'https://na1.api.riotgames.com/lol/summoner/v4/summoners/by-name/{IGN}apikey'

#

!f-strings

wise cargoBOT
#

In Python, there are several ways to do string interpolation, including using %s's and by using the + operator to concatenate strings together. However, because some of these methods offer poor readability and require typecasting to prevent errors, you should for the most part be using a feature called format strings.

In Python 3.6 or later, we can use f-strings like this:

snake = "Pythons"
print(f"{snake} are some of the largest snakes in the world")

In earlier versions of Python or in projects where backwards compatibility is very important, use str.format() like this:

snake = "Pythons"

# With str.format() you can either use indexes
print("{0} are some of the largest snakes in the world".format(snake))

# Or keyword arguments
print("{family} are some of the largest snakes in the world".format(family=snake))
lusty marsh
#
IGN = input('IGN: ')
URL = f'https://na1.api.riotgames.com/lol/summoner/v4/summoners/by-name/{IGN}apikey'
atomic edge
#

So I was thinking about buying a 2 in 1 laptop, any suggestions?

spring kraken
#

'name': 'randomIGN',

hollow haven
#

Yup. The solution was to just use Chrome.

atomic edge
#

Anyhoo

gentle flint
#

anaha

atomic edge
#

How are you Mr. Hemlock?

#

😄

quasi condor
rugged root
#

I'm good, 'bout you?

atomic edge
#

I'm doing OK.

lusty marsh
#

FAIL

atomic edge
#

Trying to figure out what the freak should I get, a laptop or a desktop; and also mac or windows?

rugged root
#

Depends on your wants and needs

#

If you plan on gaming, desktop and windows

atomic edge
#

While that is true. I also want a 2 in 1 so I think the envy x360

#

SO mac is out

#

while macOS is so good.

#

Nah.

#

GPU

#

Yeah.

#

No.

atomic edge
#

I don't like surface

#

G14 has a hella nice one

quasi condor
atomic edge
#

right and wrong one

wise cargoBOT
#

Hey @lusty marsh!

It looks like you tried to attach file type(s) that we do not allow (.zip). 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.

atomic edge
#

I can't hear anything

#

oh nvm

#

Sorry I couldn't hear anything

#

I'm not sure.

#

Yeah I know.

#

Yeah I know.

atomic edge
#

My config

#

AMD Ryzen™ 5 4500U (2.375 GHz, up to 4.0 GHz, 3 MB L2 cache, 6 cores) + AMD Radeon™ Graphics
16 GB DDR4-3200 SDRAM (2 x 8 GB)
15.6" diagonal FHD, IPS, micro-edge, WLED-backlit, multitouch-enabled, edge-to-edge glass, 250 nits (1920 x 1080)
512 GB PCIe® NVMe™ M.2 SSD
Office Software Trial
Security Software Trial
4-cell, 55.67 Wh Lithium-ion prismatic Battery
No DVD or CD Drive
Full-size backlit island-style keyboard with integrated numeric keypad
HP Wide Vision HD Camera with Dual array digital microphone (Nightfall Black)(Touchscreen)
Intel® Wi-Fi 6 AX 200 (2x2) and Bluetooth® 5 combo (Supporting Gigabit file transfer speeds)
HP Pen (dark ash silver)
HP ENVY x360 15 Convertible PC

#

Well I know

#

I'll just get a mini itx build

#

I play 40fps on csgo be quiet

#

this craptop is killing me

#

anyhoo I need an intro to mini itx builds

#

7700hq 1050ti

#

Yes I know

#

I was thinking about not gaming as much but then I remembered mini itx pcs exist

#

I got one/

#

I'm not approved

#

It

#

For voice chat.

#

Nah, I felt for an upgrade, has a bunch of fps drops and also the the red accents are killing me.

#

Yeah can't change that

#

Tried almost killed it.

amber raptor
#

Upgrade GPU if you want

atomic edge
#

some triple a duracell gpus