#voice-chat-text-0

1 messages Β· Page 282 of 1

safe ginkgo
#

the answer was right there

#

its prob russain

dry jasper
#

belgorod

safe ginkgo
#

you teleported

fast sparrow
#

!vc @safe ginkgo @whole bear

safe ginkgo
#

not new just never tried to get perm

#

vc

lament cloud
safe ginkgo
#

need 50 messages

willow light
#

Trying out a microwaveable rice cooker.

stuck furnace
#

That makes sense. What's the benefit over a normal rice cooker?

red cairn
whole bear
#

May I get perms

#

Eivl

#

May I get perms again?

#

Actually, never mind I thought about my previous infraction

willow light
stuck furnace
#

I see

obsidian dragon
#

in gpt4all how do i add a negative prompt

potent adder
#

There is no way you add a negative prompt

stark river
#

❓

#

i'm studying

signal zealot
#

help pls

golden delta
#

venv

#

py -m venv myvenv

balmy phoenix
#

if not i can help

gentle flint
whole bear
#

@ivory stumpUm May I get streaming perms UwU?

#

With a Chewwy on twap

civic ivy
#

1 fucking am

#

doing fucking english work

#

that’s due tomorrow

#

that i fucking forgot about

#

AND I STILL GOT LIKE A FUCK TON MORE TO DO

#

i wanna die

earnest crag
#

@dire folio poke!

dire folio
#

im not available

earnest crag
#

@whole bear poke!

amber raptor
civic ivy
earnest crag
#

Im not here

wise loom
upper nimbus
whole bear
#

@stuck furnace Hi Olex

#

Yo Alex

#

Can you give me perms for an hour?

stuck furnace
#

I'm probably going to be leaving in a minute sorry.

#

Sorry, not today. Maybe if another mod joins.

whole bear
#

@dire folioMay I get perms?

dire folio
#

!stream 717749310518722691

wise cargoBOT
#

βœ… @whole bear can now stream until <t:1711305319:f>.

wise loom
whole bear
#

@whole bearπŸ‘‹

whole bear
#

How are you

whole bear
#

So so

elfin tundra
#

yo guys, here i tried to create a function that gives (x-y:name) as its output. now the problem is that x-y values are repeated for every element in the list, I thought that if substituted it with a variable it would work. but now its giving me IndexError: list index out of range

#

does anyone have an idea about how to fix this error, and make the code work?

shrewd ibex
#

you at a whole another level @lavish rover

bold oracle
#

@safe pewter

#

@lavish rover You are insane

#

My bro

#

@wind raptor This guy is crazy at deving

#

one of the best devs Ive seen

#

what are you making?

whole bear
earnest crow
#

All players form a single team. In the first round (level 1) each player receives 1 card,
in the second round (level 2) they receive 2 cards, and so on. At each level the team
members must put down all their cards in increasing order in the centre of the table
on an open stack, one after the other. For example (4 players, level 1): 18-34-41-73.
The players do not take turns in any particular order. Whoever wants to put down a
card, simply does so

whole bear
#

If I'm not mistaken, is this what you want to do?

golden delta
#

@wind raptor

upper nimbus
wind raptor
#

!stream 1218705542814634045

wise cargoBOT
#

βœ… @golden delta can now stream until <t:1711314536:f>.

stuck furnace
#

Yeah you don't appear to have started the bot.

#

Add a print('hello') somewhere to at least see if the function is running.

wind raptor
#

!stream 1218705542814634045

wise cargoBOT
#

βœ… @golden delta can now stream until <t:1711315038:f>.

wind raptor
#

!stream 1218705542814634045

wise cargoBOT
#

βœ… @golden delta can now stream until <t:1711316199:f>.

stuck furnace
golden delta
#

thanks

stuck furnace
#

Somewhere inside the function

golden delta
stuck furnace
#

Would you mind pasting the code as text btw?

#

!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.pythondiscord.com/

After pasting your code, save it by clicking the Paste! button in the bottom left, or by pressing CTRL + S. After doing that, you will be navigated to the new paste's page. Copy the URL and post it here so others can see it.

golden delta
#

sure

red cairn
#

cool

golden delta
#
import discord
from discord.ext import commands
import datetime

welcome_channel = 1221421626202001470

class MyClient(discord.Client):
    async def on_ready(self):
        print("On and Running!")
        print("---------------")

intents = discord.Intents.default()
intents.message_content = True

client = MyClient(intents=intents)

@client.event
async def on_member_join(member):
    channel = client.get_channel(welcome_channel)
    embed = discord.Embed(
        description=f'Welcome to the official GAM3 discord server **{member.mention}**!',
        color=0x000000,
        timestamp=datetime.datetime.now(),
    )
    channel.send(embed=embed)
stuck furnace
#

Hang in there, there's got to be a simple solution to this πŸ˜„

golden delta
#

fixed a bug or 2 and removed the auto roll

stuck furnace
golden delta
#

ye

wind raptor
#
import discord
from discord.ext import commands
import datetime

welcome_channel = 1221421626202001470

intents = discord.Intents.default()
intents.message_content = True

client = commands.bot("~", intents=intents)

@client.event
async def on_connect():
    print("connected")

@client.event
async def on_member_join(member):
    channel = client.get_channel(welcome_channel)
    embed = discord.Embed(
        description=f'Welcome to the official GAM3 discord server **{member.mention}**!',
        color=0x000000,
        timestamp=datetime.datetime.now(),
    )
    channel.send(embed=embed)
stuck furnace
#

What do you want to stream?

#

!stream 717749310518722691

wise cargoBOT
#

βœ… @whole bear can now stream until <t:1711316593:f>.

stuck furnace
#

