Articles

Affichage des articles du juillet, 2019

How to convert Google Sheet docs to PDF file

Image
How to convert Google Sheet docs to PDF file What is google sheet? Google sheet is a google online Service just like MS-OFFICE from Microsoft that allows you to write text just like Microsoft Word, Make some operation just like MS-EXEC, and make slideShow just like MS-POWERPOINT. Only difference this service is online and it's free for everyOne. Now we will learn you how to convert Docs which is the equivalent of Ms-WORD to PDF To convert Google Sheet docs to PDF is pretty simple 1) Go to google, type Google sheet 2) Choose what sheet you wanna Create , then create your Sheet 3) Type something , somes words in it 4) Go to Files 5) Clic on PRINT or hit CTRL + P 6) Now save the File on your computer TURN BACK ON THE WEBSITE

How to connect MYSQL with another USER using Command line

Quite simple follow thoses Steps: 1) Open Command Prompt (CMD) 2) Locate the BIN of mysql Exemple: In CMD type Cd wamp\bin\mysql\mysql5.5.20\bin\ 3) Now type: mysql -u [username] -p 4) Type the password 5) Now you are connected to the user . Enjoy                   TURN BACK ON THE WEBSITE

Open Wamp Server on Startup Automatically 100% working

1) Create a .bat file with NOTEPAD: 2) Type this command line: start C:\wamp\wampmanager.exe N.B: This path may be different depending on your computer Now save the file 3) a) Open Control Panel b) Search for : UAC c) Then now set the security level to the lowest level means: NEVER NOTIFY d) Clic Save 4) Now Open Taskscheduler or open RUN type:  taskschd.msc a) Create Task, Give the task a NAME b) Clic on Run with highest Privileges c) Conditions=> UnCheck all the case d) Now only check Wake the computer to run this task e) Settings, check all the box except: if the task fails, restart every: if the task is already runnig, then the following rule applies: f) Action => New, clic on browse and search for the .bat file clic ok to save. Then clic ok.  5) Open RUN and type: shell:startup 6) Copy and paste the .bat file into the folder 7)  Clic on TRIGGERS and Clic new then On * Begin the task * select AT STARTUP then clic OK. 8) Restart the PC to see t

Men kijan pou prete kob, minutes, lajan nan men NATCOM Ayiti

Men kijan pou prete kob, minutes, lajan nan men NATCOM Ayiti Sevis pou prete nan Natcom nan rele Callplus Etap 1: Konpoze sou telephone ou kod sa: *526*1# Otomatikman wap resevwa on mesaj ki konfime kew byen prete kob lan.  Methode 2: Ou ka voye : Enskri bay numero 526 N.B: Natcom ap pretew 10 goud, wap gen pou remet 8 goud, sa vle di antou wap gen pou remet 18 goud sou prochen rechaj lan. Gade video sa pou pi byen konprann. Klike sou lien bleu an:  https://www.youtube.com/watch?v=w9iNCc1NXgA                          TURN BACK ON THE WEBSITE

Aprann kijanw chanje nom channel youtube sou Laptop ak Telephone

Men kijanw chanje nom channel ou sou Youtube : Video:  https://www.youtube.com/watch?v=MAUYt7jP6Mg&t=10s                              TURN BACK ON THE WEBSITE

Afficher une date passée dans une base de donnée MYSQL

Image
Aujourd'hui on va apprendre a afficher une date passée a l'interieur d'une base de donnée MYSQL . Pour cela vous aurez besoin d'instaler WAMP SERVER. Lien de telechargement:  https://sourceforge.net/projects/wampserver/ 1) Wamp une fois installer. Lancer Wamp double clic sur le logiciel. 2) Lancer MYSQL en mode Console 3) Nous allons utiliser une petite base de donnee deja faite pour aller plus vite. Contenan de colonne a) Un ID b) Une date  Copier et coller les codes SQL ci-dessous dans la console MYSQL: Create database try; use try;         create table try(id integer ,date date); Maintenant que notre petite base de donnee nommee try est creee , nous allons y ajouter des donnees dans les deux colonnes qui son ID et DATE . Copier et Coller cette lignes de code dans la console MYSQL: insert into try(id,date) values(2,"2019-07-04"); insert into try(id,date) values(1,"2019-07-05"); N.B: Le format des dates doivent etre (YYYY-MM-D