#voice-chat-text-0

1 messages Β· Page 506 of 1

vocal basin
#

avoid those at all costs

scarlet halo
#

shhh you saw nothing

vocal basin
#

or any AI; also Reddit

#

only read docs/books (in mdbook sense); Q/A information tends to be excessively wrong for Rust

scarlet halo
#

ah.

#

i do read docs most of the time

#

and sometimes just guessing based on function names + signature

#

Alisa what do we think about this statement

vocal basin
#

one of the examples for structuring stuff

#

I slightly dislike bin as a separate directory

#

in some other random tool, clap stuff it just directly in main.rs

#

just pick some reference that fits the current project best

#

and link to the source in the comments

#

@unique wyvern DDD: docstring-driven development

#

or doctest-driven development, but that's too close to TDD

#

and might even be useful, and we can't have that

#

!d enum

wise cargoBOT
scarlet halo
#

im having a fking blast trying to use shit in rust 😭

vocal basin
#

!pypi ursina

wise cargoBOT
#

An easy to use game engine/framework for python.

Released on <t:1753878830:D>.

scarlet halo
#

@wind raptor

#

^^^

#

amazing library

#

has bindings for basically every language

vocal basin
#

half-A

scarlet halo
vocal basin
#

.17

#

@midnight agate resources reserved

#

a something against the while statement

#

while statement considered something

#

@midnight agate COME FROM

#

the superior control construct

scarlet halo
#

dude...

wind raptor
scarlet halo
#

imagine a langauge

#

imagine a language which is just rust but interpreted

#

imagine how slow that would be

vocal basin
#

miri

scarlet halo
#

considering its compile times

vocal basin
#

evcxr

#

ugh

#

there is at least a third one

#

whatever cranelift integrates with

scarlet halo
#

Alisa do you have a voice

vocal basin
#

cranelift is jitted

vocal basin
somber heath
#

!e ```py
def foo():
bar.append(123)

bar = []
foo()
print(bar)```

wise cargoBOT
scarlet halo
vocal basin
#

Python is compiled to bytecode

#

you can compile Rust to an intermediate non-CPU code too

#

(MIR or WASM)

unique wyvern
#
a = 0
def foo():
    a = 5
foo()
vocal basin
#

there are some important nuances to how Rust works which make it less compatible with interactivity

#

types are static

unique wyvern
#
block:
    some code
somber heath
#

!e ```py
def foo():
globals()['bar'] = 456

bar = 123
foo()
print(bar)```

wise cargoBOT
wise loom
#

question: why does Python not have do { } while(cond) ?

vocal basin
#

(almost same)

somber heath
wise cargoBOT
vocal basin
#

as in also move print there

scarlet halo
#

nah jk

vocal basin
#

!e

def foo():
    bar = 123
    locals()['bar'] = 456
    print(bar)

foo()
wise cargoBOT
scarlet halo
#

!pypi bython

wise cargoBOT
vocal basin
#

!e

fs = [(lambda x: x + i) for i in range(5)]
print([f(10) for f in fs])
wise cargoBOT
vocal basin
#

!e

a = [1, 2, 3, 4]
for x in a:
    print(x)
    a.pop()
wise cargoBOT
vocal basin
#

!e

a = [1, 2, 3, 4]
it = iter(a)
for x in it:
    print(x)
    next(it)
wise cargoBOT
vocal basin
#

!e

a = [1, 2, 3, 4, 5]
it = iter(a)
for x in it:
    print(x)
    next(it, None)
wise cargoBOT
vocal basin
#

skipping seems possible

#

going back -- less so

vocal basin
#

Go had the same thing

#

Go fixed it

#

Python didn't

#

lambdas share scope

scarlet halo
vocal basin
#

in Go it basically caused soundness issues

scarlet halo
#

i hate myself for making this...

vocal basin
#

in Rust you strictly can't mutate what you're forin over

#

because for moves the iterable

#

they're not immutable

#

they're exclusively owned by the for in Rust

wise loom
vocal basin
#

absolutely not

#

they're just moved

#

for mutates it

#

it creates an intermediate unnamed value

wise loom
vocal basin
#

you can't even refer to the iterator, but it is being mutated

#

same happens in Python, but Python doesn't have move semantics

#

so the original iterator may remain shared

wise loom
#

I see, thanks πŸ™‚

vocal basin
#

for those reasons, no longer using a shell script inside it

#

back to plain cargo publish one-liners

#

I could've possibly used IndexMap/IndexSet instead there

#

IndexMap/IndexSet are to LinkedHashMap/LinkedHashSet
what Vec is to VecDeque

#

and I generally operate on them there like stacks

#

so I should probably change it

#

nvm I do more than just stack operations

#

I do move things up from the middle

chilly wolf
#

heyo

vocal basin
#

@midnight agate no, that's in November

scarlet halo
#

alright guys im gonna head to bed early today...

#

gn!!!

vocal basin
#

e -- early

#

books like EoP aren't readable during commute

wise loom
vocal basin
#

Elements of Programming

scarlet halo
#

so its early

#

-# (for me)

vocal basin
#

@midnight agate in response to "maybe we'll get incinerated"

#