Is this the right way to use intents? I thought they were immutable bit-flags πŸ€” ```py
intents = discord.Intents.default()
intents.message_content = True

#

Oh right it's a property.

#

You need the members intent as well don't you?

#

I would have thought

#

If you want receive notifications about members joining.

golden delta
#
Traceback (most recent call last):
  File "c:\Users\c0d3\Desktop\gam3-discord_bot\main.py", line 10, in <module>
    client = commands.bot("~", intents=intents)
             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
TypeError: 'module' object is not callable
PS C:\Users\c0d3\Desktop\gam3-discord_bot> 
stuck furnace
#

intents.members = True? πŸ‘€

#

@golden delta try this ^

#

Nope, keep the other one. You need both.

#

Hey Mad πŸ˜„

whole bear
#

@whole bear Do you play Chess Ultra?

#

No

stuck furnace
#

How to do what?

#

Mods can, temporarily.

#

Progress! πŸ˜„

whole bear
#

ALEX

stuck furnace
#

Ah not awaited?

golden delta
#
  channel.send(embed=embed)
RuntimeWarning: Enable tracemalloc to get the object allocation traceback
stuck furnace
#
    await channel.send(embed=embed)
#

Β―_(ツ)_/Β―

whole bear
#

ALEX

stuck furnace
#

Er, do you not have an alt?

#

But sure

#

No problem

#

I'm pretty sure it is πŸ€”

wind raptor
#

!stream 961672806444204094

wise cargoBOT
#

βœ… @upper nimbus can now stream until <t:1711317653:f>.

stuck furnace
#

If it's causing lag, lowering the frame rate to 15 fps might help.

#

They're also more discoverable for users

upper nimbus
#

yeah i did that and it worked ty

stuck furnace
upper nimbus
#

really?

stuck furnace
#

It's quite involved! Firstly, you don't install it, as it just runs directly out of the directory. Secondly, it's probably best to forget Windows - whilst I assume it can be done I've never tried, and expect it's a lot of work, even for me. I develop on Linux, so that's the only platform I can be sure of, but I know my code has been successfully run on Mac, often with only slight code changes. The below was written assuming Linux.

upper nimbus
#

i have an ipad

stuck furnace
#

Errm, Linux VM?

#

I've only just come back to Windows after using Mac/Linux for a while, so I'm not sure what the best way to do that is.

#

I think it's about both

#

Wait, I'm not sure I would recommend using WSL for this.

#

I'm recommending running a full virtual machine.

#

I would use the default installation directory

whole bear
#

@merry totemπŸ‘‹

stuck furnace
#

@upper nimbus There's move the window, there's something behind it

#

!stream 717749310518722691

wise cargoBOT
#

βœ… @whole bear can now stream until <t:1711318922:f>.

whole bear
#

@ivory stumpDUDE

stuck furnace
#

Is there a lighter-weight Ubuntu image you can download?

#

Use LTS

whole bear
#

@whole bearπŸ‘‹

#

@rustic jungleπŸ‘‹

#

@radiant tulipπŸ‘‹

stuck furnace
#

@whole bear You don't have to ping everyone πŸ˜„

rustic jungle
#

thanks for waving

whole bear
rustic jungle
#

less than 50 messages

#

which is crazy

#

I mean, member since feb i guess that makes sense. Trying to be more active in here as well since our small server kinda went dead

whole bear
#

what are u guys trying to do with ubuntu or just install ?

stuck furnace
#

The image is like, 1.5 GB

stuck furnace
#

@golden delta Thank the voice verification system πŸ™

whole bear
#

i should be dumping windows too soon

#

im tired of it

#

lol

golden delta
#

thanks you voice verification system lemon_smug

stuck furnace
#

Yeah, not really appropriate

golden delta
#

mb

whole bear
#

working with ML and amd gpu in windows sucks

stuck furnace
#

!stream 961672806444204094

wise cargoBOT
#

βœ… @upper nimbus can now stream until <t:1711319580:f>.

stuck furnace
#

Oh it's still downloading πŸ˜„

#

Even if you don't get the handwriting software to run, learning to run a VM might be a worthwhile skill, maybe

rustic jungle
#

odd flex lol

stuck furnace
#

@golden delta Use ethernet pithink

ivory stump
#

not bad, u?

whole bear
ivory stump
#

Also cmon the rook is hanging

golden delta
#

@stuck furnace 😭

ivory stump
#

Well that's an overgeneralisation

#

brb

whole bear
#

u sure u not connected to any proxy or vpn

#

Guys, I'm having some problems with SQLModel and NamedTuples or Enum's.
Can anyone help me with this?

I was trying to do something like this:

class Coordinates(NamedTuple):
    latitude: float
    longitude: float
    altitude: float

class Address(SQLModel, table=True):
    __table_args__ = (UniqueConstraint('zipcode'),)
    id: UUID | None = Field(default=None, primary_key=True)
    zipcode: PositiveInt
    coordinates: Coordinates | None = None

It returns this:

Traceback (most recent call last):
  File "/home/krisque/Personal_Projects/jacobson/database/models/brazil.py", line 78, in <module>
    class Address(SQLModel, table=True):
  File "/home/krisque/.pyenv/versions/3.12.2/lib/python3.12/site-packages/sqlmodel/main.py", line 474, in __new__
    col = get_column_from_field(v)
          ^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/krisque/.pyenv/versions/3.12.2/lib/python3.12/site-packages/sqlmodel/main.py", line 618, in get_column_from_field
    sa_type = get_sqlalchemy_type(field)
              ^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/krisque/.pyenv/versions/3.12.2/lib/python3.12/site-packages/sqlmodel/main.py", line 607, in get_sqlalchemy_type
    raise ValueError(f"{type_} has no matching SQLAlchemy type")
ValueError: <class '__main__.Coordinates'> has no matching SQLAlchemy type
stuck furnace
#

Er @upper nimbus you don't want to open the iso. Continue following the instructions.

whole bear
whole bear
#

honestly i think there is no problem with pc

#

doulble check tmrw with isp

whole bear
ivory stump
#

@whole bear how did the game go

whole bear
ivory stump
#

😒

stuck furnace
#

@upper nimbus πŸ‘

stark river
whole bear
#

Lost your voice perms?

ivory stump
#

Just don't want to interrupt conversations

whole bear
stark river
#

oh wait.. no need for export in python

whole bear
#

export models? wdym

ivory stump
#

welp time to go πŸ‘‹

stark river
#

my guess is you didn't import the types from sqlalchemy package

stuck furnace
#

@upper nimbus Yeah although I'm not sure why next is greyed out

#

brb sorry

#

@upper nimbus go back, you may need to deselect the "pre-allocate full size" option.

#

πŸ‘

hallow warren
#

3 stars now

upper nimbus
#

yeah hopefully we can get it done πŸ˜‚

stuck furnace
#

Yeah it's a distribution of Linux

#

You mean like telemetry?

#

Errr, I don't think it's supposed to do that

#

@hallow warren Do you have a good reason to tell them to do this?

#

Oh ok, so this is another way to make Ubuntu VMs on Windows?

#

This might be better than Virtualbox yeah

#

@upper nimbus Any

#

Does multipass give you a graphical DE?

#

@upper nimbus 😬

#

@hallow warren He's low on disk space

#

You might be better off in the long run dual booting, if this is a long term project.

#

Back in a bit πŸ‘‹

stark river
#

bit flip

golden delta
stuck furnace
#

!stream 1218705542814634045

wise cargoBOT
#

βœ… @golden delta can now stream until <t:1711323386:f>.

stuck furnace
#

What bandwidth are you supposed to be getting from your ISP?

#

I'd get on their case about it

#

Er, did Zay have to go?

#

Cya, have fun @golden delta πŸ‘‹

golden delta
wind raptor
#

!stream 961672806444204094

stuck furnace
#

!stream 961672806444204094

wise cargoBOT
#

βœ… @upper nimbus can now stream until <t:1711323708:f>.

#

βœ… @upper nimbus can now stream until <t:1711323708:f>.

golden delta
#

@stuck furnace no having fun 😭

#

1d 13h

stuck furnace
#

@upper nimbus @hallow warren They can use this to download just the subdirectory as a zip: ...

#

This repo's got a lot of other stuff in it I think.

#

I might spend some time seeing if I can get it working on Windows, and maybe package it up if possible.

#

You probably need to install a C compiler too.

#

That's alright jims. It looked promising Β―_(ツ)_/Β―

stuck furnace
#

I feel like trying to get this working is going to be a lot of hassle

whole bear
stuck furnace
#

Got to go, back in a bit πŸ‘‹

hallow warren
#

@Zay please accept my friend request

upper nimbus
#

i sent it to you

forest pagoda
#

Hey

#

So the utils.prog_bar is a local import IMO

#

yup

#

so in the gh page, ig you should see a folder named utils

#

ik, it should ideally

#

brb

stuck furnace
#

How's it all going?

forest pagoda
#

sorry. any updates?

upper nimbus
stuck furnace
#

Oh

#

Yea

#

Oh right I'll take a look at that

#

Sorry you cut out just now

upper nimbus
#

can you hear me

stuck furnace
#

Yep can hear you now

#

Yeaaah, I'm not sure sorry

vocal basin
#

it should be like Ρ‡ to keep with the spirit of calligraphy being unreadable

stuck furnace
#

You need to clone it, set up a python venv, and install the requirements.

#

Virtual environment

#

I recommend downloading the code (as a zip file) and extract it somewhere.

#

Yep πŸ‘

#

Just a folder within your documents, or wherever

#

Sure

stark river
stuck furnace
#

Yeah, although you need to extract it.

#

πŸ‘

#

Alright, one sec...

#

Yes pip install -r requirements.txt, but they need to get a venv set up first.

#

Could you right click in the folder and open a terminal there?

#

Is there not an "open in terminal" option?

#

Oh is that a windows 11 thing?

#

Copy the directory path from the file browser.

#

@upper nimbus ^

#

Can you really not right click and open a folder in the terminal in windows 10?

#

Yeah

#

@upper nimbus Yep

#

@upper nimbus close the old window

#

@upper nimbus πŸ‘

#

@upper nimbus Can you enter the following command please

#

py --list-paths

#

This is just to see what python interpreters you have installed

#

@upper nimbus Ok, so 3.11 is the default interpreter

#

@upper nimbus Sorry I'm pinging you so it shows up as a notification

#

@upper nimbus Right ok. You need to create a venv. Enter the command py -m venv .venv

#

@upper nimbus It takes a little while on Windows

#

@upper nimbus Now you can activate the venv with .venv\Scripts\activate

#

@upper nimbus tab completion is your friend

#

You need to change a certain windows security setting sorry

#

I've done this a few times, but never remember the exact command

#

One sec sorry

#

Open a new powershell but as administrator

#

Yep

#

@upper nimbus Set-ExecutionPolicy -ExecutionPolicy RemoteSigned

#

You copied a bit more than intended

#

Right yep

#

You need to re-open the other powershell window probably

#

@upper nimbus Yep

#

@upper nimbus Nice, notice the (.venv)

#

pip install -r requirements.txt

#

This will install the packages listed in the file requirements.txt

#

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

stuck furnace
#

@upper nimbus ^

#

That was me πŸ˜„

#

Fair enough

#

Could be

#

No space left on device πŸ‘€

#

You need to make some room

#

Maybe delete that Ubuntu iso

#

@upper nimbus πŸ‘

#

Can you copy-paste that here? I can't read it

upper nimbus
#

ERROR: Ignored the following versions that require a different python version: 1.6.2 Requires-Python >=3.7,<3.10; 1.6.3 Requires-Python >=3.7,<3.10; 1.7.0 Requires-Python >=3.7,<3.10; 1.7.1 Requires-Python >=3.7,<3.10; 1.7.2 Requires-Python >=3.7,<3.11; 1.7.3 Requires-Python >=3.7,<3.11; 1.8.0 Requires-Python >=3.8,<3.11; 1.8.0rc1 Requires-Python >=3.8,<3.11; 1.8.0rc2 Requires-Python >=3.8,<3.11; 1.8.0rc3 Requires-Python >=3.8,<3.11; 1.8.0rc4 Requires-Python >=3.8,<3.11; 1.8.1 Requires-Python >=3.8,<3.11
ERROR: Could not find a version that satisfies the requirement tensorflow==1.6.0 (from versions: 2.12.0rc0, 2.12.0rc1, 2.12.0, 2.12.1, 2.13.0rc0, 2.13.0rc1, 2.13.0rc2, 2.13.0, 2.13.1, 2.14.0rc0, 2.14.0rc1, 2.14.0, 2.14.1, 2.15.0rc0, 2.15.0rc1, 2.15.0, 2.15.1, 2.16.0rc0, 2.16.1)
ERROR: No matching distribution found for tensorflow==1.6.0

stuck furnace
#

Thanks

#

Ah <3.10

#

Right, we're going to have to do this all again lol

#

Sorry

#

It could

#

The opposite actually

#

I would just download python 3.10

#

Oh yeah 3.9

#

How would you go about doing that @stark river ?

#

You don't need to make it a default

#

You just need to specify it when you create the venv

#

After that and activating the venv you just refer to it as python, as activating the venv modifies your path

#

I don't mind which approach you take, but for me installing python 3.9 would be a bit easier.

#

Yeah

#

Just download the latest one that has a windows installer

#

3.9.12

#

Sorry, 3.9.13

#

Windows 64-bit

#

πŸ‘

#

Just use the defaults ideally

#

Hopefully you don't run out of space lol

#

@upper nimbus wait

#

oh lol

#

You should have clicked disable path length limit

#

Erm, I'll see if there's another way to do that.

#

You can run this command in powershell as admin to disable the path length limit: ```
New-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\FileSystem" `
-Name "LongPathsEnabled" -Value 1 -PropertyType DWORD -Force

