This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"meta": { | |
"theme": "elegant" | |
}, | |
"basics": { | |
"name": "Gauthier Eholoum", | |
"label": "Fullstack Developer", | |
"image": "", | |
"email": "[email protected]", | |
"phone": "+228 98615284", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"meta": { "theme": "elegant" }, | |
"basics": { | |
"name": "Gauthier Eholoum", | |
"label": "Fullstack Developer", | |
"image": "", | |
"email": "[email protected]", | |
"phone": "+228 98615284", | |
"url": "", | |
"summary": "Développeur d'applications, très regardant sur les pratiques agiles, de qualité de logiciels, et de l'impact business des solutions technologiques.\nAspirant entrepreneur, j'ai la ferme conviction qu'en tant que jeunes africains, ouvert d'esprit et visionnaires, nous pourrons bâtir de grandes empires en Afrique.\n\nSpécialisations : Développement d'applications (web, mobile, api)\n• Design produit\n• Coordination des équipes\nCompétences Techniques :\n• HTML5, CSS3, JavaScript, Bootstrap\n• MVC, Clean Architecture\n• PHP, NodeJs, Python\n• Symfony, Laravel, Flutter\n• Api-platform, Parse-Server\n• Mysql, MongoDB\nCompétences fonctionnelles des outils web 2.0\n• Veille sur les nouvelles tendances \n• Utilisation quotidienne et maîtrise de la suite bureautique de google (GSuite)\n• |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"basics": { | |
"name": "Your first and last name", | |
"label": "", | |
"picture": "", | |
"email": "Your email address", | |
"phone": "A phone number, with any formatting you like. E.g. (555) 555-5555.", | |
"degree": "", | |
"website": "Your website URL", | |
"summary": "A one-sentence to one-paragraph overview text. Do not include any line-breaks.", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"bills": [ | |
{ | |
"value": 10000, | |
"images": { | |
"thumbnail": { | |
"front": "https://fr.numista.com/catalogue/photos/bceao/5e94ef3b638099.57464769-180.jpg", | |
"back": "https://fr.numista.com/catalogue/photos/bceao/5e94ef3ba738f6.20938941-270.jpg" | |
}, | |
"hd": { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy to GitHub Pages | |
on: | |
workflow_dispatch: | |
push: | |
branches: [main, develop] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy to remote server | |
on: | |
push: | |
branches: [ develop ] | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
import 'add_product.dart'; | |
import 'product.dart'; | |
class ProductList extends StatefulWidget { | |
const ProductList({Key? key}) : super(key: key); | |
@override | |
_ProductListState createState() => _ProductListState(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
import 'product.dart'; | |
class AddProduct extends StatefulWidget { | |
const AddProduct({Key? key}) : super(key: key); | |
@override | |
_AddProductState createState() => _AddProductState(); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
void main() => runApp(MyApp()); | |
class MyApp extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
return MaterialApp( | |
title: 'Chatiii', | |
debugShowCheckedModeBanner: false, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Example 01 : Simple scallar type | |
final valueProvider = Provider<int>((ref) { | |
return 36; | |
}); | |
// Example 02 | |
final databaseProvider = Provider((ref) => Database()); | |
// Example 03 : Real class as dependency injection | |
final httpClientProvider = Provider<Dio>((ref) => Dio()); |
NewerOlder