The Space Needle is an 8-furnace, single-thruster, 8-tile-wide Factorio spaceship design. It can be built in 20 launches.
It is an experiment in finding the fastest speed while using only one chemical plant each for fuel and oxidizer,
The Space Needle is an 8-furnace, single-thruster, 8-tile-wide Factorio spaceship design. It can be built in 20 launches.
It is an experiment in finding the fastest speed while using only one chemical plant each for fuel and oxidizer,
WSL2 uses Hyper-V for networking. The WSL2 network settings are ephemeral and configured on demand when any WSL2 instance is first started in a Windows session. The configuration is reset on each Windows restart and the IP addresses change each time. The Windows host creates a hidden switch named "WSL" and a network adapter named "WSL" (appears as "vEthernet (WSL)" in the "Network Connections" panel). The Ubuntu instance creates a corresponding network interface named "eth0".
Assigning static IP addresses to the network interfaces on the Windows host or the WSL2 Ubuntu instance enables support for the following scenarios:
| $ modprobe bridge | |
| $ echo "net.bridge.bridge-nf-call-iptables = 1" >> /etc/sysctl.conf | |
| $ sysctl -p /etc/sysctl.conf | |
| sysctl: cannot stat /proc/sys/net/bridge/bridge-nf-call-iptables: No such file or directory sysctl: cannot stat /proc/sys/net/bridge/bridge-nf-call-ip6tables: No such file or directory | |
| # SOLUTION | |
| $ modprobe br_netfilter | |
| $ sysctl -p /etc/sysctl.conf |
| // https://forum.unity.com/threads/oblique-near-plane-clipping.194722/ | |
| public class Clipper : MonoBehaviour | |
| { | |
| Matrix4x4 projection; | |
| Camera offscreenCam; | |
| void Start () | |
| { | |
| projection = camera.projectionMatrix; | |
| } |
Vue.js is an amazing framework, which can be as powerful as Angular or React, the two big heavy hitters in the world of front-end frameworks.
However, most of Vue's ease-of-use is due to the use of Observables - a pattern that triggers re-renders and other function calls with the reassignment of a variable.
| var canvas = document.createElement('canvas'); | |
| var gl; | |
| var debugInfo; | |
| var vendor; | |
| var renderer; | |
| try { | |
| gl = canvas.getContext('webgl') || canvas.getContext('experimental-webgl'); | |
| } catch (e) { | |
| } |
| var Text = pc.createScript('text'); | |
| Text.attributes.add('text', { type: 'string', default:'Hello World!' }); | |
| Text.attributes.add('fontsize', { type: 'number', default:70, title:"Font Size" }); | |
| // initialize code called once per entity | |
| Text.prototype.initialize = function() { | |
| // Create a canvas to do the text rendering | |
| this.canvas = document.createElement('canvas'); | |
| this.canvas.height = 128; |
The install fails with BSOD and "Your PC ran into a problem and needs to restart. We're just collecting some error info, and then we'll restart for you."
After reboot it returns with the following message: "The computer restarted unexpectedly or encountered an unexpected error. Windows installation cannot proceed. To install Windows, click OK to restart the computer, and then restart the installation.":
FWIW: I (@rondy) am not the creator of the content shared here, which is an excerpt from Edmond Lau's book. I simply copied and pasted it from another location and saved it as a personal note, before it gained popularity on news.ycombinator.com. Unfortunately, I cannot recall the exact origin of the original source, nor was I able to find the author's name, so I am can't provide the appropriate credits.
NOTE: the content is out-of-date. All development is moved to the https://github.com/yurydelendik/wasmception
# locations, e.g.
export WORKDIR=~/llvmwasm; mkdir -p $WORKDIR
export INSTALLDIR=$WORKDIR