Sunday, March 22, 2020

QUESTION HUB: LINUX SHELL


LINUX SHELLS


By default,every Linux os has a built in bash shell.and on depending the type of os you may have more shells like UXTERM, TERMINAL, etc.




Question hub:windows 10 new file , folder


NEW FOLDER:WINDOWS 10

aap pahle jahan pe ho, mouse ko right click karein aur isme new> folder ka option choos karein
phir file ka naam daal kar enter karein.apka new folder taiyar ho gaya hai.

Saturday, March 21, 2020

qpython ::make a http server in your phone with python

here is the qpython3 script to run a simple HTTP server in your device..
put a file of name index.html in same directory in which this script is placed and run...and lo..server is running on local host..port 8080 http://localhost:8080
server.py


import http.server
import socketserver
PORT = 8080
Handler = http.server.SimpleHTTPRequestHandler
with socketserver.TCPServer(("", PORT), Handler) as httpd:
    print("serving at port", PORT)
    httpd.serve_forever()



Implement stsStr Leetcode solution

  28.   Implement strStr() Easy Implement  strStr() . Given two strings  needle  and  haystack , return the index of the first occurrence of...