#python job
Explore tagged Tumblr posts
codersamerica · 1 year ago
Text
Simplified Flask Development: A Quick TDD Guide
Flask, a lightweight and flexible Python web framework, has gained immense popularity due to its ease of use and scalability. But how do you ensure the long-term quality and maintainability of your Flask applications?
Tumblr media
1 note · View note
my-name-is-apollo · 7 months ago
Text
I'm a sucker for anything related to the childhood of Artemis - Apollo, so imagine my joy when I saw these 18-19th century gems depicting the babies & their mama!!
Tumblr media
Leto seated under a palm tree, with her infants Artemis and Apollo
Tumblr media
The infant Apollo nursed by the nymphs
Tumblr media
Themis feeding nectar to young Apollo
Tumblr media
Leto and her twins in the presence of Poseidon
Tumblr media
Leto punishing the Lycian peasants by turning them into frogs
Tumblr media
Leto and her children fleeing from Python
Tumblr media
Tityus pursuing Leto
190 notes · View notes
relaxedstyles · 9 months ago
Text
Tumblr media
89 notes · View notes
ryehickman · 11 months ago
Text
Tumblr media Tumblr media Tumblr media
Happy friday! here's some recent noodlings
67 notes · View notes
rigelmejo · 7 months ago
Text
learning to code!
When I was 9 years old, I learned enough html to code neopets pages, my own geocities websites, and I even made forums on my own sites so my friends could all roleplay together or rant together lol. And then? I forgot so much. I no longer no how to make a forum, or even a 'next page' button - so even the dream of just making a simple blog or webnovel site feels like a huge hurdle now. (9 year old me could probably figure it out in 2 hours).
So I'm relearning! I figured this would be a fun post to place resources I find for coding, since there's coding languages, and I figure maybe if you like running you're blog then you also might be interested in tools for making blogs!
First, for those of you who miss the old geocities and angelfire type of sites to make your own free site on: neocities.org
You can make free sites you can code yourself, the way 9 year old me did. A lot of people have made SUCH amazing sites, it's baffling my mind trying to figure out how they did, I definitely wish I could make an art portfolio site even a fourth as cool as some of the sites people have made on here.
And for those pressed for time, who aren't about to learn coding right now: wix.com is the place I recommend for building a site, it requires no coding skill and is fairly straightforward about adding pages or features by clicking buttons. I used it to make my art portfolio site, I am testing out using it for my webnovel - the alternative is Wordpress, but wix.com is letting me basically make a wordpress blog Inside my own site. It's very beginner friendly in terms of "how the fuck do I set up a 'sign up for updates' message and have my site actually email these people my novel updates?" and "I need a 4x20 grid of my art down the page, that lets people click the art to see it's information and make it bigger."
I did neocities.org's little html tutorial today, it's the part of html I DID remember (links, paragraphs, headers).
My next step is to go through htmldog.com's tutorials. They go from beginner, to intermediate, to CSS. Unlike many a coding tutorial I've seen, they explain what program on your computer you need to WRITE the code in and then how to save it and how to open it. (You'd think this isn't a big deal but I've been looking into how to learn Python for months and I can't find a tutorial explaining what fucking program to write my python in... notepad? do I need something else? I don't fucking know!! My dad finally gave me a printed textbook which supposedly tells you what to download to start... I learned C++ in college and for that you needed Visual Basic to code C++, so I figured I needed Something to Write the fucking python IN.)
36 notes · View notes
mozart-the-meerkitten · 5 months ago
Text
My favorite insults, for jerks on youtube no particular reason:
"May all your bacon burn." - Calcifer, Howl's Moving Castle
"You daffy English kkkkkniguts!" - French guard, Monty Python and the Holy Grail
"Your mother bakes mediocre pies!" Peet, The Wingfeather Saga tv show
And, of course, "Your mother was a hamster and your father smelt of elderberries!" - French guard, Monty Python and the Holy Grail
(I also like to yell them at bad drivers :)
46 notes · View notes
yonderghostshistories · 2 months ago
Text
Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media Tumblr media
Graham Chapman as Arthur Harris
in
The Odd Job (1978) (directed by Péter Medák)
(btw I don’t own the GIFs themselves, but my lovely friend managed to find the GIFs that I’ve been trying to look for (as I unfortunately couldn’t find the og post where the GIFs were from), and my lovely friend kindly sent them to me, to which I thank them so much for that frfr <33. Also cuz I need to spread some TOJ awareness to people who haven’t seen nor heard of the film too! Also also cuz these GIFs go so hard frfr imo 😎😎💯💯. Hope y’all enjoy this very lovely TOJ GIFset!)
20 notes · View notes
nixcraft · 11 months ago
Text
How to Become a Farmer 🧑‍🌾
00. Learn Python 01. Write code day and night 02. Become a senior developer 03. Burn out solving problems 04. Finally had enough of this. Quit. 05. Become a farmer. Work with trees and animals and grow crops.
46 notes · View notes
big-low-t · 21 days ago
Text
There Are Some Who Call Me...
.
I'm not dead yet
Feels like I will be soon
What once was just a fleshwound
Is infected and soon to be septic
No huge tracts of land
Will find their way to me
I'm not smart enough to run away
So go ahead and taunt me yet again
There's no mighty quest before me
You'll fail trying to find my grail
A better chance of catching anthrax
Than finding a castle to call my own
There's no shrubbery outside my home
It's the nights that slay me
Sorry, I don't do any enchanting
No matter what my fucking name is
.
10 notes · View notes
Text
got a job interview in 45 minutes so i have 45 minutes to remember what a computer is and not try to tell the interviewers about el desperado
5 notes · View notes
kite33 · 3 months ago
Text
the cool thing about linux is that you get to stare at the update manager for 30 years every time you turn the computer on
5 notes · View notes
mindmapdaily · 28 days ago
Text
Python Bitwise Operators
Bitwise operators in Python work directly with binary numbers (0s and 1s), which are how computers understand data. They are useful when you want to perform fast and efficient calculations, especially in programming tasks like encryption, compression, or low-level data handling. Instead of dealing with full numbers, these operators compare individual bits of those numbers. Learning them can help you write better-performing code.
Tumblr media
Important Bitwise Operators in Python
AND (&) – Compares bits of two numbers and gives 1 only if both bits are 1. Otherwise, it gives 0.
OR (|) – Returns 1 if at least one of the compared bits is 1. It gives 0 only if both bits are 0.
XOR (^) – Gives 1 when the two bits are different. If they are the same, the result is 0.
NOT (~) – Flips every bit in a number. 0 becomes 1, and 1 becomes 0, effectively turning the number negative.
Left Shift (<<) – Moves bits to the left, which is like multiplying the number by 2 for every shift.
Right Shift (>>) – Moves bits to the right, which works like dividing the number by 2 for every shift.
For more detailed information, you can visit the original article: Python Bitwise Operators | PrepInsta.
3 notes · View notes
yonderghostshistories · 2 months ago
Text
Someday I’m gonna try to record the full version of “The Odd Job” (1978) starring Graham Chapman and put it (the recorded version I mean) onto a google drive so people can access it and watch it for free
Someday….
7 notes · View notes
chapmanzz · 9 months ago
Text
Graham Chapman and Diana Quick!!
(WHY IS GRAY SO CUTE HERE LIKE I CAAAAN'T 😭😭)
Tumblr media
14 notes · View notes
masquenoire · 9 months ago
Text
Tumblr media
Barring any new asks, I think that's the last of those 'icons only' memes and it was very fun doing them all! Thank you so much for sending them in everyone, I'm feeling more confident about activity again and will hopefully be inspired to write a bit more often from now on providing schedule eases up sometime soon!
10 notes · View notes
digitaldetoxworld · 23 days ago
Text
Python Programming Language: A Comprehensive Guide
 Python is one of the maximum widely used and hastily growing programming languages within the world. Known for its simplicity, versatility, and great ecosystem, Python has become the cross-to desire for beginners, professionals, and organizations across industries.
What is Python used for
Tumblr media
🐍 What is Python?
Python is a excessive-stage, interpreted, fashionable-purpose programming language.  The language emphasizes clarity, concise syntax, and code simplicity, making it an excellent device for the whole lot from web development to synthetic intelligence.
Its syntax is designed to be readable and easy, regularly described as being near the English language. This ease of information has led Python to be adopted no longer simplest through programmers but also by way of scientists, mathematicians, and analysts who may not have a formal heritage in software engineering.
📜 Brief History of Python
Late Nineteen Eighties: Guido van Rossum starts work on Python as a hobby task.
1991: Python zero.9.0 is released, presenting classes, functions, and exception managing.
2000: Python 2.Zero is launched, introducing capabilities like list comprehensions and rubbish collection.
2008: Python 3.Zero is launched with considerable upgrades but breaks backward compatibility.
2024: Python three.12 is the modern day strong model, enhancing performance and typing support.
⭐ Key Features of Python
Easy to Learn and Use:
Python's syntax is simple and similar to English, making it a high-quality first programming language.
Interpreted Language:
Python isn't always compiled into device code; it's far done line by using line the usage of an interpreter, which makes debugging less complicated.
Cross-Platform:
Python code runs on Windows, macOS, Linux, and even cell devices and embedded structures.
Dynamic Typing:
Variables don’t require explicit type declarations; types are decided at runtime.
Object-Oriented and Functional:
Python helps each item-orientated programming (OOP) and practical programming paradigms.
Extensive Standard Library:
Python includes a rich set of built-in modules for string operations, report I/O, databases, networking, and more.
Huge Ecosystem of Libraries:
From data technological know-how to net development, Python's atmosphere consists of thousands of programs like NumPy, pandas, TensorFlow, Flask, Django, and many greater.
📌 Basic Python Syntax
Here's an instance of a easy Python program:
python
Copy
Edit
def greet(call):
    print(f"Hello, call!")
greet("Alice")
Output:
Copy
Edit
Hello, Alice!
Key Syntax Elements:
Indentation is used to define blocks (no curly braces  like in different languages).
Variables are declared via task: x = 5
Comments use #:
# This is a remark
Print Function:
print("Hello")
📊 Python Data Types
Python has several built-in data kinds:
Numeric: int, go with the flow, complicated
Text: str
Boolean: bool (True, False)
Sequence: listing, tuple, range
Mapping: dict
Set Types: set, frozenset
Example:
python
Copy
Edit
age = 25             # int
name = "John"        # str
top = 5.Nine         # drift
is_student = True    # bool
colors = ["red", "green", "blue"]  # listing
🔁 Control Structures
Conditional Statements:
python
Copy
Edit
if age > 18:
    print("Adult")
elif age == 18:
    print("Just became an person")
else:
    print("Minor")
Loops:
python
Copy
Edit
for color in hues:
    print(coloration)
while age < 30:
    age += 1
🔧 Functions and Modules
Defining a Function:
python
Copy
Edit
def upload(a, b):
    return a + b
Importing a Module:
python
Copy
Edit
import math
print(math.Sqrt(sixteen))  # Output: four.0
🗂️ Object-Oriented Programming (OOP)
Python supports OOP functions such as lessons, inheritance, and encapsulation.
Python
Copy
Edit
elegance Animal:
    def __init__(self, call):
        self.Call = name
def communicate(self):
        print(f"self.Call makes a valid")
dog = Animal("Dog")
dog.Speak()  # Output: Dog makes a legitimate
🧠 Applications of Python
Python is used in nearly each area of era:
1. Web Development
Frameworks like Django, Flask, and FastAPI make Python fantastic for building scalable web programs.
2. Data Science & Analytics
Libraries like pandas, NumPy, and Matplotlib permit for data manipulation, evaluation, and visualization.
Three. Machine Learning & AI
Python is the dominant language for AI, way to TensorFlow, PyTorch, scikit-research, and Keras.
4. Automation & Scripting
Python is extensively used for automating tasks like file managing, device tracking, and data scraping.
Five. Game Development
Frameworks like Pygame allow builders to build simple 2D games.
6. Desktop Applications
With libraries like Tkinter and PyQt, Python may be used to create cross-platform computing device apps.
7. Cybersecurity
Python is often used to write security equipment, penetration trying out scripts, and make the most development.
📚 Popular Python Libraries
NumPy: Numerical computing
pandas: Data analysis
Matplotlib / Seaborn: Visualization
scikit-study: Machine mastering
BeautifulSoup / Scrapy: Web scraping
Flask / Django: Web frameworks
OpenCV: Image processing
PyTorch / TensorFlow: Deep mastering
SQLAlchemy: Database ORM
💻 Python Tools and IDEs
Popular environments and tools for writing Python code encompass:
PyCharm: Full-featured Python IDE.
VS Code: Lightweight and extensible editor.
Jupyter Notebook: Interactive environment for statistics technological know-how and studies.
IDLE: Python’s default editor.
🔐 Strengths of Python
Easy to study and write
Large community and wealthy documentation
Extensive 0.33-birthday celebration libraries
Strong support for clinical computing and AI
Cross-platform compatibility
⚠️ Limitations of Python
Slower than compiled languages like C/C++
Not perfect for mobile app improvement
High memory usage in massive-scale packages
GIL (Global Interpreter Lock) restricts genuine multithreading in CPython
🧭 Learning Path for Python Beginners
Learn variables, facts types, and control glide.
Practice features and loops.
Understand modules and report coping with.
Explore OOP concepts.
Work on small initiatives (e.G., calculator, to-do app).
Dive into unique areas like statistics technological know-how, automation, or web development.
2 notes · View notes