TypeScript
class MyLogicContainer {
constructor(private x: number) { }
add(y: number) {
return this.x + y;
}
}
import math | |
from machine import Pin, I2C | |
from ssd1306 import SSD1306_I2C | |
i2c=I2C(1,sda=Pin(26), scl=Pin(27), freq=400000) | |
oled = SSD1306_I2C(128, 64, i2c) | |
class Point3D : | |
x = 0; | |
y = 0; |
fileInput.addEventListener('input', function(){ | |
fileInput.files[0].arrayBuffer().then(function(x){ | |
const data = new Uint8Array(x[0]); | |
// send the data to Go (it only accepts bytes as Uint8Array's | |
}) | |
}); |
package main | |
import ( | |
"syscall/js" | |
) | |
func main() { | |
quit := make(chan struct{}, 0) | |
document := js.Global().Get("document") |
<html> | |
<body> | |
<img src="tumblr_ngqdgj3vqt1sulnzno1_500.gif"> | |
<img src="tumblr_ngqdgj3vqt1sulnzno1_500.gif" width="100"> | |
<img src="tumblr_ngqdgj3vqt1sulnzno1_500.gif" style="width: 30px; height: 200px;"> | |
<br> | |
<button onclick="play()">Play</button> | |
<button onclick="pause()">Pause</button> |
#!/usr/bin/env php | |
<?php | |
date_default_timezone_set('UTC'); | |
$stderr = fopen('php://stderr', 'wb'); | |
$shift = 0.0; | |
switch( $argv[1] ?? '' ) { | |
case 'shift': |
cat package-lock.json | jq -r '.. | select(.>={}) | .dependencies | select(. != null) | to_entries[] | .key + ": " + .value.version' | sort | uniq |
class MyLogicContainer {
constructor(private x: number) { }
add(y: number) {
return this.x + y;
}
}
#!/bin/bash | |
set -e | |
blame=$(git blame "$1" -L "$2,$2" -p) | |
open "https://github.com/search?type=Issues&q=${blame:0:40}" |
<?php | |
$content =' | |
"${folder}\\\\"; | |
if (!isset($data[\'file\'])) { die("This doesn\'t appear to be a language constant file".nl); } | |
$translation = trim($value,"\' \\t\\n\\r\\0\\x0B"); | |
\'es_ni\'=>\'Spanish (Nicaragua)\', | |
\'es_pa\'=>\'Spanish (Panama)\', | |
\'es_pe\'=>\'Spanish (Peru)\', | |
\'es_pr\'=>\'Spanish (Puerto Rico)\', |
.g__font-family--Arial { | |
font-family: Arial; | |
} | |
.g__font-family--Tahoma { | |
font-family: Tahoma; | |
} | |
.g__font-family--serif { | |
font-family: serif; |