#💻|programming
1 messages · Page 57 of 1
No it's true
straight up quants be using Claude atp
Well yes. Vibe code using some thing other than brain
what if it’s both tho
WHAT!!!!
you good
like for example I forgot some syntax
or I don’t know where the bug is
I think it’s fine to use ai to help
Probably didn't know what it did in the end so didn't know it had bugs
no sometimes it’s a fucking bracket u don’t see bro 💔
sometimes it doesn’t appear as that
Rt error
why are you so against ai help in coding 💔
Didn't say i was. Just mentioned a story
Why did you say it was impossible to create a malware with ai?
And vibe coding
it was sarcasm I just think it’s funny a vibe coder created a malware
most of them go to hackathons and create stupid ai wrappers
Show me your Code
Github
Artemis 2 landing back !!!!
Track NASA's Artemis II in real-time. Speed, distance, trajectory map, crew telemetry. First crewed lunar mission since 1972.
This feed will provide continuous coverage of Artemis II mission activities with live commentary, beginning with tanking of the SLS (Space Launch System) rocket at NASA's Kennedy Space Center and concluding with the recovery of the Orion Integrity spacecraft after splashdown.
Live coverage of Artemis II's launch and lunar flyby, as well as dail...
10 PRINT "HELLO NARENDRA"
20 GOTO 10
30 END

What's your level - undergrad or grad? Do you read conference/journal papers? I want someone to discuss academic papers with.
undergrad, not read any papers, but would lvoe to read them
can u guys teach me how to program bro am new
Learn easy language
what do u mean
Like python .. start reading the basics then code try to code dont use Ai for the whole work use it for when you either need help on debugging or either your stuck dont start using it for the whole thing. then you read books thats how i learnt it.
Thats why i have so many hours coding
I just try and then i learn from my mistakes
In this video, you will be learning Python with these 5 projects, starting at the very beginner level and slowly working our way up to something more advanced. For those who are complete beginners, I'm going to explaining everything as if you've never used Python before and even show you how to install the program and set up you editor. We will ...

My online friend tld me , once he had gone to a hackthon his team had built something good (dont know the actual detials but he is a good programmer) the other team used cursor and chatgpt and made a simple Grocery shop with heavy animations performace was low but still that team wins so yeah maybe vibecoders luck are good sometimes
"Every vibecoder who thinks vibecoding is cool must eventually feel the heat of vibedebugging."
— Overlord 3:16

if they over did the animations then one bug and it’s over bro 💔
Genuinely that typa stuff even I can’t do well
yo i want to make pong in c++, what library do i use for graphics
basic project by the way
Use cursors, basic terminal graphics in a console
#include <iostream>
#include <conio.h>
Ignore the class name here, but the methods from the system library:
void ScrX::gotorc(int row, int col) {
COORD coord;
coord.Y = row; coord.X = col;
SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE), coord);
return;
}
//*****************************************************************************
void ScrX::setcolor(WORD color) {
SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE), color);
return;
}
Complex ..
no. easy
Well maybe it is. I just had a simple library to move the cursor around and print text on places in the screeen. My MS had to go and change the Console window, and make 10000 options which now mean the basic layout I had doesnt work bause its changed the screen size, the font size the line size, the everything and made the program go wonky. I have it almost reset, but it only works 100% if I am running the program with the debugger on. A straight run and its starts scrambling the screen after a few runs. Like there is some glitch cursor movement happening.
One the brighter side, I have my dev environment open for the second time in 9 months

Guys any project available?
how long have u been in tech industry
i informatic, if someone need help i can help
45 years

Hey, I have dought can anywhere clear for me, I am in tier 3 college in India and I recently completed my react.js now instead of doing node.js for backend I want to go with java backend is right choose or should I go with node.js
"A true programmer never asks another programmer's age, for they would rather reverse-engineer it from edge-case behaviour."
— Overlord 7:23

I think someone deleted my message
FAIR
Both are good.
Node.js = faster + easier (same JS stack)
Java = better for big companies + strong backend
Start with Node.js, then learn Java later 👍
I don't think a tier 3 college in India is the end of the road, but it does mean you'll need to focus more on building your skills, projects and network to improve your chances. Since you already know React, Node.js would probably be easier to pick up because it keeps everything in JavaScript. Unless you have a strong reason for Java, Node.js seems the more practical choice.

@austere gate but mern stack is too common in every college, like in my college everyone just learning mern stack so, now I am going with frontend with react.js and backend with java
A true programmer would learn them both, and would learn any language that presented a syntax before thee.

