Coding Journal

My journey to become a Full Stack Developer

cover image

How to create a popup box part 1

June 12, 2020, 3:30 p.m.

Recently I have built a small pop up box that can be used as a contact form. I created it using HTML, CSS and a bit of JavaScript.  

You …

Read More
cover image

Bubble Sort Algorithm

June 2, 2020, 8:34 p.m.

What is the bubble sort algorithm?

The Bubble Sort Algorithm is one of the ways to sort an array in order. 
It is a very inefficient method, but as …

Read More
cover image

My goals for June

June 1, 2020, 8:47 p.m.

Me and planning.

I'm not good at planning and even worse at sticking to my plans. There are too many ideas and resources. I'm trying to fulfil my general goal …

Read More
cover image

The task: 

There are two strings a and b; the task is to return the characters that are not common in the two strings. 

The solution. 

Let's start with talking …

Read More
cover image

Since I started learning more JavaScript I stopped using Python and now I can observe how much I've forgotten so far. I want to know and be more fluent in …

Read More
cover image

First tests in my Django app

Aug. 4, 2019, 7:33 p.m.

When I started creating the blog app I knew nothing about testing. But as I started learning testing  I decided to add tests to the app gradually. So now, writing …

Read More
cover image

In this post I'm still writing about html files in Django. 

Plan:

1. Adding links between Home and About pages 

2. Creating detail_page.html and _comments.html 

 

1. Adding links between …

Read More
cover image

First part of Django blog tutorial: How to start a Django project.

Second part of Django blog tutorial: First views in my Django blog …

Read More
cover image

First views in my Django blog project

July 2, 2019, 11:49 a.m.

Last time I wrote how I had created a virtual environment and started a Django project called website. Then I also started an app called blog.

To continue building …

Read More
cover image

How to start a Django project

June 16, 2019, 10:02 a.m.

One thing is to read and understand (more or less) what you are doing / coding, and the other thing is to tell about it to another person …

Read More