(it's not a reference to anything)

wise loom
vocal basin
#

author of STL

#

C++ owes being usable at all to him

#

C++ was supposed to have generics similar to Haskell

#

if you don't apply principles that OCaml/Haskell/Rust force you to follow to C++ code, you end up with incorrect C++

#

the language has those same rules

#

just not in the compiler

#

they're in the standard and papers

wise loom
vocal basin
#

they're not automated

#

you must follow them as a programmer

#

and compilers sometimes assume you follow them

wise loom
vocal basin
#

self-assignment is a terrible mistake allowed by the standard

#

x = x

#

general C++ safety guidelines involve rules which effectively ban it

#

just like in Rust, aliasing is extremely problematic

#

Rust bans it

#

whereas C++ has to deal with it

#

@midnight agate DHH?

#

under some dialects/rulesets of C++, all types are supposed to support operation that, in C terms, is *ptr = *ptr

#

which in turns also means you should support assignment from both &T and &const T

#

the giant amount of many magic methods required to make a sound type is so annoying

wise loom
#

Or maybe Lean?

#

Idk what the gold standard is for a language that got types right

#

But i feel like types cannot be an afterthought like they are in say.. python 🐍

languid marlin
#

Hello

#

I can't speak anyways πŸ˜›

woeful blaze
languid marlin
#

yeye so I heard... πŸ™‚

somber heath
#

Is that a mini melon?

#

@alpine quiver πŸ‘‹

wind raptor
calm heron
#
with open("arubacx_show_vlan.txt") as f:
    data = f.readlines()

vlans = {}

for line in data:
    if "-----" in line:
        continue
    if "Name" and "Type" in line:
        continue

    line_elements = line.split()
    vlan_id = line_elements[0]
    interfaces_whole = line_elements[5]
    interface_groups = interfaces_whole.split(",")

    for interface_group in interface_groups:
        numbers = []
        if "-" not in interface_group:
            interface = interface_group
            vlans[vlan_id] = interface
        elif "-" in interface_group:
            interfaces = interface_group.split("-")
            for i in interfaces:
                number = i.split("/")
                numbers.append(number[2])
                number.pop()
            for i in range(int(numbers[0], (int(numbers[1] + 1)))):
                
                interface = str('/'.join(i))
                vlans[vlan_id] = 
                if "lag" in i:
                  number = int(''.join(filter(str.isdigit, i)))
        else:
            print("error")

#
----------------------------------------------------------------------------------
VLAN  Name                 Status  Reason        Type      Interfaces
-----------------------------------------------------------------------------------
1     DEFAULT_VLAN_1       up      ok            static    1/1/3-1/1/4
2     UserVLAN1            up      ok            static    1/1/1,1/1/3,1/1/5
3     UserVLAN2            up      ok            static    1/1/2-1/1/3,1/1/5-1/1/9
5     UserVLAN3            up      ok            static    1/1/3
10    TestNetwork          up      ok            static    1/1/3,1/1/5
11    VLAN11               up      ok            static    1/1/3
12    VLAN12               up      ok            static    1/1/3,1/1/6,lag1-lag2
13    VLAN13               up      ok            static    1/1/3,1/1/6
14    VLAN14               up      ok            static    1/1/3,1/1/6
20    ManagementVLAN       down    admin_down    static    1/1/3,1/1/10
lavish rover
#
from collections import defaultdict

vlans = defaultdict(list)

for ...:
   vlans[vlan_id].append(x)
calm heron
#
from rich import print

# Read in file
filename = "arubacx_show_vlan.txt"

with open(filename) as f:
    data = f.read()

# Initialize blank dictionary
vlan_map = {}
for line in data.splitlines():
    # Skip header lines
    if "----" in line:
        continue
    if "Status" in line and "Reason" in line:
        continue

    vlan_id, vlan_name, status, reason, vlan_type, interfaces = line.split()
    intf_groups = interfaces.split(",")

    # Construct list of interfaces associated with given VLAN-ID
    intf_list = []
    for intf in intf_groups:
        # Check for ranges
        if "-" in intf:
            intf_start, intf_end = intf.split("-")

            # Dropping the last character will give us the base interface
            base_intf = intf_start[:-1]

            # Interfaces with x/x/x notation
            if "/" in intf_start and "/" in intf_end:
                intf_fields = intf_start.split("/")
                start_idx = int(intf_fields[-1])

                intf_fields = intf_end.split("/")
                end_idx = int(intf_fields[-1])

            # lag interfaces
            if "lag" in intf_start and "lag" in intf_end:
                start_idx = int(intf_start.split("lag")[-1])
                end_idx = int(intf_end.split("lag")[-1])

            # Deconstruct the ranges i.e. each individual interface listed
            new_intf = [f"{base_intf}{idx}" for idx in range(start_idx, end_idx + 1)]
            intf_list = intf_list + new_intf

        else:
            # not an interface range, just add the intf to the list
            intf_list.append(intf)

    # intf_list is now fully constructed, add it to the VLAN map.
    vlan_map[int(vlan_id)] = intf_list

print()
print("VLAN Table:")
print("-" * 25)
print(vlan_map)
print()
lavish rover
#

    fs::create_directory(".git")
    fs::create_directory(".git/objects")
    fs::create_directory(".git/refs")
    fs::create_directory(".git/refs/heads")
    fs::create_directory(".git/refs/tags")
    fs::write_file_str(".git/HEAD", "ref: refs/heads/master\n")
alpine quiver
#

πŸ‘‹

wise loom
eternal gazelle
#

i am curioous tooo

burnt marsh
#

Yep

unique wyvern
somber heath
#

@ocean turret πŸ‘‹

winged lance
#

f

wise loom
ionic crow
umbral mauve
#

i

crisp cedar
#

ok

#

i will fix it more later when im done with school work

sour steppe
crisp cedar
#

yeah i see

#

so should i find a way to utilize the space?

#

yeah maybe sorting out completed tasks etc?

#

alr

#

mhm

#

yeah but like

#

i dont wanna slow down my learning and just stay stuck on this yk

#

i havent progressed on python since i started this so in that sense but i guess making project is also progress

#

i mean how can i make this easier for me

#

react?

#

ok

#

what...

#

everything in 1?

#

bruh i just create new repos and add the code there lol

#

yeah no database stuff

#

yeah like i could pause after i have this frontend done then maybe after 1 week i know basic backend i can do it

#

yeah ok

#

yep

#

ight i'll go do hw now thanks for review

#

thx

somber heath
#

@modern ibex πŸ‘‹

modern ibex
#

Hi

manic basin
#

yo how are you brother

modern ibex
#

good, wbu

manic basin
#

@somber heath

#

@modern ibex

manic basin
modern ibex
#

I see

manic basin
#

LOL

next beacon
#

hi @scarlet halo

somber heath
#

@pseudo trellis πŸ‘‹

pseudo trellis
#

wsp

#

there's a glitch

#

it said that mindful dev is streaming πŸ˜”

somber heath
#

@olive jolt πŸ‘‹

olive jolt
#

Hello

scarlet halo
#
#[derive(Subcommand, Debug)]
enum Commands {
    /// Initialize the note file
    Init,
    /// List notes
    List,
    /// Create a new note as [ID]
    New { id: String },
    /// Edit a existing note by [ID]
    Edit { id: String },
    /// Delete the note at [ID]
    Delete { id: String },
    /// Search notes by [QUERY]
    Search { query: Vec<String> },
    /// Show note info by [ID]
    Info { id: String },
    /// Show info about the app
    About,
    /// Toggle tag by [ID] [TAG]
    Tgtag { id: String, tag: String },
    /// Search notes by [TAG]
    Srchtag { tag: Vec<String> },
}

reminder for myself

pseudo trellis
#

what is he making?

somber heath
#

@ocean turret πŸ‘‹

pseudo trellis
#

cough

#

his own Minecraft in general?

#

or trying to get Minecraft for free?

scarlet halo
#

i already have minecraft

#

ive bought it over 5 times

pseudo trellis
#

LOL

scarlet halo
#

on different platforms

pseudo trellis
#

i only bought it once in my life

somber heath
#

@modern bear πŸ‘‹

pseudo trellis
#

when I told someone that I was playing around in Rust, they asked me if I were remaking something. Now I see what they mean πŸ˜”

scarlet halo
#

Wii U, Xbox 360, IPhone, Switch, PC

modern bear
somber heath
#

@robust cliff πŸ‘‹

ocean turret
somber heath
#

!e py print({1, 2, 3} & (2, 3, 4))

wise cargoBOT
# somber heath !e ```py print({1, 2, 3} & (2, 3, 4))```

:x: Your 3.13 eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "/home/main.py", line 1, in <module>
003 |     print({1, 2, 3} & (2, 3, 4))
004 |           ~~~~~~~~~~^~~~~~~~~~~
005 | TypeError: unsupported operand type(s) for &: 'set' and 'tuple'
manic basin
#
average_grade = (math_grade + english_grade + science_grade)/3``
somber heath
#

!e py print({1, 2, 3}.intersection((2, 3, 4)))

wise cargoBOT
wise cargoBOT
#
Missing required argument

code

scarlet halo
#

!e ```py
very_cool_set = {1,2,3}
boring_tuple = (2,3,4)

print(very_cool_set.intersection(set(boring_tuple)))

wise cargoBOT
scarlet halo
#

that works....

#

!e ```py
very_cool_set = {1,2,3}
boring_tuple = (2,3,4)

print(very_cool_set & set(boring_tuple))

wise cargoBOT
scarlet halo
#

!e ```py
very_cool_set = {1,2,3}
boring_tuple = (2,3,4)
another_set = {3,5,7}

print(very_cool_set & set(boring_tuple) & another_set)

wise cargoBOT
pseudo trellis
#

stream isn't working

scarlet halo
#

mine?

#

not doing anything atm but ill restart give me a min

pseudo trellis
#

wait

#

it was my pc

#

mb

scarlet halo
#

ah

manic basin
#

!e

math_grade=2
english_grade=2
science_grade=3
print(mathgrade & set(set(english_grade)set(science_grade))``
wise cargoBOT
scarlet halo
#

use triple backtick

#

`

manic basin
#

!e

math_grade=2
english_grade=2
science_grade=3
print(mathgrade & set(set(english_grade)set(science_grade))```
wise cargoBOT
manic basin
#

!e

math_grade=2
english_grade=2
science_grade=3
print(mathgrade & set(set(english_grade) & set(science_grade))```
wise cargoBOT
pseudo trellis
#

Every time I try installing RustOver, something happens to my pc

manic basin
#

!e

math_grade=2
english_grade=2
science_grade=3
print(mathgrade & (set(english_grade) & set(science_grade))```
wise cargoBOT
scarlet halo
pseudo trellis
#

πŸ‘€

#

I have something that started Neovim and Vim, downloaded right here on my pc

manic basin
#

!e

math_grade=2
english_grade=2
science_grade=3
print(set(str(science_grade , math_grade , science_grade```
wise cargoBOT
manic basin
#

!e

math_grade=2
english_grade=2
science_grade=3
print(set(str(science_grade , math_grade , science_grade)```
wise cargoBOT
manic basin
#

!e

math_grade=2
english_grade=2
science_grade=3
print(set(str(science_grade , math_grade , science_grade)))```
wise cargoBOT
# manic basin !e ```py math_grade=2 english_grade=2 science_grade=3 print(set(str(science_grad...

:x: Your 3.13 eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "/home/main.py", line 4, in <module>
003 |     print(set(str(science_grade , math_grade , science_grade)))
004 |               ~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
005 | TypeError: str() argument 'encoding' must be str, not int
pseudo trellis
#

lol

scarlet halo
#

!e

math_grade=2
english_grade=2
science_grade=3
print(set(str(science_grade + math_grade + science_grade)))
wise cargoBOT
somber heath
#

!zen

wise cargoBOT
#
The Zen of Python, by Tim Peters

Beautiful is better than ugly.
Explicit is better than implicit.
Simple is better than complex.
Complex is better than complicated.
Flat is better than nested.
Sparse is better than dense.
Readability counts.
Special cases aren't special enough to break the rules.
Although practicality beats purity.
Errors should never pass silently.
Unless explicitly silenced.
In the face of ambiguity, refuse the temptation to guess.
There should be one-- and preferably only one --obvious way to do it.
Although that way may not be obvious at first unless you're Dutch.
Now is better than never.
Although never is often better than right now.
If the implementation is hard to explain, it's a bad idea.
If the implementation is easy to explain, it may be a good idea.
Namespaces are one honking great idea -- let's do more of those!

pseudo trellis
#

what if you set the integers to strings?

scarlet halo
#

!e

math_grade=2
english_grade=2
science_grade=3
print(set(list(map(str, [science_grade, math_grade, science_grade]))))
wise cargoBOT
pseudo trellis
#

ohh

scarlet halo
#

so, a set can't have duplicate values

#

just so you know

#

!e

math_grade=2
english_grade=2
science_grade=3
print(set(map(str, [science_grade, math_grade, science_grade])))
wise cargoBOT
somber heath
#

@rich plover πŸ‘‹

manic basin
#
# Given data - Tuple format: (name, math, science, english, major, credits)
student_alice = ("Alice Johnson", 85, 92, 88, "Computer Science", 15)
student_bob = ("Bob Smith", 78, 85, 90, "Mathematics", 18)
student_carol = ("Carol Davis", 95, 89, 94, "Physics", 12)
student_david = ("David Wilson", 67, 72, 75, "Chemistry", 20)

print("Analyzing Alice's Academic Record:")
print(f"Student data: {student_alice}")
 

get the avverage grade]```


```py
average_grade = (math_grade + science_grade + english_grade) / 3```
pseudo trellis
#

ig i stick to it

somber heath
#

!d statistics.mean

wise cargoBOT
#

statistics.mean(data)```
Return the sample arithmetic mean of *data* which can be a sequence or iterable.

The arithmetic mean is the sum of the data divided by the number of data points. It is commonly called β€œthe average”, although it is only one of many different mathematical averages. It is a measure of the central location of the data.

If *data* is empty, [`StatisticsError`](https://docs.python.org/3/library/statistics.html#statistics.StatisticsError) will be raised...
next beacon
#

i don't want to disturb you but could someone have a look at my maze game

#

ther

manic basin
#

!e

# Given data - Tuple format: (name, math, science, english, major, credits)
student_alice = ("Alice Johnson", 85, 92, 88, "Computer Science", 15)
student_bob = ("Bob Smith", 78, 85, 90, "Mathematics", 18)
student_carol = ("Carol Davis", 95, 89, 94, "Physics", 12)
student_david = ("David Wilson", 67, 72, 75, "Chemistry", 20)

print("Analyzing Alice's Academic Record:")
print(f"Student data: {student_alice}")
math_grade = student_alice[0]
english_grade = student_alice[1]
science_grade = student_alice[2]``


```py
average_grade = (math_grade + science_grade + english_grade) / 3```
wise cargoBOT
scarlet halo
manic basin
#

!e

# Given data - Tuple format: (name, math, science, english, major, credits)
student_alice = ("Alice Johnson", 85, 92, 88, "Computer Science", 15)
student_bob = ("Bob Smith", 78, 85, 90, "Mathematics", 18)
student_carol = ("Carol Davis", 95, 89, 94, "Physics", 12)
student_david = ("David Wilson", 67, 72, 75, "Chemistry", 20)

print("Analyzing Alice's Academic Record:")
print(f"Student data: {student_alice}")
math_grade = student_alice[0]
english_grade = student_alice[1]
science_grade = student_alice[2]


```py
average_grade = (math_grade + science_grade + english_grade) / 3```
wise cargoBOT
manic basin
#

!e

# Given data - Tuple format: (name, math, science, english, major, credits)
student_alice = ("Alice Johnson", 85, 92, 88, "Computer Science", 15)
student_bob = ("Bob Smith", 78, 85, 90, "Mathematics", 18)
student_carol = ("Carol Davis", 95, 89, 94, "Physics", 12)
student_david = ("David Wilson", 67, 72, 75, "Chemistry", 20)

print("Analyzing Alice's Academic Record:")
print(f"Student data: {student_alice}")
math_grade = student_alice[0]
english_grade = student_alice[1]
science_grade = student_alice[2]

average_grade = (math_grade + science_grade + english_grade) / 3```
wise cargoBOT
# manic basin !e ```py # Given data - Tuple format: (name, math, science, english, major, cred...

:x: Your 3.13 eval job has completed with return code 1.

001 | Analyzing Alice's Academic Record:
002 | Student data: ('Alice Johnson', 85, 92, 88, 'Computer Science', 15)
003 | Traceback (most recent call last):
004 |   File "/home/main.py", line 13, in <module>
005 |     average_grade = (math_grade + science_grade + english_grade) / 3
006 |                      ~~~~~~~~~~~^~~~~~~~~~~~~~~
007 | TypeError: can only concatenate str (not "int") to str
next beacon
wise cargoBOT
pseudo trellis
#

@scarlet halo How do I get the Neovim you're using? Not the terminal one

pseudo trellis
#

.

#

How did you get the discord presence?

scarlet halo
manic basin
#
# Given data - Tuple format: (name, math, science, english, major, credits)
student_alice = ("Alice Johnson", 85, 92, 88, "Computer Science", 15)
student_bob = ("Bob Smith", 78, 85, 90, "Mathematics", 18)
student_carol = ("Carol Davis", 95, 89, 94, "Physics", 12)

student_david = ("David Wilson", 67, 72, 75, "Chemistry", 20)

print("Analyzing Alice's Academic Record:")
print(f"Student data: {student_alice}")

# TODO 1: Unpack Alice's tuple and calculate average grade
name = ""           # TODO: Extract name from tuple
math_grade = 0      # TODO: Extract math grade
science_grade = 0   # TODO: Extract science grade
english_grade = 0   # TODO: Extract english grade
major = ""          # TODO: Extract major
credits = 0         # TODO: Extract credits

# TODO: Calculate average grade

average_grade = 0```
somber heath
#

@zenith notch πŸ‘‹

next beacon
#

ok

pseudo trellis
#

isn't that advertising?

zenith notch
somber heath
#

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

pseudo trellis
scarlet halo
scarlet halo
#

no

pseudo trellis
#

oh

scarlet halo
#

theyre asking for feedback

pseudo trellis
#

i see

somber heath
#

@cursive condor πŸ‘‹

cursive condor
#

hello

somber heath
#

!e py a, b, c = (1, 2, 3) # a, b, c = 1, 2, 3 print(a) print(b) print(c)

wise cargoBOT
somber heath
#

@unborn island πŸ‘‹

scarlet halo
#

Noodle!!!

somber heath
#

@digital dome πŸ‘‹

#

@naive saffron πŸ‘‹

#

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

somber heath
#

@full anvil πŸ‘‹

scarlet halo
#

!e

import datetime
t = datetime.timedelta(hours=1,minutes=46)
print(t+t)
wise cargoBOT
scarlet halo
upper gate
#

hello @somber heath

calm ibex
#

Hey

pale fable
#

hey guyss

#

finally

#

i could open mymic

#

in the vc

plain dagger
#

heyyy

manic basin
#
# Write your if/elif/else logic here:

# TODO 3: Academic status classification
# Dean's List: Average >= 90 AND credits >= 15
# Honor Roll: Average >= 85 AND credits >= 12
# Good Standing: Average >= 70
# Academic Probation: Average < 70```
#

What does this tax want me to do ]

#

bec i got this and i dint understand the meaning of academic in this sentence

echo bison
#

@tacit crane GoDot engine

manic basin
#
# Given data - Tuple format: (name, math, science, english, major, credits)
student_alice = ("Alice Johnson", 85, 92, 88, "Computer Science", 15)
student_bob = ("Bob Smith", 78, 85, 90, "Mathematics", 18)
student_carol = ("Carol Davis", 95, 89, 94, "Physics", 12)
student_david = ("David Wilson", 67, 72, 75, "Chemistry", 20)

print("Analyzing Alice's Academic Record:")
print(f"Student data: {student_alice}")```
manic basin
#
letter_grade=[85, 88, 92, 67, 72, 75, 95, 89, 92, 78, 85, 90]
for grade in All_grades:
    if grade >= 90:
        print("A",grade)
    elif grade >= 80:
        print("B",grade)
    elif grade >=70:
        print("C",grade)
    elif grade >=60:
        print("D",grade)
    elif grade >=0:
        print("F",grade)
    elif grade < 0:
        print("invalid input",grade)```
wise cargoBOT
#

:x: Your 3.13 eval job has completed with return code 1.

001 | Traceback (most recent call last):
002 |   File "/home/main.py", line 2, in <module>
003 |     for grade in All_grades:
004 |                  ^^^^^^^^^^
005 | NameError: name 'All_grades' is not defined
echo bison
#

!epy letter_grade=[85, 88, 92, 67, 72, 75, 95, 89, 92, 78, 85, 90] for grade in All_grades: if grade >= 90: print("A",grade) elif grade >= 80: print("B",grade) elif grade >=70: print("C",grade) elif grade >=60: print("D",grade) elif grade >=0: print("F",grade) elif grade < 0: print("invalid input",grade)

#

!epy All_grades=[85, 88, 92, 67, 72, 75, 95, 89, 92, 78, 85, 90] for grade in All_grades: if grade >= 90: print("A",grade) elif grade >= 80: print("B",grade) elif grade >=70: print("C",grade) elif grade >=60: print("D",grade) elif grade >=0: print("F",grade) elif grade < 0: print("invalid input",grade)

wise cargoBOT
manic basin
#
All_grades = alice_grades + David_grades + carol_grades + Bob_grades
print(All_grades)
###output (85, 88, 92, 67, 72, 75, 95, 89, 92, 78, 85, 90)
#
# Write your if/elif/else logic here:

# TODO 3: Academic status classification
# Dean's List: Average >= 90 AND credits >= 15
# Honor Roll: Average >= 85 AND credits >= 12
# Good Standing: Average >= 70
# Academic Probation: Average < 70```
#

!e

letter_grade=[85, 88, 92, 67, 72, 75, 95, 89, 92, 78, 85, 90]
for grade in letter_grade:
    if grade >= 90:
        print("A",grade)
    elif grade >= 80:
        print("B",grade)
    elif grade >=70:
        print("C",grade)
    elif grade >=60:
        print("D",grade)
    elif grade >=0:
        print("F",grade)
    elif grade < 0:
        print("invalid input",grade)```
wise cargoBOT
echo bison
manic basin
#

Write your if/elif/else logic here:

TODO 3: Academic status classification

Dean's List: Average >= 90 AND credits >= 15

Honor Roll: Average >= 85 AND credits >= 12

Good Standing: Average >= 70

Academic Probation: Average < 70

#
# Given data - Tuple format: (name, math, science, english, major, credits)
student_alice = ("Alice Johnson", 85, 92, 88, "Computer Science", 15)
student_bob = ("Bob Smith", 78, 85, 90, "Mathematics", 18)
student_carol = ("Carol Davis", 95, 89, 94, "Physics", 12)
student_david = ("David Wilson", 67, 72, 75, "Chemistry", 20)

print("Analyzing Alice's Academic Record:")
print(f"Student data: {student_alice}")```
#

letter grade to academic status and change the grade to satus

manic basin
#

this was another the last code i sent

echo bison
#
# Write your if/elif/else logic here:

# TODO 3: Academic status classification
# Dean's List: Average >= 90 AND credits >= 15
# Honor Roll: Average >= 85 AND credits >= 12
# Good Standing: Average >= 70
# Academic Probation: Average < 70
manic basin
echo bison
#
  1. get their average grades

  2. compare it with their goal (ex. 90 for Dean)

  3. check if their cradits are higher or equal ( >= ) than the goal (ex. 15 for Dean)

  4. if all of that checks out, return "{STUDENT} has passed."

manic basin
echo bison
#

!e```py
avg, credits = 92, 16

if avg >= 90 and credits >= 15:
Pass = True
if Pass:
print('student passed !!1!!')
else:
print('student failed :(')

wise cargoBOT
echo bison
#

!e```py
avg, credits = 42, 16

if avg >= 90 and credits >= 15:
Pass = True
else:
Pass = False
if Pass:
print('student passed !!1!!')
else:
print('student failed :(')

manic basin
#
academic_status=[85, 88, 92, 67, 72, 75, 95, 89, 92, 78, 85, 90]
for grade in academic_status:
    if grade >= 90:
        print("Dean's list",grade)
    elif grade >= 85:
        print("Honor Roll",grade)
    elif grade >=70:
        print("Good Standing",grade)
    elif grade <70:
        print("Academic Probation",grade)
    else
        print("student failed")```
echo bison
#

!e```py
avg = 42
credits = 16

CALCULATE IF PASSES

if avg >= 90 and credits >= 15:
Pass = True
else:
Pass = False

RETURN RESULTS

if Pass == True:
print('student passed !!1!!')
else:
print('student failed :(')

manic basin
#
# Write your if/elif/else logic here:

# TODO 3: Academic status classification
# Dean's List: Average >= 90 AND credits >= 15
# Honor Roll: Average >= 85 AND credits >= 12
# Good Standing: Average >= 70
# Academic Probation: Average < 70
echo bison
#

!epy academic_status=[85, 88, 92, 67, 72, 75, 95, 89, 92, 78, 85, 90] for grade in academic_status: if grade >= 90: print("Dean's list",grade) elif grade >= 85: print("Honor Roll",grade) elif grade >=70: print("Good Standing",grade) elif grade <70: print("Academic Probation",grade) else: print("student failed")

wise cargoBOT
echo bison
#

!e```py
avg = 98
credits = 16

CALCULATE IF PASSES

if avg >= 90 and credits >= 15:
Pass = True
else:
Pass = False

RETURN RESULTS

if Pass == True:
print('student passed !!1!!')
else:
print('student failed :(')

wise cargoBOT
wind raptor
#

!stream 856263284764311583

wise cargoBOT
#

βœ… @echo bison can now stream until <t:1754411148:f>.

manic basin
#
average_grade      ###output 84.0```
wind raptor
#

!stream 1145811320621510738

wise cargoBOT
#

βœ… @manic basin can now stream until <t:1754411180:f>.

modest shale
#

!stream

wind raptor
#

!stream 856263284764311583

wise cargoBOT
#

βœ… @echo bison can now stream until <t:1754411778:f>.

wind raptor
#

Yes?

#

@manic basin

scarlet halo
#

hey Chris, how you doing?

wind raptor
#

Good, thanks. How about yourself?

scarlet halo
#

doing good, was a thunderstorm so had to plug out my PC for a bit, so sadly no progress on any programs :(

#

weather was good outside, half a second later its just POURING

#

and i 3D printed an ocarina

#

but sadly only these notes work

#

so im missing like 9 notes

manic basin
#
# Write your if/elif/else logic here:

# TODO 3: Academic status classification
# Dean's List: Average >= 90 AND credits >= 15
# Honor Roll: Average >= 85 AND credits >= 12
# Good Standing: Average >= 70
# Academic Probation: Average < 70
# Given data - Tuple format: (name, math, science, english, major, credits)

student_alice = ("Alice Johnson", 85, 92, 88, "Computer Science", 15)
student_bob = ("Bob Smith", 78, 85, 90, "Mathematics", 18)
student_carol = ("Carol Davis", 95, 89, 94, "Physics", 12)
student_david = ("David Wilson", 67, 72, 75, "Chemistry", 20)```
wind raptor
#

@echo bison Just use vs code's live share feature

#

Yes

scarlet halo
#

yes

wind raptor
#

Hey @peak depot πŸ‘‹

wind raptor
#

Can't voice chat at the moment. My fam's watching a movie in the same room and I don't want to interrupt.

peak depot
wind raptor
wind raptor
#

It's Microsoft... you never know

wind raptor
#

@echo bison Terminal access is restricted by default when live sharing. (it can be granted though)

scarlet halo
wind raptor
#

@manic basin you saved it as iiiii or something on your desktop

#

@manic basin check recent files

#

file -> open recent

scarlet halo
wind raptor
#

!stream 1145811320621510738

wise cargoBOT
#

βœ… @manic basin can now stream until <t:1754413484:f>.

fresh condor
#

hello

wind raptor
#

Gotta make some lunch. BRB

fresh condor
#

someones looking at this chat while being live on this dc rn

#

helo :3

scarlet halo
#

i wonder who πŸ€”

#

helo :3

fresh condor
#

im watching you streaming rn

scarlet halo
#

kind of the point of a screenshare :P

fresh condor
#

lol

#

what r u even making?

scarlet halo
fresh condor
#

cool

#

would it ve available to public?

#

and are you making a launcher for real mc?

scarlet halo
#

it does support offline mode but whatever

fresh condor
#

whats the implementitation about?

#

and is it downloadable and available for public?

scarlet halo
#

yes

#

theres instructions on how to use it in the README.md

fresh condor
#

cool, where can i download it?

scarlet halo
#

^^^ the github that i sent

fresh condor
#

ok πŸ‘

wind raptor
#

Back πŸ˜„

unique wyvern
wind raptor
unique wyvern
scarlet halo
#

@lethal shell what is that pfp 😭

#

why is it a catsnake

#

My snake btw

lethal shell
#

yes

scarlet halo
#

i love my little (fat) noodle

lethal shell
#

Why nowdays everyone has a pet snake?

unique wyvern
#

1, 1, 3, 8, 27, 91, 350, 1376, 5743, 24635, 108968, 492180

scarlet halo
# lethal shell He's beautiful

It's a she (I don't blame you, they're basically impossible to tell the gender from a glance) and sometime like 2 years ago i just decided i wanted a snake πŸ€” i think the reason so many people have them is either they think snakes are cute or they wanna make money (by breeding and getting cool patterns, which sells for lots of money the rarer they are)

upper basin
#

!e

def total_polytrees(num_nodes: int) -> int:
    return num_nodes ** (num_nodes - 2)

for i in range(1, 20):
    print(total_polytrees(i))
wise cargoBOT
wise loom
#

A random and necessary meme

upper basin
unique wyvern
#

.latex 2n -4

viscid lagoonBOT
unique wyvern
#

.latex (n-1)(n-2)

viscid lagoonBOT
unique wyvern
vocal basin
#

.latex $2n -4$

viscid lagoonBOT
somber heath
#

@lapis brook πŸ‘‹

lapis brook
#

after long time

vocal basin
#

being away with no join sounds is so surreal
just more and more voices appearing out of nowhere

#

@tulip gyro "from scratch" -- out of B-Trees and fsync?

#

that'd be my bar for "from scratch"

#

@tulip gyro to my understanding, Maro expects quiz-like questions no "have you ... before" questions

tulip gyro
vocal basin
#

I like how pgadmin generates ERDs

#

slightly more colourful

#

@mild quartz πŸ‘‹

mild quartz
#

heyhey

#

is maro getting interviewed?

steep meadow
#

Hii

vocal basin
#

kind of

tulip gyro
vocal basin
#

next stage: exFAT?

steep meadow
#

HAHAHAHA

mild quartz
#

extremely vibe-codeable

dense ibex
#

I've actually never seen that before that's kinda cool

vocal basin
dense ibex
#

No?

#

that's sick

vocal basin
#

πŸ’₯

dense ibex
#

the more you know

haughty pier
#

hi

somber heath
#

@slow mortar πŸ‘‹

#

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

woeful blaze
#

How is everyone doing today?

wise loom
#

ROSÉ & Bruno Mars - APT.
Download/stream: https://rosesarerosie.lnk.to/APTID

Order APT. single CD: https://rosesarerosie.lnk.to/APT-CDID

'rosie' - the first studio album by ROSÉ - out now
download/stream: http://rosesarerosie.lnk.to/rosieID

ROSÉ store exclusive 'rosie' vinyl, cd's, and more available now: http://rosesarerosie.lnk.to/store...

β–Ά Play video
unreal berry
wise loom
#

@unreal berry distro is an empty topic for the most part

wise loom
#

@burnt marsh ^^

somber heath
#

@upper grotto πŸ‘‹

upper grotto
#

hey, apparently I can't talk yet @somber heath lol

somber heath
#

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

upper grotto
#

well too bad, see you in 3 days

somber heath
#

@wanton radish πŸ‘‹

wanton radish
#

hi

#

how r u

#

can u allow me mr @somber heath

somber heath
#

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

wanton radish
#

yah

#

its failed

#

your profession

#

your country

#

Kangroo MAnπŸ˜‚

#

you married

#

any gf

#

that cool

somber heath
#

@rugged mauve πŸ‘‹

rugged mauve
#

This is my first time

#

So I didn't know there were conditions to be met

vocal basin
#

@peak depot since 8 am

rugged mauve
#

To talk in vc

somber heath
#

Other servers may differ.

rugged mauve
#

Yes, I am sorry

somber heath
#

You've no need to be.

somber heath
#

The Hayes command set (also known as the AT command set) is a specific command language originally developed by Dale Heatherington and Dennis Hayes for the Hayes Smartmodem in 1981.
The command set consists of a series of short text strings which can be combined to produce commands for operations such as dialing, hanging up, and changing the par...

#

@arctic pawn πŸ‘‹

wise loom
#

McBook

#

@ McDonalds

#

I need a laptop that has a battery

#

pretty much all laptops..

plush ether
#

heyy @somber heath

next beacon
#

hi @somber heath

wise loom
#

@turbid basin you can't upgrade memory that is of type LPDDR or LPCAMM or in general soldered memory

#

so if you want to upgrade a laptop's memory, it needs to be DDR SODIMM

winter bane
#

hey @topaz sparrow

fathom laurel
#

Hey guys need some help with pdf generations through reportlab now what my concern is large data sets am totally upto options, if pdf generation is according to my template which i have made programmatically using reportlab but thats too much resource intensive for my production set up whether i am handling all that in a scheduled job or in an api both seems to be taking time any help

calm ibex
#

Why i can’t talk in the voice chat

#

bro where r u from

#

nice to meet u

#

im from Egypt

tacit crane
#

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

calm ibex
#

So r u a new programmer ? ( me yes )

#

Elo ?

#

mine is 1080

#

but it becomes 1000

#

There was a free knight

twin gull
#

hello i will stay in shadows

bitter furnace
gray copper
regal rover
#

what is the problem if duckduckgo joined the voice chat?

#

why is Hemlock pfp shaking

#

what are you talking about?

obsidian dragon
#

idk

alpine crater
#

πŸ‘‹

#

(and yes discord if my mic is muted, when I join a voice channel I want you to unmute it, duhhh :/ )

tacit crane
#
<script src="https://cdn.tailwindcss.com"></script>```
crisp cedar
#

@sour steppe almost done

#

u there?

#

@sour steppe deployed!

#

they arent supposed to work for now

#

hm?

#

what doesnt work

#

wait

#

does the bg not change color?

#

the green turns dark green

#

yes.. thats all i added for complete πŸ˜†

#

can u screen share

alpine crater
#

its documentation

#

its docs

#

it for each field

#

These "comments" literally is what generate the docs

somber heath
paper wolf
#

imagine asking to learn logic gates and bro handed this to you

languid dove
#

Am new here

tacit crane
somber heath
#

"Oh, you made a mistake and want to delete or backspace something? Haha! Fuck you! Get a shutdown instead!"

open moth
#

but mac doesn't shutdown

#

so yea

alpine crater
#

God I hate css

#

how is something "valid" if it "doesnt work"

#

infinite is a valid value for scroll-driven animations, but it results in an animation that doesn't work.

somber heath
open moth
#

she jus needed quick dopamine hits

alpine crater
#

my stream is 1440p.... maybe if you close that πŸ˜›

#

or not.... I literally set 15fps in the settings

vocal basin
#

@peak depot I have no idea when I'm unbusy today

#

just left the office

#

I also need to finish Noctuary's free DLC

#

(extra story thingy)

#

(mostly doing it at, like, 2 am)

#

today got asked by a PM whether I'm overworking
(because of lack of schedule)

paper wolf
#

πŸ—£οΈ "unbusy"

vocal basin
#

busyn't

#

bun'tsy

#

one interesting consequence of me opting out of controlling anything that happens to my schedule (including wake hours) is that I no longer undersleep noticeably

alpine crater
#

I think I am gonna go now as well

wise cargoBOT
#

Please react with βœ… to upload your file(s) to our paste bin, which is more accessible for some users.

#

:warning: Your 3.13 eval job has completed with return code 0.

[No output]
chilly wolf
#

anyone here to chat?

#

I have a game idea I wanted to share

vocal basin
chilly wolf
#

Okie dokie! I was just in a typing mood anyhow

vocal basin
#

I wonder how long Discord will work without a VPN

chilly wolf
#

SO

#

here's what i have so far in my script

vocal basin
chilly wolf
#

I hope this all makes sense

#

my game generates ~190 million narrative threads, uses WFC to narrow it down to ~15 million coherent narrative threads, another layer of WFC to organize with coherent narrative threads together into a complete story, and a complex promp injection algorithm to generate the descriptions of each frame
then it uses a pointer system like in old video games to do a reverse procedural generation seed to index all information stored in the game, every action ever taken, then builds it into a cohesive world that weaves the tapestry of the characters you've created and played with in the game, allow your characters to run into each other between playthroughs, giving greater impact to your actions
to create a dynamic text rpg that's never the same once and has true weight and impact in a cohesive world
we can do this simply because
it's a text RPG
not minecraft or slay the spire, or
spelunky
but just narrative threads simplified to their base concepts and constructed together

vocal basin
#

but that one isn't related to AI in any way

chilly wolf
#

hmmm nice very interesting

vocal basin
#

more so that I can easily describe excessively complex choice trees myself

#

since that thing would allow difficulty to get a certain outcome complexity

chilly wolf
#

mine uses a MiniLM for speech syntehsis, gemma3:4b

vocal basin
#

my idea for the compiler for this thing is just that it only enforces that any point in the plot can be reached somehow

vocal basin
snow edge
#

10k points within a couple seconds

vocal basin
#

AI involvement is more so for me to practice writing myself

chilly wolf
#

Yeah, I understand completely. It's a very valid point

vocal basin
chilly wolf
#

i just thought it would be impossible to boil down a consistent set of random 1500 concepts into something workable

#

that'd be like

vocal basin
chilly wolf
#

nearly impossible especially considering they're randomly organized and generated from a base 190 million concepts

vocal basin
#

I actually wouldn't be that much against just using Vim with some self-written plugin

#

why Vim: I want to write it on a phone

#

and Vim is so great there

#

I feel so uncomfortable editing text on a phone in anything other than Vim

snow edge
vocal basin
#

nearest neighbour
*flashbacks to ML courses*

terse shoal
#

how are yall doing

upper basin
terse shoal
#

close enough.

#

im guessing that as "fine"

wise loom
#

@opaque raft if someone gave you that cooler, how would you assess whether it can cool the CPU?

opaque raft
#

That would 100% cool a 9950X3D

wise loom
opaque raft
#

Its a 360mm AIO theyve been known to cool the 13900ks (which is alot hotter than the 9950X3d) so in conclusion it should be fine.

wise loom
opaque raft
#

Just look around at 360mm aios and i9 13900ks.

#

Youtube or reddit

wise loom
#

i see so there's no centralized benchmark website for it

vocal basin
#

it's so quiet

wise loom
vocal basin
#

low noise, low rotation speed, high enough heat dissipation

#

which generally seems to mean tower cooler

#

(for the CPU)

wise loom
vocal basin
#

if you room and/or case aren't good enough for the cooler, need even more gap

wise loom
vocal basin
#

also you can get an high TDP low RPM cooler for a low TDP CPU and have a quiet cooler as a result

#

2000 RPM and below is the goal, approximately

#

the case influences the noise too

#

there are some which are specifically designed to be quiet while still not hindering cooling

#

@upper basin I have BG3 running at just below 60 but I don't remember on which settings

wise loom
vocal basin
#

my GPU is having troubles with Noctuary's DLC for some reason

#

maybe I should upgrade at some point

#

still using a GPU from almost the GTX era

#

(mine is late 2018, and RTX is early 2018)

#

I still don't want to get an RTX

#

I'll wait a few more years

#

when my GPU dies of old age or whatever

#

I bought my current CPU on the basis of funny not performance

wise loom
#

@vocal basin did you read product sheets when you chose the cooler?

#

Sorry for my cooler fixation.. it is what it is

#

The noise and heat are big factors for me

vocal basin
#

I know some coolers don't list TDP

wise loom
vocal basin
#

(the bigger one, on the server computer)

#

louder than the main PC one

wise loom
#

I know so little about liquid coolers

vocal basin
#

the heat is moved using liquid further from the CPU

#

analogously to inner parts of a heatsink of a non-liquid cooler

wise loom
#

I see

#

I really wish for passive cooling but that’s a pipe dream requires massive blocks of copper

#

Like masssive

vocal basin
#

I just realised that it's not worth trying

#

active cooling can be silent

#

this includes server racks

wise loom
#

Well you have to go in and clean it every few years i think

vocal basin
#

I have a passively cooled server with no moving parts

#

I need to clean it too

wise loom
#

How often?

vocal basin
#

as often as I upgrade it

#

same with other computers

vocal basin
wise loom
#

So not very often then. I don’t upgrade my stuff. I just want to ride them out until the wheels fall off

vocal basin
#

there was only a single time I ever cleaned a cooler because it needed it

#

(reduced heat by 50 degrees Celsius)

#

next time I upgrade my CPU it's going to be 65W again probably

wise loom
#

@vocal basin this reminds me i’d like to discuss minimalistic monitoring solutions with you at some point

vocal basin
#

snmpd type of monitoring?

wise loom
#

Uhm no snmpd but.. monitoring like metrics and yeah

#

Actual monitoring of servers for a homelab

vocal basin
#

@dry jasper my company pays my tax for me, so idk about it much

wise loom
#

I could throw in prometheus and grafana but i’m not sure it’s the best

vocal basin
#

Zabbix

wise loom
upper basin
vocal basin
#

8700F

upper basin
#

Gotcha.

vocal basin
#

from the weirdo CPU line

#

Ryzen 8000s are not normal

#

I think might even have a half-functioning NPU

#

which I can't use

#

even though I'm not a console player, I am content with having 30fps

#

@wise loom the moment you start seeing games and playing as a "phase", you fail as a programmer

#

@odd patrol I can only remember one game which bet on single core

#

Crysis

#

that bet failed so much

vocal basin
wise loom
vocal basin
wise loom
#

Alright ok

vocal basin
#

@upper basin anything that has heterogeneous cores tends to be a pain to deal with for performance-heavy programs

#

(there was a 14 cores 20 threads on screen)

#

I don't see much point in getting efficiency cores for a PC

scarlet halo
#

Hey Alisa, right now I'm rewriting a slightly old note taking app i made in Rust as my first real (Rust) application. I haven't committed it yet but i think its gonna be a huge upgrade

wise loom
#

You can fine tune the CPU usage..

vocal basin
#

or disable AVX

wise loom
#

Of course it’d be better if it β€œjust works” instead of messing with power profiles and usage limits

wise loom
#

Disabling them seems counter intuitive

vocal basin
#

efficiency cores don't support certain AVX sets

#

which means applications which get rescheduled onto them might crash because they previously assumed those to be supported

#

so you either disable AVX or efficiency cores

wise loom
#

I forgot Intel is nuts πŸ₯œ and they laid off 20% of their employees

#

Maybe AMD is just better in this regard with the P-core and E-core thing

#

That’s like for laptops but not even because a laptop should still be general purpose and not crash randomly like that

#

I guess only Intel knows who their CPUs are for

vocal basin
#

speaking of weird hybrids

#

CPUs with an NPU that does not work

#

cache sizes of Ryzen 1000s

#

and for whatever reason support for 256GB RAM

vocal basin
wise loom
vocal basin
#

still waiting for anything RISC-V

wise loom
#

the CPU history museum in every house. I think that’s what these processor companies are building, a distributed CPU museum

wise loom
#

Starlabs had a few laptops with it

#

Not starlabs sorry but some vendors

vocal basin
wise loom
vocal basin
#

I'll go order some from aliexpress

wise loom
vocal basin
#

(CC attribution)

wise loom
vocal basin
#

licenses aren't inherently bad

#

this is what allows for open source after all

wise loom
# vocal basin licenses aren't inherently bad

Well qualcomm was sued by arm uk because they hadn’t paid their tribute to the uk overlords and qualcomm is like huge..

The tribute that had to be paid were the licensing fees

vocal basin
#

patent-free

#

don't write patents, don't read patents

#

what's a patent

#

I don't even know what a patent is

#

neither should you

#

literally does not exist

wise loom
vocal basin
dry jasper
vocal basin
#

@upper basin isn't it just a cache size thing? as in transparent to the application

#

@upper basin ugh that is just wrong afaik

#

it might not matter as much

#

but it always works

#

always involved

#

@upper basin I am sure

#

L3 cache is what all apps must go through

#

they may or may not optimise for it

#

but they go through it always

#

L2 optimisations are very similar to L3 optimisations, you just want general data locality

scarlet halo
#

chat is this overkill for a note taking app 😭

odd patrol
vocal basin
#

...
huh interesting
meanwhile when I code and I need something I use this revolutionary concept called thinking

odd patrol
#

yeah but that dose`t work for me

vocal basin
#

maybe in a few years they'll add this feature to LLMs

wise loom
vocal basin
#

I'm also capable of making typos at speed

#

can your LLM do that?

odd patrol
vocal basin
#

it would be so funny if chat LLMs were allowed to edit their own messages

#

especially if that was not indicated to the user

#

gasllama

#

it would work so well given it won't even remember it

#

@dry jasper it's BSaaS

wise loom
#

@vocal basin have there been things on CPUs only released in the last 5y that numpy can leverage?

#

Or Python itself

#

I mean instruction sets

austere current
#

U guys r lowkey smart as fuck and i hope you all succeed in life

ripe viper
#

no.

odd patrol
#

@random stag sorry ihave to go

wise loom
#

brb

paper wolf
light onyx
#

Don't have permission to speak

wind raptor
light onyx
paper wolf
wise cargoBOT
#
Voice verification

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

light onyx
#

What if I'm not real

#

I'll try to verify then

#

Hahahaha

paper wolf
#

</>

#

<tag>

light onyx
#

3

#

4

#

5

#

5

#

5

paper wolf
#

<tag></tag>

light onyx
#

Whyyyyyy!!!!

paper wolf
#

mute lmao

light onyx
#

It said send 25 messages istg

#

Wait see for yourself

#

Why would you block me you demon😭😭😭😭

#

Ik wait

#

I need to delete them

#

Hold on goddimit

#

Give me time

#

I'm scared

#

Okkkk stoppppp speak

#

You scaring meeeee

#

Ok wait

wind raptor
#

!tvmute 1026279943472169032 2w

wise cargoBOT
#

:incoming_envelope: :ok_hand: applied voice mute to @light onyx until <t:1755740422:f> (14 days).

pseudo trellis
#

mindful is actually in here this time

light onyx
#

I'm just trying to delete img

#

Omg*

#

Ok so... I don't read the rules... kinda boring

#

Stop rubbing it in my face

#

I don't work

#

I ammmmmm omg that shit is so hard once it gets to modules

#

I give up a month ago

#

Yeah like that

#

I want to get back to it

#

I'm taking that course the cs50 one... the teacher is kinda fine tho heheheh

#

Wait do I have to delete this shit too

#

Should I buy this gitar

#

I rally like it

#

Omg yessss girlll I'm getting it now

#

I have some money

#

It's acoustic ..

#

Are guys all smart ppl who make a living of programming

haughty pier
#

can't connect in VC

light onyx
#

Idk man..some random gay perhaps

#

Oh I don't have it either

#

Omg a frog

#

Wait guys since you all program and stuff.. does that mean you can hack too

paper wolf
#

uhh guys how to make discord desktop to create cache data???

woeful blaze
#

how is everyone?

paper wolf
#

my PC is a total potato and now it's having stroke

light onyx
#

YOU ARE MOD

#

Then give me my right of speech back😭😭😭

#

Just shot em goddimit

paper wolf
#

u still need to verify

haughty pier
light onyx
light onyx
light onyx
haughty pier
paper wolf
#

it's supposed to be "you"

light onyx
paper wolf
#

cus you spam

#

don't spam

light onyx
haughty pier
paper wolf
#

yes

paper wolf
light onyx
light onyx
#

Yes squish it

#

Omg why would he break things

#

Bro stand up for yourself

paper wolf
#

im working on my new implementation of logic gates

#

fk it im rewriting the entire thing

woeful blaze
#

dose anyone use matplotlib?

light onyx
paper wolf
#

well someone used them somewhere on their timeline on python

haughty pier
#

I once did a big dose

paper wolf
#

im doing research but i didnt understand,..... uhhh how to use enum?

light onyx
#

Help him he needs enum

paper wolf
#

i want a ways to pass different types of objects

light onyx
#

He wants to pass objects

paper wolf
#

lets say

void process_objs(Obj object){
  if (object == Obj::processables) {
    do_something(object.get_something());
  } else {
    do_different(object);
  }
} ```
light onyx
wind raptor
wind raptor
paper wolf
#

well that will not work...

#

thats called template

wind raptor
#

Interface then?

paper wolf
#

idk what that is

woeful blaze
#

how is everyone?

wind raptor
woeful blaze
#

Upset

#

Because my dad ran over some watermelons I was growing

paper wolf
#

sob

woeful blaze
#

Yes I have three more but they're my babies you know what I mean

wind raptor
woeful blaze
#

I'm mindful

wind raptor
woeful blaze
#

Does anyone know how to make a Matplotlib danger meter?

wind raptor
#

Or even overloading

woeful blaze
# wind raptor Or even overloading

What I mean is if a population let's say I have 1000 watermelons for an experiment so i to have a population that doesn't go under a specific threshold if it reaches or goes under that threshold I want to alert me to plant more seeds to make up for the ones that died

#

Does anyone know but they have three different types of watermelons they're all on the same graph I want to take all those populations of that specific watermelon breed an alert me when a population is close to being to the point of no return specifically 500 individuals

wise loom
woeful blaze
#

test_line_format = {"color":"blue","linewidth":2,"marker":"$♦$","label":"test"}

#

File "C:\Users\casti\AppData\Local\Programs\Python\Python313\Lib\site-packages\matplotlib\category.py", line 215, in update
for val in OrderedDict.fromkeys(data):

#

TypeError: unhashable type: 'dict'

woeful blaze
wise loom
#

whenever i open it, i see only memes

woeful blaze
#

years = [2006,2007,2008]

#

File "C:\Users\casti\AppData\Local\Programs\Python\Python313\Lib\site-packages\matplotlib\axes_base.py", line 494, in _plot_args
raise ValueError(f"x and y must have same first dimension, but "
f"have shapes {x.shape} and {y.shape}")
ValueError: x and y must have same first dimension, but have shapes (4,) and (3,)

paper wolf
#

guys

#

its the the time, we are on the point where we have to learn java

#

πŸ₯²

woeful blaze
#

da

paper wolf
#

i hope java isnt too bad

#

i hope the hate of programmers on java is just a myth

#

my teacher give us tutorial to run and install java and eclipse ide

#

and its an indian guy who has low quality vid and audio

wind raptor
paper wolf
#

and has bad editing skills

paper wolf
#

lmao

wind raptor
#

Uhh.. You'll need Eclipse to do a bunch of stuff, although you can do most things with IntelliJ instead if you want a nicer experience

#

NeoVim doesn't have all the tools you'll need

paper wolf
#

what tools ill be needing to compile and run java program?