$ wget "https://dev.mysql.com/get/Downloads/Connector-C++/mysql-connector-c++-1.1.6-linux-glibc2.5-x86-64bit.rpm"
# rpm -ivh mysql-connector-c++-1.1.6-linux-glibc2.5-x86-64bit.rpm
# sudo dnf install libuuid-devel boost-devel pcre-devel unixODBC-devel gdal-devel libxml2-devel libzip-devel gdk-pixbuf2-devel glibmm24-devel pango-devel cairo-devel gtk2-devel gtkmm24-devel ctemplate-devel vsqlite++-devel tinyxml-devel python-libs python-paramiko autoconf automake libtool gcc-c++ pkgconfig
$ wget http://dev.mysql.com/get/Downloads/MySQLGUITools/mysql-workbench-community-6.3.5-src.tar.gz
$ tar xf mysql-workbench-community-6.3.5-src.tar.gz && cd mysql-workbench-community-6.3.5-src
$ mkdir wb-build
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 | |
# This program has two feature. | |
# | |
# 1. Create a disk image on RAM. | |
# 2. Mount that disk image. | |
# | |
# Usage: | |
# $0 <dir> <size> <name> | |
# |
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 | |
# Usage: | |
# rsync_parallel.sh [--parallel=N] [rsync args...] | |
# | |
# Options: | |
# --parallel=N Use N parallel processes for transfer. Defaults to 10. | |
# | |
# Notes: |
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
var express = require('express'), | |
bodyParser = require('body-parser'), | |
app = express(); | |
var httpServer = require('http') | |
.createServer(app) | |
.listen(config.listening_port, config.listening_address_http); | |
var httpServerWS = require('http') | |
.createServer() |
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
# su - | |
# dnf install akmod-wl | |
# mkdir /root/rpmbuild/SOURCES/wl-kmod-4.2.3 | |
# cp -rp /usr/src/akmods/wl-kmod-6.30.223.248-8.fc22.1.src.rpm /root/rpmbuild/SOURCES/wl-kmod-4.2.3/ | |
# cd /root/rpmbuild/SOURCES/wl-kmod-4.2.3/ | |
# rpm2cpio wl-kmod-6.30.223.248-8.fc22.1.src.rpm | cpio -idmv | |
# mkdir hb | |
# tar xvf hybrid-v35_64-nodebug-pcoem-6_30_223_248.tar.gz -C hb/ | |
# cd hb/ | |
# curl https://gist.githubusercontent.com/boesing/ae0777c0095a1d8d317f/raw/eb9b73a4bf531292c07f6b1dc3a43458ed970d86/wl_cfg80211_hybrid.c | patch -p2 |
I hereby claim:
- I am ipernet on github.
- I am ipernet (https://keybase.io/ipernet) on keybase.
- I have a public key ASCky2GysnvzZklHobP5JnDuXYEQBhHxUUsE-5f9OHcRWwo
To claim this, I am signing this object:
I hereby claim:
- I am ipernet on github.
- I am ipernet (https://keybase.io/ipernet) on keybase.
- I have a public key whose fingerprint is 1A95 6897 A975 FB90 9323 19D2 54C3 F10C B270 A48F
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
apiVersion: v1 | |
kind: Namespace | |
metadata: | |
name: gitlab-managed-apps | |
--- | |
apiVersion: v1 | |
kind: ServiceAccount | |
metadata: | |
name: gitlab-sa | |
namespace: gitlab-managed-apps |