#

It's worthwhile doing

#

Run as admin

#

You can copy a code block by clicking that

#

Alright πŸ‘

#

Back to the other thing

#

So first of all we need to deactivate and delete the old venv.

#

Run deactivate

#

Then rm .venv

#

needs a space

#

Yep

#

Oh, close the powershell window and just delete it in the file browser instead

#

And delete the .venv folder

#

Other window

#

Yeah close that

#

Nono, delete .venv folder

#

That contains the old venv

#

Yeeap

#

Because we want to create a new venv

#

Alright open powershell

#

Just to check python 3.9 is available py --list

#

Cool, ok, so create the venv with py -m venv .venv

#

Wait

#

sorry

#

Wrong command lemon_sweat

#

py -3.9 -m venv .venv

#

@upper nimbus this

#

With a space

#

They're separate arguments

#

Ok, so activate it now

#

.venv\scripts\activate

#

It's created, not activated yet

#

Alright πŸ˜„

#

pip install -r requirements.txt

#

It's hard to read sometimes

#

Nah, I think it's just the video compression messing with the text πŸ€·β€β™‚οΈ

#

:C

#

Don't worry about it. Could you paste the error messge here?

upper nimbus
#

ERROR: Could not find a version that satisfies the requirement tensorflow==1.6.0 (from versions: 2.5.0, 2.5.1, 2.5.2, 2.5.3, 2.6.0rc0, 2.6.0rc1, 2.6.0rc2, 2.6.0, 2.6.1, 2.6.2, 2.6.3, 2.6.4, 2.6.5, 2.7.0rc0, 2.7.0rc1, 2.7.0, 2.7.1, 2.7.2, 2.7.3, 2.7.4, 2.8.0rc0, 2.8.0rc1, 2.8.0, 2.8.1, 2.8.2, 2.8.3, 2.8.4, 2.9.0rc0, 2.9.0rc1, 2.9.0rc2, 2.9.0, 2.9.1, 2.9.2, 2.9.3, 2.10.0rc0, 2.10.0rc1, 2.10.0rc2, 2.10.0rc3, 2.10.0, 2.10.1, 2.11.0rc0, 2.11.0rc1, 2.11.0rc2, 2.11.0, 2.11.1, 2.12.0rc0, 2.12.0rc1, 2.12.0, 2.12.1, 2.13.0rc0, 2.13.0rc1, 2.13.0rc2, 2.13.0, 2.13.1, 2.14.0rc0, 2.14.0rc1, 2.14.0, 2.14.1, 2.15.0rc0, 2.15.0rc1, 2.15.0, 2.15.1, 2.16.0rc0, 2.16.1)
ERROR: No matching distribution found for tensorflow==1.6.0

