The power of Disney...🤨
-
1995: Disney buys ABC
-
2006: Disney buys Pixar
-
2009: Disney enters 30 film deal with Dreamworks
-
2009: Disney buys Marvel
use base64::{ | |
engine::{general_purpose, GeneralPurpose}, | |
Engine as _, | |
}; | |
use rand::{thread_rng, Rng as _}; | |
use sha2::{Digest as _, Sha256}; | |
const B64: GeneralPurpose = general_purpose::URL_SAFE_NO_PAD; | |
#[derive(Debug, Clone, Copy, PartialEq, Eq)] |
[$Version] | |
update_info=kwinrules.upd:replace-placement-string-to-enum,kwinrules.upd:use-virtual-desktop-ids,kwinrules.upd:remove-placement-cascade | |
[1] | |
Description=Overwatch | |
clientmachine=localhost | |
noborder=true | |
noborderrule=2 | |
position=2560,0 | |
size=3380,1440 |
#pragma once | |
#include "color.h" | |
#define TEAL { HSV_TEAL } | |
#define GOLD { HSV_GOLDENROD } | |
#define ORNG { HSV_ORANGE } | |
#define BLCK { HSV_ORANGE } | |
#define KEYS_TO_LEDS( \ |
diff --git a/src/runtime/crash_test.go b/src/runtime/crash_test.go | |
index e0c0bac892..7bbe19aafb 100644 | |
--- a/src/runtime/crash_test.go | |
+++ b/src/runtime/crash_test.go | |
@@ -8,7 +8,6 @@ import ( | |
"bytes" | |
"flag" | |
"fmt" | |
- "internal/testenv" | |
"os" |
#!/bin/sh | |
function convert() { | |
local fp="$(realpath "$1")" | |
local d="" | |
if [ -d "$fp" ]; then | |
d="$fp" | |
fp="$d/*.xlsx" | |
else | |
d="$(dirname "$fp")" |
#!/bin/sh | |
set -uf | |
# set -x | |
# inspired by https://gist.github.com/dpino/6c0dca1742093346461e11aa8f608a99 | |
NS="${NS-vpnns}" | |
if grep -q "$NS /sys" /proc/self/mounts; then | |
echo "already running inside the namespace" |
server { | |
listen 443 ssl http2; | |
listen [::]:443 ssl http2; | |
server_name go.oneofone.dev; | |
include conf.d/ssl.conf; # config with ssl config | |
location ~* /([^/]+) { # match the first part of the path, we only need that | |
set $pkg "$1"; | |
set $fullURI '$server_name$uri'; | |
set $pkgURI '$server_name/$pkg'; |
#!/bin/bash | |
set -e | |
EDITOR="code --new-window --wait " | |
GOPATH="$(go env GOPATH)" | |
BASE="$GOPATH/src/tmp/" | |
ARG=${1:-go} | |
if [ $ARG = "-d" ]; then | |
echo -n "delete '$BASE'? " && read Y |
The power of Disney...🤨
1995: Disney buys ABC
2006: Disney buys Pixar
2009: Disney enters 30 film deal with Dreamworks
2009: Disney buys Marvel
import React from 'react'; | |
import { Input, Checkbox, Select } from 'antd'; | |
const FormField = (props) => { | |
let { hidden, form, name, required = false, message = '', valuePropName = 'value', initialValue, type, ...rest } = props, | |
{ getFieldDecorator } = form; | |
if (hidden) return null; | |
let Child = null; |