They should work. Works for all cores of your host system. Also you can download ESXi from here.
Discover gists
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
"os" | |
"syscall" | |
) | |
type File struct { | |
file *os.File |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'dart:io'; | |
import 'package:web_ui/component_build.dart'; | |
// Ref: http://www.dartlang.org/articles/dart-web-components/tools.html | |
main() { | |
build(new Options().arguments, ['web/index.html']); | |
//recursiveFolderCopySync('web/assets', 'web/out/assets'); | |
} | |
bool isSymlink(String pathString) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import argparse | |
import subprocess | |
import requests | |
API_URL = "https://api.github.com" | |
def get_github_token(): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This is Python's http.server that has been bundled to an .exe using PyInstaller. You can use it as a local web server for testing. | |
Run the local server | |
1. Copy the server.exe into the folder you want to serve and then double click it to start the local server. | |
2. A window will pop up letting you know the server is running on port 8000. | |
3. Open http://localhost:8000/ in your web browser. | |
4. When you are done, simply close the server.exe window to stop the local server. | |
If you have another service running on port 8000, you can run on a different port like so: | |
1. Open Command Prompt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import SwiftUI | |
struct SpeechBubble: View { | |
var count: Int | |
var body: some View { | |
HStack(spacing: 0) { | |
Rectangle() | |
.fill(.red) | |
.rotationEffect(.degrees(45)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Shader "Custom/Curved" { | |
Properties { | |
_MainTex ("Base (RGB)", 2D) = "white" {} | |
_QOffset ("Offset", Vector) = (0,0,0,0) | |
_Dist ("Distance", Float) = 100.0 | |
} | |
SubShader { | |
Tags { "RenderType"="Opaque" } | |
Pass | |
{ |
NewerOlder