Skip to content

Instantly share code, notes, and snippets.

View tigamadou's full-sized avatar
🏠
Full Stack Developer 👩🏽‍💻Tech Enthusiast

Amadou IBRAHIM tigamadou

🏠
Full Stack Developer 👩🏽‍💻Tech Enthusiast
View GitHub Profile
@tigamadou
tigamadou / RAILS_CHEATSHEET.md
Created October 4, 2021 16:58 — forked from mdang/RAILS_CHEATSHEET.md
Ruby on Rails Cheatsheet

Ruby on Rails Cheatsheet

Architecture

Create a new application

Install the Rails gem if you haven't done so before

@tigamadou
tigamadou / loop-control-structure.rb
Last active December 5, 2019 17:51
Simple loop control structure with Ruby
# Loop Control Structure
## Set a variable "counter" to zero
counter = 1
## Iterate through the loop as long as "counter" is less than 5
while counter <=5 do
## Print "Get your driver license with LicenseGuru"
puts "Get your driver license with LicenseGuru"
## Add 1 to the current value of counter
counter+=1
end
@tigamadou
tigamadou / condition-control-structure.rb
Created December 5, 2019 17:29
Simple condition control structure with Ruby
# Condition Control Structure
## Set a new varibale age to 15.
age = 15
## Then another varibale required_age to 16.
required_age = 16
## check if the user age is less than 16
if age < 16
## If the condition is checked, print the message "Sorry, you can't pass the driver license!" to the user
puts "Sorry, you can't pass the driver license!"
else
@tigamadou
tigamadou / index.html
Created December 5, 2019 13:35
simple html page
<!DOCTYPE html>
<html>
<head>
<!-- Metadata goes here -->
</head>
<body>
<!-- Page content goes here -->
</body>
</html>
@tigamadou
tigamadou / style.css
Created December 5, 2019 13:34
simple css file
*{
box-sizing: border-box; max-width: 100%;
}
body{
font-size: 1.25rem; padding-bottom: 70px;
background: #fff;
}

News Web Scrapper

A Simple Web Scraper

Scrap News from BuzzFeed pages.

Status

GitHub contributors

@tigamadou
tigamadou / readme.md
Last active November 15, 2019 20:55
Video embended

Demo Doccou alpha

@tigamadou
tigamadou / readme.md
Last active October 24, 2019 16:08
Readme Template

Logo

New York Time Page

@tigamadou
tigamadou / readme.md
Last active October 23, 2019 21:35
youtube project readme

Project Name

This is project is done by Ibrahim Amadou & Wilfried Canirinka for Microverse Program. We've learned HTML and CSS Basics while doing remote collaboration.

Live Demo

Live Demo

Technical Tools