stuck furnace
#

πŸ€”

#

@stark river Have you installed tensorflow before?

#

Β―_(ツ)_/Β―

#

pip install tensorflow

#

The major version jump might be an issue. I'm not sure how backwards compatible it is.

whole bear
#

@ivory stump Are you free or do you have work?

ivory stump
#

Neither, playing a game with a friend

stuck furnace
#

Is v1 on pypi? I didn't see it?

whole bear
stuck furnace
stark river
stuck furnace
#

Alright πŸ˜“

#

Β―_(ツ)_/Β―

signal zealot
stuck furnace
#

@high token Can you mute please

#

@upper nimbus I guess try running python demo.py ?

#

Oh

#

svgwrite πŸ€”

#

Wait, check first

#

@upper nimbus

stark river
stuck furnace
#

Don't install packages from pypi without first checking whether they're safe

stark river
stuck furnace
#

The package name doesn't necessarily match the import name

stark river
#

and then use the prompt as done in README

stuck furnace
#

But it appears to in this case.

stuck furnace
#

Satya?

#

Don't worry about upgrading pip, this is a bit of a tangent

#

He'll need to activate the venv

#

@hallow warren

#

Wow bit harsh sazk πŸ˜„

#

Β―_(ツ)_/Β―

stark river
#

ehh i can be harsher... wait until i roast him for this being his first time using a computer

stuck furnace
#

Wait, wasn't matplotlib installed from requirements.txt πŸ€”

stuck furnace
#

I guess if one requirement isn't able to be satisfied none of them install?

stark river
#

no i don't think that happens

stuck furnace
#

You know what, let's just: ```
pip install matplotlib pandas scikit-learn scipy svgwrite tensorflow

#

@upper nimbus ^

#

This is essentially what sazk was suggesting earlier.

#

@hallow warren Do you do anything related to AI?

#

Oh interesting

#

We are also running very low on disk space πŸ˜„

shrewd ibex
#
friends = select(
                case(
                    (Friends.sender != current_user.username, Friends.sender),
                    (Friends.receiver != current_user.username, Friends.receiver)
                ).label("username")
              ).select_from(Users).options(joinedload(Users.friends)).join(Users.friends).filter(Users.username == current_user.username).subquery()
friends_information = await db.execute(select(Users.profile,Users.username,Dms.id)
                                        .join(friends,friends.c.username == Users.username)
                                        .outerjoin(Dms,or_(and_(Dms.sender == current_user.username,Dms.receiver == Users.username),
                                        and_(Dms.receiver == current_user.username,Dms.sender == Users.username))))```
stuck furnace
#

If it works, it should create an svg file in img/

shrewd ibex
#
friends = await db.execute(select(Users.profile, Users.username,Dms.id).join(Friends, or_(and_(
        Friends.receiver == current_user.username, Friends.sender == Users.username), and_(
        Friends.sender == current_user.username, Friends.receiver == Users.username)))
        .outerjoin(Dms,or_(and_(Dms.sender == current_user.username,Dms.receiver == Users.username),
        and_(Dms.receiver == current_user.username,Dms.sender == Users.username))))```
#

Which query do ya'll prefer?

stuck furnace
#

πŸ€·β€β™‚οΈ

#

I'm just trying with different version of Python

#

Python 3.6 works up until the point that a dependency of tensorflow requires python >=3.7

#

3.7 says tensorflow 1.6 isn't available

stark river
#

conda-forge

stuck furnace
#

Conda is an alternative to the standard python distribution

#

Well not quite

stuck furnace
#

I believe one of tensorflow's dependencies required python >= 3.7

stuck furnace
#

I think it might be reasonable at this point to call it a day.

#

Sorry we weren't able to get that working @upper nimbus

upper nimbus
#

no man is ok

#

i understand

#

you got the other version working

stuck furnace
#

This is the kind of thing I end up spending 80% of my time doing when programming, when I'd rather be writing code πŸ˜„

upper nimbus
#

idk if it does the same thing

stark river
#

this is why i said how badly do you want this

upper nimbus
#

really bad though

stark river
#

it's a lot of work around

upper nimbus
#

what ever needed to be done i would do

#

i went on fivver and everything

stuck furnace
#

The problem is a lot of these code bases were written for an academic project, and then abandoned. And were never really packaged well for usage.

upper nimbus
#

mm i see

#

but the one you got working how well does it work?

#

the same as the other ones or both

#

no*

stuck furnace
#

It has a web interface. You type in text and it generates handwriting.

#

You can also give an example of your own handwriting and supposedly it imitates it, but it didn't seem to be working terribly well, from what I could tell.

stark river
#

but were you able to get it working locally?

stuck furnace
#

Yeah

upper nimbus
#

