Skip to content

Instantly share code, notes, and snippets.

View nakimera's full-sized avatar
👩‍💻
Working remotely

Prossy Nakimera nakimera

👩‍💻
Working remotely
View GitHub Profile
@nakimera
nakimera / ch1-start-code-this-layout-with-flexbox-and-grid.markdown
Created February 17, 2020 11:57
Ch1 Start: Code this layout with Flexbox and Grid
<body>
<div>1</div>
<div>2</div>
<div>3</div>
<div>4</div>
<div>5</div>
</body
@nakimera
nakimera / company.css
Created April 8, 2019 12:00
This is the finished CSS file for my blogpost https://medium.com/p/dcaa1323bec2/edit on responsiveness using Flexbox
body {
margin: 0;
font-family: "Hind Madurai", sans-serif;
}
body > div {
min-height: 30vh;
min-width: 100%;
display: flex;
align-items: center;
@nakimera
nakimera / company.html
Last active April 8, 2019 11:59
This is the finished html file for my blogpost https://medium.com/p/dcaa1323bec2/edit on responsiveness using Flexbox
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Document</title>
<link rel="stylesheet" href="index.css" />
<link
rel="stylesheet"
@nakimera
nakimera / index.html
Last active March 16, 2019 13:12
This gist contains the index.html content for my medium blog post about Introduction to CSS
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
@nakimera
nakimera / test_create_article.py
Created September 18, 2018 12:21
This code tests creation of an article on Author's heaven
from django.test import Client,TestCase
from .models import Article
class ArticleModelTest(TestCase):
self.client = Client()
self.article = Article(
title = "My first django test",
description = "Ever wonder how?",
body = "You have to believe",
tagline : ["dragons", "angularJs"]