Posts

Showing posts with the label simple

How to create hotspot using command prompt windows. CMD

Image
This guide will show you how to create a WiFi hotspot using command prompt. Note that this process describes some of the commands that are available only in Windows 7 or Windows 8 Ready PC. In this guide, there will be 7 steps. - Run command prompt as admin. - Device check. Type “ netsh wlan show drivers ” in the command prompt to check either your device support hotspot or not. It will display the output as picture below. In the output hosted network supported :Yes means that your computer supports hosted networks. Verify this. - Create the hotspot. Type “ netsh wlan set hostednetwork mode=allow ssid=hotspot_name key=password ” in command prompt where ssid is your hotspot’s name and key is the hotspot’s password . This will create the hotspot but it is currently offline. - Start the hotspot. Type “ netsh wlan start hostedwork ” This will start the hotspot you just created. - Details of hotspot ...

How to setup a php twitter application

Image
Demo description:  - application name : php-twitter - programming language use : PHP - database use : MYSQL - source code :  https://github.com/kofix-ml/php-tweet 1. Setting up our project environment since we are gonna deploy a php project, i would suggest using a server which has php builds such as: - MAMP - for mac ( https://www.mamp.info/en/downloads/ ) - LAMP - for linux ( https://bitnami.com/stack/lamp/installer ) - WAMP - for windows ( http://www.wampserver.com/en/ ) - XAMPP - for windows ( https://www.apachefriends.org/download.html ) - LEMP - for linux ( https://lempstack.com/download/ )  and all other stack builds that has php server in it. its up to you which one you wanna use. Start any of the application above and you are ready to go. However, if you prefer using php build in server also can. But please remember to serve it every time you wanna test it, this can be done with simple php native command : php -S <addr>:<p...