Skip to content

Instantly share code, notes, and snippets.

View alioukahere's full-sized avatar
👨‍💻
Debugging

Mamadou Aliou Diallo alioukahere

👨‍💻
Debugging
View GitHub Profile
@alioukahere
alioukahere / hello_world.c
Last active December 8, 2016 16:21
Print Hello World in C.
#include <stdio.h>
int main() {
printf("Hello World!");
return 0;
}
@alioukahere
alioukahere / hello_world.php
Created December 7, 2016 14:39
Print Hello World! in php
<?php
echo 'Hello World!';
@alioukahere
alioukahere / blog.css
Created April 19, 2019 01:45
Stylesheet for a simple blog app for Kaherecode course on creating a blog using Symfony4
/* navbar */
nav {
background-color: #d4b672;
margin-bottom: 30px;
}
/* article card */
.article-card {
margin-bottom: 30px;
}