and in my handwriting

stuck furnace
#

Essentially:

  • install python 3.7
  • clone the repository
  • make a python 3.7 venv
  • pip install requirements, but first modify the requirements by removing the version number from flask, because this seemed to have issues
  • there also seemed to be a missing file at results/synthesis/best_model_synthesis.pt, so I just copied one of the adjacent files in that folder and named it such, then hoped for the best
  • python main.py
stuck furnace
#

Wait, does it

stark river
#

flask?

stuck furnace
#

Actually they're png files πŸ€”

stark river
#

i don't see flask in the req.txt

stuck furnace
#

!stream 961672806444204094 30M

wise cargoBOT
#

βœ… @upper nimbus can now stream until <t:1711336779:f>.

stuck furnace
#

Back in a bit πŸ‘‹

#

Yeah

stuck furnace
#

Geez it's 3am here

#

Were you here previously?

#

Yeah, although we're predicted a really hot summer this year I think πŸ˜„

#

Fair enough

#

What part of the UK? πŸ˜„

stark river
#

luton

#

bedfordshire

stuck furnace
#

Oh right. That's not far from me actually

stark river
#

u r in birmingham iirc?

stuck furnace
#

London

stark river
#

which part?

#

yeah i used to drop down to london pretty often

#

πŸ˜‚ it's a great place up there but i liked cambridge more

#

because it's not as hilly

#

i could ride my bike easier

stuck furnace
#

Oh yeah the hills in Edinburgh are πŸ˜“

#

Cambridge is nice

fresh mesa
#

So I’m making a blackjack simulator to play the most efficient blackjack I’ve written a program to simulate blackjack but now I need to implement basic blackjack strategy which is essentially a large table that compares the dealers hand vs the player. What is the best way to implement that list and access the element’s of the list when the table is based on a x and y axis?

stuck furnace
#

Hey @hallow warren

#

Calling it a day...

#

Sounds promising

hallow warren
upper nimbus
#

At line:4 char:49

The token '&&' is not a valid statement separator in this version.
+ CategoryInfo : ParserError: (:) [], ParentContainsErrorRecordException
+ FullyQualifiedErrorId : InvalidEndOfLine\

GitHub

Contribute to aimagelab/VATr development by creating an account on GitHub.

stuck furnace
#

They have a flash emulator and host old flash games/animations

hallow warren
stuck furnace
#

Ooh Hawaii nice

#

I gotta go πŸ‘‹

signal zealot
balmy phoenix
#

the error says you didnt close the left parenthesis

hallow warren
#

@upper nimbus let's go to voice chat 1

balmy phoenix
#

@signal zealot you wrote line 111 wrong

signal zealot
#

how so?

balmy phoenix
#

replace line 111 with this:

