Code It now – Telegram
Code It now
661 subscribers
312 photos
46 videos
60 files
617 links
CODE TILL I DIE

This is our discussion group https://news.1rj.ru/str/+xRx6N_FiYkVjMWJk

Anyone who wants to send a personal message to the admin can use this link https://AnoMessBot.t.me?start=MPC8wgk


Boost
https://news.1rj.ru/str/boost/code_it_now
Download Telegram
Forwarded from Google Developer Group AAU (Hira)
🚀 Join the GDG AAU Core Team! Registration Now Open! 🌟


The moment you’ve been waiting for has arrived—applications for the GDG AAU Core Team are officially open! This is your chance to dive into a world of innovation, collaboration, and impact.

Why Apply?

As a core team member, you’ll get to:
- 🌐 Join a network of tech enthusiasts and industry experts
- 💡 Host impactful workshops, hackathons, and events
- 📈 Build skills with hands-on projects and real-world experience

Choose the team you’d like to join and follow the respective link to apply:
Education Team
Event Team
Social Media Team
Technical Team
Marketing Team

Don’t miss the chance to shape your future and the tech community at AAU. Let’s create something extraordinary together! 🚀

Stay tuned for more updates on our social media!

· LinkedIn · Telegram · Facebook · Instagram · X · TikTok ·

#GDGAAU #TechCommunity #DeveloperJourney #JoinUs
👍1
That is why they voted him😘
#trump
#American
👍4👌1
life saver ....DJANGO🙈🙈🙈
💯2
Until it is done,
Tell none
🙌
💯4😇1
Forwarded from A2SV | Africa to Silicon Valley (A2SV)
Applications are Open for A2SV G6 Education!

The time has come for A2SV to welcome new members! We’re looking for team-oriented individuals with a never-give-up mentality, ready to drive tech excellence and solve impactful challenges.

📅 Application opens: November 14, 2024
📅 Deadline: November 20, 2024, at 11:59 PM EAT

🎓 Eligibility

Open to current students from Addis Ababa University (AAU), Addis Ababa Science and Technology University (AASTU), and Adama Science and Technology University (ASTU). If you're not from these schools or have already graduated, stay tuned for future remote applications!

🔍 Requirements

- Familiarity with at least one programming language
- Experience with platforms like LeetCode or Codeforces
- Completed at least 40 problems on LeetCode or Codeforces

🤖 Selection Process

- First Round Filtering: Initial application review
- Technical & Behavioral Interviews: For selected candidates, to assess skills and fit for the program

⌛️ Don’t wait! Start your application early to ensure a standout submission. 🎯

🔗 Apply now: link

#A2SV #TechEducation #EmpoweringAfrica #ApplyNow
Which one is hard??
Anonymous Poll
44%
Frontend
56%
Backend
People are making impact without degrees. The typical path isn't followed anymore
suitable Django Project Folder Structure:
myproject/

├── myproject/ # Project settings folder (this folder contains settings.py, urls.py, etc.)
│ ├── __init__.py
│ ├── settings.py # Main settings file for the project
│ ├── urls.py # URL routing for the entire project
│ ├── asgi.py # ASGI configuration (for asynchronous support)
│ └── wsgi.py # WSGI configuration (for synchronous support)

├── myapp/ # A Django app folder (you can have multiple apps)
│ ├── migrations/ # Database migration files
│ ├── __init__.py
│ ├── admin.py # Configuration for the Django admin interface
│ ├── apps.py # App configuration file
│ ├── models.py # App-specific database models
│ ├── tests.py # Tests for the app
│ ├── views.py # Views for handling requests and rendering templates
│ ├── urls.py # URL routing for this app
│ └── templates/ # Folder for app-specific templates
│ └── myapp/ # You can have a subfolder named after the app for better organization
│ └── index.html # Example template (e.g., for your "Add Numbers" form)

├── manage.py # Django's command-line utility for project management

├── db.sqlite3 # SQLite database file (if you're using SQLite)
├── static/ # Folder for static files (CSS, JS, images)
├── media/ # Folder for user-uploaded files
├── requirements.txt # A file that lists the dependencies for the project (e.g., Django)
└── .gitignore # Git ignore file for excluding unnecessary fil
nice night dev
🫡3
🎉 DevFest Addis 2024 is just around the corner! 🎉

Get ready for DevFest Addis 2024, where innovation, collaboration, and technology come together! Hosted by Google Developer Groups (GDGs), this global event brings developers and tech enthusiasts from all walks of life for a day packed with insightful sessions, hands-on workshops, and opportunities to connect with like-minded peers.

👉 Get RSVP here

🗓 Saturday, November 30, 2024
10:00 AM – 4:00 PM (GMT+3)


📍 ALX Balcha Hospital Liberia Streets Addis Ababa, 1000

🚀Don’t miss out on this exciting journey at DevFest Addis 2024!
PBKDF2

PBKDF2 is a simple cryptographic key derivation function, which is resistant to dictionary attacks and rainbow table attacks. It is based on iteratively deriving HMAC many times with some padding. The PBKDF2 algorithm is described in the Internet standard RFC 2898 (PKCS #5).

PBKDF2 takes several input parameters and produces the derived key as output:

key = pbkdf2(password, salt, iterations-count, hash-function, derived-key-len)
Technically, the input data for PBKDF2 consists of:

password – array of bytes / string, e.g. "p@$Sw0rD~3" (8-10 chars minimal length is recommended)

salt – securely-generated random bytes, e.g. "df1f2d3f4d77ac66e9c5a6c3d8f921b6" (minimum 64 bits, 128 bits is recommended)

iterations-count, e.g. 1024 iterations

hash-function for calculating HMAC, e.g. SHA256

derived-key-len for the output, e.g. 32 bytes (256 bits)

The output data is the derived key of requested length (e.g. 256 bits).

@code_it_now
👍1🙏1