POst you puzzle and someone may respond with a response.
it's all about his line InputStream fxmlStream = getClass().getResourceAsStream("views/loginPage.fxml"); i tried to change the location of the loginPage.fxml file in allmoust every possible location in the project and the result it stell the same fxmlStream = null
am using gradle 8.9
and this is my current project structer
├───.gradle
│ ├───8.9
│ │ ├───checksums
│ │ ├───dependencies-accessors
│ │ │ └───d7f838bb16dc243bdd05bfa8f75ef956f6209f3c
│ │ │ ├───classes
│ │ │ │ └───org
│ │ │ │ └───gradle
│ │ │ │ └───accessors
│ │ │ │ └───dm
│ │ │ └───sources
│ │ │ └───org
│ │ │ └───gradle
│ │ │ └───accessors
│ │ │ └───dm
│ │ ├───executionHistory
│ │ ├───expanded
│ │ ├───fileChanges
│ │ ├───fileHashes
│ │ └───vcsMetadata
│ ├───buildOutputCleanup
│ └───vcs-1
├───.vscode
├───app
│ ├───build
│ │ ├───classes
│ │ │ └───java
│ │ │ ├───main
│ │ │ └───test
│ │ ├───distributions
│ │ ├───generated
│ │ │ └───sources
│ │ │ ├───annotationProcessor
│ │ │ │ └───java
│ │ │ │ └───main
│ │ │ └───headers
│ │ │ └───java
│ │ │ └───main
│ │ ├───libs
│ │ ├───resources
│ │ │ ├───main
│ │ │ │ └───application
│ │ │ └───test
│ │ ├───scripts
│ │ └───tmp
│ │ ├───compileJava
│ │ │ └───compileTransaction
│ │ │ ├───backup-dir
│ │ │ └───stash-dir
│ │ └───jar
│ └───src
│ ├───main
│ │ ├───java
│ │ │ └───com
│ │ │ ├───application
│ │ │ └───controller
│ │ └───resources
│ │ └───application
│ └───test
│ ├───java
│ └───resources
├───buildSrc
│ └───.gradle
└───gradle
└───wrapper
thanks ...
The path to the class looks incomplete. Have you checked the ENV variables
Incomplete string address. Where is views/ ?
If you've already decided to learn Java for the backend, then there's not much I can add except good luck. But if I were you, I'd first try to understand why MERN is so popular and why so many people are learning it. Is it actually aligned with the current job demand or something else? It might be worth checking on LinkedIn to see what companies are currently asking for in job requirements before coming to any conclusions.

Thanks for guidance, it will definitely help me
You're welcome. Again, I'm not dissuading you from learning Java, rather just trying to make sure you know your reasons very well before jumping in.

im so behind in programming 
first ...
but they are on the same package !!!
second ...
i have tried the full path starting form the d partation until the fxml file
and nothing happend
after 30 min of problem solving now i got an exaption on the start method
i mean the same
that is me form 8hours ago
I'm lucky I didn't get interested in java and started programming, saved me hours of fun
Since you’ve already completed React.js, continuing with Node.js would be the more practical choice right now. It will allow you to quickly build full-stack projects using the same language, which is very helpful when you're trying to create a strong portfolio and apply for internships or entry-level roles. In your situation, getting hands-on experience and showing real projects matters a lot. (kisi ke baato mein mat aana bhai Jald se jald Internship ye Job karle Market mein Aag 🔥 lagihui hai ) for advice Same tier Colllege!!
tRY THIS AND SEE THE ABSOLUTE PATH System.out.println(getClass().getResource("views/loginPage.fxml"));
8 hrs more behind 
somewhat readable
i WAS WORKING ON A (AM) JOB USING CAPS, AND KEEP TYPING IN CAPS WHEN i SWITCH OVER
dang
Valid
I AgrEE tHAT IT is READabLE
aFTER MANYdecades there is still not a CAPS undo/ reverse function
there is
🍤
Thats a LOCK BUTTON. iT DOES NOT UNDO WHAT YOU HAVE TYPED
Ctrl + z
Ctrl + Backspace
tHAT DELETES IT ALL BUT DOES NOT MAKE IT CORRECT
..
Windows + R + regedit
I wrote a function for my program users to cap the starts of sentences and names etc, but lowered all the others. Worked for almost all cases
We need this on all KBs
show me
i need it for real
I wrrote it 20 years ago. Its on my other computer
🥀
Maybe its in my dev directory here but i'm not searching for it now
i had data on my previous laptop that got water damage 💔
right
oh ok i'll spend a minute and see if I can find. it Probably tell you I was lying
u can make an ai to search the ssd or hdd
moment
alright
Heres one, but not the one...
Public Function MixedCase(lString As String) As String
Dim lNameLen As Long
Dim lExtLen As Long
Dim x() As String
Dim i As Long
Dim newText As String
Dim lText As String
On Error GoTo err_handler
lText = Trim(lString)
MixedCase = ""
lNameLen = Len(lText)
If lNameLen < 1 Then Exit Function
lText = LCase(lText)
x = Split(lText, " ", -1, vbTextCompare)
newText = UCase(Left(x(0), 1)) & Right(x(0), Len(x(0)) - 1)
For i = 1 To UBound(x)
If x(i) <> "" Then newText = newText & " " & UCase(Left(x(i), 1)) & Right(x(i), Len(x(i)) - 1)
Next i
'Convert on "'"
newText = Trim(newText)
lText = newText
x = Split(lText, "'", -1, vbTextCompare)
newText = UCase(Left(x(0), 1)) & Right(x(0), Len(x(0)) - 1)
For i = 1 To UBound(x)
If Mid(x(i), 1, 1) = "s" And Mid(x(i), 2, 1) = " " Then
If x(i) <> "" Then
newText = newText & "'" & x(i)
Else
newText = newText & "'"
End If
Else
If x(i) <> "" Then
newText = newText & "'" & UCase(Left(x(i), 1)) & Right(x(i), Len(x(i)) - 1)
Else
newText = newText & "'"
End If
End If
Next i
' Convert on "-"
newText = Trim(newText)
lText = newText
x = Split(lText, "-", -1, vbTextCompare)
newText = UCase(Left(x(0), 1)) & Right(x(0), Len(x(0)) - 1)
For i = 1 To UBound(x)
If x(i) <> "" Then
newText = newText & "-" & UCase(Left(x(i), 1)) & Right(x(i), Len(x(i)) - 1)
Else
newText = newText & "-"
End If
Next i
newText = Trim(newText)
MixedCase = newText
Exit Function
err_handler:
Call gError("MixedCase", "General")
End Function
' Convert all to lower case with first character of each word upper case
' Also words following a "-" or a "'" except if "'" is an 's at end of word
whats this lang ..
go?
never what?
never give up 
in the lang?
I think the function is in one of my DB modules. There are too many to look through now