screen.blit(black_images[index], (...

#

why did you write "(blit black_images..."

signal zealot
#

im new and stupid

balmy phoenix
#

thats not a correct python syntax

#

you aren't stupid

#

dont call yourself that

signal zealot
#

unexperienced, apologises

balmy phoenix
#

you think i knew this before i knew anything about python

balmy phoenix
#

let me correct the whole line or ill try to give me a second

balmy phoenix
#

@signal zealot i also see you got your idententation wrong on line 98

#

how about this

#

can we get on a call somewhere tomorrow?

signal zealot
#

screen.blit(black_images[index],(

balmy phoenix
#

ill teach you the basics of coding so you can avoid these easy mistakes in the future?

signal zealot
somber heath
#

!code

wise cargoBOT
#
Formatting code on Discord

Here's how to format Python code on Discord:

```py
print('Hello world!')
```

These are backticks, not quotes. Check this out if you can't find the backtick key.

For long code samples, you can use our pastebin.

balmy phoenix
signal zealot
#

nope

balmy phoenix
#

because i see you didn't change it

winter plover
#

"``` "

balmy phoenix
#

ill then fix your code too and explaining it as well why certain things are wrong

somber heath
#

!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.pythondiscord.com/

After pasting your code, save it by clicking the Paste! button in the bottom left, or by pressing CTRL + S. After doing that, you will be navigated to the new paste's page. Copy the URL and post it here so others can see it.

signal zealot
somber heath
#

Line 111

winter plover
#
# main game loop 
run = "true"
while run:
  timer.tick(fps)
  screen.fill('dark grey')
  draw_board()
  draw_pieces()
#
#draw pieces onto board
def def_pieces():
  for i in range(len(white_pieces)):
    index = piece_list.index(white_pieces[i])
  if white_pieces["i"] == 'pawn':
    screen.blit(white_pawn(white_locations["i"][0] * 100 + 22, white_locations["i"][1] * 100 + 30))
  else:
    screen.blit(white_images["index"], (white_locations["i"][0] * 100 + 10, white_locations["i"][1] * 100 + 10))
  
  for i in range(len(black_pieces)):
    index = piece_list.index(black_pieces["i"])
  if black_pieces["i"] == 'pawn':
    screen.blit(black_pawn(black_locations["i"][0] * 100 + 22, black_locations[i][1] * 100 + 30))
  else:
    screen.blit(black_images[index], (black_locations[i][0] screen* 100 + 10, black_locations[i][1] * 100 + 10))
#

timer = pygame.time.clock()

signal zealot
#

@balmy phoenix i solved it !!

balmy phoenix
#

πŸ˜…

signal zealot
#

oh shiii

#

wiat

#

@balmy phoenix

balmy phoenix
signal zealot
winter plover
#

C:\Users\MONKS\Desktop\Coding\Python\Chess

signal zealot
#

D:\coding project

winter plover
signal zealot
winter plover
#

D:

signal zealot
#

PS D:>

winter plover
#
Mode                 LastWriteTime         Length Name
----                 -------------         ------ ----
-a----         3/25/2024  12:43 AM           6442 chess.py
-a----         3/25/2024  12:44 AM             31 game.py
signal zealot
winter plover
#
        if row % 2 == 0:
            pygame.draw.rect(screen, 'light gray', 600 - (column * 200), row * 100, 100, 100)
        else:
            pygame.draw.rect(screen, 'light gray', 700 - (column * 200), row * 100, 100, 100)
            pygame.draw.rect(screen, 'gray', 0, 800, WIDTH, 100)
            pygame.draw.rect(screen, 'red', 0, 800, WIDTH, 100, 5)
            pygame.draw.rect(screen, 'blue', 800, 0, 200, HEIGHT, 5)
upper nimbus
#

'''from analysis.inception import InceptionV3 isnt working in my python script:
PS C:\users\zayga\VATr-pp-main> python .\generate.py text --text hello
Traceback (most recent call last):
File "C:\users\zayga\VATr-pp-main\generate.py", line 2, in <module>
from generate import generate_text, generate_authors, generate_fid, generate_page, generate_ocr, generate_ocr_msgpack
File "C:\users\zayga\VATr-pp-main\generate_init_.py", line 1, in <module>
from generate.text import generate_text
File "C:\users\zayga\VATr-pp-main\generate\text.py", line 5, in <module>
from generate.writer import Writer
File "C:\users\zayga\VATr-pp-main\generate\writer.py", line 15, in <module>
from models.model import VATr
File "C:\users\zayga\VATr-pp-main\models\model.py", line 7, in <module>
from analysis.inception import InceptionV3
ModuleNotFoundError: No module named 'analysis.inception'''

winter plover
whole bear
#

h

#

hi

safe ginkgo
#

hi

turbid sandal
#

Unnamed classes are not supported at language level '8'

#
package cloud.hostlabs.superdev;

import org.bukkit.command.CommandExecutor;
import org.bukkit.plugin.java.JavaPlugin;

final String NAME = "SuperDev";
public final class SuperDev extends JavaPlugin {

    @Override
    public void onEnable() {
        getLogger().info("Loaded SuperDev version 1.0.0 with Exit code 0");
    }

    @Override
    public void onDisable() {
        getLogger().info("Disabled SuperDev version 1.0.0 with Exit code 0");
    }
}
rugged tundra
lucid blade
#

what distro?

unique sorrel
#

interesting

rugged root
#

pip install git+https://github.com/tangentlabs/django-oscar-paypal.git

peak depot
#

ace, cat samble | head ?

upper basin
peak depot
#

in jubyter notebook terminal

#

too see a small samble of the data

upper basin
#

sample

obsidian dragon
rugged root
#

!stream 425552190283972608

wise cargoBOT
#

βœ… @peak depot can now stream until <t:1711375582:f>.

mellow sierra
#

hi

rugged root
#

How goes it

mellow sierra
#

everything good

#

what about you?

mellow sierra
somber heath
#

-ewe

obsidian dragon
obsidian dragon
rugged root
#

You've downloaded and installed the installer?

mellow sierra
#

gotta go bye

fast sparrow
crystal fox
peak depot
#

Read data to pandas dataframe named google_big by using pd.read_csv().

rugged root
#

!stream 425552190283972608 30M

wise cargoBOT
#

βœ… @peak depot can now stream until <t:1711378580:f>.

fast sparrow
upper basin
#

Can you type a cartoony quantum coin?

fast sparrow
#

I'll be back in a sec

gentle flint
rugged root
#

!stream 752961471612452874

wise cargoBOT
#

βœ… @earnest crow can now stream until <t:1711382106:f>.

rugged root
#

Logo is an educational programming language, designed in 1967 by Wally Feurzeig, Seymour Papert, and Cynthia Solomon. Logo is not an acronym: the name was coined by Feurzeig while he was at Bolt, Beranek and Newman, and derives from the Greek logos, meaning word or thought.
A general-purpose language, Logo is widely known for its use of turtle g...

cerulean ridge
#

@rugged root

#

@rugged root

rugged root
#

!stream 752961471612452874 30M

wise cargoBOT
#

βœ… @earnest crow can now stream until <t:1711384102:f>.

whole bear
#

Hemlock can you stream me?

#

I will just go down to Vc1

fast sparrow
#

wow, turn down your sound

#

sheesh, that just ripped my ears

#

there're multi-modal models but no luck with gpt 3.5

#

@earnest crow buddy could you please hold your mic a little farther?

earnest crow
#

@client.event
async def on_message(message):
if message.author == client.user:
return
print(f"Received message from {message.author.name} in channel {message.channel.name}: {message.content}")
await client.process_commands(message)

#

I gotta use textnow

fast sparrow
civic ivy
earnest crow
fast sparrow
#

@whole bear sup?

whole bear
earnest crow
#

Havoc? If you neeed anything realating discord bots just tell me we can figure it out :--)

civic ivy
whole bear
#

@ivory stump Hey man what are you doing?

earnest crow
#

Nevermind ill go do some chess

fast sparrow
#

sorry can't talk, I'm in a library.

civic ivy
whole bear
#

@edgy canyonπŸ‘‹

edgy canyon
#

hallo

civic ivy
edgy canyon
fast sparrow
#

@pine depot are you alright?

edgy canyon
civic ivy
edgy canyon
civic ivy
edgy canyon
#

they will prob be an alcoholic but no problem

whole bear
civic ivy
edgy canyon
#

my code dose not work:(

civic ivy
edgy canyon
#

to make it work

civic ivy
# edgy canyon do i need a wip?

A crackhead doesn’t go out and say i’m not gonna smoke crack today. They go out there and hustle, you need to take that mindset. And push ur self more, do better.

edgy canyon
#

and ive been coding for like 3 h

#

and havend done shi*

civic ivy
#

be like the crackhead

#

and get hustling

edgy canyon
#

my code dosent

civic ivy
#

YOU NEED TO HUSTLE

#

AND

#

GET

#

UR

#

CODE

#

TO WORK

#

!!!!

edgy canyon
woeful salmon
#

i'mma get out now @whole bear cya

civic ivy
whole bear
civic ivy
edgy canyon
fast sparrow
#

@dry jasper holy sheesh

#

to make 5m you need to put like 30-35m?

edgy canyon
#

well il go back to the cotton fiel(coding) bye

whole bear
#

@ionic creekπŸ‘‹

fast sparrow
#

!voice

wise cargoBOT
#
Voice verification

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

whole bear
#

@dire folioWe need you

ivory stump
whole bear
pine depot
fast sparrow
ivory stump
#

I mean, I can talk if required

whole bear
#

@ivory stumpWhen is your birthday?

fast sparrow
#

looks like resistors and stuff from electronics class.

ivory stump
whole bear
#

Also Do I need to chill down on pinging you?

fast sparrow
#

passively cooled

civic ivy
pine depot
whole bear
#

!stream 717749310518722691

#

@ivory stump can you type that?

civic ivy
#

scammers are getting smarter lmao

bold oracle
#

Hello

#

how is everyone doing

#

?

edgy canyon
#

code...

wise loom
#

PLC, FPGA, ASIC

pine depot
#
class Valve():
  def __init__(self):
    self.open = 0
    self.close = 0
    self.value = 0

valve1 = Valve

valve1.open = 1
#

device_network[0][1].4

manic brook
#

germans would pronounce it as "ess koo ell"

wise loom
#

@amber raptor https://github.com/sustainable-computing-io/kepler/

Kepler (Kubernetes-based Efficient Power Level Exporter) uses eBPF to probe performance counters and other system stats, use ML models to estimate workload energy consumption based on these stats, and exports them as Prometheus metrics
your thoughts on this?
found it while I was looking for something able to measure power consumption per process or per container..

turbid sandal
#

@vocal basin
Have not seen you for a while

amber raptor
#

ML models probably suck more power then apps

surreal grove
#

Does anyone know any other cloud provider that offers free tiers other than render that is good?

wise loom
stark river
#

❓

#

something to do w physics

whole bear
#
class CityBase(SQLModel):
    ibge: PositiveInt
    name: str
    ddd: int | None = None

class City(CityBase, table=True):
    id: UUID | None = Field(default=None, primary_key=True)
    addresses: list['Address'] = Relationship(back_populates='city')


class Coordinates(NamedTuple):
    """A coordinate consists latitude, longitude and altitude."""

    latitude: float
    longitude: float
    altitude: float


class AddressBase(SQLModel):
    zipcode: PositiveInt
    neighborhood: str
    complement: str | None = None
    # city: CityBase
    # state: StateBase
    # coordinates: Coordinates | None = None


class Address(AddressBase, table=True):
    __table_args__ = (UniqueConstraint('zipcode'),)
    id: UUID | None = Field(default=None, primary_key=True)

    state_id: PositiveInt = Field(foreign_key='state.id')
    state: State = Relationship(back_populates='addresses')

    city_id: PositiveInt = Field(foreign_key='city.id')
    city: City = Relationship(back_populates='addresses')
upper basin
#

!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.pythondiscord.com/

After pasting your code, save it by clicking the Paste! button in the bottom left, or by pressing CTRL + S. After doing that, you will be navigated to the new paste's page. Copy the URL and post it here so others can see it.

upper basin
#

The error message you're encountering, ValueError: <class '__main__.CityBase'> has no matching SQLAlchemy type, suggests that SQLModel is unable to map the CityBase class to a corresponding SQLAlchemy type. This typically happens when you're trying to use a custom class (in this case, CityBase) as a field type in another SQLModel class without properly defining how it should be represented in the database.

In SQLModel, when you define a relationship between two models, you need to specify the type of the relationship. For example, if you have a foreign key relationship, you should use ForeignKey from SQLAlchemy to specify the type of the foreign key. However, in your case, it seems like you're trying to use CityBase directly as a field type in AddressBase, which is not directly supported by SQLModel.

whole bear
#
from strawberry import auto, type
from strawberry.experimental.pydantic import type as pydantic_type

from database.models.brazil import Address, City, State


@pydantic_type(name='State', model=State)
class StateType:
    name: auto
    acronym: auto


@pydantic_type(name='City', model=City)
class CityType:
    ibge: auto
    name: auto
    ddd: auto


@type(name='Coordinates')
class CoordinatesType:
    """A coordinate consists latitude, longitude and altitude."""

    latitude: float
    longitude: float
    altitude: float


@pydantic_type(name='Address', model=Address)
class AddressType:
    zipcode: auto
    city: auto
    state: auto
    neighborhood: auto
    complement: auto
    coordinates: CoordinatesType | None = None

whole bear
#

@ivory stump I'm almost back up to 700

upper basin
tall ridge
tall ridge
wise loom
#

In Linux, powercap via Intel RAPL provides per-device power usage. But drilling down from there requires clever tricks like the ones in kepler

nocturne sail
pine depot
nocturne sail
#

i know

pine depot
#

Idk about the photo specifically tho

nocturne sail
#

we use 1756

#

oh ok

#

im controls engineer i know a bit bout plc

pine depot
#

I got a few 1756’s, slicks, etc. at work

#

Woop woop controls/automation engineers get

#

Ftw*

#

What industry

nocturne sail
#

amazon

pine depot
#

I do food

nocturne sail
#

cool

#

never thought i would find someone from control field in this group

pine depot
#

Likewise lol

nocturne sail
#

though i been playing around with pylogix thats why i joined

#

have you tried?

#

its a library

pine depot
#

No I haven’t! Unfortunately I have 0 time for fun because work ships me out to commission projects and I still do college lol

#

Any way to use conventional programming instead of ladder logic is met with open arms though

whole bear
#

TOXI

nocturne sail
#

I mainly use pylogix for transer plc data into virtual hmi and graphs

pine depot
#

we use factorytalk or learn whatever the customer wants over the course of a project lol

#

how does it feel to be a mechanical, electrical, and controls engineer all at once?

#

i feel like we have to be jacks of all trades

nocturne sail
#

^true

whole bear
#

.8ball is @ivory stump the best mod?

viscid lagoonBOT
#

Concentrate and ask again

whole bear
#

.8ball is @Cheeki the best mod?

viscid lagoonBOT
#

It is decidedly so

whole bear
#

@whole bear πŸ‘‹

#

hello

#

am uprssed

#

suppresed so l cant talk

#

yah l have to send 50 messages

bold oracle
#

Whats up

#

how is everyone doing

whole bear
#

😭

pine depot
#

good @bold oracle and you?

bold oracle
#

chilling

#

Im debating

whole bear
#

@ivory stump We need you

bold oracle
#

whether I order chiptole or jimmy johns

pine depot
#

jimmy johns is probably healthier

whole bear
#

Chipotle

bold oracle
#

facts

#

Im hungry

#

so I think I will do chipotle

tall ridge
wise loom
whole bear
wise loom
#

@amber raptor @tall ridge these arrived today. i’m a noob at cable mgmt. maybe will learn how to do it properly. you like the colors?

whole bear
#

Naraka Bladepoint ^

robust patrol
#

@upper basin mb ! so basically learn about k clusters and how it relates songs to each other

upper basin
robust patrol
#

thank you

whole bear
whole bear
#

@coarse spindle ask in the chat. Your mic is echoing

coarse spindle
#

oooh!

#

how is that related to AI and machine learning

upper basin
edgy canyon
#

i cant talk

upper basin
#

!voice

wise cargoBOT
#
Voice verification

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

edgy canyon
#

well

#

yo choud anyone help me pls?

rugged tundra
#

Brb

edgy canyon
#

yo @upper basin choud u help me ?

serene adder
#

Hello

rugged root
#

!stream 1218705542814634045

wise cargoBOT
#

βœ… @golden delta can now stream until <t:1711462020:f>.

#

βœ… @golden delta can now stream until <t:1711462020:f>.

rugged root
#

@lucid blade Sup

lucid blade
#

yoyo

upper basin
edgy canyon
#

yo chould anyone help me whit my problem?

rugged root
#

What's the problem?

edgy canyon
#

i am trying to make a web site using flask

#

and when i run it it sais app.register_blueprint(views, url_prefix='/views') error

#

and ive been trying for like 4h to solve it

#

dose anyone know how to solve it?

rugged root
upper basin
edgy canyon
#

ok

golden delta
#

@rugged root

stark river
#

6 more days until i can afford a can of pringles.. wondering which flavor i should get

lucid blade
#

bbl i got dentist 😦

stark river
#

my dentist wanted to pull out a tooth.. i was like nopes i'm out

rugged root
#

!tvmute 956167389010075678 2d Being disruptive and playing music into voice chat is unacceptable. If you continue to be disruptive after the mute expires, you will have your permissions removed permanently.

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied voice mute to @edgy edge until <t:1711635778:f> (2 days).

edgy canyon
#

chould anyone help me whit my problem? when u can

rugged root
#

Can you give the full error and traceback of the flask thing?

edgy canyon
#

i can take a photo i have it on py laptop

rugged root
#

That'll work

edgy canyon
#

do u need a photo of the views file as well?

rugged root
#

Looking at the issue. It'll be a moment, I have to make a call to a vendor at work

#

Sorry, busy busy morning

edgy canyon
#

ok

#

np

rugged root
#

Waaaaait

#

Is that all the code? Line 1 is hidden in the screenshot

edgy canyon
#

line 1 is blank

rugged root
#

Roger

#

Okay I think I have it, one sec

#
from flask import Flask
from views import views


app = Flask(__name__)
blueprint = Flask(__name__, url_prefix='/views')

app.register_blueprint(blueprint)

...

Everything under the ... is the same as the rest of the code

#

Not sure if that's it or not, mind you

edgy canyon
#

ok roger il try it

rugged root
#

Okay, now making a quick vendor call

#

I just realized I did it slightly wrong

#

I think?

#

Now I'm second guessing myself

#

Might as well try this and see what/if we get any errors

edgy canyon
#

nope

#

errors

rugged root
#

Different errors at least?

edgy canyon
#

nope

#

but ty for trying to help

rugged root
#

Oh I'm not done

potent sable
#

who wanna see my game? {WIP}

rugged root
#

My curiosity is piqued now

potent sable
#

im working on the ui it looks horrible idk how to fix it bein bad

rugged root
#

Ooo oo oo is that an incremental game?

#

I loooooove incrementals

potent sable
#

YA

#

can u help me w the ui?

rugged root
#

I'm not really that good at making GUI stuff look good (well I'm passable with web front end stuff). What framework is this?

potent sable
#

wdym what framework

rugged root
#

Like tkinter or something?

#

!pypi Flask

wise cargoBOT
#

A simple framework for building complex web applications.

Released on <t:1706994704:D>.

potent sable
#

i use tkinter ye

#

u might remember be annoying orange i just changed my name and pfp to match w my gf

rugged root
#

With tkinter, it's going to be tough to make it look good or more modern

#

It's more meant for quick and dirty things, and it's tough to doll it up

potent sable
#

what is better to use then?

rugged root
#

Honestly, for incremental games I'd recommend making it web based. Might be good to continue fleshing out the mechanics in Python, but you're going to limit yourself on who will get to play it.

#

Now

#

Having said that

#

There's plenty of pretty looking Python libraries that also translate to web relatively well

#

... he says trying to remember which they are

#

Crap, actually one moment

potent sable
#

lol

#

little better?

edgy canyon
#

@rugged root when u find the error can u ping me?

rugged root
#

Yep. I'll keep hunting

edgy canyon
#

ty

rugged root
#

You might use the help system as well if you haven't already. See #β“ο½œhow-to-get-help for more details on that. I have a feeling it's going to be a busy as sin day

edgy canyon
#

ok ty

rugged root
#

Oh also

#

They'd likely know more about the specific Flask issue there

#

@edgy canyon just incase you missed the message, wasn't sure if you already scooted to look at the other channels

edgy canyon
#

ok ty

rugged root
#

Back to typing since co-workers are back here

#

Apologies

rugged root
#

@golden delta Just wait

#

Listen to the guy who does IT for a living

#

Breathe

#

But actually before that

golden delta
#

I literally have nothing in my pc besides the empty users with nothing on them

#

0

rugged root
#

Right, and that thing I linked will tell you how to do a full reinstall of Windows

#

@whole bear I'd just put it into a trust

#

Like a conditional one or something

#

Yarp

#

@golden delta Yes, and there's an option that lets you do that

#

Conch

#

We talked about this

#

Shock collars

#

You shouldn't put it on a dog anyway

#

Kids on the other hand..

#

This is why I'm not a dad

#

I can barely take care of myself, there's no way in hell I could take care of a kid

#

I'm fine with just having a cat and wife

#

I'd be a good uncle

gilded rivet
rugged root
#

Money would be nice. I'm actually looking at signing up for foodstamps at the moment

#

@whole bear One of the B vitamins, right?

#

Ah nice

potent sable
#

hemlock this is pain

gilded rivet
#

I'm helping someone make their resume and find remote jobs for 120-180k today

rugged root
#

Yeeeaaaahhhhh GUIs tend to be a pain in the ass

gilded rivet
#

I am also helping someone with 0 college education who is working in a call center with no python programming skills to get a job for 70-90k

rugged root
#

@upper basin I'm back to being Mr. Typelock

potent sable
#

gui in luau (roblox) is so much easier lol

rugged root
#

True, but it has easy tooling for it in Robolox

rugged root
rugged root
#

Vivite. Rideat. Amare.

#

Live. Laugh. Love

#

@upper basin "A society grows great when old men plant trees in whose shade they know they shall never sit"

#

That's what I would aim for

#

To me, a legacy should be for the benefit of the people to come after

#

I think it's both

#

It's not black and white

#

You can have both

#

They do what they love, they have the passion for it. It isn't always a sacrifice to them, but a purpose

#

For them, it was

#

Why

#

Again, I don't see why you're saying it's either extreme misery or a lavish life style

#

People can be perfectly happy and content with less

#

Sure, but why not try to make a difference. It doesn't mean you have to sacrifice everything

#

There are ways to help build to a better future without massive self sacrifice

#

No that's a good example

#

"Fuck saving that guy, I don't want to drown"

#

Quantity

#

Oh that's gooooooold

#

I just don't see why it has to go instantly to the extremes. That's what's confusing me here. Taking time to donate or volunteer at a food shelter or dumb little stuff like I do where I help folks with coding those don't take a huge amount of self sacrifice

#

@sudden lance Sup

civic ivy
rugged root
#

It doesn't have to be a huge or significant amount of time either

#

What's the phrase...

#

Many hands make light work?

#

It's not about a legacy of being known

#

It's knowing that you made a difference, even in a small way

#

That's what it means to me

#

That's how it should be

#

Considering the angles, considering other view points, trying to see what others see

#

@fast sparrow Sup

#

Co-worker is back here, so just being Mr. Typelock

#

Oh no, I know that most people aren't going to be altruistic

#

But that doesn't mean you can't try

#

Like what I was saying

#

Even small things, holding a door open for someone

#

Little acts of kindness can go a long way