This file contains hidden or 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
cros_secure | |
console= | |
loglevel=7 | |
init=/sbin/init | |
oops=panic | |
panic=-1 | |
root=PARTUUID=%U/PARTNROFF=1 | |
rootwait | |
rw | |
dm_verity.error_behavior=3 |
This file contains hidden or 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
#!/bin/sh | |
## Requires custom kernel to be installed in Chrome OS | |
## Copies files from my archlinux chroot into a temp folder and runs docker from there. | |
## Running this on boot of Chrome OS so my version of the docker daemon is upgraded by | |
## pacman in the chroot. | |
set -e | |
chroot=/usr/local/chroots/arch | |
run=/usr/local/tmp/docker |
This file contains hidden or 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
ime="2015-08-18T23:19:58.996165243+01:00" level=debug msg="Calling POST /containers/create" | |
time="2015-08-18T23:19:58.996200428+01:00" level=info msg="POST /v1.20/containers/create" | |
time="2015-08-18T23:19:58.996580633+01:00" level=warning msg="Your kernel does not support memory swappiness capabilities, memory swappiness discarded." | |
time="2015-08-18T23:19:59.211275975+01:00" level=debug msg="[deviceset] AddDevice(hash=52941566207d0ce9b21b5820bd6f3c1c14fdf5334965e63a2254bf3e17ad59df-init basehash=8c2e06607696bd4afb3d03b687e | |
time="2015-08-18T23:19:59.243894613+01:00" level=debug msg="registerDevice(21, 52941566207d0ce9b21b5820bd6f3c1c14fdf5334965e63a2254bf3e17ad59df-init)" | |
time="2015-08-18T23:19:59.269153056+01:00" level=debug msg="[deviceset] AddDevice(hash=52941566207d0ce9b21b5820bd6f3c1c14fdf5334965e63a2254bf3e17ad59df-init basehash=8c2e06607696bd4afb3d03b687e | |
time="2015-08-18T23:19:59.269450348+01:00" level=debug msg="activateDeviceIfNeeded(52941566207d0ce9b21b5820bd6f3c1c14fdf5334965e63a2254bf3e17ad59d |
This file contains hidden or 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
{ | |
"ociVersion": "0.4.0", | |
"platform": { | |
"os": "linux", | |
"arch": "amd64" | |
}, | |
"process": { | |
"terminal": true, | |
"user": {}, | |
"args": [ |
This file contains hidden or 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
/* | |
https://node-a/pod/3 -> pod-home app | |
https://node-a/pod/3/wetty -> http://localhost:3031 | |
https://node-a/pod/3/theia -> http://localhost:3032 | |
*/ | |
const http = require('http'); | |
const url = require('url'); | |
const fs = require('fs'); | |
const path = require('path'); |
This file contains hidden or 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
#!/bin/bash | |
inot_args="-qq -e modify @.git" | |
for arg in "$@"; do | |
case $arg in | |
--) break ;; | |
*) inot_args+=" $arg"; shift ;; | |
esac | |
done | |
shift |
This file contains hidden or 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
(ns acme.main | |
(:require ["package:flutter/material.dart" :as m] | |
["package:flutter/widgets.dart" :as w] | |
[cljd.flutter.alpha :as f])) | |
(defn- drop-menu [names] | |
(f/widget | |
:state [selected (first names)] | |
(m/DropdownButton | |
:value @selected |
This file contains hidden or 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
(ns sample.navigation | |
"Port of https://docs.flutter.dev/cookbook/navigation/navigation-basics" | |
(:require | |
["package:flutter/material.dart" :as m] | |
[cljd.flutter.alpha :as f])) | |
(def second-route | |
(f/widget | |
:inherit [m/Navigator] | |
(m/Scaffold |
This file contains hidden or 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
(ns sample.navigation | |
"Port of https://docs.flutter.dev/cookbook/navigation/navigation-basics" | |
(:require | |
["package:flutter/material.dart" :as m] | |
[cljd.flutter.alpha :as f])) | |
(def second-route | |
(f/widget | |
:inherit [m/Navigator] | |
(m/Scaffold |
This file contains hidden or 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
;;;;;;;;;;;;;;;; db.cljd | |
(ns mu.db | |
(:require | |
[mu.utils :as u])) | |
(defprotocol Db | |
(init- [db opts] "***") | |
(show- [db] "dumps tables contents") | |
(save-blobby- [this bytes] "save Uint8List to blobbies table") |
OlderNewer