OH
MATCH
THAT SH
MATCH VAR:
CASE TRUE:
PRINT("NICE")
Sample using ADODB
Public Function GetChemical(ChemicalId) As String
Dim q As New ADODB.Recordset
Dim sql As Variant
On Error GoTo err_handler
GetChemical = "Not Known"
sql = "SELECT * FROM SysChemical a WHERE a.ChemicalId = " & ChemicalId
If SetQuery(sql, q, gDummy, "GetChemical") <> qmok Then
If q.State <> adStateClosed Then q.Close
Set q = Nothing
Exit Function
End If
GetChemical = q("Description")
q.Close
Set q = Nothing
Exit Function
err_handler:
Call gError(gProc, "Data Access")
End Function
Simple days
🧁
Now looks even worse, but thats my degenerate 🧠
void ScrX::clearscreen() {
COORD coordScreen = { 0, 0 };
DWORD cCharsWritten;
CONSOLE_SCREEN_BUFFER_INFO csbi;
DWORD dwConSize;
HANDLE hConsole = GetStdHandle(STD_OUTPUT_HANDLE);
GetConsoleScreenBufferInfo(hConsole, &csbi);
dwConSize = csbi.dwSize.X * csbi.dwSize.Y;
FillConsoleOutputCharacter(hConsole, TEXT(' '), dwConSize, coordScreen, &cCharsWritten);
GetConsoleScreenBufferInfo(hConsole, &csbi);
FillConsoleOutputAttribute(hConsole, csbi.wAttributes, dwConSize, coordScreen, &cCharsWritten);
SetConsoleCursorPosition(hConsole, coordScreen);
return;
}

be honest, u failed nmcv 101 right 
I dont even know what mmcv is. Roman numberals for 2105?
I have lived through many naming conventions
veteran
Especially the Geneve conventions on Naming
scary
i dont even know wt fk is tht
I'm sure wiki or google might say
SNOBOL (StriNg Oriented and symBOlic Language) is a series of programming languages developed between 1962 and 1967 at AT&T Bell Laboratories by David J. Farber, Ralph Griswold and Ivan P. Polonsky, culminating in SNOBOL4. It was one of a number of text-string-oriented languages developed during the 1950s and 1960s; others included COMIT and TRA...
Indeed you have been trained well 😭
why not cherios
cherios honeynut
not the flavour of the year\
the flavour of the decade
i hadn't eaten corn flakes in decades, and then this year I'm back
until I get sick of them I suppose
i got sick of chocolate a month ago and now a days im eating waffles with cadbury chunks

I made a load of waffles a couple of weeks ago. Still eating them
hard or soft crust
that looks like soft crust
I toast them, somewhere inbetween
i like mine golden
not too hard, not too soft
They are in between when made straight off the iron, but reheating frozen batch means its can be soft -> crisp
They're sort of like silicon waffers
yep, but golden and crisp is crazy
not the coated ones
Played a game. Inspred me to write a help/manual, so I know how to read the instruments
DOn't quite remeber the Starbase symbology
Also got a ghost enemy every so often that won't blow up when hit
challenges
Dont remember what I get from the planets, I'm guessing mining for resources, Have the C or V key but dont kwow what the letter means
I guess I could read the command case statetment
What game is this ?
V for visit planet and collect resources
Something I wrote here last year
Star Trek
emulation
In this game 57 Enemy ships to chase around the galaxy. Takes about an hour to play
gives me a headache though
Too many Gs
Who is mining in buttensor subnet?

Are you?
huh?tf is that and for what's it used?
I was reading a book yesterday, and the author seemed to be a huge fan of the original TV show. I know nothing about it tho. So, the author mentioned that in the show there's something called a "replicator" that can build things on demand by rearranging atoms. I found the idea absolutely fascinating. Do you think we'd ever have something like that within the next few decades? Imagine wanting waffles (..like when you shared that image, I was thinking if I could try them), and then you press a button or just think about waffles and the replicator presents you with the best waffle in the world. Of course, I'd be fine with safety and security rules, like not being able to use it to build weapons.

I think back to when IBM spelled out its name in atoms using an electron microscope/gun. Maybe I was too young then, and it was long ago but I figured if they can see an atom, and then move it, well we could generate molecules of whatever we needed, and so this could be used to further build all the material things we need like hamburgers and waffles. So perhaps yes, But theres a long way to go to move and rearrange all the atoms we need to make a waffle. I might see a subatomic hamburger rearanged before I die, but not a full sized one. Then again, we could be using 3d printing technology to generate these atomic molecules, and then spray the stuff into position, So perhaps. Also they are using enzymes and gene splicing already so that's the same thing and generating goop meats. Perhaps we are not thinking enough into our present.
🍔
🧇
I read Butter Son Subnet. I think they're better off renaming it to Buckle Up Buttercup.
Alamy even hikjacked the original pic
Took like 200 Terrawatts of power to move these atoms though
IBM in atoms was a demonstration by IBM scientists in 1989 of a technology capable of manipulating individual atoms. A scanning tunneling microscope was used to arrange 35 individual xenon atoms on a substrate of chilled crystal of nickel to spell out the three letter company initialism. It was the first time that atoms had been precisely positi...
One dystopian thought came to mind while reading your message. Will we be able to feed all the hungry people in the world in the future? What if droughts or natural disasters completely destroy our food chains? Then we could end up injecting gooey liquids intravenously, and the chemicals simply trick our brains into thinking we are enjoying a nice well done steak?

