NONBrowser

NONBrowser 没有想更好的名字了, 就它吧。

一张图能够说明一切!!!


NONBrowser 其实就是基于Crosswalk的IPTV Browser 应用。马甲是crosswalk,心还是chromium。

不禁有人会问,搞个这个有啥子? 分分秒自己弄个上去,不就是编译一下开源的crosswalk吗? 没错其实就是这样的,简单明了!

饭要一口一口的吃,牛皮也要慢慢吹,不吹怎么牛逼呢?


前言:

       TM就是一个IPTV Browser App,定位之狭隘,大家都知道cef、miniblink 等等好多。大家的开发热情是非常高的,梦想太美现实很残酷。不是每个人都可以安安静静的搞东西况且也没有达到那么牛逼的程度。做点产品挣点工资,养家糊口过日子。

      回归正题我们就是想做一个开源的IPTV Browser App。这么多年不停的改网页,调内核,提高兼容性。把刨的跳的坑都标记了让后人不要在跳。真正正正去优化chromium webkit 内核。

待续......

Sure, I can help you with that. Here is a simple TCP program for a server that accepts lines of input from a client and prints the lines onto the server’s standard output: ``` import socket HOST = '' # Symbolic name meaning all available interfaces PORT = 5000 # Arbitrary non-privileged port # Create a TCP/IP socket sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) # Bind the socket to a specific address and port sock.bind((HOST, PORT)) # Listen for incoming connections sock.listen(1) print('Server listening on port', PORT) while True: # Wait for a connection print('Waiting for a client connection...') conn, addr = sock.accept() print('Connected by', addr) # Receive data from the client and print it to the server's standard output while True: data = conn.recv(1024) if not data: break print(data.decode('utf-8')) # Close the connection conn.close() print('Client disconnected') ``` To compile and execute the program, save it as `server.py` and run it from the command line using the command `python server.py`. To test the program, you can open a Web browser on another machine and set the proxy server in the browser to the host that is running your server program (e.g. `localhost` or the IP address of the machine running the server). Then, configure the port number appropriately (in this case, `5000`). Your browser should now send its GET request messages to your server, and your server should display the messages on its standard output. Regarding your question about whether the browser generates conditional GET messages for objects that are locally cached, I'm not sure. It would depend on the specific browser and its caching behavior.
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值