다음 명령어 실행가능.
python midews.py --help
python midews.py --help-all
python midews.py dsa --help
python midews.py dsa --help-all
python midews.py dsa --generate-config
python midews.py dsa
python midews.py sra
[core] | |
# editor = code --wait | |
pager = less -x4 | |
trustctime = false | |
filemode = false | |
compression = 0 | |
quotepath = false | |
autocrlf = true | |
fscache = true | |
preloadindex = true |
다음 명령어 실행가능.
python midews.py --help
python midews.py --help-all
python midews.py dsa --help
python midews.py dsa --help-all
python midews.py dsa --generate-config
python midews.py dsa
python midews.py sra
import pdb | |
import wdb | |
from mibdb import MiBdb | |
d = MiBdb() | |
d.set_trace() | |
d.set_breakpoint("simplecall.py", 12) | |
d.set_breakpoint("simplecall.py", 16) | |
def a(): |
version: '3.7' | |
# starts 4 docker containers running minio server instances. Each | |
# minio server's web interface will be accessible on the host at port | |
# 9001 through 9004. | |
services: | |
minio1: | |
image: minio/minio:edge | |
volumes: | |
- data1-1:/data1 |
Vagrant.configure(2) do |config| | |
config.vm.box = "phusion/ubuntu-14.04-amd64" | |
config.vm.network "forwarded_port", guest: 3306, host: 3306 | |
# If errors occur, try running "vagrant provision" manually | |
# after "vagrant up" | |
config.vm.provision :docker | |
# To use docker_compose as a provisioning tool, install | |
# vagrant-docker-compose plugin first. It should also solve the |
public class SeqKeyRepository | |
{ | |
public Dictionary<long, Dictionary<long, Dictionary<long, Dictionary<long, HashSet<long>>>>> FindHierachies() | |
{ | |
return FindAll() | |
.GroupBy(key => key.DeviceId) | |
.ToDictionary(deviceGroup => deviceGroup.Key, deviceGroup => | |
{ | |
return deviceGroup | |
.GroupBy(key => key.SeqId) |
Hint from | |
http://cjqed.com/blog/polyglot-persistence-and-transactionscope-in-c/ | |
http://paxcel.net/blog/extending-transaction-scope-to-non-database-transactions-using-resource-manager/ | |
and read | |
http://www.codeproject.com/Articles/690136/All-About-TransactionScope | |
using System; | |
using Stateless; | |
namespace HelloStatemachine | |
{ | |
public interface IHaveContext<T> | |
{ | |
T Context { get; set; } | |
}; |
(defun cd (dir) | |
"Make DIR become the current buffer's default directory. | |
If your environment includes a `CDPATH' variable, try each one of | |
that list of directories (separated by occurrences of | |
`path-separator') when resolving a relative directory name. | |
The path separator is colon in GNU and GNU-like systems." | |
(interactive | |
(list | |
;; FIXME: There's a subtle bug in the completion below. Seems linked | |
;; to a fundamental difficulty of implementing `predicate' correctly. |