Click here to Skip to main content
15,887,485 members

Welcome to the Lounge

   

For discussing anything related to a software developer's life but is not for programming questions. Got a programming question?

The Lounge is rated Safe For Work. If you're about to post something inappropriate for a shared office environment, then don't post it. No ads, no abuse, and no programming questions. Trolling, (political, climate, religious or whatever) will result in your account being removed.

 
GeneralRe: Wordle 963 Pin
megaadam7-Feb-24 9:38
professionalmegaadam7-Feb-24 9:38 
JokeThe CEO of Anheuser-Busch manages to arrange a meeting with the Pope PinPopular
honey the codewitch6-Feb-24 10:25
mvahoney the codewitch6-Feb-24 10:25 
GeneralAndroid stupidity? Pin
David O'Neil6-Feb-24 7:21
professionalDavid O'Neil6-Feb-24 7:21 
GeneralRe: Android stupidity? Pin
dandy726-Feb-24 8:58
dandy726-Feb-24 8:58 
GeneralRe: Android stupidity? Pin
David O'Neil6-Feb-24 13:54
professionalDavid O'Neil6-Feb-24 13:54 
GeneralRe: Android stupidity? Pin
Amarnath S6-Feb-24 21:37
professionalAmarnath S6-Feb-24 21:37 
GeneralRe: Android stupidity? Pin
David O'Neil7-Feb-24 4:56
professionalDavid O'Neil7-Feb-24 4:56 
GeneralRe: Android stupidity? Pin
AndyChisholm7-Feb-24 8:37
AndyChisholm7-Feb-24 8:37 
To test HTML in my local network I just set up a tiny server in Python. You can then access it from your terminal/mobile/PC.

The server script can be found all over the Internet. The code is:
Python
import os
from http.server import HTTPServer, CGIHTTPRequestHandler
os.chdir('D:\serverfolder')
server_object = HTTPServer(server_address=('',8080),RequestHandlerClass=CGIHTTPRequestHandler)
server_object.serve_forever()


Then put your HTML in the folder of your choice mentioned on the os.chdir line, and connect from the browser to your IP address, e.g. http://192.168.1.72:8080/webpagename.html

The nice thing is that it really does test the HTML and file links to local OS folders, etc. doesn't get in the way.

http only so insecure and only to be used locally but, adequate for testing and accessible from anywhere on your local network.
GeneralRe: Android stupidity? Pin
David O'Neil7-Feb-24 13:46
professionalDavid O'Neil7-Feb-24 13:46 
GeneralNo checkers today... Pin
David O'Neil6-Feb-24 6:00
professionalDavid O'Neil6-Feb-24 6:00 
GeneralRe: No checkers today... Pin
Richard Deeming6-Feb-24 6:07
mveRichard Deeming6-Feb-24 6:07 
GeneralRe: No checkers today... Pin
glennPattonWork37-Feb-24 2:10
professionalglennPattonWork37-Feb-24 2:10 
GeneralAnd a new insider threat. Pin
jschell6-Feb-24 5:25
jschell6-Feb-24 5:25 
GeneralAhh ... plagiarists and cheats don't always get what they want. PinPopular
OriginalGriff5-Feb-24 23:55
mveOriginalGriff5-Feb-24 23:55 
PraiseRe: Ahh ... plagiarists and cheats don't always get what they want. Pin
Daniel Pfeffer6-Feb-24 0:35
professionalDaniel Pfeffer6-Feb-24 0:35 
GeneralRe: Ahh ... plagiarists and cheats don't always get what they want. Pin
Amarnath S6-Feb-24 0:45
professionalAmarnath S6-Feb-24 0:45 
GeneralRe: Ahh ... plagiarists and cheats don't always get what they want. Pin
Grotsoft7-Feb-24 2:31
Grotsoft7-Feb-24 2:31 
GeneralRe: Ahh ... plagiarists and cheats don't always get what they want. Pin
den2k886-Feb-24 2:13
professionalden2k886-Feb-24 2:13 
GeneralRe: Ahh ... plagiarists and cheats don't always get what they want. Pin
Daniel Pfeffer6-Feb-24 2:47
professionalDaniel Pfeffer6-Feb-24 2:47 
GeneralRe: Ahh ... plagiarists and cheats don't always get what they want. Pin
den2k886-Feb-24 2:55
professionalden2k886-Feb-24 2:55 
GeneralRe: Ahh ... plagiarists and cheats don't always get what they want. Pin
Daniel Pfeffer6-Feb-24 3:37
professionalDaniel Pfeffer6-Feb-24 3:37 
GeneralRe: Ahh ... plagiarists and cheats don't always get what they want. Pin
glennPattonWork36-Feb-24 5:16
professionalglennPattonWork36-Feb-24 5:16 
GeneralRe: Ahh ... plagiarists and cheats don't always get what they want. Pin
dandy726-Feb-24 3:43
dandy726-Feb-24 3:43 
GeneralRe: Ahh ... plagiarists and cheats don't always get what they want. Pin
OriginalGriff6-Feb-24 3:58
mveOriginalGriff6-Feb-24 3:58 
GeneralRe: Ahh ... plagiarists and cheats don't always get what they want. Pin
TNCaver6-Feb-24 4:56
TNCaver6-Feb-24 4:56 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.