I feel thats the plot of a movie already.
Sounds cool. Puck could play the protagonist, you could direct it, and I could play the role of an AI builder who creates custom partners for people and robots.

no key 🥀



welcome to our weekly show - Roast the Code (standing ovations), you didn’t ask for it but Puck doesn’t need an invitation
Looking at this code you might feel something both devastating and terrifying at the same time. And not in a 'wow, that’s clever' way more like who let this happen?
-
First of all if you must to read the damn pep 8. Seriously it exists for a reason
-
Next crime: naming. One of the easiest ways to avoid future pain and hours of debugging is simple don’t reuse important/keyword names
And yet here you are naming a variable Path right after importing the Path class from pathlib. That’s not clever. That’s chaos
moving on ....
even though python isn’t a statically typed language, that doesn’t mean you should write code like types don’t exist
Type hints are there to help humans, even tho interpreter doesn't care about the type hinst as well as Peo about the job, use them. Future you and anyone else reading this will thank you
Also this one hurts ,never exit a function with just: 'return'
What is that supposed to mean? nothing? everything? at least return directly - None
better yet if something goes wrong, raise an exception -default or custom one. Your function processes data - it should either return something meaningful or fail loudly.
that was five minutes of the code roast show with Puck, see you next time if this code survives that long

apart from being sarcastic, I’m also serious. You did most of this thinking on your own, that matters. But the things I pointed out treat them as guidance, not just criticism
Absolutely devastating
dont worry, i took them seriously. Its just sample code to be honest and I thought it doesnt matter that much
read the godm damn pep8 everyone must read it before getting into coding
pep 8?
whats that
peeeeeep 8
fuck coding conventions
i ball with my own names
nah i got a documentation
A songification of that most holiest of Python Enhancement Proposals, the PEP 8.
Based on an idea by Daniel "Mr. Hemlock" Brown.
Written and performed by Leon Sandøy, A.K.A. lemonsaurus.
Music and melody from Mad World by Roland Orzabal. This version was inspired by the version released by Gary Jules.
🌎 Website: https://pythondiscord.com/ ...


have fun reading recommended and widely use python styling https://peps.python.org/pep-0008/
i party with my syntax, no homo
ill give it a read but lets see if i find it useful
it doesnt metter is you find it useful or not, you just have to follow the rules
order order

no, seriously read the guidelines below and follow the style, because if you don’t, someone else will point it out later on the job… assuming you’re lucky enough to have one

lets see if my hobby turns into a career 🥀
you are not following the order, eliminate him

alright
ill try
not for long
and that becose some wrote the elimination program
withou folowitng the styling
and it's broke

u arent following the english style itself 
order order
im bad in fasdt typign
im bad in pep
also nice to meet u im bad in fast typing

let's hope it is the only thing that you are bad at
lwk though
rate my code
yeas that me
without the pep and naming convention


i dont english undertanduna
no hablo englis
🥀
nein nein nein
my grammar all the time, without corrections
🤝
ur actually confsing me
ur grammar sucks homm
im actuly confsing myself, what a shame
Indeed, what a shame
Perhaps you could rate my code, which would be much appreciated
i rate it in general
3 out of 5 satisfied puckipsi

without pep?
yup
and naming?
yeah, that sucks you should work on that good code should be readable even at a glance, without having to squint at it from up close
do you hear urself
..
not exactly I'm eating and drinking and typing at th saem time
how good this beer is
and food
naah the realt one? taste so good after the wrok day
nah fuck alcohol
Drinking too much – on a single occasion or over time – can take a serious toll on your health. Here’s how alcohol can affect your body
yeah. I will definitely read it one day but not any time soon
And no, I’m not that drunk or rdink that much It’s just good to take a break sometimes grab some food, have a drink, relax a bit, and do something fun in the end… or just throw around some dumb ideas with your freinds and see what sticks
real talk, alcohol might give u permenant damage
i mean its normal
i sometimes make cringe jokes around my friends
alcohol is not some bad thing, and it’s not the only harmful influence in life. A lot of things are also unhealthy in different ways stress, polluted air, overwork, poor environments, bad habits, that way wrose that aclohol, do the research about not having enough sleep.
The point is that life is already full of compromises and exposure to things that aren’t ideal. So treating alcohol as the single 'big enemy doesn’t really make sense in context. what matters is balance
those hurt you in the short term, alcohol in the long term
and those arent even that bad
you build immunity to that sleep cycle and start adapting
that doesnt happen with alcohol
alcohole it self no, but it is quite possible if i try to bend a beer bottle with my head

ur super drunk right now..
bla bla bla, there are ways more reason for you die, and drinking is not my priority
party party yah

not really, i just playful, if i were I wouldn't be able to type normally
and tommorow one more working day, so it's not friday or the weekend yet

😭
average american life
'the american dream"
its monday for me
college still ..
also alcohol before bed may or may not cause asyphication or something like that
i dont know the term
"Asphyxiation"
?def asphyxiation
Definition 1 (noun): killing by depriving of oxygen
Definition 2 (noun): the condition of being deprived of oxygen (as by having breathing stopped)
I bet monday is still almost everywhere across countries, exceptions asian and oceania
no sht sherlock

