The loud music competing with the guests is just ridiculous. If they have something good to say, why drown it out?
@bradshipton971321 күн бұрын
Are you still running the training course?
@SwarupSelvarajАй бұрын
Clearly showcases leveraging data with Python to work Smarter
@CyberVenomAenimaАй бұрын
Amazing Thank you very much everyone for this
@structuralpythonАй бұрын
Glad you enjoyed it!
@LUISDIEGOPANTOJAHORNA2 ай бұрын
Hi! How i can print in another dimension, i mean, i want print r in cm, but i recive it in mm import forallpeople as si si.environment('structural') cm =1e-2* si.m r=10*cm print(r.to('cm'))
@flocode_dev4 ай бұрын
Excellent work Connor! Pynite is an incredible tool and this is such a worthwhile endeavor. Leading the charge! 👍
@robbie_vanleeuwen4 ай бұрын
Congrats, amazed that you got this done in an hour with a few curveballs! Will hopefully review/merge later today!
@tekniksipil1234 ай бұрын
Is it still possible to joint the StructuralPython course?
@structuralpython4 ай бұрын
Not right now but there will be an opportunity to do so in Q4 2024
@tekniksipil1234 ай бұрын
how can I joint you mailing list? The line with this statement " from structuralpython.mailing_list import Engineer " does not work.
@robbie_vanleeuwen5 ай бұрын
This was a fun watch along - I think I might adopt your workflow re:branch naming & releases branches! Looking forward to the next one!
@stephanefotsing2945 ай бұрын
Please 🙏
@stephanefotsing2945 ай бұрын
Hello sir, please tell me how i can contact you
@cisnanchio9 ай бұрын
Ehi Connor, I'm binging your videos and they are awesome, thank you! About this video, why don't you use classes? Aren't they the best option?
@connorferster9 ай бұрын
I do use classes! That NamedTuple is certainly a class but it's a special kind of class that has properties that would tedious/difficult to program from scratch (immutability, indexability, and iterability). Those properties allow the NamedTuple to be converted into a numpy array effectively (also a class). Generally speaking, and I teach this in my course, I tend to use classes to represent structural elements whose capacity I want to calculate. When it comes to loading, I tend to use functions _unless_ I am in a scenario where it makes more sense to have data and functions combined together to achieve some purpose that would be difficult to do otherwise. An example of this is in my video about load distribution. The class "Singularity" that I created was the KEY to making that whole process work.
@leuyimbac2483 Жыл бұрын
How can i purchase you Python course?
@structuralpython Жыл бұрын
You can go to structuralpython.com; enrollment for January 2024 is now open.
@hazimmerghani66259 ай бұрын
Is it required a base knowledge in python to enter the course? @@structuralpython
@connorferster9 ай бұрын
@@hazimmerghani6625 Certainly not! The course assumes two things: 1) You have not programmed before 2) Because you are an engineer, your previous technical training has prepared you to learn other technical topics. So, you will "get it" faster than a non-engineer ;)
@loganturner9967 Жыл бұрын
Greatly appreciate these videos. I am curious if you have explored some machine learning applications? Is there a way to extract useful data from these reports with say, an OCR coupled with a convolution neural net for preprocessing? I am currently working in the construction field myself and have been interested in processing pdf's with python.
@structuralpython Жыл бұрын
I am sure there is a path there. I don’t have experience yet with machine learning. I suppose you would first want to train a model to recognize different types of documents, first. Once it has classified the document, then it could look up what data it needs to find in the document from, say, a dictionary.
@pyotr9912 Жыл бұрын
Thanks for this really helps me in my rcd plates
@pascalgitz8149 Жыл бұрын
Hey Connor, may I ask you what software you used to create the diagram in 06:02 ? I'm looking for a tool to create sketches to include in my calculations (Jupyter).
@structuralpython Жыл бұрын
I have been using tldraw.com! It is not super full-featured (my one wish is that would allow Ctrl-Click(drag) for creating a copy of a shape) but it is fast and convenient to use. The "sketchy" quality is a good cue that the drawing is not "precision quality".
@pascalgitz8149 Жыл бұрын
@@structuralpython Thanks alot! I like the style of it and it is definitly convenient to use. (and sorry, I could have figured it out myself by watching the video 'till the end :)) I have an additional question, what does your environment look like for your engineering: - What python packages do you use? - Is Jupyterlab Desktop your preferred IDE? - What extensions do you use in Jupyterlab? - Do you use different languages or is it pure python (Maybe R)?
@structuralpython Жыл бұрын
@@pascalgitz8149 In order: - You can find most of what I use in the "starter kit" for the PfSE course. You can install it all in one go using `pip install pfse_starterkit`. Find it on PyPI for more details. - JupyterLab Desktop is my preferred platform for "playing around and figuring it out". Once I have an idea of where I am going, I switch to VS Code. - Katex (in pfse_starterkit) - Pure Python