12466
Offtopic group for casual talking about anything. @rules_for_python still apply (except for the ontopic rule)
I have been programming with python for 4 years now. I never learned oop completely especially the self thing. Im lazy to do so.
Читать полностью…
okay well apparently doing vars() is cleaner than just directly accessing dict
Читать полностью…
It’s all good, it’s just that there’s a lot of people asking the same questions here and they don’t get a response back, it’s because it’s a question with no answer really, companies and teams have talents that already knows how to do stuff lining up to get in, while there are still tons of people trying to find a job and hope they get trained or told what to learn but there’s fundamentally something wrong with this, you know it too deep down but you just cant pinpoint why, apprenticeship has been dead for a long time
Читать полностью…
Imo if u don’t take agency in what u should learn then u fall into the category of being replaced and irrelevancy, especially with what’s going on currently, that’s just the uncomfortable truth
Читать полностью…
But how experienced have you got to be to do so?
At what level of knowledge could you start doing that?
So, is everyone man.
Just keep going. Whatever happens, happens for a reason.
At least you have a warm bed, something to keep your belly filled with, and a connection to the internet. You are young, healthy. There's alot to be greatful than there's to complain about.
Keep going
I wish success for all of us especially myself
Im really going through a tough situation
What suggestions do you have based on yo r own experience?
Читать полностью…
My friend started learning python after this video
https://youtube.com/shorts/uB1AVvaScW8?si=tl_4nHvUkB2jfwvT
doing some programmatical import of modules, idea is to see if any of the defined objects are instances of a class and then do something with it. Have a look at the snippet below and tell me if you any unexpected gotchas or if you would do it any differently or if there's a cleaner obvious way to do it that im missing (obv i could look for all or a user defined customvar )
def load_extension(self, extension_path: str) -> None:Читать полностью…
extension = importlib.import_module(extension_path)
for obj in extension.__dict__.values():
if isinstance(obj, CommandRouter):
print(f'{obj} is a router')
objs = dir(extension)
for obj in objs:
obj_item = extension.__dict__[obj]
if isinstance(obj_item, CommandRouter):
print(f'{obj} is a router')
Yeah it’s unfortunate and a real problem, seems like students these days either have to be really charismatic and network aggressively or just be super cracked out of school to stand a chance at all in software
Читать полностью…
Thanks but i don't like to use opensource projects. I am busy uploading my own projects that I have prepared and moving them to GitHub.
Читать полностью…
I agree with you are saying but I don't know whether or not you understand what I am saying.
I said, I have my own roadmap that I am following. And I only ask questions about the topics I don't know about but are already brought up by the people.
And what you are saying are general truths but I don't see how they are relevant to the topic 🤔
Yeah yeah I hear you, and yes I think it's okay for you to categorize me as such cause well it's your take, but I'm not and won't get replaced or irrelevant
Читать полностью…
The fact that you keep explaining yourself shows me you are a genuine person and and I was too quick to judge you.
Sorry about that.
And I am new to the tech industry, I have a roadmap that I am following. I know my goal and where I am going.
But, I joined groups like these to benefit from people who have real experience of the field. I enjoy being the stupid one in a room full of the people I aspire to be like someday.
So, whenever someone mentions something that's new to me, I follow it up with some more questions just incase that they have more info to give.
Again, thank you for the follow-up
But of course no one can give you the blueprint for your life
Читать полностью…
find some opensource projects and just start contributing
Читать полностью…
Sister, the blood has already dried and the body has been buried 😆
Читать полностью…
I ain't said nothing brother.
Matter of fact, I can't even see you sir 🧐
I try to do things the correct way.
The obstacle is the way is basically how I operate.
I am from a third world country and I don't mind really.
I hope to land OSCP in the near future and figure things out as I go.
I believe you are a young fella. I can see that fire. You want to grab the whole world in a day but calm down man. Relax. What's meant for you, will find you😁
That's because you are just starting out. It's like that everywhere. Just try to work with what you can and slowly, you build yourself to the top
Читать полностью…