#coding programming courses
Explore tagged Tumblr posts
aphacoding Ā· 5 months ago
Text
Engaging Coding Classes for Kids ā€“ Learn Programming with Alpha Coding
Tumblr media
Introduce your child to the world of technology with Alpha Codingā€™s interactive coding classes for kids. Our courses are designed to make learning programming fun and accessible, using engaging projects, games, and challenges. Whether your child is a complete beginner or has some coding experience, our step-by-step curriculum helps them build essential programming skills in languages like Scratch, Python, and JavaScript. Start your childā€™s journey in coding today and watch them develop problem-solving abilities, creativity, and critical thinking skills ā€“ all while having fun!
Enroll today and give your child the skills to succeed in the digital world!
Website: https://alphacoding.com/
Email Us On- [email protected]
Contact- +1 647-559-2311
Address- 5000 Yonge Street, Suite 1901, Toronto, M2N 7E9
1 note Ā· View note
alphacoding Ā· 7 months ago
Text
Tumblr media
Top Coding & Programming Courses | Learn to Code Online
Ā Explore comprehensive coding and programming courses to master languages like Python, Java, C++, and more. Whether you're a beginner or an advanced coder, these courses offer hands-on projects, expert guidance, and flexible learning paths to help you succeed. Start your journey with top-rated programming courses and build your coding skills today!
0 notes
izicodes Ā· 2 years ago
Text
Massive List of Thousands of Free Certificates and Badges | Resources āœØ
Tumblr media
Did I share this already? Doesn't hurt to share this again hehe but oh my goodness me! šŸ˜–šŸ’— Huge huge list of free certificates you can look at and see ones you want to do!
Certificates from Google, LinkedIn Learning, Microsoft, Harvard, Standford, Open University, FreeCodeCamp, Digital Marketing and FutureLearn and more! [LINK]
Link to the full list: LINK
1K notes Ā· View notes
cosmogyros Ā· 21 days ago
Text
That moment when you have to let people be wrong about you because correcting them would make you seem like an unbearable show-off
I was at a bookstore with a friend the other day and I was looking at a book in German that I was interested in buying, but then I saw that it was a translation and had originally been written in French
I commented idly to my friend "Sometimes I don't buy a book because it's a translation and I always prefer to read in the original language when possible" and she said in an agreeing-with-me way, "Yeah it would make more sense to read it in English"
and I realized she assumed I meant English when I said "original language"
but I couldn't bring myself to say "Yeah, or French or Dutch or Spanish or Italian or Portuguese or one of the other languages I read..." because like. who says that kind of thing.
#it's odd but i've suddenly been noticing a lot of people underestimating me lately#like i told a friend i was studying compsci/programming#and she started sending me like... links to absolute beginner 'how to start learning to code' resources#which of course is very sweet and i really appreciate her supportiveness!#so i certainly don't want to say 'lol i passed that point 10 years ago but thanks'#or my friends know perfectly well that i'm a language professional and have spent time studying many languages#but somehow they don't seem to make the connection that that translates into having actual abilities?#like i can piece together the meaning of a sentence in russian or chinese and they'll go 'wtf' like i'm a wizard or something#or i've mentioned a few times that i read for fun in various languages but that seems to just go in one ear and out the other for most folk#and they still can't conceive that i would read a WHOLE BOOK in a language that's not german or english#these are just two examples but i've seen it happen with several other things too#and i'm just... not sure how normal people handle this sort of thing?#how do you let your friends know what you're capable of without coming across as an arrogant prick#i'm not seeking approbation and so i don't tend to boast#but i think maybe i err too hard in the opposite direction?#maybe i've been accidentally implying all these years that i'm Very Amateur in all my interests/hobbies#i don't know how to strike a reasonable balance#but it does feel kind of. weirdly alienating. to suddenly realize most of my friends really don't Know me in this way#cosmo gyres#personal#tag rant#i guess what annoys me is that i'm very careful not to do this to others#if someone tells me about a certain interest or hobby of theirs i assume by default that they must know So Much about it#and if i dare to send them or suggest them anything i always preface it with 'you probably already know this but...'#or 'this may well be something that's painfully obvious to someone with your expertise but...'#and i would try to never make any statement or suggestion that implies i think they're at a low level in [whatever that thing is]#so it bothers me a bit when other people don't take the same consideration. i guess.#(not enough to do anything about it beyond blogging with mild annoyance. but hey)
15 notes Ā· View notes
wildglitch Ā· 3 months ago
Text
Today I made a terrible decision!
I've decided to dedicate this summer (At least my nights) to learning coding.
This is a bad idea, wish me luck.
16 notes Ā· View notes
stkptr Ā· 27 days ago
Text
A lot of people call making (mostly static) websites "coding" and fair enough honestly. But it always seems kind of weird to me. When I think of programming I think of the beauty in structure and natural abstractions that you design to communicate ideas, often based on mathematical truths. Meanwhile web development is pure hell, nothing works ever. If it's working then you forgot to test on some browser version that every one of your friends is using for some unknown cosmic reason. It's all opaque and nothing makes sense, there's no beauty, only ire. It only gets worse the deeper into "real" programming you go (Javascript etc.).
11 notes Ā· View notes
codingquill Ā· 2 years ago
Text
SQL Fundamentals #1: SQL Data Definition
Last year in college , I had the opportunity to dive deep into SQL. The course was made even more exciting by an amazing instructor . Fast forward to today, and I regularly use SQL in my backend development work with PHP. Today, I felt the need to refresh my SQL knowledge a bit, and that's why I've put together three posts aimed at helping beginners grasp the fundamentals of SQL.
Understanding Relational Databases
Let's Begin with the Basics: What Is a Database?
Simply put, a database is like a digital warehouse where you store large amounts of data. When you work on projects that involve data, you need a place to keep that data organized and accessible, and that's where databases come into play.
Exploring Different Types of Databases
When it comes to databases, there are two primary types to consider: relational and non-relational.
Relational Databases: Structured Like Tables
Think of a relational database as a collection of neatly organized tables, somewhat like rows and columns in an Excel spreadsheet. Each table represents a specific type of information, and these tables are interconnected through shared attributes. It's similar to a well-organized library catalog where you can find books by author, title, or genre.
Key Points:
Tables with rows and columns.
Data is neatly structured, much like a library catalog.
You use a structured query language (SQL) to interact with it.
Ideal for handling structured data with complex relationships.
Non-Relational Databases: Flexibility in Containers
Now, imagine a non-relational database as a collection of flexible containers, more like bins or boxes. Each container holds data, but they don't have to adhere to a fixed format. It's like managing a diverse collection of items in various boxes without strict rules. This flexibility is incredibly useful when dealing with unstructured or rapidly changing data, like social media posts or sensor readings.
Key Points:
Data can be stored in diverse formats.
There's no rigid structure; adaptability is the name of the game.
Non-relational databases (often called NoSQL databases) are commonly used.
Ideal for handling unstructured or dynamic data.
Now, Let's Dive into SQL:
Tumblr media
SQL is a :
Data Definition language ( what todays post is all about )
Data Manipulation language
Data Query language
Task: Building and Interacting with a Bookstore Database
Setting Up the Database
Our first step in creating a bookstore database is to establish it. You can achieve this with a straightforward SQL command:
CREATE DATABASE bookstoreDB;
SQL Data Definition
As the name suggests, this step is all about defining your tables. By the end of this phase, your database and the tables within it are created and ready for action.
Tumblr media
1 - Introducing the 'Books' Table
A bookstore is all about its collection of books, so our 'bookstoreDB' needs a place to store them. We'll call this place the 'books' table. Here's how you create it:
CREATE TABLE books ( -- Don't worry, we'll fill this in soon! );
Now, each book has its own set of unique details, including titles, authors, genres, publication years, and prices. These details will become the columns in our 'books' table, ensuring that every book can be fully described.
Now that we have the plan, let's create our 'books' table with all these attributes:
CREATE TABLE books ( title VARCHAR(40), author VARCHAR(40), genre VARCHAR(40), publishedYear DATE, price INT(10) );
With this structure in place, our bookstore database is ready to house a world of books.
2 - Making Changes to the Table
Sometimes, you might need to modify a table you've created in your database. Whether it's correcting an error during table creation, renaming the table, or adding/removing columns, these changes are made using the 'ALTER TABLE' command.
For instance, if you want to rename your 'books' table:
ALTER TABLE books RENAME TO books_table;
If you want to add a new column:
ALTER TABLE books ADD COLUMN description VARCHAR(100);
Or, if you need to delete a column:
ALTER TABLE books DROP COLUMN title;
3 - Dropping the Table
Finally, if you ever want to remove a table you've created in your database, you can do so using the 'DROP TABLE' command:
DROP TABLE books;
To keep this post concise, our next post will delve into the second step, which involves data manipulation. Once our bookstore database is up and running with its tables, we'll explore how to modify and enrich it with new information and data. Stay tuned ...
Part2
111 notes Ā· View notes
drawbudd Ā· 10 months ago
Text
youtuber, covering a horror ARG: this game was developed by just one indie developer-
Me ever since I've been trying to make a game: Ohh my god,,, this was made by,,,, just one personnn,, , ,
13 notes Ā· View notes
ihavenomoralsss Ā· 7 months ago
Text
Python is such a cool name for something thatā€™s actually terrible and mean
9 notes Ā· View notes
codingcorgi Ā· 1 year ago
Text
Tumblr media Tumblr media Tumblr media Tumblr media
Days 110 to 118 of coding everyday for a year and I've gotten so much done!
I finish both of my finals the C++ and the C#. The C++ final is an adventure game and it wasn't too challenging to make honestly I had fun with it. The C# project was also fun because I got to play with microcharts when creating the statistics page to display collected data! I plan to make the C++ game more fun honestly because I can't just let it die from here. I am going to make the Android and iOS build better on the C# project. I'm really proud of myself today :)
My next adventures will be brushing up on JavaScript since I'm severely out of practice and using what I know to make my portfolio website using Blazor!
17 notes Ā· View notes
why-the-heck-not Ā· 1 year ago
Text
what the fuck, I miss math courses?? why??? theyā€™re always a misery, why do I crave misery ???
40 notes Ā· View notes
nylogutz Ā· 11 months ago
Text
Python coding tips (visual novel)
I need help with visual novel coding in ren'py, its so confusing aaaaa
10 notes Ā· View notes
orcelito Ā· 18 days ago
Text
Got jumpscared by my own full legal name showing up in my email notifications bc I forgot I emailed my code to myself today just in case my VM ends up stopping working again (I got nervous & didn't wanna lose my progress lol)
Goldfish level memory retention
& the funny thing is that the email itself is just. This
Tumblr media
Full Legal Name code ā€¢ hi
#speculation nation#title 'code' email is just 'hi'. with the .c file attached of course#honestly i had a very productive day in lab today. i got the core structure of the program down and made sure it all worked#testing it with One of the sorting algorithms. and it worked!!#the lab is to code functions for different kinds of sorts. like bubble sort selection sort and uhh. some other shit idr rn#and have the functions take timestamps from before and after they run the sorts to calculate the elapsed time#and we have to run this for array sizes of like. 10 50 500 etc etc up to like 50000 or smth? if i remember right.#and then once all that's done we take the output and graph the time elapsed for each type of sort/search per array sizes#so today at lab i made the random array generator function. a swap function. the execution function. bubble sort. and main.#main calls the execution function passing in the array sizes. execution(10); execution(50); etc#execution defines the array of that size. then calls the random number generator to populate the array. then passes it to the sort functions#tested with my one bubble sort function. which finished in like 0.00003 seconds or smth for array size 10#BUT taking the time stamps was tricky. there are a lot of ways to do that. and time(); in c is in full seconds#i ended up asking the TA if he had a recommendation for what to use bc theres a LOT of time functions out there#and full seconds isnt precise enough for this purpose. & he recommended clock()!!#records number of clock ticks which is NOT the same as seconds. but when u divide it by uh. forgetting it rn but it's a constant#that will turn it into actual seconds. clock tics per sec?? smth like that.#so anyways very productive šŸ‘ i just need to set main up to call execution function for all the different array sizes#and then write all the functions for the different sorts/searches. but i have the core structure down with the bubble sort function#(specifically with the time stamps and the print function after) that i will copy-paste for all the other functions#and then inside them i put the basic code. none of it's complicated. all can be found on the internet easy.#SO!!!!! honestly i think itd take me less than an hour to finish. tho plotting out that graph is going to be annoying#something like 6 sizes per 5 sort/search functions. painstakingly copy pasting each one into excel or smth lol#but yea im content with how much ive gotten done. yippee!!!!#now i just need to finish my web programming lab before sunday night. blehhhhh
2 notes Ā· View notes
brainynbright Ā· 29 days ago
Text
Experience an Unforgettable Summer Camp in Abu Dhabi with Brainy n Bright
Brainy n Bright is excited to announce its upcoming Summer Camp in Abu Dhabi, offering a unique blend of education and entertainment for children aged 5 to 16. This camp is designed to ignite creativity and foster a love for STEM subjects through a variety of engaging activities.
Tumblr media
Why Choose Brainy n Bright's Summer Camp?
STEM-Focused Curriculum: Our programs are meticulously crafted to challenge and engage students, enhancing their skills in science, technology, engineering, and mathematics.
Experienced Instructors: Our team comprises qualified professionals dedicated to providing a high-quality learning experience.
Interactive Learning Environment: We encourage active participation, ensuring that students are fully engaged in the learning process.
State-of-the-Art Facilities: Our camps are equipped with the latest technology and equipment, providing an optimal learning environment.
Fun and Engaging Activities: Beyond academics, we offer activities that promote socialization, teamwork, and fun, ensuring a well-rounded experience.
Activities Offered:
Young Innovator: Tailored for younger participants, focusing on foundational STEM concepts.
Tech Innovator: Introduces advanced technological concepts and applications.
Industrial AI Robotics: Explores the intersection of artificial intelligence and robotics in industrial settings.
Creative Junior & Senior: Encourages artistic expression through technology.
Game Development Junior & Senior: Guides students through the process of designing and developing their games.
STEM Junior & Senior: Comprehensive programs covering various STEM fields.
Advantages of Our Summer Camp:
Hands-On Learning: Our curriculum emphasizes practical experiences that promote critical thinking, problem-solving, and creativity.
Up-to-Date Curriculum: We continuously update our programs to reflect the latest advancements in STEM fields.
Collaborative Environment: Students are encouraged to work together, fostering teamwork and the exchange of ideas.
Real-World Relevance: Our activities are designed to have practical applications, helping students connect classroom learning to everyday life.
Expert Instructors: Our team consists of highly skilled professionals specializing in various STEM subjects.
Enroll your child in Brainy n Bright's Summer Camp in Abu Dhabi for an enriching and enjoyable summer experience that combines learning with fun.
2 notes Ā· View notes
small-basic-programming Ā· 1 month ago
Text
Small Basic meets Python - #30 Sorting ...
youtube
Post #244: YouTube, Socratica, Python Tutorial, #30 Sorting in Python, 2025.
3 notes Ā· View notes
rohinicomputercourses Ā· 2 months ago
Text
This blog will outline the main advantages of acquiring simple computer skills and explain how they might assist you in life both personally and professionally if you are asking yourself.
2 notes Ā· View notes