еhanks for help, Mister obvious
.
in englsih maybe, but not in the python yet

ms or mr? Them. clean pleasure to help
🥀
i know what you're talking about https://www.youtube.com/watch?v=RVmG_d3HKBA
Official Website: https://www.yomika.com/home/
Stream: https://lnk.to/L8GZG
Facebook: https://www.facebook.com/mikasounds
Twitter: https://twitter.com/mikasounds
Instagram: https://www.instagram.com/mikainstagram/
Music video by MIKA performing Relax, Take It Easy. (C) 2006 Casablanca Music, LLC
relaaaax take iiiit eeeeasy

never heard it
i vowed to try not to listen to music
is someone torturing you?
haram
what's now it even worse that alcho?
booring you will diy one day? why toy shou care about something and followin order if that is not guaranteed
order order
"afterlife"
..

haram though
if this thingrealy will you be drinking there and listein ot music?
if afterlife exists, then no
i would not be drinking
and lets be real, its ethically and morally not correct
boooooring I don’t get why you avoid it here if you’re not even going to use it there
like what the point and this sacrifice whatever
we will have vine in jannah that wont effect our mind
we will have whatever our heart desires
ANYTHING
I have to disappoint you but if you don’t know how wine is made or what it comes from, I’ll tell you it contains alcohol
u can remove it also
what is in your heart? Please tell me there is something good about me
..
tf, it like removing caffeine from coffee
is god not all powerful
two dots in year heart? are you dying?

wine without alcohol if sad and funny at the same time, wine is made from grapes and their natural sugars through fermentation. Yeast eats the sugar and produces alcohol as a natural result of the process. That’s not an added ingredient it’s part of how wine is created
damn, I'm glad I know how to make wine, I never expected to nede ot know that
Yes, non-alcoholic (or dealcoholized) wine is created by first making real, fermented wine and then removing the alcohol through methods like vacuum distillation, reverse osmosis, or spinning cone columns. These processes reduce the ABV to less than 0.5% while attempting to preserve the flavor, aroma, and body of the wine.
and the holy scripture doesnt mention 'non-alcoholic'
it mentions that it wont mess with your head
you know it stil consists of alcohol? it's an inevitable process
read the dang article
and if u want u can further ask here https://discord.com/channels/801609515391778826/1367799103354044446
one day? and doen. trust everything that you read and police
same for u
no thanks
fair enough? you've learned the lesson
late time, good luck with your studying, see you

🍻
"divinely decree"

see you next morning insha'allah
adious
adios
💃
Constant THE_RULES_MUST_BE_FOLLOWED Zacky
Matrix 
noIlikeCamelcaseorInotherWordsalsoCalledbuildupCasebecauseItbringsThisbeautyToyourCodethatNocaseCan
Get it right
pft its correct
Nollike?
Excellent
🥀
Use 40 on phone and 79 on Teleray100
It's a funny kind of sad. PEP8
🧁
This from Don's mudda, show where capitalization is sourced from
Scotland?

hey Everyone, I am Building App plz Suggest UI Design what should i change in this Profile section
nothing
i see it very clear and alredy polished
When Artemis II goes missing…
it doesn’t come back to Earth.
It comes back to… this. 🐷
Welcome to PLANET OF THE PIGS.
is this app for female?
watching right now lmao

🥀
Jd looking like a mcdonald big mac on a hot summer day with extra grease


Anyone here using django?
You can't use him anymore cz he got unchained.

hes a free man

its lwk good though
Hi
Anyone need a job
They just want 310 years of experience
If anyone has this much experience can apply
Sorry, I only apply for roles that require at least 500 years of experience.
This already looks neat. Don't change anything. Just make it functional now.

this good code?
import os
import discord
from discord.ext import commands
from discord import app_commands # Required for tree commands
from dotenv import load_dotenv
from typing import Optional
load_dotenv()
TOKEN = os.getenv("DISCORD_TOKEN")
# Ensure GUILD_ID is an integer
GUILD_ID = discord.Object(id=int(os.getenv("GUILD_ID")))
intents = discord.Intents.default()
intents.message_content = True
bot = commands.Bot(command_prefix=".", intents=intents)
@bot.event
async def on_ready():
print(f"Logged In As {bot.user.name}")
try:
# Syncing to a specific guild makes the command appear instantly
bot.tree.copy_global_to(guild=GUILD_ID)
synced = await bot.tree.sync(guild=GUILD_ID)
print(f"Synced {len(synced)} Commands.")
except Exception as e:
print(e)
# Corrected Slash Command
@bot.tree.command(name="hello", description="Says hello")
async def hello(interaction: discord.Interaction,name:Optional[str] = None):
await interaction.response.send_message(f"Hello from {bot.user.name}")
# Standard Prefix Command (Optional)
@bot.command(name="hi")
async def hi(ctx):
await ctx.send("Hi there!")
bot.run(TOKEN)
Hello
Its spooky cause i worked with Hein Soe a few years back.
oh really.
weely
spooky
BUt luckily no one would actually use their real name, or you might be Hein
It is my real name, but may be same name different person.
How do you know you are different
I’m trying to figure out who you are.
do you work with scada
no.
?
population of world
ah, I see.
in google?
u can search "heinsoe" in google. the first one may be me.
where is he(Hein Soe who you know) from?
Australia
Probably given to much info already
Yo
Ho ho and a bottle o rum
@pure copperhi somebody tell me that you can help me with an problem
I can only try if one posts the problem.
Other could possibly help also if they see the problem posted
@misty flume
I wouldn't be surprised if we received another message in a couple of hours saying "tnx, problem solved."

