Skip to content

Instantly share code, notes, and snippets.

Odyssey-VM ~ # emerge --info
Portage 3.0.16 (python 3.8.8-final-0, default/linux/amd64/17.1/desktop/plasma/systemd, gcc-10.2.0, glibc-2.32-r8, 5.10.6-gentoo-x86_64 x86_64)
=================================================================
System uname: Linux-5.10.6-gentoo-x86_64-x86_64-Intel-R-_Core-TM-_i9-9980HK_CPU_@_2.40GHz-with-glibc2.2.5
KiB Mem: 16380520 total, 14040952 free
KiB Swap: 2097148 total, 2097148 free
Timestamp of repository gentoo: Sun, 07 Mar 2021 17:00:01 +0000
Head commit of repository gentoo: 330346ce66cae755165a2a786527b0605d521279
Timestamp of repository dotnet: Wed, 03 Mar 2021 21:22:02 +0000
Head commit of repository dotnet: f5085cfbff87deb9fdf70008bb7bacadab702d8e
Odyssey-VM ~ # emerge --info
Portage 3.0.16 (python 3.8.8-final-0, default/linux/amd64/17.1/desktop/plasma/systemd, gcc-10.2.0, glibc-2.32-r8, 5.10.6-gentoo-x86_64 x86_64)
=================================================================
System uname: Linux-5.10.6-gentoo-x86_64-x86_64-Intel-R-_Core-TM-_i9-9980HK_CPU_@_2.40GHz-with-glibc2.2.5
KiB Mem: 16380520 total, 14040952 free
KiB Swap: 2097148 total, 2097148 free
Timestamp of repository gentoo: Sun, 07 Mar 2021 17:00:01 +0000
Head commit of repository gentoo: 330346ce66cae755165a2a786527b0605d521279
Timestamp of repository dotnet: Wed, 03 Mar 2021 21:22:02 +0000
Head commit of repository dotnet: f5085cfbff87deb9fdf70008bb7bacadab702d8e
This file has been truncated, but you can view the full file.
 * Package: dev-qt/qtwebengine-5.15.2_p20210224
 * Repository: gentoo
 * Maintainer: qt@gentoo.org gyakovlev@gentoo.org
 * Upstream: https://bugreports.qt.io/
 * USE: abi_x86_64 alsa amd64 elibc_glibc jumbo-build kernel_linux pulseaudio system-ffmpeg system-icu userland_GNU widgets
 * FEATURES: network-sandbox preserve-libs sandbox userpriv usersandbox
* Using python2.7 to build
>>> Unpacking source...
>>> Unpacking qtwebengine-5.15.2_p20210224.tar.xz to /var/tmp/portage/dev-qt/qtwebengine-5.15.2_p20210224/work
>>> Source unpacked in /var/tmp/portage/dev-qt/qtwebengine-5.15.2_p20210224/work
@brad-x
brad-x / piwik-nginx.conf
Created June 23, 2017 18:28 — forked from xenithorb/piwik-nginx.conf
Piwik flat-file nginx configuration
#-*- mode: nginx; mode: flyspell-prog; mode: autopair; ispell-local-dictionary: "american" -*-
## Define a zone for limiting the number of simultaneous
## connections nginx accepts. 1m means 32000 simultaneous
## sessions. We need to define for each server the limit_conn
## value refering to this or other zones.
## ** This syntax requires nginx version >=
## ** 1.1.8. Cf. http://nginx.org/en/CHANGES. If using an older
## ** version then use the limit_zone directive below
## ** instead. Comment out this
## ** one if not using nginx version >= 1.1.8.
#!/bin/bash
#
# Cron script to update Mozilla Firefox build editions
# Targeted OS: Fedora 23 - will probably work on most
# Default Firefox version: Firefox Developer Edition (aurora)
# Leaves files in the following spots:
# /opt/firefox-dev
# /usr/share/applications/firefox-dev.desktop
#
# set -x
@brad-x
brad-x / win-updates.ps1
Created October 17, 2015 13:50 — forked from joefitzgerald/win-updates.ps1
Install All Windows Updates, Rebooting As Many Times As Required
param($global:RestartRequired=0,
$global:MoreUpdates=0,
$global:MaxCycles=10)
function Check-ContinueRestartOrEnd() {
$RegistryKey = "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Run"
$RegistryEntry = "InstallWindowsUpdates"
switch ($global:RestartRequired) {
0 {
$prop = (Get-ItemProperty $RegistryKey).$RegistryEntry