Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000| // EntryPoint.js | |
| define(function () { | |
| return function EntryPoint(model1, model2) { | |
| // stuff | |
| }; | |
| }); | |
| // Model1.js | |
| define(function () { | |
| return function Model1() { |
| #include <windows.h> | |
| /* | |
| We define WinMain to simply run the user's command line; this is nothing they | |
| couldn't already do via Windows+Run. It is useful if you want to prevent any | |
| console windows from appearing on the user's desktop. | |
| We wait for the process to exit and return the exit code to the caller. | |
| @param hInstance Not used; o/s module handle for current process. |
Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000Windows is really horrible system for developers and especially for devops. It doesn’t even have a usable terminal and shell, so working with command line is really pain in the ass. If you really don’t want to switch to any usable system (OS X, Linux, BSD…), then this guide should help you to setup somewhat reasonable environment – usable terminal, proper shell, ssh client, git and Sublime Text as a default editor for shell.
| package ch.oli.vertx; | |
| import io.vertx.core.Vertx; | |
| import io.vertx.core.http.HttpClient; | |
| import io.vertx.core.http.HttpClientOptions; | |
| import io.vertx.core.http.HttpClientRequest; | |
| import io.vertx.core.http.HttpServer; | |
| public class ReproducerTcpClose { |
tl;dr: Wayland is not "the future", it is merely an incompatible alternative to the established standard with a different set of priorities and goals.
Wayland breaks everything! It is binary incompatible, provides no clear transition path with 1:1 replacements for everything in X11, and is even philosophically incompatible with X11. Hence, if you are interested in existing applications to "just work" without the need for adjustments, then you may be better off avoiding Wayland.
Wayland solves no issues I have but breaks almost everything I need. Even the most basic, most simple things (like xkill) - in this case with no obvious replacement. And usually it stays broken, because the Wayland folks mostly seem to care about Automotive, Gnome, maybe KDE - and alienating e
| USB Quick Start | |
| =============== | |
| XHCI controller support | |
| ----------------------- | |
| QEMU has XHCI host adapter support. The XHCI hardware design is much | |
| more virtualization-friendly when compared to EHCI and UHCI, thus XHCI | |
| emulation uses less resources (especially cpu). So if your guest |