This was sold by Schenker XMG as C404,
while the original model name by GIGABYTE is P34G v2.
The board schematics are not publicly available. However, from another laptop board's schematics, we can learn a bit about the components it should have:
// Future versions of Hyper may add additional config options, | |
// which will not automatically be merged into this file. | |
// See https://hyper.is#cfg for all currently supported options. | |
module.exports = { | |
config: { | |
// default font size in pixels for all tabs | |
fontSize: 12, | |
// font family with optional fallbacks |
#!/bin/bash | |
## see https://lebkowski.name/docker-volumes/ | |
# remove exited containers: | |
docker ps --filter status=dead --filter status=exited -aq | xargs -r docker rm -v | |
# remove unused images: | |
docker images --no-trunc | grep '<none>' | awk '{ print $3 }' | xargs -r docker rmi |
# Porting coreboot to a Haswell / Lynx Point laptop: GIGABYTE P34V2 | |
## autoport | |
### patch coreboot repo for LynxPoint support in autoport | |
https://review.coreboot.org/c/coreboot/+/30890 | |
`git fetch https://review.coreboot.org/coreboot refs/changes/90/30890/2 && git cherry-pick FETCH_HEAD` | |
https://review.coreboot.org/c/coreboot/+/31759 | |
`git fetch https://review.coreboot.org/coreboot refs/changes/59/31759/2 && git cherry-pick FETCH_HEAD` |
# Copyright 2019 Gentoo Authors | |
# Distributed under the terms of the GNU General Public License v2 | |
EAPI=7 | |
EGO_VENDOR=( | |
"github.com/go-xorm/builder 1d658d7596c25394aab557ef5b50ef35bf706384" | |
"github.com/go-xorm/core ccc80c1" | |
"github.com/go-xorm/xorm 1f39c59" | |
"github.com/gorilla/context 08b5f42" |
git clone .../my-project | |
mkdir -p .go/src/ | |
cd .go/src | |
ln -s ../../my-project . | |
cd my-project | |
vim ... | |
GOPATH=$(pwd)/.. build my-project/cmd/foo |
#!/bin/sh | |
# requirements: google_speech, jq, curl, sed | |
URL=https://api.chucknorris.io/jokes/random | |
JSON_PATH='.value' | |
curl -s "$URL" | \ | |
jq "$JSON_PATH" | \ | |
sed "s/'//g" | \ |
[ 0.000000] Linux version 4.14.162 (cyrevolt@orangetux) (gcc version 9.2.0 (Gentoo Hardened 9.2.0-r2 p3)) #11 SMP PREEMPT Wed Jan 8 20:16:25 CET 2020 | |
[ 0.000000] Command line: console=ttyS0 vga=786 memmap=4G!4G | |
[ 0.000000] KERNEL supported cpus: | |
[ 0.000000] Intel GenuineIntel | |
[ 0.000000] AMD AuthenticAMD | |
[ 0.000000] x86/fpu: x87 FPU will use FXSAVE | |
[ 0.000000] e820: BIOS-provided physical RAM map: | |
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable | |
[ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved | |
[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved |