Bitnami Redmine Stack の phpMyAdmin にリモート端末からアクセスする方法です。
- Debian jessie
- bitnami-redmine-3.1.0-0-linux-x64
$pinvokeCode = @" | |
using System; | |
using System.Runtime.InteropServices; | |
using System.Collections.Generic; | |
namespace Resolution | |
{ | |
[StructLayout(LayoutKind.Sequential)] | |
public struct DEVMODE1 | |
{ | |
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 32)] |
#!/usr/bin/env python | |
import ast | |
import json | |
import os | |
import subprocess | |
import argparse | |
import sys | |
FNULL = open(os.devnull, 'w') |
#!/usr/bin/env python | |
#coding: utf-8 | |
import os | |
import sys | |
import logging | |
from threading import Thread | |
import Queue | |
cluster: | |
head: "cbt" | |
clients: ["client1","client2","client3"] | |
osds: ["osd1","osd2","osd3"] | |
mons: ["mon1","mon2","mon3"] | |
osds_per_node: 1 | |
fs: xfs | |
mkfs_opts: -f -i size=2048 -n size=64k | |
mount_opts: -o inode64,noatime,logbsize=256k | |
conf_file: /etc/ceph/ceph.conf |
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |