GitHub approved my complimentary professional account! I of course, am not a professional programmer (yet), but it brings me joy just the same.
Happy Coding!
In February of 2018, I was denied admission to a Ph.D. program in Linguistics. As I was navigating the application process, I simultaneously revisited a dormant interest in computer science. In March I enrolled in a certified Computer Science class via HarvardX, which I completed four months later. I am at the beginning of a new phase in my life-long learning process and look forward to that which the future will inevitably deliver.
Friday, March 29, 2019
Monday, March 25, 2019
SQL Documentation (From the Khan Academy)
SQL development
If you're new to SQL, you can learn more from this course: SQL.
Creating tables
- CREATE TABLE customers (id INTEGER PRIMARY KEY, name TEXT, age INTEGER, weight REAL);
- CREATE TABLE customers (id INTEGER PRIMARY KEY, age INTEGER);
See also: specifying defaults, using foreign keys. For more details, see the following: SQLite reference for CREATE.
Sunday, March 24, 2019
Intro to SQL: Querying and managing data
I'm so happy to be learning computer programming. The process is invigorating! I started the Khan Academy courses over Spring Break and managed to complete Intro to JS: Drawing & Animation in about 81 hours. I began the evening by finishing course 2 in the series (Intro to HTML/CSS: Making webpages), and finished it a few hours ago. Oh, and a pleasant bit of good news; GitHub approved my free Pro account! Thanks GitHub!!!
Wednesday, March 20, 2019
HTML Review via the Khan Academy
Web development
HTML
Web development
CSS Selectors
- h1 {
color: rgb(0,0,0);
} - ul em {
color: rgb(0,0,0);
} - .stripe {
color: rgb(0,0,0);
} - #star {
color: rgb(0,0,0);
}
For more CSS selectors, see also: MDN CSS selectors reference
Saturday, March 16, 2019
ProcessingJS Functions
ProcessingJS
Shapes
See also:
ellipseMode
, rectMode
, imageMode
, strokeCap
, bezierPoint
, bezierTangent
, curve
, curvePoint
, curveTangent
, curveTightness
(keep reading...)
Friday, March 15, 2019
Developing Front End Development
I’ve invested hundreds of hours into online course programs,
and have thus curated a specific subset that aligns well with my current goals.
One or more of the URLs inevitably link to a site that wants money every month,
however, this can be subverted via “free trial” offers.
(No particular order)
Tuesday, March 12, 2019
Codecademy JavaScript Functions and CSS ( a review)
Review Functions
Give yourself a pat on the back, you just navigated through functions!
In this lesson, we covered some important concepts about functions:
- A function is a reusable block of code that groups together a sequence of statements to perform a specific task.
- A function declaration :
Sunday, March 10, 2019
After a Full Day of Coding
Nine hours later, I am happy to have produced a couple of products. One is a very basic mock form for ordering food delivery online. The other is a shopping list that allows one to add and remove items.
More importantly than what I have produced today is what I have learned.
I think I'll brew some more coffee and settle in for another few hours.
Form - Version 1.0 | Form - Version 2.0 |
---|---|
Grocery List Login Screen | Add/Remove Items to List |
---|---|
Subscribe to:
Posts (Atom)
SQL
I've hit a wall in my SQL studies via the Khan Academy, and as such, I am engaging in additional studies prior to attempting to move for...
-
I'm studying intermediate programming in Python and the DataCamp course I'm taking is using Google Sheets. All of the following info...
-
I found an amazing tutorial for writing a brick breaking style game in Java. I walked through the video, typing all of the code, and was ab...