#voice-chat-text-0

1 messages · Page 397 of 1

upper basin
#

Just FYI.

normal dawn
#

back in 2

upper basin
#

@chilly wolf Were you the one who was working on a tetris AI solver?

#

If so, I have time now if you like to chat and go through some code.

#

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

@copper perch

chilly wolf
#

Give me just a moment! @upper basin

#

Got to see my wife off to work

normal dawn
#

hey @sweet inlet

sweet inlet
#

my arch break every 5 mins

#

heloo

normal dawn
sweet inlet
#

lucky its not in the bin

chilly wolf
normal dawn
#

@wind raptor hey

old escarp
#

Helo

azure elbow
#

hi

chilly wolf
#

@wind raptor

dull sluice
#

i heard some time ago that u can make custom dc activities but it was really hard is there any module or something to make it easier by now?

topaz temple
#

a simple (and probably terribly overdone) blackjack game

#

for the udemy class 100 days of code python

dry jasper
somber heath
chilly wolf
#

I received a scam link from this user

topaz temple
#

I have to run! It's past my bedtime! Thanks guys 🙂

urban abyss
somber heath
#

@dry jasper Does that mean you're not allowed to drive?

#

Sounds like you probably...shouldn't?

dry jasper
#

I live in a Farmer area so i dont really drive over the Highway, if i would drive i could stop each moment

normal dawn
#

why dotnet community is far better than python /

chilly wolf
sterile girder
#

What is he teaching?

#

or explaining?

chilly wolf
#

He is helping me with my neural network

sterile girder
#

i thought he's explaining some new thing that came

#

earlier

upper basin
upper basin
#

@rugged root drop by goddammit. I miss the shit out of you.

rugged root
#

Check the chat, I'm right here

upper basin
#

Yayyy

#

YAAAYY

#

I'm blind, but I got what I wanted YAYYYY.

mild ridge
#

hi guys hope you all are doing well , somone can help me i need a little project using graphical interface to my presentation for tmrw at the university ,somone can send me the code and i will try to run it and understand it ,thank you !

chilly wolf
#

I don't think anyone is going to write the code for you, but if you tell us what you need we'd probably be willing to help

whole bear
#

yes

#

He is definitely in house arrest!

upper basin
sacred lake
#

wait, opalmist and hemlock are not the same person?

vocal basin
#

I think I've listened to a single song for >100 times by now;
it's been out for only 3 days

vocal basin
sacred lake
#

Got it

upper basin
wise cargoBOT
#

sklearn/cluster/_kmeans.py line 174

