An adoption of https://pypy.readthedocs.org/en/release-2.4.x/arm.html
mkdir crosscompiler
cd crosscompiler/
git clone git://github.com/raspberrypi/tools.git --depth 1
cd ..
An adoption of https://pypy.readthedocs.org/en/release-2.4.x/arm.html
mkdir crosscompiler
cd crosscompiler/
git clone git://github.com/raspberrypi/tools.git --depth 1
cd ..
#!/usr/bin/env python | |
''' | |
A minimal example for calling the PyPy interpreter from CPython. | |
Derived from pyinteractive.py. | |
This only intended to understand what is going on when. | |
PyPy triggers arbitary C compiler runs in between ... | |
''' | |
source="print 'Hello World'" |
#!/usr/bin/python | |
''' | |
Check status of an Adaptec HW RAID controller and sends an email | |
if something looks bad. | |
Intended for being used as cron job, so no screen output is generated. | |
''' | |
# Configuration section | |
notify_email="root" |
$ENV{'TEXINPUTS'}='.:../../../Common//:../Include/:' . $ENV{'TEXINPUTS'}; | |
$pdflatex="pdflatex -shell-escape -file-line-error --synctex=1 %O %S"; | |
$pdf_mode=1; |
#!/bin/bash | |
# | |
# chkconfig: 2345 95 05 | |
# | |
### BEGIN INIT INFO | |
# Provides: minecraft-server | |
# Required-Start: $network $local_fs $remote_fs | |
# Required-Stop: $network $local_fs $remote_fs | |
# Should-Start: $syslog | |
# Should-Stop: $syslog |
import schlundtech | |
auth={"user":"xxxxxx", "password":"yyyyy", "context":"zzz"} | |
all_domains=schlundtech.domain_info(auth) | |
for domain in all_domains: | |
print("\n{name} (last update: {updated})".format(**domain)) | |
info=schlundtech.zone_info(auth, domain['name']) | |
for rr in info: | |
print("{name}\t\t{type}\t{value}".format(**rr)) |
#!/usr/bin/env python | |
''' | |
Script for emulating the BetterBibtex stable citation key feature. | |
(see https://github.com/retorquere/zotero-better-bibtex) | |
input.bib: A BibLatex export from a Zotero 5 library that has "Extra" field | |
entries for stable BibTex keys ("bibtex: <my_key>"). They end up in the | |
note field of the standard Zotero 5 export. | |
output.bib: A BibTex file where the citation keys from the Extra/note field are |
I hereby claim:
To claim this, I am signing this object:
''' | |
This script checks the current Postfix mail queue for mails that | |
where delivered through SMTP authentication. It then shows both | |
the authentication user name and the sender mail adress. | |
Since spammers normally don't use a valid sender adress in your | |
administrative domain, you quickly see the problem. | |
Run with "python3 checkqueue.py" | |
''' |
root@datexis-master2:/data/brick1# gluster volume get fast all | |
Option Value | |
------ ----- | |
cluster.lookup-unhashed on | |
cluster.lookup-optimize on | |
cluster.min-free-disk 10% | |
cluster.min-free-inodes 5% | |
cluster.rebalance-stats off | |
cluster.subvols-per-directory (null) | |
cluster.readdir-optimize off |