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/sh | |
#rm ~/.config/Trolltech.conf | |
kbuildsycoca5 --noincremental | |
rm -rf ~/.cache/* |
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
#Type Path Mode User Group Age Argument | |
w /sys/devices/system/cpu/cpufreq/boost 0644 root root - 0 |
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 | |
set -e | |
export GSETTINGS_SCHEMA_DIR=_build/data/ | |
if [ -z "$1" ]; then | |
echo "Usage: $0 APP-ID VALUE" | |
exit 0 | |
fi |
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
GO111MODULE=on | |
GOBIN= | |
GOPROXY=https://proxy.golang.org,direct |
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
version: '3' | |
services: | |
db: | |
restart: always | |
image: postgres:latest | |
environment: | |
- POSTGRES_USER=postgres | |
- POSTGRES_PASSWORD=docker | |
healthcheck: |
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
[Unit] | |
Description=My awesome Go app | |
After=multi-user.target | |
[Service] | |
Type=idle | |
ExecStart=/usr/bin/mygobinary | |
[Install] | |
WantedBy=multi-user.target |
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
# Maintainer: kitech1 <[email protected]> | |
pkgname=edrawmax | |
pkgver=9.3 | |
pkgrel=1 | |
pkgmaver=9 | |
pkgmaname=EdrawMax | |
epoch= | |
pkgdesc="All-in-One Diagram Software" | |
arch=('x86_64') | |
url="http://www.edrawsoft.cn/edrawmax/" |
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
[Unit] | |
Description=PulseAudio Sound System | |
Before=sound.target | |
[Service] | |
User=pi | |
Type=simple | |
BusName=org.pulseaudio.Server | |
ExecStart=/usr/bin/pulseaudio | |
Restart=always |
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 | |
RESTORE_FOLDER = /path/to/the/folder/where/you/want/the/code | |
for i in $(find `pwd` -name *.bundle); do | |
git clone --mirror $i $(RESTORE_FOLDER)/$(basename $i .bundle).git | |
cd $(RESTORE_FOLDER) | |
mkdir $(basename $i .bundle) | |
cd $(basename $i .bundle).git | |
git archive master | (cd ../$(basename $i .bundle) && tar x) |
NewerOlder