centers, indices = _kmeans_plusplus(```
sacred lake
#

bot is reading your mind bro

wise cargoBOT
#

sklearn/cluster/_kmeans.py lines 181 to 183

def _kmeans_plusplus(
    X, n_clusters, x_squared_norms, sample_weight, random_state, n_local_trials=None
):```
cloud fulcrum
#

1196

#

init : {'k-means++', 'random'}, callable or array-like of shape
(n_clusters, n_features), default='k-means++'
Method for initialization:

    * 'k-means++' : selects initial cluster centroids using sampling \
        based on an empirical probability distribution of the points' \
        contribution to the overall inertia. This technique speeds up \
        convergence. The algorithm implemented is "greedy k-means++". It \
        differs from the vanilla k-means++ by making several trials at \
        each sampling step and choosing the best centroid among them.

    * 'random': choose `n_clusters` observations (rows) at random from \
    data for the initial centroids.

    * If an array is passed, it should be of shape (n_clusters, n_features)\
    and gives the initial centers.

    * If a callable is passed, it should take arguments X, n_clusters and a\
    random state and return an initialization.

    For an example of how to use the different `init` strategy, see the example
    entitled :ref:`sphx_glr_auto_examples_cluster_plot_kmeans_digits.py`.
#

default='k-means++'

vocal basin
#

_BaseKMeans

cloud fulcrum
#

75

wise cargoBOT
#

sklearn/cluster/_kmeans.py lines 1019 to 1026

if isinstance(init, str) and init == "k-means++":
    centers, _ = _kmeans_plusplus(
        X,
        n_clusters,
        random_state=random_state,
        x_squared_norms=x_squared_norms,
        sample_weight=sample_weight,
    )```
vocal basin
#

here

vocal basin
#

in __init__ it sets self.init

#

then something calls _init_centroids with that value

cloud fulcrum
#

''''

#
  File "Flowers_Clustering.py", line 262, in <module>
    main()
  File "Flowers_Clustering.py", line 229, in main
    k_labels = Tester_Cluster_Initializer.cluster_initalizer_tester(reduced_feature_vector, number_of_clusts, RANDOM_SEED, None, None)
  File "/Users/thomaswebbers/Documents/Study/VU_MSC_FINAL/MSC_Thesis/K-Cluster_Analysis_Benchmark/K-Cluster_Analysis_Benchmark/Code/Tester_Cluster_Initializer.py", line 108, in cluster_initalizer_tester
    init = check_array(init, dtype=X.dtype, copy=True, order="C")
  File "/Users/thomaswebbers/opt/anaconda3/envs/tf/lib/python3.8/site-packages/sklearn/utils/validation.py", line 915, in check_array
    array = _asarray_with_order(array, order=order, dtype=dtype, xp=xp)
  File "/Users/thomaswebbers/opt/anaconda3/envs/tf/lib/python3.8/site-packages/sklearn/utils/_array_api.py", line 380, in _asarray_with_order
    array = numpy.asarray(array, order=order, dtype=dtype)
ValueError: could not convert string to float: 'k-means++'
(tf) PinkWin 
vocal basin
#

check_array(init looks suspicious

wise cargoBOT
#

sklearn/base.py line 820

data = check_array(data, accept_sparse="csr")```
vocal basin
#

just passing the wrong thing into the function?

vocal basin
rugged root
wise cargoBOT
#

sklearn/utils/validation.py line 915

array = _asarray_with_order(array, order=order, dtype=dtype, xp=xp)```
urban abyss
#

how's your renderer work going @unique wyvern ?

cloud fulcrum
#

def kmeans_plusplus(

vocal basin
wise cargoBOT
#

sklearn/cluster/_kmeans.py line 446

est = KMeans(```
wise cargoBOT
#

examples/cluster/plot_kmeans_plusplus.py line 31

centers_init, indices = kmeans_plusplus(X, n_clusters=4, random_state=0)```
#

sklearn/cluster/_kmeans.py line 446

est = KMeans(```
vocal basin
#

it's in the public interface

cloud fulcrum
#

def kmeans_plusplus

vocal basin
#

non-_-prefixed functions are not expected to be called from outside

upper basin
vocal basin
#

it's in examples and tests

#

it's for users to call

#

not for the package itself

cloud fulcrum
wise cargoBOT
#

sklearn/mixture/_base.py line 134

_, indices = kmeans_plusplus(```
vocal basin
#

idk what branch its' from

#

what are we currently trying to find

#

and why

#

I'm not looking at branches, I'm search through the repository

upper basin
#

1.3.x

vocal basin
#

commits are branchless

frosty holly
#

hey my menu still not working can i zip the file then u import to see how it looks ?

vocal basin
#

salt is saying the exact thing I was saying

#

it's a public interface

rugged root
vocal basin
#

it's not an implementation detail

rugged root
#

I'm not super comfortable with people sharing a .zip and asking folks to run it arbitrarily

vocal basin
#

@cloud fulcrum you should run through the code with a debugger so you actually see what calls what

#

step-by-step

#

I don't believe in the "they forgot" hypothesis

sacred lake
#

!e

import numpy as np
import matplotlib.pyplot as plt

data = np.array([[150, 50], [160, 55], [165, 60], [170, 65], [175, 70], [180, 80], [190, 90]])

plt.scatter(data[:, 0], data[:, 1], c='blue', label='Data Points')
plt.xlabel('Height (cm)')
plt.ylabel('Weight (kg)')
plt.title('Height vs Weight')
plt.legend()
plt.show()

upper basin
#

I don't think the python bot has sklearn installed.

wise cargoBOT
upper basin
#

--upgrade

#

pip install --upgrade scikit-learn

#

Also use 3.11 at least.

rugged root
cloud fulcrum
#
        # Validate init array
        init = self.init
        init_is_array_like = _is_arraylike_not_scalar(init)
        if init_is_array_like:
            init = check_array(init, dtype=X.dtype, copy=True, order="C")
            self._validate_center_shape(X, init)

#

"kmeans++"

sacred lake
#

@small anchor Namaskar!

cloud fulcrum
#
Traceback (most recent call last):
  File "Flowers_Clustering.py", line 262, in <module>
    main()
  File "Flowers_Clustering.py", line 229, in main
    k_labels = Tester_Cluster_Initializer.cluster_initalizer_tester(reduced_feature_vector, number_of_clusts, RANDOM_SEED, None, None)
  File "/Users/thomaswebbers/Documents/Study/VU_MSC_FINAL/MSC_Thesis/K-Cluster_Analysis_Benchmark/K-Cluster_Analysis_Benchmark/Code/Tester_Cluster_Initializer.py", line 108, in cluster_initalizer_tester
    init = check_array(init, dtype=X.dtype, copy=True, order="C")
  File "/Users/thomaswebbers/opt/anaconda3/envs/tf/lib/python3.8/site-packages/sklearn/utils/validation.py", line 915, in check_array
    array = _asarray_with_order(array, order=order, dtype=dtype, xp=xp)
  File "/Users/thomaswebbers/opt/anaconda3/envs/tf/lib/python3.8/site-packages/sklearn/utils/_array_api.py", line 380, in _asarray_with_order
    array = numpy.asarray(array, order=order, dtype=dtype)
ValueError: could not convert string to float: 'k-means++'
vocal basin
#

init = check_array(init, dtype=X.dtype, copy=True, order="C")
what other variables are in scope of that function/method (cluster_initalizer_tester)?

cloud fulcrum
#
        # subtract of mean of x for more accurate distance computations
        if not sp.issparse(X):
            X_mean = X.mean(axis=0)
            # The copy was already done above
            X -= X_mean

            if init_is_array_like:
                init -= X_mean

unique wyvern
#

!e

import numpy as np
print(repr(np.asarray("hi")))
vocal basin
#

original code (from scikit) is not doing that with init

wise cargoBOT
unique wyvern
#

!e

import numpy as np
print(np.asarray("hi").ndim)
wise cargoBOT
unique wyvern
#
a[()]
dense ibex
#

Good technique?

#

@rugged root

rugged root
#

That's so much

dense ibex
#

Oh

#

Oops

#

Should I wipe it off

rugged root
#

It's like a small bead is how much you use

sacred lake
#

!e
import numpy as np
arr = np.asarray([["hi", "hello"], ["bye", "goodbye"]])
print(arr)

wise cargoBOT
rugged root
upper basin
rugged root
#

Take the processer out

sacred lake
#

!e
import numpy as np
arr = np.asarray([["hi", "hello"], ["bye", "goodbye"]])
print(arr.ndim)

wise cargoBOT
rugged root
#

Yeah take the processor out, wipe it off with some isopropyl alcohol, add a small bead, take a card and spread it thinly

#

Covering it evenly across

dense ibex
#

Oh

rugged root
#

Then slot it back in and then put the heatsink back on

dense ibex
#

Oops I just wiped it with alcohol pad in socket

rugged root
#

If you didn't get it anywhere then it's fine

#

It's just for safety

dense ibex
#

Got it

rugged root
#

Also, why are you me?

dense ibex
#

Idk I found this picture in my camera roll from like 2 years ago and it reminded me of the good old days

rugged root
#

HA

#

Cool cool

unique wyvern
#

!e

import numpy as np
a = np.array(["a", "b", "c"])
a.view(np.int32)[:] += 1
print(a)
rugged root
#

Probably my only good picture of me

urban abyss
#

young hemlock looks like a good guy

wise cargoBOT
dense ibex
#

Both are amazing in their own ways

#

Do I just have a different definition of a pebble?

rugged root
#

Eh, that's probably fine

#

Just see how thinly it spreads

#

Again, I highly advise against just plopping the heatsink on there

#

If you have an old credit card or gift card, that's your best bet

dense ibex
#

Butter knife it is

rugged root
#

Get that dust off the board

#

It's driving me bonkers

dense ibex
#

It likes it there

rugged root
#

HA

dense ibex
#

Also compressed air cans suck

#

Shit gets too cold and then sizzles

#

Sounds like it’s abouta blow up

#

Just using daddy’s air compressor now

rugged root
#

Wait

#

While the processor is in there with the bare thermal paste on there?

#

Where the dust could now settle in the paste?

dense ibex
#

Na na I did it before

#

Just a half assed job

rugged root
#

Thank god

#

Eh, it's fine

#

It's just a pet peeve

dense ibex
#

I just wanted to get the heavy stuff off the fan holes

rugged root
#

You're a fan hole

dense ibex
#

Okay so

dense ibex
#

Ik this will prob trigger someone

rugged root
#

Yes

#

Yes you are

#

I mean it's your rig, you do you

upper basin
urban abyss
upper basin
urban abyss
upper basin
#

My performance begs to differ, but sure.

tacit crane
cloud fulcrum
#
from sklearn.cluster import KMeans, kmeans_plusplus
import numpy as np
k=50
trials=1
np.random.seed(9)
X = np.random.random(size=(1000,3)) # data set
centers, indices = kmeans_plusplus(X, n_clusters=k, random_state=0,n_local_trials=trials)
km=KMeans(n_clusters=k,init=centers,n_init=1)
km.fit(X)
print("inertia = ",km.inertia_)

tacit crane
short owl
#

faked a thesis ?

cloud fulcrum
rugged root
short owl
#

$4 raise ... there saying .. please stay @chilly wolf

#

they are aware of head hunters , poaching staff

#

prop is ok ,

#

good code that doesnt have to be re-written or constantly checked is a good deal

#

non supervised neural net for Tetris ? @chilly wolf

#

I wanted to make a AI , tic-tac-toe , got lost in pygame stuff

#

motion analysis of security cam stuff is crappy @chilly wolf

#

He develops a AI that becomes aware @chilly wolf

last glen
#

Nokia was the GOAT before the smart-phone era

#

Had a great Nokia Xpressmusic 5310 back in the day
Had everything I needed except for WiFi support

smoky delta
rugged root
#

Had to put together a shelf

#

I now have another shelf to put together

#

I enjoy the variety in what I do

#

I'm just very very out of shape

smoky delta
rugged root
smoky delta
#
def example_settings_menu_options(self, owner, tabname, master): #self is the tab, backwards way of doing it, but we move
    item = ctk.CTkLabel(self, text="Example Settings", font=("Fixedsys", 40)) # create a title
    item.pack(fill="y") # pack it and make it stretch on the Y axis

    spacer = jscu.return_label_spacer(self) # add a spacer line under the label

    example_file_ask = jscu.simple_file_directory(self, 
                                                  master, 
                                                  master.addons["example_root"], 
                                                  return_file_dir, 
                                                  "JSC Folder Example") 
#insert the simple file directory, which calls return file dir

    example_slider = jscu.simple_slider(self, 
                                        master, 
                                        master.addons["example_slider_val"], 
                                        slider_val_update, 
                                        "JSC Slider Example")
    
    example_color_ask = jscu.simple_color_asker(self, 
                                                master, 
                                                master.addons["example_default_color"], 
                                                example_apply_colors, 
                                                "Example Frame")

def example_apply_colors(self, owner, selection):
    print(selection)

def slider_val_update(self, owner, selection):
    self.example_slider_val = int(selection)
    
def return_file_dir(self, owner, selection):
    self.example_root = selection #this is a callback from the button, if you wanna save the value it is not automatic
vocal basin
#

@unique wyvern "if no other solution works, exit(123) everywhere so you iteratively find out what pieces of code are reached and which aren't before the segfault"

#

technically™️ gives some debug information

#

@rugged root

80 is concerning
reminder:

chilly wolf
vocal basin
#

.xkcd 2407

viscid lagoonBOT
#

A death-first search is when you lose your keys and travel to the depths of hell to find them, and then if they're not there you start checking your coat pockets.

vocal basin
#

wait why is tetris effect journey practice only half the whole campaign

#

some levels are cut off

#

hmm

unique wyvern
vocal basin
unique wyvern
sweet inlet
vocal basin
#

@neon shore it's directly connected to the game if I understand correctly

#

it's not an external thing

#

@sweet inlet yes unfortunately

chilly wolf
#
grid = [[0 for _ in range(GRID_WIDTH)] for _ in range(GRID_HEIGHT)]```
vocal basin
chilly wolf
#
def get_state_feature_vector(state, device):
    try:
        grid = np.array(state['board'])  
    except Exception as e:
        raise e

    grid = np.expand_dims(grid, axis=0)  
    return torch.tensor(grid, dtype=torch.float32).to(device)```
#
def get_game_state(grid):
    state = {
        'board': grid
    }
    return state```
tawdry viper
#

@neon shore i am arab

#

guess

#

nah

#

💀 what country speak arabic ...

#

it's in the gulf

sweet inlet
#

😅

tawdry viper
#

kuwait and bahrain ?? ok and mr.z ?

#

what is your guess mr.z

#

final answer mr.z kuwait or ksa ?

#

kingdom of saudi arabia

#

correct

#

it's weird

if you don't want rice don't go to a main rice dish place

sweet inlet
tawdry viper
#

@neon shore that's my grandpa too cousin

sweet inlet
#

something else

tawdry viper
#

huh? calse ?

#

bro!!!

#

salt chill

urban abyss
tawdry viper
#

what is salt actually doing ?

chilly wolf
#

promising progress. Lot's of instances of this where it intentionally places blocks together

sweet inlet
#

sick man

tawdry viper
#

bro in Egypt and Argentina and Brazil was killing each other on the stadium

#

guys my old cpu was intel Pentium gold

that was in my cs (computer science)prime...... i ran blinder on it it was hell

primal shadow
sweet inlet
#

@tawdry viper ahah

primal shadow
tawdry viper
#

my old computer was the worst

sweet inlet
#

better than some tho

#

i mean do you remember schoool computers

tawdry viper
#

i was runing 3d on gpu...

tawdry viper
#

but it was around 3000 sr =799.81 usd

sweet inlet
#

i think that tech is cheaper in usa

#

at least cheaper thatn in the uK

tawdry viper
#

cuz it have touch screen and some stupid feature

chilly wolf
#

this is what my wife said about Ezekiel making semi-good moves at times

tawdry viper
#

see you soon guys i need to study for the network midterm

sweet inlet
#

see you masn

chilly wolf
normal dawn
normal dawn
normal dawn
vocal basin
#

@rugged root I'm making further questionable Windows decisions;
still not reinstalling it, but, at least, updating it to (seemingly) 22h2

wise cargoBOT
#

badass terminal graphics library

Released on <t:1735948797:D>.

unique wyvern
smoky delta
#

fixed, one font for uneditable stuff and another for editable stuff

unique wyvern
#

𜴘𜴙𜴚𜴛𜴜𜴝

#
𜴘𜴙𜴚𜴛𜴜𜴝
iron veldt
unique wyvern
chilly wolf
unique wyvern
chilly wolf
#

I'll be back shortly

#

on the phone w/ my wife

still tide
#

@wicked fox hi

wicked fox
#

Discord is being weird

#

hold on

still tide
#

@wicked fox restart it

wicked fox
#

can you hear me?

still tide
#

na

wicked fox
#

lemme restart my computer

#

thank you discord

still tide
#

hehe

wicked fox
#

hold on

still tide
#

try to restart your router

#

or refresh it

#

@steel oriole howdy

still tide
#

@somber heath howdy

somber heath
#

@cloud kindle 👋

still tide
#

@somber heath i was ask

cloud kindle
#

hi

#

I just got here

#

yes

#

very well spoken 😂

#

I have a small block of code for a class I'm taking. The block works but I want to understand it better

#

do you think you could help?

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.

still tide
#
print('Hello world!')
cloud kindle
#

def populateArray(self, start, increment):
    for i in range(len(self)):
        self[i] = start + i * increment


somber heath
#

Okay, so.

cloud kindle
#

all I'm not getting is the bottom part "start + i * increment"

somber heath
#

Hm. Okay.

cloud kindle
#

ignore the reverseArray function

somber heath
#

When posting code, please post it as text according to the bot post above.

cloud kindle
#

sorry, I'll try to figure that out better

somber heath
#

You understand that start is coming from the function parameter?

cloud kindle
#

yes, it is already a defined number in main.py

somber heath
#

So also increment. You understand that * is a multiplication operator?

cloud kindle
#

start == 7 and the increment == 3

#

yes I understand that * is multiplication

somber heath
#

I see you have a self parameter, but it doesn't look like this function is part of a class.

cloud kindle
#

this is my third college level programming class, so I have a basic understanding

#

I have 3 separate python files working simultaneously for this assignment

#

I was not told to assign this function to a class

somber heath
#

It's fine, it won't stop it from working if you call it correctly, it's just nonstandard.

#

!e py start = 7 increment = 3 for i in range(10): print(i, start + i * increment)

wise cargoBOT
still tide
#

@cloud kindle use can you list or tupple

#

y use array

somber heath
#

So that looks like start + (i * increment) in terms of order of operations.

cloud kindle
#

😂 funny enough, this assigment is purposefully making us use arrays to understand them

#

but normally we would just use lists

still tide
#

ok

cloud kindle
#

I am not sure why that wasn't clicking

#

thank you

somber heath
#

Whoops.

#

Not that one.

#

This one.

cloud kindle
#

I appreciate you

#

I will likely be back later on at some point

#

🫶

somber heath
#

@mellow bramble @regal peak 👋

#

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

still tide
#

@regal peak hi

regal peak
#

hi

#

@still tide did u voice verify?

still tide
#

@regal peak no

#

i got an ban

spice loom
#

hewo

#

i wanted to ask one thing about dictionaries in python

#

wait 2 min

#

!e

#

accounts = {}

def create_account():
print("===Create an account===")
acc_no = int(input("Enter an Account Number: "))
name = input("Enter your full name: ")
accounts.uptade({name:acc_no})

#

is this code correct?

#

like is the last line correct?

#

oh right

#

idk about that

still tide
#

uptade is should update

spice loom
#

ik

wind raptor
#
accounts[name] = acc_no
# or
accounts.update({name: acc_no})
spice loom
#

ohh i get it

still tide
#

like that code ui

wind raptor
#

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

still tide
#

ok

spice loom
#

ohh so u made a key called name and then access its value and changed it to account no.

#

i get it

#

thanks

#

bye

still tide
#

@wind raptor howdy

#

fine working on my freelancing project

#

client what an card printing web app

#

it more complex cant explains properly

#

client have other clients that will use this service

#

very much

wind raptor
#

!stream 99041425483653120

wise cargoBOT
#

✅ @chilly wolf can now stream until <t:1737775809:f>.

still tide
#

ocr sucks

#

so fitz, opencv and numpy

#

@chilly wolf is it doing by itself??

wind raptor
#

!stream 99041425483653120 2h

wise cargoBOT
#

✅ @chilly wolf can now stream until <t:1737783478:f>.

brisk bridge
#

hi

woven flare
#

hello guys

brisk bridge
#

i first time tried warp today, its very good terminal

woven flare
#

how is goin? too much code?

still tide
brisk bridge
#

this one

woven flare
#

he is playing the game or this is auto playing?

#

oh nice

#

training?

wind raptor
#

It's a neural network playing the game and learning

woven flare
#

awsome

still tide
#

@brisk bridge its not for windows

brisk bridge
#

i got early access

#

i mean waitlist

#

it got ai features and autocomplete

still tide
#

ui looks good

woven flare
#

u creating a game from the ground or just traning with a open source project?

#

im just a curious guy haha sorry for the many questions

upper basin
#

!pep8

wise cargoBOT
#
PEP 8

PEP 8 is the official style guide for Python. It includes comprehensive guidelines for code formatting, variable naming, and making your code easy to read. Professional Python developers are usually required to follow the guidelines, and will often use code-linters like flake8 to verify that the code they're writing complies with the style guide.

More information:

still tide
#

Bye

woven flare
#

bye sus

#

gratz! @wise loom

#

do u put 6 cuz you have 6 layers in above of code?

#

forget

#

ooh nice, thx

#

perfect explanation

somber heath
#

Yahoy.

woven flare
#

hello opal

#

how u doing?

somber heath
woven flare
#

hahaha

#

friday feelings

somber heath
#

Yes. Friday...

#

No other day, week, month, year, decade, century...

woven flare
#

borning flower in antarctica

#

litterally burning around us

somber heath
woven flare
#

just climate change, im joking with desgrace... sad days

pallid kraken
#

hey guys, I hope I'm close to my 50 messages lol

#

I feel like a probie

#

But its kind of a cool way to keep people engaged and weed out spammers and trolls

#

How's life

#

Ayeee perfect prnounciation

woven flare
#

hello queen!

woven flare
pallid kraken
#

super cool. I am deciding if I should dive into python, or stick to node and dive deeper there.

woven flare
#

"im the destroyer os uranus" hahahaha im already your n°1 fan @faint raven

upper basin
faint raven
pallid kraken
#

I have been working with Jekyll and Ruby and Docker at my job (transitioning into a Software Dev position), but I'm trying to convince them to move to Next.js, React, TS.

#

Jumping into python seems exciting but maybe too much of a stretch. Node seems closer. What do you ya'll think?

woven flare
#

2 most exciting thing in python: pay my bills and the community

pallid kraken
#

I just keep seeing so many advancements in AI man. Bolt.new just builds entire sites with plain text prompts. Web dev is gonna go bye bye lol

#

return Python === future ? Python : Javascript (maybe?) lol

woven flare
#

meehaul which area u wanna work with python? data, ai, automation...

pallid kraken
#

AI for sure man. Integrating AI into everything lol. Building models, training models, and only doing the SWE that the AI can't do well...yet

#

AI creates the algos to automate anyway haha

#

LOL

#

css and html is fire. Human designs will always be relevant.

woven flare
#

Nice

pallid kraken
#

css is pretty deep

#

sometimes

woven flare
#

guys, in ur jobs u using gpt, stackoverflow or documentation?

sry for errors in my sentence, im learning english too haha like u can see, cleary not my first language

pallid kraken
#

chat gpt

#

almost exclusively.

#

also claude and gemini

woven flare
#

me too, i have to use documentation or smt when the error got deeper

pallid kraken
#

Oh always use documentation

#

but GPT can summarize the docs

woven flare
#

haha true

pallid kraken
#

copy and paste docs into GPT

#

lol

#

and ask it to break it down into bullet points

#

sometimes it hallucinates though

#

so be careful

#

but it honestly doesn't really hallucinate if you copy and paste the whole documentation into it

#

critical reading will always be a valuable skill for sure

woven flare
#

do u paste the whole documentation and use gpt to navigate more faster in docs?

pallid kraken
#

yes

pallid kraken
#

summarize docs

woven flare
#

smart move

pallid kraken
#

it works really well

#

I am training a little gpt on docs that I use a lot

woven flare
#

ill test

#

true

#

thx for the tips, guys

pallid kraken
#

yea man. You got this. Always find the problems that don't already have solutions or have bad solutions and work on those

#

don't try reinventing the wheel. Unless you want to learn how the wheel was made.

woven flare
#

guarantee the wheel keep rolling

#

i usually repeat that phrase in my head haha

pallid kraken
#

Actually React kind of says otherwise. That's why Tailwind and React are so good for prototyping. Yes you should always diagram out your code first, but don't fall into paralysis by analysis.

#

@primal shadow

#

But with DSA, yes always pseudo code and diagram first

#

Automate the boring stuff!

woven flare
#

i used to write pseudo code in my book or smt and then start code

#

but not for all problems i face in my job

pallid kraken
#

I should check out kaggle after I am a little more confident in node.

#

But I am definitely going to keep to the JS ecosystem before I jump over to python

#

My little cousin is a freaking wizard in python and he's 16 lol

woven flare
#

ok @primal shadow u make me take an existential crisis in 01:40am hahaha

#

but thx for the crisis

#

for sure i have to visit those concepts

pallid kraken
#

Also guys, check out SCRIMBA

chilly wolf
#

Training from scratch

#

reward function was all hecked up

pallid kraken
#

super cool project based lessons

chilly wolf
#

some debug statements really helped me sort it out

#

y = 0 being top and y = 20 being bottom is really bad

woven flare
#

im so deep in dumb problems in my job and forget how to write a code from the scratch

#

do u guys feel this sometimes?

pallid kraken
#

what are you doing for your job @woven flare ?

woven flare
#

im working in a meterology+AI company in my crountry

#

but im begginer in that company, so i have contact with simple code, refactor things etc

chilly wolf
#

@bright agate you can talk here

#

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

bright agate
#

oh ok

#

I can't seem to remember what the key I used to encode the flag. Can you help me?

Encoded Text: BA0KAhk5NAoQPjk6DRM0PS0zNFZUUl5TVBw=

woven flare
#

i finally got my permission to talk in chat, now i have to lost my fear to talk in english hahaha

bright agate
#

the text was intially coded by base 64

frosty shell
#

^^ in blender

primal shadow
bright agate
#

import random

def find_winner():
# choose a move
choice = random.choice(["rock", "paper", "scissors"])

# find winner
if choice == "rock": # rock beats paper
    winner = 2
if choice == "paper": # scissors beats paper
    winner = 3
if choice == "scissors": # rock beats scissors
    winner = 1

# get user input
print("1 for rock, 2 for paper, 3 for scissors")
inp = int(input("> "))
if inp == winner:
    print("[*] You win!")
    return True
else:
    print("[*] You lose! (or tied, idrc)")
    return False

main function

def main():
print("Rock, paper, or scissors?")

# run 10 games
for _ in range(10):
    if find_winner():
         print("[*] Moving on to next round...")
    else:
         print("[*] GAME OVER")
         exit()

# this will execute if you win all 10 games
print("[*] Printing flag...")
print(open("flag.txt").read())

run the main function

if name == "main":
main()

#

does anybody know some flaws in the code above that i can exploit to win everytime?

frosty shell
#

python -m venv venv

#

python -m pip

bright agate
#

what will that do

frosty shell
#

source venv/bin/activate

#

yeah

primal shadow
#

make yourself a venv for the project

bright agate
#

oh

#

o

frosty shell
#

yeah

bright agate
#

ok

#

im in ubuntu

#

so I just do that?

woven flare
#

yeah

#

and install all libraries u wont

bright agate
#

this happened

frosty shell
woven flare
#

type ls in terminal please

bright agate
#

ok

woven flare
#

to make sure u created the venv

bright agate
#

how do I create the venv

#

I input the code above

#

and the thing that were in ls before

#

are still there

woven flare
#

python -m venv venv

#

am i right @frosty shell ?

somber heath
#

People talking over one another cranks tension.

bright agate
#

this is a very restricted linux command line btw

somber heath
#

Specifically mine.

bright agate
#

its for picoctf practice gymnasium

#

here

#

when I do ./runme

frosty shell
bright agate
#

it gives me a rock paper scissors ame

#

but that is too low chance of winning to receive the flag

#

so I was thinking about exploiting an error in the py code

#

am I right in doing that?

woven flare
#

i know how to create in windows and linux

upper basin
#

JOY OF PROGRAMMING - Software Engineering Simulator is an immersive 3D programming puzzle game about automating and controlling realistic machines, robots, drones and more using real Python code. Build actual coding skills while playing, solve exciting bite-sized programming challenges and progress to unlock new programming features and improved...

Price

$12.59

Recommendations

215

▶ Play video
bright agate
#

its basically linux ubuntu

#

so what you told me may help

woven flare
#

try and tell me what you get

#

in terminal

bright agate
#

after what

bright agate
woven flare
#

yes

bright agate
#

ok

#

this happens

woven flare
#

can you write python --version

#

in terminal

#

pls

frosty shell
#

@bright agate you might need to install python

woven flare
#

install python then you will be able to create a venv

frosty shell
#

which will have a "miniature" python to use with a "miniature" pip

#

sudo apt-get install python3

bright agate
#

oh

#

this may be a bummer

#

but I cant use aot

#

apt

#

sudo

#

or any of that

#

this is super restricted

#

thats why I am having difficulty

woven flare
upper basin
#

Gonna eat breakfast.

bright agate
#

what?

#

are you in a different country?

woven flare
#

which country u live?

bright agate
#

canada

frosty shell
#

@wind raptor ^^

wind raptor
#

This is really cool

#

What is it?

somber heath
upper basin
#
# Store transition and train if not player-controlled
            if not player_actions:
                try:
                    agent.store_transition(state, action, reward, next_state, game_over)
                    agent.train_model()
                except Exception as e:
                    logging.error(f"Error storing transition or training model: {e}", exc_info=True)
                    pygame.quit()
                    sys.exit()
#

@chilly wolf

versed heath
#

hi

sacred lake
#

@undone kindle Have you joined server recently?

somber heath
#

@drifting dune 👋

somber heath
#

@next orbit👋

somber heath
#

@hoary tapir👋

hoary tapir
scarlet halo
#

guys rate my totally amazing C code:

#include <stdio.h>

int main() {
    int string[] = {72,101,108,108,111,44,32,87,111,114,108,100,33};
    
    for (int i = 0; i < *(&string + 1) - string;i++) {
        printf("%c",(char)string[i]);
    }

    return 0;
}
storm dock
scarlet halo
#

what?

somber heath
#

@lilac bear👋

lilac bear
whole bear
#

What does chigga mean?

lilac bear
whole bear
#

Hmm

#

So that means it's slur word?

lilac bear
#

who knows

#

depends on context I guess

whole bear
#

So it can be bigga as well?

somber heath
#

@sick pecan👋

whole bear
#

"British" + "N*gga"?

#

Why its offensive to use N - word?

#

What happened?

#

My text disappeared

scarlet halo
#

if it dissapeared, maybe you're not supposed to say it

whole bear
#

It was link

scarlet halo
#

what was the link about

whole bear
#

It was about the n-word, and its history..
It didn't mentioned why they find it offensive

scarlet halo
#

why do you think its offensive

#

the word was made to be offensive

#

by whites

whole bear
#

I don't know, because they don't mind if black person use this word

ashen jolt
#

The bot auto-deletes words containing certain words. As for the offensiveness of the n-word, it's related to its racist use (as words' meaning derive from their use).

whole bear
#

And that black dude can say the n word to non black

ashen jolt
#

We're not the place to discuss this, I would think, just don't use racial slurs here.

whole bear
ashen jolt
whole bear
#

Okay

twin glacier
#

Yo I still need help with sierpinski circle

#

Anyone can help me review code

sick pecan
lilac bear
#

can hear you @storm dock

#

but I'm not voice verified yet

#

can relate bro

#

same, even though I should be more serious lmao, with internship coming up and all

storm dock
lilac bear
#

on and off about 2 years

storm dock
#

What did you make

lilac bear
#

Machine Learning project where we utilised diabetes data to predict if a patient had diabetes

#

a Fuzzy Logic project where we utilised skfuzzy library to help us make better investing decisions

#

a rudimentary image processing project where I used mediapipe and openCV. The project basically detected if you fell and sent the notifications to a caregiver's phone (primarily for use in old homes)

#

oh yeah, a telegram bot based on a funny character

#

a rudimentary quiz app utilising NLTK and other NLP libraries, where you basically parse in a paragraph or text, and it generates questions for you (this was before ChatGPT was mainstream)

upper basin
#

Heeyy Zubayer.

#

How you doing?

lilac bear
#

yo

lilac bear
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.

upper basin
#

Can you get your voice perm?

somber heath
lilac bear
#

can't spam either

#

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

lilac bear
#

yep, the reason is "You have sent less than 50 messages."

upper basin
#

Opal, meet my classmate Zubayer. Great guy.

upper basin
lilac bear
#

The 50 messages are like 50 mini quests

#

you complete them one by one

#

and eventually you get the reward

#

which is, being able to speak in the VC

upper basin
#

Yep.

#

Many have fallen. Thou shalt proveth thy self worthy.

lilac bear
#

you're not gonna belive this, but

#

I was actually doing a life reflection on that very theme just now

#

seeing this message made me get goosebumps

open moth
soft axle
#

hii guys

jovial willow
#

hello

torn yarrow
#

Where the VC squad at

somber heath
somber heath
#

@mental niche 👋

#

@velvet drum 👋

peak depot
#

Opali

somber heath
#

@grave moat 👋

#

@whole bear 👋

marble mantle
#

I want to attempt speaking but I have nothing to talk about

#

empty brain

somber heath
#

@quick monolith 👋

#

@vestal saffron 👋

vestal saffron
#

I can't open my mic

somber heath
wise cargoBOT
#
Voice verification

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

still tide
#

in my college 3rd year student dont even know js

#

or python

somber heath
#

@whole bear 👋

vestal saffron
#

Can anyone help with installing Linux mint as of now I have no os on my laptop

whole bear
somber heath
vestal saffron
vestal saffron
somber heath
#

I'm inexperienced with newer hardware and what they're doing these days.

lusty storm
somber heath
#

You may need to consult online guides.

#

Describe the process of flashing the USB.

still tide
#

@soft axle cant even find 20k year job
sad days

gentle flint
#

it says it has to do with secure boot

still tide
#

@soft axle me

somber heath
#

@chrome thicket @neon wasp 👋

soft axle
vestal saffron
soft axle
#

im considering a second degree, but Im not sure which to do

still tide
#

Btech in I.T

chrome thicket
#

Hey @somber heath I dont have permission to speak

wise cargoBOT
#
Voice verification

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

still tide
soft axle
#

I mean to strengthen my skills

lusty storm
soft axle
#

Like ya I know i could learn it myself, but I feel stupid

#

af

still tide
#

dont waste your money on degree invest in markets

soft axle
#

market?

marble mantle
soft axle
#

if anything

still tide
#

@soft axle i study for free

#

i got admission in public college

#

with scholarship

#

i just invents my money in other things

still tide
soft axle
#

im also kinda doing IT

still tide
#

ok

soft axle
# still tide ok

you dont need to show the website or college! just the classes

#

class names

somber heath
#

@wicked verge 👋

still tide
#

@novel sleet @terse rose Bye 👋

normal dawn
#

hiiii

#

byeeeeeeeeeee

woven flare
#

hello guys

#

and ladies

#

@primal shadow let me thank you again for the conversation yesterday, im reviewing concepts i forgot like a try except and other stuffs

tacit crane
#
orders_data = [{key: (value.isoformat() if isinstance(value, datetime.datetime) else value) for key, value in dict(order).items()} for order in orders_data]
#
async def get_contacts_data():
    try:
        config_data = await get_site_data()
        return config_data.get("contacts", {})
    except Exception as e:
        return {}
#
    except Exception as e:
        return JSONResponse(content={"message": "An error occurred while processing your request."})```
smoky delta
primal shadow
tacit crane
#

Consolas, 'Courier New', monospace

smoky delta
tacit crane
chilly wolf
#

I wanna do a 30 minute gamejam before work

#

anyone wanna watch?

austere parrot
#

when?

wind raptor
#

!stream 99041425483653120 30M

wise cargoBOT
#

✅ @chilly wolf can now stream until <t:1737834437:f>.

cinder vale
#

discrete mathematics

wind raptor
cinder vale
#

yes and it is not the same calculus

frosty shell
#

it's tough to choose a topic from discrete math, you just have to !pick one

#

or have a secondary source for calculus

chilly wolf
#

I was like 3/4 done ;~;

vocal basin
#

@cinder vale you mean conscience not consciousness, right?

cinder vale
#

Knowing morally right from wrong

vocal basin
#

conscience is closer to that

cinder vale
#

yes thats what I meant

#

I believe if you want to climb the corporate ladder, then you need to surpress the conscience-thoughts.

frosty shell
#

all hail corporate leaders

cinder vale
#

hail?

vocal basin
#

@hasty shore a lot of C and Erlang in-between the computers is happening to make packets reach their locations

frosty shell
#

those are called modems?

primal shadow
cinder vale
#

Steve Jobs was ruthless

#

Elon Musk is ruthless

frosty shell
#

get some hot apple CIDR and enjoy the coursera

vocal basin
cinder vale
#

they are so ruthless because they care so much about their companies

vocal basin
#

that's too positive of a description for Musk

#

wouldn't even call him cynical, he's too emotional and insane to be called that

frosty shell
#

all hail corporate immoral, greedy, and out-of-touch leaders

#

soo python ...

cinder vale
#

In my country, people are taking Tesla to court because they cannot agree on terms because Teslas are actually bad cars.

vocal basin
#

if you want real example of a "apex predator" business leader, Jeff Bezos

cinder vale
#

Perfect, I forgot about him

vocal basin
#

gradually lowering production quality

frosty shell
#

zig

vocal basin
#

there have been production-ready projects in Zig for a while

#

most famously tigerbeetle

#

(idk if bun counts)

#

rustlings
ziglings

#

C++ messed up everything

cinder vale
#

These entrepreneurs have a strong vision for their companies and therefore are willing to look past human emotions.

vocal basin
#

all the "errors as values are better vs exceptions are better" arguments are BS in almost every single point,
until you limit the scope a lot

soft axle
#

@wind raptor
help me pick some classes rq?

wind raptor
#

This is my program

vocal basin
#

@hasty shore ChatGPT slows down learning

#

you MUST write it yourself, that's the whole point to learn

#

you're not competent enough to use ChatGPT yet

#

if you can't write the same thing yourself and proofread what it gives you, don't use it, otherwise it will cause a lot of problems

#

also learning must go through difficulty (and a bit of suffering)

#

or else you just don't learn

#

unfortunately that's just how the brain is

#

@hasty shore then learn how to make that task easier to complete

#

make your own tools

prime mountain
#

Is True

vocal basin
#

delaying and prolonging the pain

tepid mantle
#

I will admit though since I am studying further maths occasionally a topic will be almost impossible to find online and so I will use chatgpt to hint which direction to go and then do the rest myself

vocal basin
#

@hasty shore it's not

#

it just isn't more efficient

#

you might feel it is

#

but it's not

tepid mantle
#

ye doing something yourself will always make you learn faster

vocal basin
vocal basin
cinder vale
#

Nothing is right or wrong

vocal basin
#

not only at using it for learning, but also at writing production code

cinder vale
#

do as you want and you will see the results yourself

vocal basin
#

copilot and alike are way more useful, because it's just a faster auto-complete;
don't rely on it to write code for you, just save a few keystrokes on boilerplate

tepid mantle
#

@frosty shell nice blender stuffs

vocal basin
#

which, tbf, is a large portion of corporate jobs

#

important context: I'm only talking here about AI codegen, not using it as a search engine

vocal basin
#

reasons why I'm opposed to using it as a search engine are very different

frosty shell
#

I use copilot for autocomplete - its useful for configs on kubernetes and such. But that's work related after 12 years of being out of school.

whole bear
#

does python have template meta programming?

frosty shell
#

stash?

tepid mantle
frosty shell
vocal basin
#

AI has its biases

#

replicating those biases at speed is suboptimal

frosty shell
vocal basin
whole bear
vocal basin
#

they must "come from different backgrounds" just like regular engineers at a company

tepid mantle
#

god I wish I could get away from ai, it's everywhere I go!

frosty shell
#

@hasty shore you can use AI to create learning plans for you , but directly giving you the solution on a platter is getting the answer without doing the work. Don't get the answer without doing the work. Do the work, ask chatgpt for help studying as a study buddy, not as a direct-answer route.

whole bear
#

i am a prompt engineer and i made a full stack app using AI

#

idk why u guys are against it

vocal basin
#

yeah, the point of us saying "ChatGPT is bad for you" is kind of:
"you are not to blame for it being a bad experience for you"
it's not a problem with you, it's problem with the technology

#

people say "oh, it will definitely help you", and it just won't

frosty shell
#

@whole bear it's more of , "Don't ask your friend for the answer instead of doing the work yourself"

tepid mantle
#

GAAAAHHH I just got an advert on the music I was listening to for an ai powered washing machine!

tepid mantle
#

A WASHING MACHINE

tawdry viper
#

he can help you understand it but don't say "hey bro give me the sol please"

tepid mantle
#

T-T

vocal basin
# whole bear idk why u guys are against it

Bryan Cantrill, Chief Technology Officer at Oxide, recently shared his valuable insights in Rokt's Tech Leader Speaker Series. In his talk, titled "Things I Learned The Hard Way," Cantrill delved into the world of software engineering, covering topics ranging from acquiring new skills to organizational lessons gained throughout his career.

Part...

▶ Play video

One of the most common attitudes with respect to AI today is the so-called “doomerism,” the idea that AI technologies are inevitably fated to present an existential risk to humanity. This talk takes that idea on head first, systematically examining the theoretical risks versus the reality on the ground, taking a skeptical but thoughtful view to ...

▶ Play video
whole bear
#

it is not limited it depends on your prompt

tawdry viper
vocal basin
whole bear
#

if u mean its limited in the sense of finding a sha256 reversing algorithm then yes but cant build a full stack app, then no

vocal basin
#

(don't do that)

cinder vale
#

@frosty shell Listen to how I use AI to learn python. I start by doing tasks on CodeWars and I try to solve myself and after a while I give up and use AI to give me the answer and then I actively learn by concertizing. I concretize by writing the solution in word and then try to understand each component and write in precise sentences and then confirm if my understanding is correct. What do you think of the method?

vocal basin
#

"oh you're just using AI wrong" is the same as "oh you're just investing in wrong tokens" from cryptobros

frosty shell
whole bear
vocal basin
#

i mean technically it is tbh
sickening

whole bear
tawdry viper
cinder vale
#
vocal basin
#

does it talk to users of said app?

frosty shell
vocal basin
#

communicating to consumers is way more important that just coding the thing

#

sure you can build something that technically starts up and maybe works

#

but, yeah, needs a lot guidance

chilly wolf
vocal basin
#

@hasty shore conscience

chilly wolf
primal shadow
chilly wolf
#

Did this about 5 years ago

primal shadow
#

They don't recommend gpt 😦

tawdry viper
cinder vale
#

When I wrote my bachelor thesis and I was able to recieve C but I felt bad using it

vocal basin
# primal shadow

"yeah, I understand you want to use Linux, we are all guilty of wanting to be able to just google the stacktrace"
-- bcantrill, paraphrased

#

most of the "efficiency, efficiency, efficiency, productivity, productivity, productivity" approaches don't actually work

#

more code per minute != more efficiency/productivity

#

deliver sooner, not faster.

tawdry viper
#

@hasty shore if you don't know ...you can say "hey GPT give me a road map with links or something like that" or "explain what is the error (no sol)"

wind raptor
#

Learning all the ways NOT to do something is just as important as learning the correct path

vocal basin
#

I'm not going to argue with that view because it's not wrong

frosty shell
#

@hasty shore What is your end goal? If it is for learning, then it is preferred to not use GPT or use sparingly, If you are using it for writing code for you, it is like letting someone else do the code for you- you don't learn anything. It is not always correct and takes awhile to troubleshoot /moddify - longer than if you did it yourself.

vocal basin
#

it's a s i n g l e r o a d

tawdry viper
frosty shell
#

@tawdry viper other than the opencv libs, not a lot

tawdry viper
vocal basin
#

I don't like the "GPT fundamentally can't think" arguments

frosty shell
#

@tawdry viper : there's this: https://www.youtube.com/watch?v=jSdABcWaIZg

In this tutorial, I’ll walk you through the new Llama 3.2 Vision Model just released! Many example are using the text only version of the model (1B, 3B), but I discovered that using it for image recognition (11B) is a bit more challenging to set up. So, in this video, I’m going to break it down for you: how to use the model, deploy it as an API,...

▶ Play video
vocal basin
tawdry viper
#

@hasty shore do you mean like a mod in a game ??

vocal basin
#

C++
my condolences
I'll never trust AI to write even a single line of that correctly

unreal thicket
#

this new smolagents course is starting on feb 2nd im super excited to start it and im learning smol agents with week, wanted to share the course for anyone else that wants to apply and get the smolagents certificate 🙂
https://huggingface.us17.list-manage.com/subscribe?u=7f57e683fa28b51bfc493d048&id=9ed45a3ef6
https://github.com/huggingface/smolagents/tree/main
https://www.youtube.com/watch?v=c8EpB4zmXG0

GitHub

🤗 smolagents: a barebones library for agents. Agents write python code to call tools and orchestrate other agents. - huggingface/smolagents

In this video, I look at the latest agent framework launched from Hugging Face called small agents. We look at how it works, what you can do with it, and how to build some agents with it.

Colab: https://drp.li/FBIMG
Blog: https://huggingface.co/blog/smolagents

For more tutorials on using LLMs and building agents, check out my Patreon
Patreon:...

▶ Play video
vocal basin
#

I don't remember what the specific company was, but there was a case where someone wrote a script to get through a learning course to get a certificate

#

a worse example of "outsourcing" learning

tawdry viper
#

is auto complete code build on the logic that i use when i code ? because some organisations band LLM but's it is okay to use auto complete

#

??

vocal basin
#

if LLMs are banned, that includes copilot and similar

tawdry viper
#

yeah i know

vocal basin
#

if the IDE itself bundles an LLM -- you should probably discuss with the company

tawdry viper
#

it's google collab

vocal basin
#

IntelliJ/VS proper have their own advanced auto-complete, it used to be non-LLM, idk about now

wind raptor
#

Just remember, if you don't flex a muscle, it will entropy. If you are great with something and then outsource all of that to AI, you will be less good at it after a while.

frosty shell
#

@hasty shore this ^^

tawdry viper
#

and one TA said it is okay to use the default auto complete

vocal basin
#

AI learning everything is a problem of its own

#

it's not opinionated

#

or, when it is, not coherently so

tawdry viper
vocal basin
#

"just push to main ffs"

#

it completely broke Primeagen

wind raptor
#

It was so funny

#

Who knew it was programmed not to ever push to main

#

The problem was that it said it could

#

lol

vocal basin
#

@unreal thicket Agile is not a framework

#

Scrum is

#

100 megabits not megabytes presumably

#

10 megabytes => 80 megabits

#

so that's approximately same

#

screenshotting incomplete results is funny

#

it's actually only

#

my VPN is acting up

#

it did not like that test

#

hmm

#

@dusk raven this is what I tried to send before connection died:

#

attempting to reconnect

unreal thicket
#

@vocal basin i found these

vocal basin
#

this is not Agile

#

SAFE is not Agile

#

nor is Scrum

#

they're failed attempts at making something agile by ignoring fundamental rules of agility

vocal basin