Skip to content

Instantly share code, notes, and snippets.

View paulido's full-sized avatar

IDO Paul paulido

View GitHub Profile
@paulido
paulido / countries_list.php
Created December 13, 2024 13:13 — forked from swport/countries_list.php
Countries List PHP Array
<?php
return array (
0 =>
array (
'id' => 1,
'name' => 'Afghanistan',
'iso3' => 'AFG',
'iso2' => 'AF',
'phone_code' => '93',
'capital' => 'Kabul',

Installation de MySQL

Mise à jour du Système

Assurez-vous que votre système est à jour en exécutant les commandes suivantes dans le terminal :

sudo apt update
sudo apt upgrade
@paulido
paulido / angular.md
Created September 26, 2024 16:11
This for installing angular globaly or localy

Angular get start

Global

This install angular cli version globally

Instation

npm install @angluar/cli[@version]

@paulido
paulido / cat.c
Last active August 12, 2023 14:07
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/stat.h>
#include <fcntl.h>
int main(int argc, char *args[]){
if(argc != 2){
printf("syntaxe incorrecte");
@paulido
paulido / input.c
Last active September 26, 2024 16:16
#hande input in c program
#allow on integer input
#@Author : Paul IDO
#@Email : [email protected]
#include <stdio.h>
#include <stdlib.h>
#include <string.h>