Skip to content

Instantly share code, notes, and snippets.

View Oiselenjakhian's full-sized avatar

Truston Ailende Oiselenjakhian

View GitHub Profile

Dead capital is an economic term related to property which is informally held, is not legally recognized, and cannot be exchanged for financial capital. The uncertainty of ownership decreases the value of the asset and/or the ability to lend or borrow against it. PwC estimates that Nigeria holds at least $300 billion or as much as $900 billion worth of dead capital in residential real estate and agricultural land alone. The high value real estate market segment holds between $230 billion and $750 billion of value, while the middle market carries between $60 billion and $170 billion in value. The challenge for countries without adequate land management is not simply to build a land registry system but to create a system that is trustworthy, efficient, and free of corruption. It is with this in mind that I came up with the idea to use the Blockchain to solve the problem of land registration using the Blockchain.

In principle, land registries simply need to maintain records of land and real estate ownership, re

@Oiselenjakhian
Oiselenjakhian / bicycle_turtle.py
Created April 16, 2021 14:01
How to draw a bicycle using Python turtle.
import turtle
turtle.delay(10)
turtle.pensize(20)
# Move the turtle to the right position of the left tyre
turtle.penup()
turtle.setposition(-87.5, -50)
turtle.setheading(90)
# Draw the left tyre
@Oiselenjakhian
Oiselenjakhian / car_turtle.py
Last active February 13, 2024 15:10
Python code on how to draw a car using the Python Turtle module.
import turtle
turtle.delay(10)
turtle.pensize(20)
# Move the turtle to the extreme left position
turtle.penup()
turtle.setposition(-200,-75)
# Draw the rectangle
turtle.pendown()
<html>
<head>
<title>FizzBuzz</title>
</head>
<body>
<script>
for (var i = 1; i <= 100; i++) {
if ((i % 3 == 0) && (i % 5 == 0)) {
console.log("FizzBuzz");
}
@Oiselenjakhian
Oiselenjakhian / fizzbuzz.html
Created September 13, 2020 18:53
HTML Template
<html>
<head>
<title>FizzBuzz</title>
</head>
<body>
<script>
</script>
</body>
</html>
@Oiselenjakhian
Oiselenjakhian / lottery.py
Created August 15, 2020 10:07
Creating a Lottery Simulator Using the Python Programming Language
# Import the randint function
from random import randint
# Initialize the empty list
pickedNumbers = []
# Generate numbers from 1 to 36 6 times
while(len(pickedNumbers) < 6):
generated = randint(1, 36)
if (generated not in pickedNumbers):
@Oiselenjakhian
Oiselenjakhian / aban.py
Created February 2, 2020 17:47
Drawing the Aban Adinkra symbol using Python.
import turtle
import math
# Square
def drawSquare(length):
turtle.penup()
turtle.setposition(-length/2.0, length/2.0)
turtle.pendown()
for i in range(0, 4):
turtle.forward(length)
@Oiselenjakhian
Oiselenjakhian / adinkrahene.py
Created January 26, 2020 16:28
Drawing the Adinkrahene Adinkra symbol using Python.
import turtle
import math
# Square
def drawSquare(length):
turtle.penup()
turtle.setposition(-length/2.0, length/2.0)
turtle.pendown()
for i in range(0, 4):
turtle.forward(length)
@Oiselenjakhian
Oiselenjakhian / template.py
Created January 19, 2020 15:29
Drawing Adinkra symbols using Python Template
import turtle
import math
# Square
def drawSquare(length):
turtle.penup()
turtle.setposition(-length/2.0, length/2.0)
turtle.pendown()
for i in range(0, 4):
turtle.forward(length)