Poweroff, on grub
screen press e
on Arch entry to add on the linux
line (after quiet
option) the
option:
intel_pstate=disable
and boot. Login and run in a terminal:
/** | |
* A simple theme for reveal.js presentations, derived from serif.css | |
* It's in the spirit of the Metropolis theme for beamer https://github.com/matze/mtheme | |
* | |
* This theme is Copyright (C) 2016 Vince Hodges, http://sourdoughlabs.com - it is MIT licensed. | |
*/ | |
@import url(../../lib/font/fira/fira.css); | |
.reveal a { |
#!/usr/bin/env ruby | |
require "json" | |
# Changes the shell-version variable for all local active extensions | |
$EXTENSIONS_LIST = eval(`gsettings get org.gnome.shell enabled-extensions`) | |
if not $EXTENSIONS_LIST.is_a?(Array) | |
raise RuntimeError "Cannot read extension list" | |
end | |
$SHELL_VERSION = `gnome-shell --version` |
# Server | |
# To use it: | |
# - Load this script in Blender Note editor as `net.py` | |
# - Select the objects that should handle the network logic (for example an empty or the camera) | |
# - Add an Always sensor with only raise up | |
# - Add a python controller as a module, that calls `net.serve` | |
# - connect sensor and controller | |
# - enjoy | |
import bge |
Il programma è composto di tre elementi principali, che sono necessari al logging dei dati:
Detto questo, il programma funziona sulla pagina correntemente visualizzata solo se:
#!/usr/bin/env ruby | |
require 'colorize' | |
# Comment a paper using % | |
$PAPERS = <<-ENDOFLIST | |
ENDOFLIST | |
$PAPERS = $PAPERS.chomp.split /\n/ |
#!/usr/bin/env ruby | |
# Simple thesaurus script | |
# Thesaurus service provided by [words.bighugelabs.com] | |
require 'net/http' | |
require 'getoptlong' | |
require 'colorize' | |
require 'yaml' | |
require 'json' |
#!/usr/bin/env ruby | |
## | |
# Generates Equations GIF files for readme. | |
# Equations must be inserted in a YAML file. | |
# The parts in configuration will be inserted in each file, in header section, | |
# to allow definitions of new command and so on. | |
# | |
# Binary accepts as input: |
#!/usr/bin/ruby | |
# Local Server for site tests | |
%w|webrick optparse|.each do |gem| | |
raise LoadError, "Cannot load gem #{gem}" unless require gem | |
end | |
options = {} |