ecode
134 subscribers
48 photos
6 videos
7 files
42 links
This channel is for programming content and sharing useful resources.
Download Telegram
Channel photo removed
Channel photo updated
Forwarded from Tech Nerd (Tech Nerd)
This media is not supported in your browser
VIEW IN TELEGRAM
A lot of folks on X have been asking how I’m shipping every day… this is how I get ideas btw 👉👈

@selfmadecoder
1
Harvard University offers a ton of FREE online courses.
From Computer Science to Artificial Intelligence.
Here are 10 FREE courses you don't want to miss

1. Introduction to Computer Science
An introduction to the intellectual enterprises of computer science and the art of programming.
Check here 👇
https://pll.harvard.edu/course/cs50-introduction-computer-science?delta=0


2. Web Programming with Python and JavaScript
This course takes you deeply into the design and implementation of web apps with Python, JavaScript, and SQL using frameworks like Django, React, and Bootstrap.
Check here 👇
https://pll.harvard.edu/course/cs50s-web-programming-python-and-javascript?delta=0

3. Introduction to Programming with Scratch

A gentle introduction to programming that prepares you for subsequent courses in coding.
Check here 👇
https://pll.harvard.edu/course/cs50s-introduction-programming-scratch?delta=0

4. Introduction to Programming with Python
An introduction to programming using Python, a popular language for general-purpose programming, data science, web programming, and more.
Check here 👇
https://edx.org/course/cs50s-introduction-to-programming-with-python



5. Understanding Technology
This is CS50’s introduction to technology for students who don’t (yet!) consider themselves computer persons.
Check here 👇
https://pll.harvard.edu/course/cs50s-understanding-technology-0?delta=0

6. Introduction to Artificial Intelligence with Python
Learn to use machine learning in Python in this introductory course on artificial intelligence.
Check here 👇
https://pll.harvard.edu/course/cs50s-introduction-artificial-intelligence-python?delta=0


7. Introduction to Game Development
Learn about the development of 2D and 3D interactive games in this hands-on course, as you explore the design of games such as Super Mario Bros., Pokémon, Angry Birds, and more.
Check here 👇
https://pll.harvard.edu/course/cs50s-introduction-game-development?delta=0

8. CS50's Computer Science for Business Professionals
This is CS50’s introduction to computer science for business professionals.
Check here 👇
https://pll.harvard.edu/course/cs50s-computer-science-business-professionals-0?delta=0


9. Mobile App Development with React Native
Learn about mobile app development with React Native, a popular framework maintained by Facebook that enables cross-platform native apps using JavaScript without Java or Swift.
Check here 👇
https://pll.harvard.edu/course/cs50s-mobile-app-development-react-native?delta=0

10. Introduction to Data Science with Python
Join Harvard University instructor Pavlos Protopapas in this online course to learn how to use Python to harness and analyze data.
Check here 👇
https://pll.harvard.edu/course/introduction-data-science-python?delta=0
1
Artificial Neural Networks with Java - 2019.pdf
12.1 MB
Artificial Neural Networks with Java
Igor Livshin, 2019
1
Machine Learning in Microservices - 2023.pdf
12.4 MB
Machine Learning in Microservices
Mohamed Abouahmed, 2023
2👍1
BREAKING
2👍2
Just ....
👍41
Forwarded from EthioLink
Software Engineer
Company: Tholons Inc.

“Software Developer – Python & AI Agent Development (Entry-Level). We are seeking a highly skilled Python Developer specializing in AI agent architecture to drive immediate innovation. You will lead...

- Experience level: Entry-Level
Source: josad_software
#software #engineer #AI #Python #LinkedIn
👍4
Get 6 months of Claude Code for free 🚀

Anthropic has launched a limited offer where you can access Claude Max, worth $1200, at no cost.

You'll get:
6 months free access
Up to 20x higher usage limits
Faster responses
Access to the most advanced Claude models

Just fill out a simple form to get started 👇

https://claude.com/contact-sales/claude-for-oss
👍5
🛠 DAILY DEV COMMANDS CHEAT SHEET


# ============================================
# Start / Stop
# ============================================
docker compose up # Start all services (foreground)
docker compose up -d # Start in background
docker compose down # Stop all services
docker compose down -v # Stop + delete volumes (fresh DB)
docker compose restart web # Restart specific service

# ============================================
# Logs
# ============================================
docker compose logs -f web # Follow web logs
docker compose logs -f # Follow all logs
docker compose logs --tail 100 web # Last 100 lines

# ============================================
# Django Commands
# ============================================
docker compose exec web uv run python manage.py shell
docker compose exec web uv run python manage.py makemigrations
docker compose exec web uv run python manage.py migrate
docker compose exec web uv run python manage.py createsuperuser
docker compose exec web uv run python manage.py test

# ============================================
# Database
# ============================================
docker compose exec db psql -U postgres -d habsify_db
# Then: \dt (list tables), \q (quit)

# ============================================
# Container Shell
# ============================================
docker compose exec web bash # Get into web container
docker compose exec db bash # Get into postgres container

# ============================================
# Status
# ============================================
docker compose ps # See running containers
docker compose top # See processes in containers

# ============================================
# Clean Slate
# ============================================
docker compose down -v # Delete everything
docker system prune -a # Delete unused images/cache
👍2