I hereby claim:
- I am embiem on github.
- I am mbeierling (https://keybase.io/mbeierling) on keybase.
- I have a public key ASDa9PSKmSTOIZzmhEuvoxEDmsFWWOSGXC3PkpQcPls6pQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
.monaco-shell { | |
font-family: "Operator Mono", "Inconsolata", monospace; | |
} | |
/* | |
Fat Cursor. | |
This overwrites the "underline thin" style since that is one that can be styled with CSS | |
So set your settings to: | |
"editor.cursorStyle": "underline-thin", | |
*/ |
const puppeteer = require('puppeteer'); | |
const width = 1200; | |
const url = process.argv.length > 2 ? process.argv[2] : 'https://ea.com'; | |
const screenshotPath = process.argv.length > 3 ? process.argv[3] : 'screenshot.png'; | |
console.log(`${url} --> ${screenshotPath}`); | |
(async () => { | |
const browser = await puppeteer.launch(); | |
try { |
openssl req -newkey rsa:4096 -days 1001 -nodes -x509 -subj "/C=US/ST=California/L=San Francisco/O=Twitch/OU=web/CN=localhost" -extensions SAN -config ".\openssl.cnf" -keyout "testing.key" -out "testing.crt" |
// Used further down in the OnConstruction call to set values on one spline mesh | |
void ALane::BuildTrackElement(int32 atDistance, USplineMeshComponent* SplineMesh, UStaticMesh* LaneElementMesh, ESplineMeshAxis::Type LaneElementMeshForwardAxis) | |
{ | |
FVector currLocation, currTangent, nextLocation, nextTangent; | |
currLocation = SplineComponent->GetLocationAtDistanceAlongSpline(atDistance, ESplineCoordinateSpace::Type::Local); | |
currTangent = SplineComponent->GetTangentAtDistanceAlongSpline(atDistance, ESplineCoordinateSpace::Type::Local); | |
nextLocation = SplineComponent->GetLocationAtDistanceAlongSpline(atDistance + MeshSpacing, ESplineCoordinateSpace::Type::Local); | |
nextTangent = SplineComponent->GetTangentAtDistanceAlongSpline(atDistance + MeshSpacing, ESplineCoordinateSpace::Type::Local); |
using UnityEngine; | |
[ExecuteInEditMode] | |
public class DynamicScale : MonoBehaviour | |
{ | |
Vector3 lastPosition; | |
void Start() | |
{ | |
lastPosition = transform.position; |
import scrapy | |
class CodelabsSpider(scrapy.Spider): | |
name = "codelabs" | |
def start_requests(self): | |
urls = [ | |
'https://codelabs.developers.google.com/' | |
] | |
for url in urls: |
class Logger { | |
constructor() { | |
if (!Logger.instance) { | |
Logger.instance = this; | |
} | |
return Logger.instance; | |
} | |
log(...args) { | |
console.log(...args); |