Lenovo messed up with the X1E and P1 Gen 1 versions (and maybe later generations) in that the system boots with a thermal limit (aka Tjunction or tjmax) set to 82C (some report 80C). What this means is that regardless of power draw or under-volting settings, when your CPU hits 82C, it will drop the frequency down to the "Configurable TDP-down" frequency, or even lower. It will also may limits the system power draw.
This file contains 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://youtu.be/-C-JoyNuQJs?t=39m45s | |
When I put the reference implementation onto the website I needed to | |
put a software license on it. | |
And I looked at all the licenses that were available, and there were a lot | |
of them. And I decided that the one I liked the best was the MIT License, | |
which was a notice that you would put on your source and it would say, | |
"you're allowed to use this for any purpose you want, just leave the | |
notice in the source and don't sue me." |
This file contains 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
#!/usr/bin/env bash | |
# | |
# Plex's profile for Chromecast is too conservative and only plays 1080p on | |
# the Chromecast Ultra UHD device (4k). | |
# | |
# This script will download an updated Chromecast definition and start a Plex | |
# docker container, binding a few local paths of where you run this script. | |
# | |
# You may want to refer to the Official Plex Docker repository and read the | |
# README text: https://github.com/plexinc/pms-docker |
This file contains 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 -e | |
# A script to mass install Gnome extensions from a single folder. | |
# | |
# for global extensions, use /usr/share/gnome-shell/extensions/ | |
EXTENSIONS_DIR=~/.local/share/gnome-shell/extensions | |
TMP_DIR="/tmp/gnome-install-extensions" | |
DIR=$1 |
I hereby claim:
- I am eduncan911 on github.
- I am eduncan911 (https://keybase.io/eduncan911) on keybase.
- I have a public key ASCm86SHMqJZdxyA3BUcpZKRZ8FKk7y93384uEKOOA1SZAo
To claim this, I am signing this object:
This file contains 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
package main | |
import "fmt" | |
/* | |
Here's a use of labels in Go to continue a for loop | |
from within another for and within a switch case. | |
*/ | |
func main() { |
This file contains 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 | |
# | |
# GoLang cross-compile snippet for Go 1.6+ based loosely on Dave Chaney's cross-compile script: | |
# http://dave.cheney.net/2012/09/08/an-introduction-to-cross-compilation-with-go | |
# | |
# To use: | |
# | |
# $ cd ~/path-to/my-awesome-project | |
# $ go-build-all | |
# |
This file contains 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
/*Package main is a simple test of Json Identing (aka pretty print) | |
To run: | |
$ go run main.go | |
{ | |
"eventId": "xyz", | |
"articleId": "123" | |
} |
This file contains 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 | |
# bash script to create a GoLang README.md in the current and all sub-directories. | |
# | |
# installation: | |
# place this in your ~/bin or similar. make sure to: chmod 755 godoc2md-all | |
# | |
# it is recommended to have a doc.go for each package, that allows for samples and | |
# additional instructions. | |
# |
NewerOlder