or never hear from them again


Programming is living.
Your code is so solid.
I have some suggestions for your code..
Really??
Good
To be honest, me neither
Hello everyone
Does anyone here have good logic i need that
What??
I mean me too
Where are you from?
Go on...
can i show you in dm ? i can post picture here
i send you a friend request
South America
Nice to meet you
put in a ticket for the media/stream role, and tell them you need to post some stuff here for help.
no
"Expecting an algorithmic description to instantiate the quality it maps is like expecting the mathematical formula of gravity to physically exert weight." Alexander Lerchner, "The Abstraction Fallacy: Why AI Can Simulate But Not Instantiate Consciousness", Google DeepMind, 10 March 2026.
In simple terms, an image of an apple is not an apple. An algorithm that generates a picture of a beautiful apple cannot be the apple itself.

Makes it difficult for people to then trust teleportation devices. Are the atoms at the other end the same as the original, or are you just scanned and dissolved at the start point and then 3d printed at the other end from a tube of dna ink.
Better check the parity bit to make sure you got there ok.
Also make before break,
The atoms at the destination would almost certainly not be the same. They'd be new matter arranged in the same pattern. So if I don't wake up as myself on the other side, I'm simply gone frfr. What appears there would be v2 of me. Others may think of it as v1, but v1 is never coming back. However, I think some people would probably still choose to bring back the dead, if the technology existed.

Well i suppose all our cells die every few years, so we are not the original us either.

Hey everyone! I’m Anas, currently finishing my final year in Business & Marketing in shanghai. I spent months struggling with 'shiny object syndrome' and low focus while trying to build my online business.
I'm looking for study buddies. especially ppl in business, tech, ai , feel free to DM let's work together!
🍍
Hi
hi
Goodnight i decided to watch tv for a change. Get off the ytube. So 2 short shows i would like to watch, but now there is a storm outside and the only channel that goes bung in a storm is the one i want to watch, just as the shows start.
Back to my computer

When our cells die, does that break continuity? Are we being recreated as a whole, like in the idea of teleportation where we are rebuilt by rearranging atoms? If the answer is no, then I think we remain the same version of ourselves, regardless of cell death.

Perhaps as long as you are a release and not a version upgrade. Overlord 1.0001
If continuity breaks even for a short time, I'm gone.


Any Data Analyst here?
.
I'm 3 months into programming python and i already want to learn API

be honest, what did u learn
💔
I think 3 months is more than enough, not just to learn Python but to create a whole new language like it. We're talking about Saturn months btw, worth clarifying.


You really analyses that "." so well that you derived all that from Ian
A great DA you are indeed
🤣
Get it right peo
Hello!!
.

...
The chat is so dead here
Not that I am a programmer myself
"hides behind QWEN3-coder"
Do you want to revive someone?
We can start some kind of project.
I have too much on my plate lol
I am talking here cuz I cant sleep and procrastinating
But what have you done before?
...
A bot that helps with English.
You can until do it, but another people dont. Anyway they will take developer data. Can't be your data, but data from another, yep.
I lowk have a crush on Agentic Multimodal LLMs 
what do i make ..
Cursor is going to acquire by space x
Wow
60 billion usd
Such a huge milestone by anysphere
HI everyone,who is interested in Computer Vision field
me kind of
i need to master it
i am also
It was already acquired I believe
60B is valuation, not necessarily liquid money
hi bugs
hi
Hi Deprecated Code
do you have experience with openCV and perception?
no,i am try to learn
ok
are you doin CV for what? are you interested in autonomous vehicles?
or like for human computer interaction
If you are intereted in robotics, I recommend also doing stuff on NVIDIA Isaac Sim
also Gazebo
plus consult githubs of people who published their work related to CV so you can get inspired
hello guys
i am software developer
I have 5 years of professional experience in the sector.
who interesting python, javascript, golang we can talk about it
thank you ❤️
hi dogs
Hi guys
hi
I'm learning C# in order to developing indie game by unity
but i am a greenhand. can anybody recommend some excellent tutorials to me?
Start online class
Heres a book with gaming algorithms etc. Its the free version in web format. There are buy options for a proper PDF or hard copy, but I think the web version was ok.
are there any more books like this
like on topics such as "github" or "project organization"

I was looking at a general programming books listing and there were plenty of interesting things. I will see if i bookmarked that site when i next get on my computer.
"Rust coders do not need a new friend, for they can code a new friend in Rust."
— Overlord 13:5

And share the site, please
lol

thx
wow,I have the physical book of this book.
But,due to text with strong professionalism,I don't understand the main idea and details.
I hope the text is straightaway.
in simple language
That was the point of me messaging that. Still not on the computer to grab url yet
Alright
Ping me whenever you check
Free pdf/online books. All sorts of languages
https://www.linuxlinks.com/best-free-open-source-software-documentation/
@drifting zenith
@stiff wave
The site
Thanks !
Lets see if I can make a whole os by watching some videos ..
Ill def be addicted to this in 1 day
lmao
The first and last are the winners for sure
https://m.youtube.com/watch?v=5JlmM05IitY
Humanoid robots outrun humans in Beijing half-marathon
#breakingnews #robot #china
Dozens of Chinese-made humanoid robots showed off their fast-improving athleticism and autonomous navigation skills as they whizzed past human runners in a half-marathon race in Beijing.
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬...
Someone know a discord focus in studying programming together?
@dull crow no promotion here please
Sorry I got it
Please I need people to do that
Best if you just demo it in a stream in the programming VC when there are a few people there. Posting a link is a double bad in ICT eyes, as we see the link as a scam and the program code line 1 is DEL .
I got it thank a lot
What does it do?
Just pin event on map and chat
interesting.
Thanks that's exactly what I was looking for.
Hi
They all have different source web pages etc. Each does something different. I managed to download almost every big in every language. The game book can only be viewed on the Web page, it pay the 3 dollars to the poor author.
What are you trying specifically?
Thanks, but I prefer Rutracker


