Ubuntu was intalled with the default nvidia drivers that it brought (I believe 3.90)
Clone https://github.com/0xbb/apple_set_os.efi
For details, see the README.md
Build it:
Here is OCR'd text from a receipt: | |
"Dine-In | |
#15 | |
<restaurant name redacted> | |
<address redacted> Phone <phone redacted> |
Ubuntu was intalled with the default nvidia drivers that it brought (I believe 3.90)
Clone https://github.com/0xbb/apple_set_os.efi
For details, see the README.md
Build it:
The microcontroller that I studied was removed from a Volkswagen car radio manufactured by Delco (now Delphi). The chip had only Delco markings on the package. It was decapsulated and the markings "NEC D78F0831Y" were found on the die. I reverse engineered the device definition files for the NEC toolchain (RA78K0) and determined that the uPD78F0831Y is a subset of a documented chip, the uPD78F0833Y. The '833Y adds 3 more timers, extended I2C functionality, and adds registers that allow firmware running on the '833Y to reprogram the flash ("self-programming"). Otherwise, the '831Y and '833Y are the same.
The uPD78F0831Y uses the NEC 78K0 core. Note that NEC (now Renesas) produced a number of incompatible cores with similar names such as 78K0S and 78K0R. Those
#!/bin/bash | |
# Usage: clone_all_repos.sh [organization] <output directory> | |
ORG=$1 | |
PER_PAGE=100 | |
GIT_OUTPUT_DIRECTORY=${2:-"/tmp/${ORG}_repos"} | |
if [ -z "$GITHUB_TOKEN" ]; then | |
echo -e "Variable GITHUB_TOKEN isn't set! Please specify your GitHub token.\n\nMore info: https://help.github.com/articles/creating-a-personal-access-token-for-the-command-line/" | |
exit 1 |
import * as cdk from '@aws-cdk/cdk'; | |
import * as SwaggerParser from "swagger-parser"; | |
import convertSwaggerToCdkRestApi from "./swaggerHelper"; | |
SwaggerParser | |
.parse("./swagger.yaml") | |
.then(swagger => { | |
const app = new cdk.App(); | |
let apiGateway = new apigateway.RestApi(this, "My Rest API", { |
[package] | |
name = "test" | |
version = "0.1.0" | |
authors = ["YOU <[email protected]>"] | |
edition = "2018" | |
[lib] | |
crate-type = ["cdylib"] |
UPDATE (March 2020, thanks @ic): I don't know the exact AMI version but yum install docker
now works on the latest Amazon Linux 2. The instructions below may still be relevant depending on the vintage AMI you are using.
Amazon changed the install in Linux 2. One no-longer using 'yum' See: https://aws.amazon.com/amazon-linux-2/release-notes/
sudo amazon-linux-extras install docker
sudo service docker start
I bundled these up into groups and wrote some thoughts about why I ask them!
If these helped you, I'd love to hear about it!! I'm on twitter @vcarl_ or send me an email [email protected]
https://blog.vcarl.com/interview-questions-onboarding-workplace/
version: '2.1' | |
services: | |
kibana: | |
image: 'docker.elastic.co/kibana/kibana-oss:6.1.0' | |
elasticsearch: | |
image: 'docker.elastic.co/elasticsearch/elasticsearch-oss:6.1.0' | |
oauth2-proxy: | |
image: 'a5huynh/oauth2_proxy:2.2' |