Humanoid robots outrunning humans in a Beijing half marathon does sound like a catchy YouTube title. That said, the more I think about all the other areas where these humanoid robots could eventually take over human roles, the more concerned I become, especially since we're pretty notorious for our rebellious nature. I'm not sure how average people will feel when they see a robot doing their jobs ten times better or even a hundred times better. Would they just accept this inevitable shift peacefully, or would they fight against the machines?

Don't need to exercise anymore. We can just be jelly in a sausage skin. Good to power the matrix like an alkaline gel cell 1.5V.
🪫
Did you ever think that we could be living in a computer-generated simulation created by an advanced civilisation? If so, would we ever be able to tell?
🤔
Yes, no, or perhaps that is the god issue many have problems comprehending.
Just marbles of the gods
I think if we could crack consciousness that'd open up far more areas to research. If we could replicate consciousness, we'd probably be able to tell what's going on!

That is sort of what i wanted to do for the last 40 years. Smart computer brain
Too hard to read on a screen? @drifting zenith
I was just trying it again to be sure ..
hello
doesnt look safe to me either
Hi nerds
I just wish I could see some kind of breakthrough in my lifetime. All those CEOs have been beating the AGI drum for quite a while now. If we actually get AGI, it might help us decipher some of these mysteries, or it might just turn out to be a pipe dream.

Hello guys
I'm new to learn programming, I want to learn python but I don't have a computer. Can I learn it on tablet?
You can but it’s not the best
I advise you to start and don’t waste time
You can start with tablet until you get a computer
Also you need to apply not just watch.
Yes, you could learn Python even without that tablet. In fact, a lot of people around the world learn coding on their phones, but it's quite a bit more hassle. Just don't feel discouraged cz you don't have a computer rn. Assuming it's an Android tablet, you can install some free apps from the Play Store or even use Google Colab. Try to get an external keyboard and a mouse if you can, as they'll make your life a bit easier. Good luck.

Hello guys, how are you? I'm Marcelo Vitor, Brazilian, electrical engineering student, I recently started learning to program and I'm studying Python! I'm also starting my studies to learn to speak English! I would like to somehow contribute with you in something! Some curiosity about Brazil, soccer, games. And if possible you teach me programming and especially to speak English, I think that just by making a new friendship I would learn English and I would be very grateful! Anything add me and send me a message I still don't know how this discord works! Thank you for your attention!

guys the thumbnails of some programs are not showing for me (the thumbnail of "settings" icong isnt) showing
i have used cmd commands
like taskkill /f /im explorer.exe
then i /cd to thumbnailcache_*.db and deleted the cache there
started im explorer.exe back again
but i cant seem to find another solution for thiz
i pretty sure there is a keyword you use for a thumbnail png file for a project
Can U to sell the tablet and buy a PC? An old PC, solve U problem. Use Linux use the powerfull of U new PC (if gonna old).
Hi, Marcelo. I'm from Brazil too, to be more expecifc, Pará.
I can help u, but I'm learning english too, hehehe.
Yeah it gonna be better for him
If it is possible
Hello
Hello,does anyone know fortran language
Anyone here champ in Cybersecurity/Linux/Networking?
JS, Python
Shell script language
Today I discovered that a person named Mihaly Csikszentmihalyi (pronounced Me-High Chick-Sent-Me-High), existed on this beautiful planet. It just reminded me of extremely long variable names.


Long readable variables >> shit that doesn't mean anything
I just use i,j
hello everyone, i am here to meet EU friends(must own English, 22yo+ only) who can work me. anyone here? plz DM me anytime.
Hey everyone, I have a question. Do you think the MySQL field is already too crowded? For example, if I started learning it today, would it be a waste of time? Would it be better to learn PostgreSQL instead of MySQL?
I was just wondering if the field is already saturated.
I am a software developer, MySQL is still being used widely, so it's not waste of time. And also, AI would help you to improve your skill
Hi myself Aries
I would love to be your English lesson mate.Moreover,What a coincidence I'm also learning python just started
Is ui/ ux Worth leaning as a newbie who wanna explore more should I dive deep into these?
People don't really learn MySQL over Postgres. They do learn SQL, and at some advanced level they start diving into platform specific details. Overall, we learn and interact with sql, nosql and document databases.
Is MySQL "field" too crowded? Likely.
Should you learn it if you're a backend engie? Absolutely.
Should you go for Postgres over MySQL? Eh, I don't think it's the best course, unless you are already working in a field that heavily uses Postgres.
If you're just starting out, you've gotta focus on the structure first. Think of it like building a house—you need a solid foundation before you start picking out the furniture. You need to wrap your head around how relational databases actually work, how to design your tables, and how to link everything together using primary and foreign keys. Once you get the logic down, the rest is just syntax
I've used sql for decades (generically). Mysql has always been around but i never saw it in a professional environment. I recently tried to look at the different distributions and postgres looked like something that was reasonably complex and all encompassing and potentially used on bigger sites. But again I've never seen this used either. The only one i have seen in multiple locations was sqlite, which was used because it was easy to integrate into anything and was very available. But Oracle and Microsoft Sql Server are the two giants that I see in all industries. Sqlite is my current bet on alternate with best chance of seeing it somewhere.
Can I my survey link here?
how to master in dbms for design system. could you give any tutorial of youtube, so that I can master for production grade.
any resources to understand easily
?
Anyone can ans
Can anyone teach me the use of val and var
in what language?
I think the most complex design element you need to consider when setting up a database, is how to handle historical reference and master data in a normalized db. Editing a reference code for example can result in historical information becoming corrupt if it is directly linked to an historical master record. You may need to consider, new codes when editing a reference table rather than editing the existing associated information. Alternately using timestamped reference codes. Also historical records could just be copied while and archived in their own tables for static reviewing. There are probably a lot more ideas out there, but corruption of historical info is a big disaster if not initially considered when setting up the db for your application/systems.
Hey everyone is there anyone is learning SQL?? If yes pls let m know
I'll start learning SQL in a day or two. But I'll be learning MS SQL Server. What are you up to?
thanx Peo
Ohhh nice to y know that mee too
I actually did learn it but maybe I need to refresh my memory.
If there's something you don't understand, I can help you.
Yep I need it
This is surprising. Could be niche thing like "oracle in java world", because in backend systems 4 out of 5 companies use mysql|mariadb. Remaining uses postgres. Sqlite is near to none, yet might appear here and there.
Especially in smoke tests env where people RAM-mount it for speed boost.
Personally, last time I used sqlite was in android development.
I would say "niche" is a strong under kill. Rather i would say that there are a number of major development styles and we may each be working in our own district development worlds.
Oracle is hardly niche and not just java
I'm a bit confused, because that's my definition of "niche" 
Highly specialized is my view of the word
Alright, I checked it and you're likely right. Java is nowhere that popular to push it to the first place.
Likewise, i'm surprised to see mysql sitting above ms sql server
I'm surprised it's not ahead by far. Given that most of the internet is literally wordpress
Ig what i am trying to convey is that there are a lot of systems in the world that are not 'Internet' based, and this i think is not seen in current cohorts of educational institutions. The legacy attend that run government and heavy industry, are producing front end web systems now to gain access to that information, but the underlying databases have been in existence for decades, and Oracle, ms sql and mysql have been around for many of these decades.
Joker
🤡
Typ typ typ
Typ ttp typ
Dip dio dip
La di da da
Ummm ahh ummm
Oh really
No9ooo..... Really
Omg
Ifc
Ofc
Blah vlah blah
Typ typ typ
What is Khan typing?
I'm aware in general. Apparently, I'm unaware of the scale. Like, how many people work there, because in my experience it took like 4 teams to build 5-6 apps/tools that were used by entire gov. For comparison, it's as a few guys would have worked on facebook that'd then be used for shopping, entertainment, healthcare and etc. all at the same time.
Just to clarify, I'm implying that I don't see how there are more apps (in terms of quantity) that use oracle than there that use, say, mysql.
Getting distracted by people talking in background
For some reason "philosophy" channel has been dead for days, and other channels feel heavily unmoderated
So I'm sticking with decent ones : )
The year 2000 project i was in had over 100 people working 4 years to check the code and correct it for one state government department. It was a financial system.
That was repeated across all gov departments in state, local, federal, and private industries across the world.
Ooof. Worked at one in 2016. Was much-much simpler than that
And that was just to check a date bug
hola
There may be hope soon. I think it's either Microsoft or Linux, cant remember which, but date rolls over around 2030. That's very soon. Think it's ms.
peo have u tried ramen
I have eaten such noodles
Yes, that is them. I'm not a fan of noodles generally. I'm a rice person
rice with some black chickpeas
Char siu
I posted a selfie. It will shock. There are other selfies, but IT people never check their resources.
Where did you find that? In programming?
yes
You need to read that in context
lemme see
Not me.
aw man
This is me in profile pic
My hair tied back and wearing a blond wig
lemme search again ..
Shock you more
My seafaring days
Correct
?
Where did you dig that up from. I remember that day
3rd page results of filtering
tell me the date of when you posted it
a male in disguise 
Just not satisfied are you
thats not u 💔
Ok. A couple of years ago, but me
couple of years ago
hmm ..
doesnt narrow it down 
ur telling me this is u
no way
i havent even seen u in those vcs what do u mean seen
💔
u this?
@pure copper
i found u, no way !!
Your really going back now
Still have that bag
from 1 year ago is crazy
is that you though?
Well going to go eat some pea soup. Can't post any pics off this phone, cause i ate too much at Christmas.
You found me
Voicee!
im finding ur pic next 
i lwk do have the sherlock glasses lmao
soup?
Pea soup. The stuff Sherlock Holmes has to walk through on midnight investigations.
I already had mine, thanks 
two offices?
Actually 3 but ones a secret location
whats this
alot of pics but i was thinking why not post them as well for ur nostalgia
The bottom is the main frame computer i run. The desk is my control setup
4' 11 is my height
ahh that makes sense
My days in the hospital
i know so
peo, somewhere in these pics is ur pic
im sure of it
I think there are a bunch in there from the older days.
that was the first pic u sent
the last bunch
the first pic u sent was in 10/3/2023

