├── .gitignore ├── LICENSE ├── README.md └── snippet ├── bin └── shell │ ├── bashrc_docker.sh │ ├── dropfile.sh │ ├── freem.sh │ ├── install-vim.sh │ ├── install.sh │ ├── set_display_resolution.py │ └── yum ├── config ├── atom.md ├── komodoide-prefs.xml ├── pep257 ├── pep8 ├── pylintrc ├── sss_config.md ├── tmux-bash-completation ├── tmux.conf ├── vscode.md └── webpack.config.template.js ├── docs ├── README.md ├── algorithm │ ├── README.md │ ├── _static │ │ └── timecomplexity.png │ └── algorithm-analysis-and-design.md ├── architecture │ ├── README.md │ ├── ha-lb │ │ ├── _static │ │ │ ├── lvs-1.png │ │ │ ├── lvs-2.png │ │ │ ├── lvs-3.png │ │ │ ├── lvs-4.png │ │ │ ├── lvs-5.png │ │ │ └── lvs-6.png │ │ ├── haproxy-architecture.txt │ │ ├── haproxy-conf-example.md │ │ ├── haproxy-configuration.txt │ │ ├── haproxy-intro.txt │ │ ├── keepalived-conf.md │ │ ├── keepalived.md │ │ └── lvs-lb-and-install.md │ └── http-api-spec.md ├── assembly │ └── linux-assembly-development-guide.md ├── book&article │ └── README.md ├── bt │ └── dht-proto-chinese.md ├── c&c++ │ ├── README.md │ ├── cpp.md │ ├── effective-cpp-gist-excerpt.md │ ├── more-effective-cpp-gist-excerpt.md │ └── resource-management.md ├── compile │ ├── links.md │ └── parser_generator.md ├── compute │ ├── README.md │ └── how-to-teach-endian.md ├── db │ └── sql │ │ ├── README.md │ │ ├── _static │ │ ├── 1.jpg │ │ ├── 10.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ ├── 6.jpg │ │ ├── 7.jpg │ │ ├── 8.jpg │ │ ├── 9.jpg │ │ └── sql-quick-ref.png │ │ ├── million-record.md │ │ ├── mysql-index.md │ │ ├── mysql-select.md │ │ ├── mysql-table-and-index.md │ │ └── sql-quick-ref.md ├── distributed │ ├── README.md │ ├── _static │ │ ├── 1.jpg │ │ ├── 10.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ ├── 6.jpg │ │ ├── 7.jpg │ │ ├── 8.jpg │ │ └── 9.jpg │ ├── cap-theory.md │ ├── consistency.md │ ├── distributed-transaction.md │ ├── etcd-example.md │ └── zookeeper-theory.md ├── docker │ └── README.md ├── document │ ├── README.md │ ├── markdown │ │ ├── README.md │ │ ├── _static │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ └── 3.png │ │ └── cheatsheet.md │ └── reStructuredText │ │ └── README.md ├── editor │ └── vim │ │ ├── README.md │ │ ├── _static │ │ └── 1.png │ │ ├── links.md │ │ ├── others.md │ │ ├── vim-keyboard-map.md │ │ ├── vim-plugin-nerdtree.md │ │ ├── vim-script-syntax.md │ │ └── vim-write-script-first.md ├── encoding │ └── README.md ├── gcc │ └── gcc-lib.md ├── go │ ├── README.md │ ├── _static │ │ └── package-init.png │ ├── go-base-syntax.md │ ├── go-base-type.md │ ├── go-expression.md │ ├── go-function.md │ ├── go-learning-note.md │ ├── go-others.md │ ├── go-package.md │ ├── go-statement.md │ ├── go-std-lib.md │ ├── go-tool-repo.md │ ├── go-version.md │ ├── net-http.md │ ├── optimization.md │ ├── packages.md │ └── template.txt ├── java │ ├── README.md │ └── packages.md ├── js │ ├── README.md │ ├── _static │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ └── 3.png │ ├── amd-commonjs-umd.md │ ├── apply-call-bind.md │ ├── es2016-es2017.md │ ├── es2016-overview.md │ ├── faq.md │ ├── javascript.md │ ├── js-quick-reference.md │ ├── packages.md │ └── webpack-plugins.md ├── kubernetes │ └── README.md ├── linux │ ├── QoS │ │ ├── README.md │ │ ├── _static │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ ├── 6.jpg │ │ │ ├── 7.jpg │ │ │ ├── 8.jpg │ │ │ ├── 9.jpg │ │ │ └── htb-queue-discipline-diagram.png │ │ ├── htb-example.md │ │ ├── htb-example2.md │ │ ├── htb-user-guide.md │ │ ├── link.md │ │ ├── qos-filter.md │ │ ├── qos-theory.md │ │ ├── qos-use.md │ │ └── tc-doc │ │ │ ├── cls_fw.txt │ │ │ ├── cls_route.txt │ │ │ ├── cls_rsvp.txt │ │ │ ├── cls_u32.txt │ │ │ ├── estimators.txt │ │ │ ├── police.txt │ │ │ ├── priority.txt │ │ │ ├── sch_bfifo.txt │ │ │ ├── sch_cbq.txt │ │ │ ├── sch_hfsc.txt │ │ │ ├── sch_noop.txt │ │ │ ├── sch_noqueue.txt │ │ │ ├── sch_pfifo.txt │ │ │ ├── sch_pfifo_fast.txt │ │ │ ├── sch_prio.txt │ │ │ ├── sch_sfq.txt │ │ │ ├── sch_tbf.txt │ │ │ └── virtual_devices.txt │ ├── README.md │ ├── diskio │ │ └── fio.md │ ├── distribution │ │ └── kali.md │ ├── iproute2 │ │ ├── _static │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.jpg │ │ │ └── iproute2.png │ │ ├── ip1.md │ │ └── tc1.md │ ├── ipv4 │ │ ├── common-setting.md │ │ └── system-config.md │ ├── kernel │ │ ├── README.md │ │ └── _static │ │ │ └── linux-kernel-map.png │ ├── netfilter │ │ ├── _static │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 11.png │ │ │ ├── 12.png │ │ │ ├── 13.png │ │ │ ├── 14.png │ │ │ ├── 15.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ ├── 9.png │ │ │ ├── p1.png │ │ │ └── p2.png │ │ ├── iptables-beginner.md │ │ ├── iptables-ext.md │ │ ├── iptables-usage.md │ │ ├── link.md │ │ └── netfilter.txt │ ├── netlink │ │ ├── _static │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ └── 3.jpg │ │ ├── generic-netlink-howto.txt │ │ ├── netlink-implementation-analyzation.pdf │ │ └── netlink-note.md │ ├── others │ │ ├── README.md │ │ ├── _static │ │ │ ├── backlog.png │ │ │ ├── css-selector.png │ │ │ ├── gnome-shell-calemdar-fore.png │ │ │ ├── gnome-shell-calendar-post.png │ │ │ ├── gnome-shell-main.png │ │ │ ├── gnome-shell-min-width-fore.png │ │ │ ├── gnome-shell-min-width-post.png │ │ │ ├── gnome-shell-overview.png │ │ │ ├── gnome-shell-status-icon-hpadding-fore.png │ │ │ ├── gnome-shell-status-icon-hpadding-post.png │ │ │ └── gnome-shell-toggle-1.png │ │ ├── backlog.md │ │ ├── customize-gnome-shell.md │ │ ├── linux-info.md │ │ └── linux-performance-analysis-and-optimization.md │ ├── program │ │ ├── _static │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 11.png │ │ │ ├── 12.png │ │ │ ├── 13.jpg │ │ │ ├── 14.jpg │ │ │ ├── 2.png │ │ │ ├── 3.jpg │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.jpg │ │ ├── compile-kernel.md │ │ ├── daemon.md │ │ ├── linux-system-programming.md │ │ ├── raw-socket-demystified.txt │ │ ├── raw-socket-ipv4.md │ │ ├── raw-socket.md │ │ └── so_reuse.md │ └── tap │ │ ├── README.md │ │ ├── _static │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ └── 3.jpg │ │ └── tap-tun.md ├── network │ ├── ddos │ │ └── ddos-blackhole.md │ ├── nat │ │ ├── _static │ │ │ ├── 1.png │ │ │ ├── 10.jpg │ │ │ ├── 11.jpg │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ │ ├── p2p-communication-across-nat.md │ │ └── penetrate-nat.md │ ├── others │ │ ├── port-scan.md │ │ └── userspace-net-stack.md │ ├── ovs-of │ │ ├── QoS.md │ │ ├── README.md │ │ ├── _static │ │ │ ├── OVS_Flow_Tables.png │ │ │ └── OVS_flow_Tables_with_ARP_responder.png │ │ ├── dump-flows.md │ │ ├── in_port.md │ │ ├── link.md │ │ ├── others.md │ │ ├── ovs-dpdk.md │ │ └── tunnel.md │ ├── protocol │ │ ├── README.md │ │ ├── _static │ │ │ ├── ethernet.jpg │ │ │ ├── tcpip.png │ │ │ └── vlan_tag.png │ │ ├── data-link-layer.md │ │ └── switch-router.md │ ├── tcp │ │ ├── _static │ │ │ └── 1.png │ │ └── close_wait_and_time_wait.md │ ├── tcpdump │ │ ├── detailed-manuel.md │ │ └── simple-manuel.txt │ └── tunnel │ │ ├── _static │ │ ├── 1.jpg │ │ ├── 10.png │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ ├── 6.jpg │ │ ├── 7.jpg │ │ ├── 8.jpg │ │ └── 9.png │ │ ├── ssh.md │ │ └── vtun-usage-and-src-analysis.md ├── openstack │ ├── README.md │ └── _static │ │ └── tunnel-flows.png ├── package │ └── fpm.md ├── python │ ├── README.md │ ├── _static │ │ ├── 1.png │ │ ├── 2.jpg │ │ ├── 3.png │ │ ├── 4.jpg │ │ └── 5.png │ ├── builtin.md │ ├── django-form.md │ ├── link.md │ ├── logging.md │ ├── pastedeploy.md │ ├── pypi_source.md │ ├── python-advance-app.md │ ├── python-advanced-feature.md │ ├── python-appendix.md │ ├── python-attr.md │ ├── python-base.md │ ├── python-c-extension.md │ ├── python-class.md │ ├── python-exception.md │ ├── python-expression-statement.md │ ├── python-file-encoding.md │ ├── python-function.md │ ├── python-operator-overload.md │ ├── python-other-key-point.md │ ├── python-package-guide.md │ ├── python-preface.md │ ├── python-type.md │ ├── python-variable-scope-package.md │ └── sqlalchemy-analysis.md ├── rust │ ├── README.md │ ├── notes.md │ ├── packages.md │ └── ref.md ├── shell │ ├── README.md │ ├── shell-appendix.md │ ├── shell-argument.md │ ├── shell-arithmetic.md │ ├── shell-builtin-command.md │ ├── shell-environment-var.md │ ├── shell-extension.md │ ├── shell-history.md │ ├── shell-lexical-preview.md │ ├── shell-others.md │ ├── shell-preface.md │ ├── shell-readline.md │ ├── shell-redirection.md │ ├── shell-reference.md │ └── shell-syntax.md ├── swift │ ├── README.md │ └── packages.md ├── tool │ ├── README.md │ ├── diff&patch.md │ └── script │ │ └── install-aria2-dep.sh ├── vcs │ ├── README.md │ ├── _static │ │ ├── 1.png │ │ ├── 10.png │ │ ├── 11.png │ │ ├── 12.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ ├── 9.png │ │ ├── git-server-method.png │ │ ├── git-shortcut.jpg │ │ └── repo.png │ ├── build-git-server.md │ ├── build-svn-server.md │ ├── git-commit-message.md │ ├── git-http-proxy.md │ ├── git-learning-note.md │ ├── git-rebase.md │ └── github-guide.md ├── web │ ├── README.md │ ├── _static │ │ ├── 1.png │ │ ├── 10.png │ │ ├── 11.png │ │ ├── 12.png │ │ ├── 13.png │ │ ├── 14.png │ │ ├── 15.png │ │ ├── 16.png │ │ ├── 17.png │ │ ├── 18.jpg │ │ ├── 19.png │ │ ├── 2.png │ │ ├── 20.jpg │ │ ├── 20.png │ │ ├── 21.png │ │ ├── 22.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ └── 9.png │ ├── browse-http-cache.md │ ├── css-selector.md │ ├── url_hash.md │ ├── website-evolution-summary.md │ └── website-evolution.md └── windows │ └── README.md ├── example ├── c-c++ │ ├── BiTree.c │ ├── OICQ-20120820.tar.gz │ ├── find-sort.c │ ├── fragroute │ │ ├── fragroute-1.2.tar.gz │ │ ├── fragroute.8.txt │ │ └── fragtest.8.txt │ ├── maze_demo.cpp │ ├── sendip │ │ ├── sendip-2.5.tar.gz │ │ └── sendip-source-analyzation.doc │ └── tcpipiv1.tar.Z ├── dockerfile │ └── python36.dockerfile ├── go │ ├── mxj.go │ ├── project │ │ ├── README.md │ │ ├── cmd │ │ │ └── project │ │ │ │ └── main.go │ │ ├── glide.yaml │ │ └── project │ │ │ ├── conf │ │ │ └── conf.go │ │ │ └── enter.go │ ├── snippet │ │ ├── port_range.go │ │ ├── port_range_test.go │ │ ├── value.go │ │ └── value_test.go │ ├── src │ │ ├── listenport │ │ │ ├── client │ │ │ │ └── main.go │ │ │ └── server │ │ │ │ └── main.go │ │ └── service │ │ │ ├── client │ │ │ └── main.go │ │ │ └── server │ │ │ └── main.go │ └── xml.go ├── linux │ ├── flow_hash_list.tar.gz │ ├── list-netns.py │ ├── netfilter │ │ ├── Makefile │ │ └── test_nf.c │ └── timer.c ├── nodejs │ └── webpack │ │ ├── .eslintrc.js │ │ ├── build │ │ ├── config.js │ │ ├── webpack.base.config.js │ │ ├── webpack.dev.config.js │ │ ├── webpack.dll.config.js │ │ └── webpack.production.config.js │ │ ├── dll │ │ └── vendor.js │ │ ├── index.html │ │ ├── package.json │ │ └── src │ │ ├── index1.js │ │ └── index2.js ├── python │ ├── api_proxy.py │ ├── bt │ │ ├── ItMetadata.py │ │ ├── bencode.py │ │ ├── downloadTorrent.py │ │ ├── metadata.py │ │ ├── metautils.py │ │ ├── simMetadata.py │ │ ├── simdt_worker.py │ │ └── startCrawler.py │ ├── call_retry.py │ ├── check_music.py │ ├── circuit_breaker.py │ ├── classifier.py │ ├── config-parser.py │ ├── falcon_app.py │ ├── greentaskpool.py │ ├── gunicorn-conf.py │ ├── gunicorn-logrotate.conf │ ├── gunicorn.py │ ├── gunicorn_app.py │ ├── init_logging.py │ ├── lifemanager.py │ ├── oslo_messaging │ │ ├── client.py │ │ └── server.py │ ├── osloconfig.py │ ├── oslolog.py │ ├── ovs-port-range.py │ ├── password.py │ ├── ping_ip.py │ ├── pool.py │ ├── process.py │ ├── project │ │ ├── LICENSE │ │ ├── PKG-INFO │ │ ├── README.rst │ │ ├── doc │ │ │ └── Introduction.txt │ │ ├── logging.ini │ │ ├── project.conf │ │ ├── project │ │ │ ├── __init__.py │ │ │ ├── _options.py │ │ │ ├── common │ │ │ │ ├── __init__.py │ │ │ │ ├── logging.py │ │ │ │ └── utils.py │ │ │ ├── db │ │ │ │ ├── __init__.py │ │ │ │ └── sqlalchemy │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── api.py │ │ │ │ │ ├── base.py │ │ │ │ │ └── models.py │ │ │ └── main.py │ │ ├── requirements.txt │ │ ├── setup.cfg │ │ ├── setup.py │ │ └── test │ │ │ └── test.py │ ├── ratelimit.py │ ├── resourcelock.py │ ├── ryu-nat-switch.py │ ├── scrapy │ │ └── crawler │ │ │ ├── README │ │ │ ├── crawler │ │ │ ├── __init__.py │ │ │ ├── items.py │ │ │ ├── linkextractors.py │ │ │ ├── pipelines.py │ │ │ ├── settings.py │ │ │ ├── spiders │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── imagespide.py │ │ │ │ └── textspider.py │ │ │ └── utils.py │ │ │ └── scrapy.cfg │ ├── snake.py │ ├── sqlalchemy-orm-example.py │ ├── sqlalchemy-orm-model.py │ ├── sqlalchemy_db.py │ ├── stevedore.md │ ├── tap.c │ ├── template.py │ ├── url.py │ ├── utils.py │ ├── version.py │ ├── wsgi.py │ ├── xml2json.py │ └── zookeeper.py ├── shell │ ├── openvpn.sh │ └── rublock.sh └── templates │ ├── Makefile │ ├── html5.html │ ├── service-script(openstack-nova-api) │ └── sublimetext-sftp-config.json ├── libs ├── c-c++ │ ├── encode.cpp │ ├── frame-crc32.c │ ├── list.h │ └── xlib │ │ ├── xdlist.c │ │ ├── xdlist.h │ │ ├── xgf.c │ │ ├── xgf.h │ │ ├── xslist.c │ │ ├── xslist.h │ │ └── xtypes.h ├── css │ ├── cssbase.css │ ├── cssreset.css │ └── normalize.css ├── js │ ├── cookie.js │ ├── jquery.cookie │ │ ├── README.md │ │ └── jquery.cookie.js │ ├── json.js │ ├── loadjs.js │ ├── md5.js │ └── utils.js └── linux │ ├── init.d-service-example │ └── kernel-utils.h └── software └── symbol-fonts_1.2_all.deb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/README.md -------------------------------------------------------------------------------- /snippet/bin/shell/bashrc_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/bin/shell/bashrc_docker.sh -------------------------------------------------------------------------------- /snippet/bin/shell/dropfile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/bin/shell/dropfile.sh -------------------------------------------------------------------------------- /snippet/bin/shell/freem.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/bin/shell/freem.sh -------------------------------------------------------------------------------- /snippet/bin/shell/install-vim.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/bin/shell/install-vim.sh -------------------------------------------------------------------------------- /snippet/bin/shell/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/bin/shell/install.sh -------------------------------------------------------------------------------- /snippet/bin/shell/set_display_resolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/bin/shell/set_display_resolution.py -------------------------------------------------------------------------------- /snippet/bin/shell/yum: -------------------------------------------------------------------------------- 1 | yum --setopt=tsflags=noscripts $@ 2 | -------------------------------------------------------------------------------- /snippet/config/atom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/config/atom.md -------------------------------------------------------------------------------- /snippet/config/komodoide-prefs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/config/komodoide-prefs.xml -------------------------------------------------------------------------------- /snippet/config/pep257: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/config/pep257 -------------------------------------------------------------------------------- /snippet/config/pep8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/config/pep8 -------------------------------------------------------------------------------- /snippet/config/pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/config/pylintrc -------------------------------------------------------------------------------- /snippet/config/sss_config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/config/sss_config.md -------------------------------------------------------------------------------- /snippet/config/tmux-bash-completation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/config/tmux-bash-completation -------------------------------------------------------------------------------- /snippet/config/tmux.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/config/tmux.conf -------------------------------------------------------------------------------- /snippet/config/vscode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/config/vscode.md -------------------------------------------------------------------------------- /snippet/config/webpack.config.template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/config/webpack.config.template.js -------------------------------------------------------------------------------- /snippet/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/README.md -------------------------------------------------------------------------------- /snippet/docs/algorithm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/algorithm/README.md -------------------------------------------------------------------------------- /snippet/docs/algorithm/_static/timecomplexity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/algorithm/_static/timecomplexity.png -------------------------------------------------------------------------------- /snippet/docs/algorithm/algorithm-analysis-and-design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/algorithm/algorithm-analysis-and-design.md -------------------------------------------------------------------------------- /snippet/docs/architecture/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/architecture/README.md -------------------------------------------------------------------------------- /snippet/docs/architecture/ha-lb/_static/lvs-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/architecture/ha-lb/_static/lvs-1.png -------------------------------------------------------------------------------- /snippet/docs/architecture/ha-lb/_static/lvs-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/architecture/ha-lb/_static/lvs-2.png -------------------------------------------------------------------------------- /snippet/docs/architecture/ha-lb/_static/lvs-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/architecture/ha-lb/_static/lvs-3.png -------------------------------------------------------------------------------- /snippet/docs/architecture/ha-lb/_static/lvs-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/architecture/ha-lb/_static/lvs-4.png -------------------------------------------------------------------------------- /snippet/docs/architecture/ha-lb/_static/lvs-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/architecture/ha-lb/_static/lvs-5.png -------------------------------------------------------------------------------- /snippet/docs/architecture/ha-lb/_static/lvs-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/architecture/ha-lb/_static/lvs-6.png -------------------------------------------------------------------------------- /snippet/docs/architecture/ha-lb/haproxy-architecture.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/architecture/ha-lb/haproxy-architecture.txt -------------------------------------------------------------------------------- /snippet/docs/architecture/ha-lb/haproxy-conf-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/architecture/ha-lb/haproxy-conf-example.md -------------------------------------------------------------------------------- /snippet/docs/architecture/ha-lb/haproxy-configuration.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/architecture/ha-lb/haproxy-configuration.txt -------------------------------------------------------------------------------- /snippet/docs/architecture/ha-lb/haproxy-intro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/architecture/ha-lb/haproxy-intro.txt -------------------------------------------------------------------------------- /snippet/docs/architecture/ha-lb/keepalived-conf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/architecture/ha-lb/keepalived-conf.md -------------------------------------------------------------------------------- /snippet/docs/architecture/ha-lb/keepalived.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/architecture/ha-lb/keepalived.md -------------------------------------------------------------------------------- /snippet/docs/architecture/ha-lb/lvs-lb-and-install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/architecture/ha-lb/lvs-lb-and-install.md -------------------------------------------------------------------------------- /snippet/docs/architecture/http-api-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/architecture/http-api-spec.md -------------------------------------------------------------------------------- /snippet/docs/assembly/linux-assembly-development-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/assembly/linux-assembly-development-guide.md -------------------------------------------------------------------------------- /snippet/docs/book&article/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/book&article/README.md -------------------------------------------------------------------------------- /snippet/docs/bt/dht-proto-chinese.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/bt/dht-proto-chinese.md -------------------------------------------------------------------------------- /snippet/docs/c&c++/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/c&c++/README.md -------------------------------------------------------------------------------- /snippet/docs/c&c++/cpp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/c&c++/cpp.md -------------------------------------------------------------------------------- /snippet/docs/c&c++/effective-cpp-gist-excerpt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/c&c++/effective-cpp-gist-excerpt.md -------------------------------------------------------------------------------- /snippet/docs/c&c++/more-effective-cpp-gist-excerpt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/c&c++/more-effective-cpp-gist-excerpt.md -------------------------------------------------------------------------------- /snippet/docs/c&c++/resource-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/c&c++/resource-management.md -------------------------------------------------------------------------------- /snippet/docs/compile/links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/compile/links.md -------------------------------------------------------------------------------- /snippet/docs/compile/parser_generator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/compile/parser_generator.md -------------------------------------------------------------------------------- /snippet/docs/compute/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/compute/README.md -------------------------------------------------------------------------------- /snippet/docs/compute/how-to-teach-endian.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/compute/how-to-teach-endian.md -------------------------------------------------------------------------------- /snippet/docs/db/sql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/db/sql/README.md -------------------------------------------------------------------------------- /snippet/docs/db/sql/_static/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/db/sql/_static/1.jpg -------------------------------------------------------------------------------- /snippet/docs/db/sql/_static/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/db/sql/_static/10.jpg -------------------------------------------------------------------------------- /snippet/docs/db/sql/_static/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/db/sql/_static/2.jpg -------------------------------------------------------------------------------- /snippet/docs/db/sql/_static/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/db/sql/_static/3.jpg -------------------------------------------------------------------------------- /snippet/docs/db/sql/_static/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/db/sql/_static/4.jpg -------------------------------------------------------------------------------- /snippet/docs/db/sql/_static/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/db/sql/_static/5.jpg -------------------------------------------------------------------------------- /snippet/docs/db/sql/_static/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/db/sql/_static/6.jpg -------------------------------------------------------------------------------- /snippet/docs/db/sql/_static/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/db/sql/_static/7.jpg -------------------------------------------------------------------------------- /snippet/docs/db/sql/_static/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/db/sql/_static/8.jpg -------------------------------------------------------------------------------- /snippet/docs/db/sql/_static/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/db/sql/_static/9.jpg -------------------------------------------------------------------------------- /snippet/docs/db/sql/_static/sql-quick-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/db/sql/_static/sql-quick-ref.png -------------------------------------------------------------------------------- /snippet/docs/db/sql/million-record.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/db/sql/million-record.md -------------------------------------------------------------------------------- /snippet/docs/db/sql/mysql-index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/db/sql/mysql-index.md -------------------------------------------------------------------------------- /snippet/docs/db/sql/mysql-select.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/db/sql/mysql-select.md -------------------------------------------------------------------------------- /snippet/docs/db/sql/mysql-table-and-index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/db/sql/mysql-table-and-index.md -------------------------------------------------------------------------------- /snippet/docs/db/sql/sql-quick-ref.md: -------------------------------------------------------------------------------- 1 | 2 | ![SQL Quick Reference](./_static/sql-quick-ref.png) 3 | -------------------------------------------------------------------------------- /snippet/docs/distributed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/distributed/README.md -------------------------------------------------------------------------------- /snippet/docs/distributed/_static/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/distributed/_static/1.jpg -------------------------------------------------------------------------------- /snippet/docs/distributed/_static/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/distributed/_static/10.jpg -------------------------------------------------------------------------------- /snippet/docs/distributed/_static/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/distributed/_static/2.jpg -------------------------------------------------------------------------------- /snippet/docs/distributed/_static/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/distributed/_static/3.jpg -------------------------------------------------------------------------------- /snippet/docs/distributed/_static/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/distributed/_static/4.jpg -------------------------------------------------------------------------------- /snippet/docs/distributed/_static/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/distributed/_static/5.jpg -------------------------------------------------------------------------------- /snippet/docs/distributed/_static/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/distributed/_static/6.jpg -------------------------------------------------------------------------------- /snippet/docs/distributed/_static/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/distributed/_static/7.jpg -------------------------------------------------------------------------------- /snippet/docs/distributed/_static/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/distributed/_static/8.jpg -------------------------------------------------------------------------------- /snippet/docs/distributed/_static/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/distributed/_static/9.jpg -------------------------------------------------------------------------------- /snippet/docs/distributed/cap-theory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/distributed/cap-theory.md -------------------------------------------------------------------------------- /snippet/docs/distributed/consistency.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/distributed/consistency.md -------------------------------------------------------------------------------- /snippet/docs/distributed/distributed-transaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/distributed/distributed-transaction.md -------------------------------------------------------------------------------- /snippet/docs/distributed/etcd-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/distributed/etcd-example.md -------------------------------------------------------------------------------- /snippet/docs/distributed/zookeeper-theory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/distributed/zookeeper-theory.md -------------------------------------------------------------------------------- /snippet/docs/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/docker/README.md -------------------------------------------------------------------------------- /snippet/docs/document/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/document/README.md -------------------------------------------------------------------------------- /snippet/docs/document/markdown/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/document/markdown/README.md -------------------------------------------------------------------------------- /snippet/docs/document/markdown/_static/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/document/markdown/_static/1.png -------------------------------------------------------------------------------- /snippet/docs/document/markdown/_static/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/document/markdown/_static/2.png -------------------------------------------------------------------------------- /snippet/docs/document/markdown/_static/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/document/markdown/_static/3.png -------------------------------------------------------------------------------- /snippet/docs/document/markdown/cheatsheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/document/markdown/cheatsheet.md -------------------------------------------------------------------------------- /snippet/docs/document/reStructuredText/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/document/reStructuredText/README.md -------------------------------------------------------------------------------- /snippet/docs/editor/vim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/editor/vim/README.md -------------------------------------------------------------------------------- /snippet/docs/editor/vim/_static/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/editor/vim/_static/1.png -------------------------------------------------------------------------------- /snippet/docs/editor/vim/links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/editor/vim/links.md -------------------------------------------------------------------------------- /snippet/docs/editor/vim/others.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/editor/vim/others.md -------------------------------------------------------------------------------- /snippet/docs/editor/vim/vim-keyboard-map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/editor/vim/vim-keyboard-map.md -------------------------------------------------------------------------------- /snippet/docs/editor/vim/vim-plugin-nerdtree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/editor/vim/vim-plugin-nerdtree.md -------------------------------------------------------------------------------- /snippet/docs/editor/vim/vim-script-syntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/editor/vim/vim-script-syntax.md -------------------------------------------------------------------------------- /snippet/docs/editor/vim/vim-write-script-first.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/editor/vim/vim-write-script-first.md -------------------------------------------------------------------------------- /snippet/docs/encoding/README.md: -------------------------------------------------------------------------------- 1 | 2 | - [XML参考手册](http://www.runoob.com/svg/svg-reference.html) 3 | -------------------------------------------------------------------------------- /snippet/docs/gcc/gcc-lib.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/gcc/gcc-lib.md -------------------------------------------------------------------------------- /snippet/docs/go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/go/README.md -------------------------------------------------------------------------------- /snippet/docs/go/_static/package-init.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/go/_static/package-init.png -------------------------------------------------------------------------------- /snippet/docs/go/go-base-syntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/go/go-base-syntax.md -------------------------------------------------------------------------------- /snippet/docs/go/go-base-type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/go/go-base-type.md -------------------------------------------------------------------------------- /snippet/docs/go/go-expression.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/go/go-expression.md -------------------------------------------------------------------------------- /snippet/docs/go/go-function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/go/go-function.md -------------------------------------------------------------------------------- /snippet/docs/go/go-learning-note.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/go/go-learning-note.md -------------------------------------------------------------------------------- /snippet/docs/go/go-others.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/go/go-others.md -------------------------------------------------------------------------------- /snippet/docs/go/go-package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/go/go-package.md -------------------------------------------------------------------------------- /snippet/docs/go/go-statement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/go/go-statement.md -------------------------------------------------------------------------------- /snippet/docs/go/go-std-lib.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/go/go-std-lib.md -------------------------------------------------------------------------------- /snippet/docs/go/go-tool-repo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/go/go-tool-repo.md -------------------------------------------------------------------------------- /snippet/docs/go/go-version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/go/go-version.md -------------------------------------------------------------------------------- /snippet/docs/go/net-http.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/go/net-http.md -------------------------------------------------------------------------------- /snippet/docs/go/optimization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/go/optimization.md -------------------------------------------------------------------------------- /snippet/docs/go/packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/go/packages.md -------------------------------------------------------------------------------- /snippet/docs/go/template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/go/template.txt -------------------------------------------------------------------------------- /snippet/docs/java/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/java/README.md -------------------------------------------------------------------------------- /snippet/docs/java/packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/java/packages.md -------------------------------------------------------------------------------- /snippet/docs/js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/js/README.md -------------------------------------------------------------------------------- /snippet/docs/js/_static/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/js/_static/1.jpg -------------------------------------------------------------------------------- /snippet/docs/js/_static/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/js/_static/2.jpg -------------------------------------------------------------------------------- /snippet/docs/js/_static/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/js/_static/3.png -------------------------------------------------------------------------------- /snippet/docs/js/amd-commonjs-umd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/js/amd-commonjs-umd.md -------------------------------------------------------------------------------- /snippet/docs/js/apply-call-bind.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/js/apply-call-bind.md -------------------------------------------------------------------------------- /snippet/docs/js/es2016-es2017.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/js/es2016-es2017.md -------------------------------------------------------------------------------- /snippet/docs/js/es2016-overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/js/es2016-overview.md -------------------------------------------------------------------------------- /snippet/docs/js/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/js/faq.md -------------------------------------------------------------------------------- /snippet/docs/js/javascript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/js/javascript.md -------------------------------------------------------------------------------- /snippet/docs/js/js-quick-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/js/js-quick-reference.md -------------------------------------------------------------------------------- /snippet/docs/js/packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/js/packages.md -------------------------------------------------------------------------------- /snippet/docs/js/webpack-plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/js/webpack-plugins.md -------------------------------------------------------------------------------- /snippet/docs/kubernetes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/kubernetes/README.md -------------------------------------------------------------------------------- /snippet/docs/linux/QoS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/QoS/README.md -------------------------------------------------------------------------------- /snippet/docs/linux/QoS/_static/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/QoS/_static/1.jpg -------------------------------------------------------------------------------- /snippet/docs/linux/QoS/_static/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/QoS/_static/2.jpg -------------------------------------------------------------------------------- /snippet/docs/linux/QoS/_static/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/QoS/_static/3.jpg -------------------------------------------------------------------------------- /snippet/docs/linux/QoS/_static/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/QoS/_static/4.jpg -------------------------------------------------------------------------------- /snippet/docs/linux/QoS/_static/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/QoS/_static/5.jpg -------------------------------------------------------------------------------- /snippet/docs/linux/QoS/_static/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/QoS/_static/6.jpg -------------------------------------------------------------------------------- /snippet/docs/linux/QoS/_static/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/QoS/_static/7.jpg -------------------------------------------------------------------------------- /snippet/docs/linux/QoS/_static/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/QoS/_static/8.jpg -------------------------------------------------------------------------------- /snippet/docs/linux/QoS/_static/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/QoS/_static/9.jpg -------------------------------------------------------------------------------- /snippet/docs/linux/QoS/_static/htb-queue-discipline-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/QoS/_static/htb-queue-discipline-diagram.png -------------------------------------------------------------------------------- /snippet/docs/linux/QoS/htb-example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/QoS/htb-example.md -------------------------------------------------------------------------------- /snippet/docs/linux/QoS/htb-example2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/QoS/htb-example2.md -------------------------------------------------------------------------------- /snippet/docs/linux/QoS/htb-user-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/QoS/htb-user-guide.md -------------------------------------------------------------------------------- /snippet/docs/linux/QoS/link.md: -------------------------------------------------------------------------------- 1 | 2 | [Linux QoS](http://web.opalsoft.net/qos/default.php?p=linux101-ds) 3 | -------------------------------------------------------------------------------- /snippet/docs/linux/QoS/qos-filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/QoS/qos-filter.md -------------------------------------------------------------------------------- /snippet/docs/linux/QoS/qos-theory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/QoS/qos-theory.md -------------------------------------------------------------------------------- /snippet/docs/linux/QoS/qos-use.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/QoS/qos-use.md -------------------------------------------------------------------------------- /snippet/docs/linux/QoS/tc-doc/cls_fw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/QoS/tc-doc/cls_fw.txt -------------------------------------------------------------------------------- /snippet/docs/linux/QoS/tc-doc/cls_route.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/QoS/tc-doc/cls_route.txt -------------------------------------------------------------------------------- /snippet/docs/linux/QoS/tc-doc/cls_rsvp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/QoS/tc-doc/cls_rsvp.txt -------------------------------------------------------------------------------- /snippet/docs/linux/QoS/tc-doc/cls_u32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/QoS/tc-doc/cls_u32.txt -------------------------------------------------------------------------------- /snippet/docs/linux/QoS/tc-doc/estimators.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/QoS/tc-doc/estimators.txt -------------------------------------------------------------------------------- /snippet/docs/linux/QoS/tc-doc/police.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/QoS/tc-doc/police.txt -------------------------------------------------------------------------------- /snippet/docs/linux/QoS/tc-doc/priority.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/QoS/tc-doc/priority.txt -------------------------------------------------------------------------------- /snippet/docs/linux/QoS/tc-doc/sch_bfifo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/QoS/tc-doc/sch_bfifo.txt -------------------------------------------------------------------------------- /snippet/docs/linux/QoS/tc-doc/sch_cbq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/QoS/tc-doc/sch_cbq.txt -------------------------------------------------------------------------------- /snippet/docs/linux/QoS/tc-doc/sch_hfsc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/QoS/tc-doc/sch_hfsc.txt -------------------------------------------------------------------------------- /snippet/docs/linux/QoS/tc-doc/sch_noop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/QoS/tc-doc/sch_noop.txt -------------------------------------------------------------------------------- /snippet/docs/linux/QoS/tc-doc/sch_noqueue.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/QoS/tc-doc/sch_noqueue.txt -------------------------------------------------------------------------------- /snippet/docs/linux/QoS/tc-doc/sch_pfifo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/QoS/tc-doc/sch_pfifo.txt -------------------------------------------------------------------------------- /snippet/docs/linux/QoS/tc-doc/sch_pfifo_fast.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/QoS/tc-doc/sch_pfifo_fast.txt -------------------------------------------------------------------------------- /snippet/docs/linux/QoS/tc-doc/sch_prio.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/QoS/tc-doc/sch_prio.txt -------------------------------------------------------------------------------- /snippet/docs/linux/QoS/tc-doc/sch_sfq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/QoS/tc-doc/sch_sfq.txt -------------------------------------------------------------------------------- /snippet/docs/linux/QoS/tc-doc/sch_tbf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/QoS/tc-doc/sch_tbf.txt -------------------------------------------------------------------------------- /snippet/docs/linux/QoS/tc-doc/virtual_devices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/QoS/tc-doc/virtual_devices.txt -------------------------------------------------------------------------------- /snippet/docs/linux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/README.md -------------------------------------------------------------------------------- /snippet/docs/linux/diskio/fio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/diskio/fio.md -------------------------------------------------------------------------------- /snippet/docs/linux/distribution/kali.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/distribution/kali.md -------------------------------------------------------------------------------- /snippet/docs/linux/iproute2/_static/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/iproute2/_static/1.png -------------------------------------------------------------------------------- /snippet/docs/linux/iproute2/_static/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/iproute2/_static/2.png -------------------------------------------------------------------------------- /snippet/docs/linux/iproute2/_static/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/iproute2/_static/3.png -------------------------------------------------------------------------------- /snippet/docs/linux/iproute2/_static/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/iproute2/_static/4.png -------------------------------------------------------------------------------- /snippet/docs/linux/iproute2/_static/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/iproute2/_static/5.png -------------------------------------------------------------------------------- /snippet/docs/linux/iproute2/_static/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/iproute2/_static/6.png -------------------------------------------------------------------------------- /snippet/docs/linux/iproute2/_static/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/iproute2/_static/7.jpg -------------------------------------------------------------------------------- /snippet/docs/linux/iproute2/_static/iproute2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/iproute2/_static/iproute2.png -------------------------------------------------------------------------------- /snippet/docs/linux/iproute2/ip1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/iproute2/ip1.md -------------------------------------------------------------------------------- /snippet/docs/linux/iproute2/tc1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/iproute2/tc1.md -------------------------------------------------------------------------------- /snippet/docs/linux/ipv4/common-setting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/ipv4/common-setting.md -------------------------------------------------------------------------------- /snippet/docs/linux/ipv4/system-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/ipv4/system-config.md -------------------------------------------------------------------------------- /snippet/docs/linux/kernel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/kernel/README.md -------------------------------------------------------------------------------- /snippet/docs/linux/kernel/_static/linux-kernel-map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/kernel/_static/linux-kernel-map.png -------------------------------------------------------------------------------- /snippet/docs/linux/netfilter/_static/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/netfilter/_static/1.png -------------------------------------------------------------------------------- /snippet/docs/linux/netfilter/_static/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/netfilter/_static/10.png -------------------------------------------------------------------------------- /snippet/docs/linux/netfilter/_static/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/netfilter/_static/11.png -------------------------------------------------------------------------------- /snippet/docs/linux/netfilter/_static/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/netfilter/_static/12.png -------------------------------------------------------------------------------- /snippet/docs/linux/netfilter/_static/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/netfilter/_static/13.png -------------------------------------------------------------------------------- /snippet/docs/linux/netfilter/_static/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/netfilter/_static/14.png -------------------------------------------------------------------------------- /snippet/docs/linux/netfilter/_static/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/netfilter/_static/15.png -------------------------------------------------------------------------------- /snippet/docs/linux/netfilter/_static/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/netfilter/_static/2.png -------------------------------------------------------------------------------- /snippet/docs/linux/netfilter/_static/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/netfilter/_static/3.png -------------------------------------------------------------------------------- /snippet/docs/linux/netfilter/_static/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/netfilter/_static/4.png -------------------------------------------------------------------------------- /snippet/docs/linux/netfilter/_static/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/netfilter/_static/5.png -------------------------------------------------------------------------------- /snippet/docs/linux/netfilter/_static/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/netfilter/_static/6.png -------------------------------------------------------------------------------- /snippet/docs/linux/netfilter/_static/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/netfilter/_static/7.png -------------------------------------------------------------------------------- /snippet/docs/linux/netfilter/_static/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/netfilter/_static/8.png -------------------------------------------------------------------------------- /snippet/docs/linux/netfilter/_static/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/netfilter/_static/9.png -------------------------------------------------------------------------------- /snippet/docs/linux/netfilter/_static/p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/netfilter/_static/p1.png -------------------------------------------------------------------------------- /snippet/docs/linux/netfilter/_static/p2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/netfilter/_static/p2.png -------------------------------------------------------------------------------- /snippet/docs/linux/netfilter/iptables-beginner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/netfilter/iptables-beginner.md -------------------------------------------------------------------------------- /snippet/docs/linux/netfilter/iptables-ext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/netfilter/iptables-ext.md -------------------------------------------------------------------------------- /snippet/docs/linux/netfilter/iptables-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/netfilter/iptables-usage.md -------------------------------------------------------------------------------- /snippet/docs/linux/netfilter/link.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/netfilter/link.md -------------------------------------------------------------------------------- /snippet/docs/linux/netfilter/netfilter.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/netfilter/netfilter.txt -------------------------------------------------------------------------------- /snippet/docs/linux/netlink/_static/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/netlink/_static/1.jpg -------------------------------------------------------------------------------- /snippet/docs/linux/netlink/_static/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/netlink/_static/2.jpg -------------------------------------------------------------------------------- /snippet/docs/linux/netlink/_static/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/netlink/_static/3.jpg -------------------------------------------------------------------------------- /snippet/docs/linux/netlink/generic-netlink-howto.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/netlink/generic-netlink-howto.txt -------------------------------------------------------------------------------- /snippet/docs/linux/netlink/netlink-implementation-analyzation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/netlink/netlink-implementation-analyzation.pdf -------------------------------------------------------------------------------- /snippet/docs/linux/netlink/netlink-note.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/netlink/netlink-note.md -------------------------------------------------------------------------------- /snippet/docs/linux/others/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/others/README.md -------------------------------------------------------------------------------- /snippet/docs/linux/others/_static/backlog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/others/_static/backlog.png -------------------------------------------------------------------------------- /snippet/docs/linux/others/_static/css-selector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/others/_static/css-selector.png -------------------------------------------------------------------------------- /snippet/docs/linux/others/_static/gnome-shell-calemdar-fore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/others/_static/gnome-shell-calemdar-fore.png -------------------------------------------------------------------------------- /snippet/docs/linux/others/_static/gnome-shell-calendar-post.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/others/_static/gnome-shell-calendar-post.png -------------------------------------------------------------------------------- /snippet/docs/linux/others/_static/gnome-shell-main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/others/_static/gnome-shell-main.png -------------------------------------------------------------------------------- /snippet/docs/linux/others/_static/gnome-shell-min-width-fore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/others/_static/gnome-shell-min-width-fore.png -------------------------------------------------------------------------------- /snippet/docs/linux/others/_static/gnome-shell-min-width-post.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/others/_static/gnome-shell-min-width-post.png -------------------------------------------------------------------------------- /snippet/docs/linux/others/_static/gnome-shell-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/others/_static/gnome-shell-overview.png -------------------------------------------------------------------------------- /snippet/docs/linux/others/_static/gnome-shell-status-icon-hpadding-fore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/others/_static/gnome-shell-status-icon-hpadding-fore.png -------------------------------------------------------------------------------- /snippet/docs/linux/others/_static/gnome-shell-status-icon-hpadding-post.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/others/_static/gnome-shell-status-icon-hpadding-post.png -------------------------------------------------------------------------------- /snippet/docs/linux/others/_static/gnome-shell-toggle-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/others/_static/gnome-shell-toggle-1.png -------------------------------------------------------------------------------- /snippet/docs/linux/others/backlog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/others/backlog.md -------------------------------------------------------------------------------- /snippet/docs/linux/others/customize-gnome-shell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/others/customize-gnome-shell.md -------------------------------------------------------------------------------- /snippet/docs/linux/others/linux-info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/others/linux-info.md -------------------------------------------------------------------------------- /snippet/docs/linux/others/linux-performance-analysis-and-optimization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/others/linux-performance-analysis-and-optimization.md -------------------------------------------------------------------------------- /snippet/docs/linux/program/_static/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/program/_static/1.png -------------------------------------------------------------------------------- /snippet/docs/linux/program/_static/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/program/_static/10.png -------------------------------------------------------------------------------- /snippet/docs/linux/program/_static/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/program/_static/11.png -------------------------------------------------------------------------------- /snippet/docs/linux/program/_static/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/program/_static/12.png -------------------------------------------------------------------------------- /snippet/docs/linux/program/_static/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/program/_static/13.jpg -------------------------------------------------------------------------------- /snippet/docs/linux/program/_static/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/program/_static/14.jpg -------------------------------------------------------------------------------- /snippet/docs/linux/program/_static/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/program/_static/2.png -------------------------------------------------------------------------------- /snippet/docs/linux/program/_static/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/program/_static/3.jpg -------------------------------------------------------------------------------- /snippet/docs/linux/program/_static/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/program/_static/4.png -------------------------------------------------------------------------------- /snippet/docs/linux/program/_static/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/program/_static/5.png -------------------------------------------------------------------------------- /snippet/docs/linux/program/_static/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/program/_static/6.png -------------------------------------------------------------------------------- /snippet/docs/linux/program/_static/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/program/_static/7.png -------------------------------------------------------------------------------- /snippet/docs/linux/program/_static/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/program/_static/8.png -------------------------------------------------------------------------------- /snippet/docs/linux/program/_static/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/program/_static/9.jpg -------------------------------------------------------------------------------- /snippet/docs/linux/program/compile-kernel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/program/compile-kernel.md -------------------------------------------------------------------------------- /snippet/docs/linux/program/daemon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/program/daemon.md -------------------------------------------------------------------------------- /snippet/docs/linux/program/linux-system-programming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/program/linux-system-programming.md -------------------------------------------------------------------------------- /snippet/docs/linux/program/raw-socket-demystified.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/program/raw-socket-demystified.txt -------------------------------------------------------------------------------- /snippet/docs/linux/program/raw-socket-ipv4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/program/raw-socket-ipv4.md -------------------------------------------------------------------------------- /snippet/docs/linux/program/raw-socket.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/program/raw-socket.md -------------------------------------------------------------------------------- /snippet/docs/linux/program/so_reuse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/program/so_reuse.md -------------------------------------------------------------------------------- /snippet/docs/linux/tap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/tap/README.md -------------------------------------------------------------------------------- /snippet/docs/linux/tap/_static/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/tap/_static/1.jpg -------------------------------------------------------------------------------- /snippet/docs/linux/tap/_static/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/tap/_static/2.jpg -------------------------------------------------------------------------------- /snippet/docs/linux/tap/_static/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/tap/_static/3.jpg -------------------------------------------------------------------------------- /snippet/docs/linux/tap/tap-tun.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/linux/tap/tap-tun.md -------------------------------------------------------------------------------- /snippet/docs/network/ddos/ddos-blackhole.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/network/ddos/ddos-blackhole.md -------------------------------------------------------------------------------- /snippet/docs/network/nat/_static/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/network/nat/_static/1.png -------------------------------------------------------------------------------- /snippet/docs/network/nat/_static/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/network/nat/_static/10.jpg -------------------------------------------------------------------------------- /snippet/docs/network/nat/_static/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/network/nat/_static/11.jpg -------------------------------------------------------------------------------- /snippet/docs/network/nat/_static/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/network/nat/_static/2.png -------------------------------------------------------------------------------- /snippet/docs/network/nat/_static/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/network/nat/_static/3.png -------------------------------------------------------------------------------- /snippet/docs/network/nat/_static/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/network/nat/_static/4.png -------------------------------------------------------------------------------- /snippet/docs/network/nat/_static/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/network/nat/_static/5.png -------------------------------------------------------------------------------- /snippet/docs/network/nat/_static/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/network/nat/_static/6.png -------------------------------------------------------------------------------- /snippet/docs/network/nat/_static/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/network/nat/_static/7.png -------------------------------------------------------------------------------- /snippet/docs/network/nat/_static/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/network/nat/_static/8.png -------------------------------------------------------------------------------- /snippet/docs/network/nat/_static/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/network/nat/_static/9.png -------------------------------------------------------------------------------- /snippet/docs/network/nat/p2p-communication-across-nat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/network/nat/p2p-communication-across-nat.md -------------------------------------------------------------------------------- /snippet/docs/network/nat/penetrate-nat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/network/nat/penetrate-nat.md -------------------------------------------------------------------------------- /snippet/docs/network/others/port-scan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/network/others/port-scan.md -------------------------------------------------------------------------------- /snippet/docs/network/others/userspace-net-stack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/network/others/userspace-net-stack.md -------------------------------------------------------------------------------- /snippet/docs/network/ovs-of/QoS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/network/ovs-of/QoS.md -------------------------------------------------------------------------------- /snippet/docs/network/ovs-of/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/network/ovs-of/README.md -------------------------------------------------------------------------------- /snippet/docs/network/ovs-of/_static/OVS_Flow_Tables.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/network/ovs-of/_static/OVS_Flow_Tables.png -------------------------------------------------------------------------------- /snippet/docs/network/ovs-of/_static/OVS_flow_Tables_with_ARP_responder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/network/ovs-of/_static/OVS_flow_Tables_with_ARP_responder.png -------------------------------------------------------------------------------- /snippet/docs/network/ovs-of/dump-flows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/network/ovs-of/dump-flows.md -------------------------------------------------------------------------------- /snippet/docs/network/ovs-of/in_port.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/network/ovs-of/in_port.md -------------------------------------------------------------------------------- /snippet/docs/network/ovs-of/link.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/network/ovs-of/link.md -------------------------------------------------------------------------------- /snippet/docs/network/ovs-of/others.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/network/ovs-of/others.md -------------------------------------------------------------------------------- /snippet/docs/network/ovs-of/ovs-dpdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/network/ovs-of/ovs-dpdk.md -------------------------------------------------------------------------------- /snippet/docs/network/ovs-of/tunnel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/network/ovs-of/tunnel.md -------------------------------------------------------------------------------- /snippet/docs/network/protocol/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/network/protocol/README.md -------------------------------------------------------------------------------- /snippet/docs/network/protocol/_static/ethernet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/network/protocol/_static/ethernet.jpg -------------------------------------------------------------------------------- /snippet/docs/network/protocol/_static/tcpip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/network/protocol/_static/tcpip.png -------------------------------------------------------------------------------- /snippet/docs/network/protocol/_static/vlan_tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/network/protocol/_static/vlan_tag.png -------------------------------------------------------------------------------- /snippet/docs/network/protocol/data-link-layer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/network/protocol/data-link-layer.md -------------------------------------------------------------------------------- /snippet/docs/network/protocol/switch-router.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/network/protocol/switch-router.md -------------------------------------------------------------------------------- /snippet/docs/network/tcp/_static/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/network/tcp/_static/1.png -------------------------------------------------------------------------------- /snippet/docs/network/tcp/close_wait_and_time_wait.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/network/tcp/close_wait_and_time_wait.md -------------------------------------------------------------------------------- /snippet/docs/network/tcpdump/detailed-manuel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/network/tcpdump/detailed-manuel.md -------------------------------------------------------------------------------- /snippet/docs/network/tcpdump/simple-manuel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/network/tcpdump/simple-manuel.txt -------------------------------------------------------------------------------- /snippet/docs/network/tunnel/_static/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/network/tunnel/_static/1.jpg -------------------------------------------------------------------------------- /snippet/docs/network/tunnel/_static/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/network/tunnel/_static/10.png -------------------------------------------------------------------------------- /snippet/docs/network/tunnel/_static/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/network/tunnel/_static/2.jpg -------------------------------------------------------------------------------- /snippet/docs/network/tunnel/_static/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/network/tunnel/_static/3.jpg -------------------------------------------------------------------------------- /snippet/docs/network/tunnel/_static/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/network/tunnel/_static/4.jpg -------------------------------------------------------------------------------- /snippet/docs/network/tunnel/_static/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/network/tunnel/_static/5.jpg -------------------------------------------------------------------------------- /snippet/docs/network/tunnel/_static/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/network/tunnel/_static/6.jpg -------------------------------------------------------------------------------- /snippet/docs/network/tunnel/_static/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/network/tunnel/_static/7.jpg -------------------------------------------------------------------------------- /snippet/docs/network/tunnel/_static/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/network/tunnel/_static/8.jpg -------------------------------------------------------------------------------- /snippet/docs/network/tunnel/_static/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/network/tunnel/_static/9.png -------------------------------------------------------------------------------- /snippet/docs/network/tunnel/ssh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/network/tunnel/ssh.md -------------------------------------------------------------------------------- /snippet/docs/network/tunnel/vtun-usage-and-src-analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/network/tunnel/vtun-usage-and-src-analysis.md -------------------------------------------------------------------------------- /snippet/docs/openstack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/openstack/README.md -------------------------------------------------------------------------------- /snippet/docs/openstack/_static/tunnel-flows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/openstack/_static/tunnel-flows.png -------------------------------------------------------------------------------- /snippet/docs/package/fpm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/package/fpm.md -------------------------------------------------------------------------------- /snippet/docs/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/python/README.md -------------------------------------------------------------------------------- /snippet/docs/python/_static/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/python/_static/1.png -------------------------------------------------------------------------------- /snippet/docs/python/_static/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/python/_static/2.jpg -------------------------------------------------------------------------------- /snippet/docs/python/_static/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/python/_static/3.png -------------------------------------------------------------------------------- /snippet/docs/python/_static/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/python/_static/4.jpg -------------------------------------------------------------------------------- /snippet/docs/python/_static/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/python/_static/5.png -------------------------------------------------------------------------------- /snippet/docs/python/builtin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/python/builtin.md -------------------------------------------------------------------------------- /snippet/docs/python/django-form.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/python/django-form.md -------------------------------------------------------------------------------- /snippet/docs/python/link.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/python/link.md -------------------------------------------------------------------------------- /snippet/docs/python/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/python/logging.md -------------------------------------------------------------------------------- /snippet/docs/python/pastedeploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/python/pastedeploy.md -------------------------------------------------------------------------------- /snippet/docs/python/pypi_source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/python/pypi_source.md -------------------------------------------------------------------------------- /snippet/docs/python/python-advance-app.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/python/python-advance-app.md -------------------------------------------------------------------------------- /snippet/docs/python/python-advanced-feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/python/python-advanced-feature.md -------------------------------------------------------------------------------- /snippet/docs/python/python-appendix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/python/python-appendix.md -------------------------------------------------------------------------------- /snippet/docs/python/python-attr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/python/python-attr.md -------------------------------------------------------------------------------- /snippet/docs/python/python-base.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/python/python-base.md -------------------------------------------------------------------------------- /snippet/docs/python/python-c-extension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/python/python-c-extension.md -------------------------------------------------------------------------------- /snippet/docs/python/python-class.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/python/python-class.md -------------------------------------------------------------------------------- /snippet/docs/python/python-exception.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/python/python-exception.md -------------------------------------------------------------------------------- /snippet/docs/python/python-expression-statement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/python/python-expression-statement.md -------------------------------------------------------------------------------- /snippet/docs/python/python-file-encoding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/python/python-file-encoding.md -------------------------------------------------------------------------------- /snippet/docs/python/python-function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/python/python-function.md -------------------------------------------------------------------------------- /snippet/docs/python/python-operator-overload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/python/python-operator-overload.md -------------------------------------------------------------------------------- /snippet/docs/python/python-other-key-point.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/python/python-other-key-point.md -------------------------------------------------------------------------------- /snippet/docs/python/python-package-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/python/python-package-guide.md -------------------------------------------------------------------------------- /snippet/docs/python/python-preface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/python/python-preface.md -------------------------------------------------------------------------------- /snippet/docs/python/python-type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/python/python-type.md -------------------------------------------------------------------------------- /snippet/docs/python/python-variable-scope-package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/python/python-variable-scope-package.md -------------------------------------------------------------------------------- /snippet/docs/python/sqlalchemy-analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/python/sqlalchemy-analysis.md -------------------------------------------------------------------------------- /snippet/docs/rust/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/rust/README.md -------------------------------------------------------------------------------- /snippet/docs/rust/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/rust/notes.md -------------------------------------------------------------------------------- /snippet/docs/rust/packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/rust/packages.md -------------------------------------------------------------------------------- /snippet/docs/rust/ref.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/rust/ref.md -------------------------------------------------------------------------------- /snippet/docs/shell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/shell/README.md -------------------------------------------------------------------------------- /snippet/docs/shell/shell-appendix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/shell/shell-appendix.md -------------------------------------------------------------------------------- /snippet/docs/shell/shell-argument.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/shell/shell-argument.md -------------------------------------------------------------------------------- /snippet/docs/shell/shell-arithmetic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/shell/shell-arithmetic.md -------------------------------------------------------------------------------- /snippet/docs/shell/shell-builtin-command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/shell/shell-builtin-command.md -------------------------------------------------------------------------------- /snippet/docs/shell/shell-environment-var.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/shell/shell-environment-var.md -------------------------------------------------------------------------------- /snippet/docs/shell/shell-extension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/shell/shell-extension.md -------------------------------------------------------------------------------- /snippet/docs/shell/shell-history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/shell/shell-history.md -------------------------------------------------------------------------------- /snippet/docs/shell/shell-lexical-preview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/shell/shell-lexical-preview.md -------------------------------------------------------------------------------- /snippet/docs/shell/shell-others.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/shell/shell-others.md -------------------------------------------------------------------------------- /snippet/docs/shell/shell-preface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/shell/shell-preface.md -------------------------------------------------------------------------------- /snippet/docs/shell/shell-readline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/shell/shell-readline.md -------------------------------------------------------------------------------- /snippet/docs/shell/shell-redirection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/shell/shell-redirection.md -------------------------------------------------------------------------------- /snippet/docs/shell/shell-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/shell/shell-reference.md -------------------------------------------------------------------------------- /snippet/docs/shell/shell-syntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/shell/shell-syntax.md -------------------------------------------------------------------------------- /snippet/docs/swift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/swift/README.md -------------------------------------------------------------------------------- /snippet/docs/swift/packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/swift/packages.md -------------------------------------------------------------------------------- /snippet/docs/tool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/tool/README.md -------------------------------------------------------------------------------- /snippet/docs/tool/diff&patch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/tool/diff&patch.md -------------------------------------------------------------------------------- /snippet/docs/tool/script/install-aria2-dep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/tool/script/install-aria2-dep.sh -------------------------------------------------------------------------------- /snippet/docs/vcs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/vcs/README.md -------------------------------------------------------------------------------- /snippet/docs/vcs/_static/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/vcs/_static/1.png -------------------------------------------------------------------------------- /snippet/docs/vcs/_static/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/vcs/_static/10.png -------------------------------------------------------------------------------- /snippet/docs/vcs/_static/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/vcs/_static/11.png -------------------------------------------------------------------------------- /snippet/docs/vcs/_static/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/vcs/_static/12.png -------------------------------------------------------------------------------- /snippet/docs/vcs/_static/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/vcs/_static/2.png -------------------------------------------------------------------------------- /snippet/docs/vcs/_static/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/vcs/_static/3.png -------------------------------------------------------------------------------- /snippet/docs/vcs/_static/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/vcs/_static/4.png -------------------------------------------------------------------------------- /snippet/docs/vcs/_static/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/vcs/_static/5.png -------------------------------------------------------------------------------- /snippet/docs/vcs/_static/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/vcs/_static/6.png -------------------------------------------------------------------------------- /snippet/docs/vcs/_static/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/vcs/_static/7.png -------------------------------------------------------------------------------- /snippet/docs/vcs/_static/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/vcs/_static/8.png -------------------------------------------------------------------------------- /snippet/docs/vcs/_static/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/vcs/_static/9.png -------------------------------------------------------------------------------- /snippet/docs/vcs/_static/git-server-method.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/vcs/_static/git-server-method.png -------------------------------------------------------------------------------- /snippet/docs/vcs/_static/git-shortcut.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/vcs/_static/git-shortcut.jpg -------------------------------------------------------------------------------- /snippet/docs/vcs/_static/repo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/vcs/_static/repo.png -------------------------------------------------------------------------------- /snippet/docs/vcs/build-git-server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/vcs/build-git-server.md -------------------------------------------------------------------------------- /snippet/docs/vcs/build-svn-server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/vcs/build-svn-server.md -------------------------------------------------------------------------------- /snippet/docs/vcs/git-commit-message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/vcs/git-commit-message.md -------------------------------------------------------------------------------- /snippet/docs/vcs/git-http-proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/vcs/git-http-proxy.md -------------------------------------------------------------------------------- /snippet/docs/vcs/git-learning-note.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/vcs/git-learning-note.md -------------------------------------------------------------------------------- /snippet/docs/vcs/git-rebase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/vcs/git-rebase.md -------------------------------------------------------------------------------- /snippet/docs/vcs/github-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/vcs/github-guide.md -------------------------------------------------------------------------------- /snippet/docs/web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/web/README.md -------------------------------------------------------------------------------- /snippet/docs/web/_static/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/web/_static/1.png -------------------------------------------------------------------------------- /snippet/docs/web/_static/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/web/_static/10.png -------------------------------------------------------------------------------- /snippet/docs/web/_static/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/web/_static/11.png -------------------------------------------------------------------------------- /snippet/docs/web/_static/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/web/_static/12.png -------------------------------------------------------------------------------- /snippet/docs/web/_static/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/web/_static/13.png -------------------------------------------------------------------------------- /snippet/docs/web/_static/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/web/_static/14.png -------------------------------------------------------------------------------- /snippet/docs/web/_static/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/web/_static/15.png -------------------------------------------------------------------------------- /snippet/docs/web/_static/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/web/_static/16.png -------------------------------------------------------------------------------- /snippet/docs/web/_static/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/web/_static/17.png -------------------------------------------------------------------------------- /snippet/docs/web/_static/18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/web/_static/18.jpg -------------------------------------------------------------------------------- /snippet/docs/web/_static/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/web/_static/19.png -------------------------------------------------------------------------------- /snippet/docs/web/_static/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/web/_static/2.png -------------------------------------------------------------------------------- /snippet/docs/web/_static/20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/web/_static/20.jpg -------------------------------------------------------------------------------- /snippet/docs/web/_static/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/web/_static/20.png -------------------------------------------------------------------------------- /snippet/docs/web/_static/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/web/_static/21.png -------------------------------------------------------------------------------- /snippet/docs/web/_static/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/web/_static/22.png -------------------------------------------------------------------------------- /snippet/docs/web/_static/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/web/_static/3.png -------------------------------------------------------------------------------- /snippet/docs/web/_static/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/web/_static/4.png -------------------------------------------------------------------------------- /snippet/docs/web/_static/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/web/_static/5.png -------------------------------------------------------------------------------- /snippet/docs/web/_static/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/web/_static/6.png -------------------------------------------------------------------------------- /snippet/docs/web/_static/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/web/_static/7.png -------------------------------------------------------------------------------- /snippet/docs/web/_static/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/web/_static/8.png -------------------------------------------------------------------------------- /snippet/docs/web/_static/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/web/_static/9.png -------------------------------------------------------------------------------- /snippet/docs/web/browse-http-cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/web/browse-http-cache.md -------------------------------------------------------------------------------- /snippet/docs/web/css-selector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/web/css-selector.md -------------------------------------------------------------------------------- /snippet/docs/web/url_hash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/web/url_hash.md -------------------------------------------------------------------------------- /snippet/docs/web/website-evolution-summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/web/website-evolution-summary.md -------------------------------------------------------------------------------- /snippet/docs/web/website-evolution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/web/website-evolution.md -------------------------------------------------------------------------------- /snippet/docs/windows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/docs/windows/README.md -------------------------------------------------------------------------------- /snippet/example/c-c++/BiTree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/c-c++/BiTree.c -------------------------------------------------------------------------------- /snippet/example/c-c++/OICQ-20120820.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/c-c++/OICQ-20120820.tar.gz -------------------------------------------------------------------------------- /snippet/example/c-c++/find-sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/c-c++/find-sort.c -------------------------------------------------------------------------------- /snippet/example/c-c++/fragroute/fragroute-1.2.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/c-c++/fragroute/fragroute-1.2.tar.gz -------------------------------------------------------------------------------- /snippet/example/c-c++/fragroute/fragroute.8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/c-c++/fragroute/fragroute.8.txt -------------------------------------------------------------------------------- /snippet/example/c-c++/fragroute/fragtest.8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/c-c++/fragroute/fragtest.8.txt -------------------------------------------------------------------------------- /snippet/example/c-c++/maze_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/c-c++/maze_demo.cpp -------------------------------------------------------------------------------- /snippet/example/c-c++/sendip/sendip-2.5.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/c-c++/sendip/sendip-2.5.tar.gz -------------------------------------------------------------------------------- /snippet/example/c-c++/sendip/sendip-source-analyzation.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/c-c++/sendip/sendip-source-analyzation.doc -------------------------------------------------------------------------------- /snippet/example/c-c++/tcpipiv1.tar.Z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/c-c++/tcpipiv1.tar.Z -------------------------------------------------------------------------------- /snippet/example/dockerfile/python36.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/dockerfile/python36.dockerfile -------------------------------------------------------------------------------- /snippet/example/go/mxj.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/go/mxj.go -------------------------------------------------------------------------------- /snippet/example/go/project/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /snippet/example/go/project/cmd/project/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/go/project/cmd/project/main.go -------------------------------------------------------------------------------- /snippet/example/go/project/glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/go/project/glide.yaml -------------------------------------------------------------------------------- /snippet/example/go/project/project/conf/conf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/go/project/project/conf/conf.go -------------------------------------------------------------------------------- /snippet/example/go/project/project/enter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/go/project/project/enter.go -------------------------------------------------------------------------------- /snippet/example/go/snippet/port_range.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/go/snippet/port_range.go -------------------------------------------------------------------------------- /snippet/example/go/snippet/port_range_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/go/snippet/port_range_test.go -------------------------------------------------------------------------------- /snippet/example/go/snippet/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/go/snippet/value.go -------------------------------------------------------------------------------- /snippet/example/go/snippet/value_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/go/snippet/value_test.go -------------------------------------------------------------------------------- /snippet/example/go/src/listenport/client/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/go/src/listenport/client/main.go -------------------------------------------------------------------------------- /snippet/example/go/src/listenport/server/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/go/src/listenport/server/main.go -------------------------------------------------------------------------------- /snippet/example/go/src/service/client/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/go/src/service/client/main.go -------------------------------------------------------------------------------- /snippet/example/go/src/service/server/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/go/src/service/server/main.go -------------------------------------------------------------------------------- /snippet/example/go/xml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/go/xml.go -------------------------------------------------------------------------------- /snippet/example/linux/flow_hash_list.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/linux/flow_hash_list.tar.gz -------------------------------------------------------------------------------- /snippet/example/linux/list-netns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/linux/list-netns.py -------------------------------------------------------------------------------- /snippet/example/linux/netfilter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/linux/netfilter/Makefile -------------------------------------------------------------------------------- /snippet/example/linux/netfilter/test_nf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/linux/netfilter/test_nf.c -------------------------------------------------------------------------------- /snippet/example/linux/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/linux/timer.c -------------------------------------------------------------------------------- /snippet/example/nodejs/webpack/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/nodejs/webpack/.eslintrc.js -------------------------------------------------------------------------------- /snippet/example/nodejs/webpack/build/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/nodejs/webpack/build/config.js -------------------------------------------------------------------------------- /snippet/example/nodejs/webpack/build/webpack.base.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/nodejs/webpack/build/webpack.base.config.js -------------------------------------------------------------------------------- /snippet/example/nodejs/webpack/build/webpack.dev.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/nodejs/webpack/build/webpack.dev.config.js -------------------------------------------------------------------------------- /snippet/example/nodejs/webpack/build/webpack.dll.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/nodejs/webpack/build/webpack.dll.config.js -------------------------------------------------------------------------------- /snippet/example/nodejs/webpack/build/webpack.production.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/nodejs/webpack/build/webpack.production.config.js -------------------------------------------------------------------------------- /snippet/example/nodejs/webpack/dll/vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/nodejs/webpack/dll/vendor.js -------------------------------------------------------------------------------- /snippet/example/nodejs/webpack/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/nodejs/webpack/index.html -------------------------------------------------------------------------------- /snippet/example/nodejs/webpack/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/nodejs/webpack/package.json -------------------------------------------------------------------------------- /snippet/example/nodejs/webpack/src/index1.js: -------------------------------------------------------------------------------- 1 | import $ from 'jquery'; 2 | 3 | console.log("index1", $); -------------------------------------------------------------------------------- /snippet/example/nodejs/webpack/src/index2.js: -------------------------------------------------------------------------------- 1 | import $ from 'jquery'; 2 | 3 | console.log("index2", $); -------------------------------------------------------------------------------- /snippet/example/python/api_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/api_proxy.py -------------------------------------------------------------------------------- /snippet/example/python/bt/ItMetadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/bt/ItMetadata.py -------------------------------------------------------------------------------- /snippet/example/python/bt/bencode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/bt/bencode.py -------------------------------------------------------------------------------- /snippet/example/python/bt/downloadTorrent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/bt/downloadTorrent.py -------------------------------------------------------------------------------- /snippet/example/python/bt/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/bt/metadata.py -------------------------------------------------------------------------------- /snippet/example/python/bt/metautils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/bt/metautils.py -------------------------------------------------------------------------------- /snippet/example/python/bt/simMetadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/bt/simMetadata.py -------------------------------------------------------------------------------- /snippet/example/python/bt/simdt_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/bt/simdt_worker.py -------------------------------------------------------------------------------- /snippet/example/python/bt/startCrawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/bt/startCrawler.py -------------------------------------------------------------------------------- /snippet/example/python/call_retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/call_retry.py -------------------------------------------------------------------------------- /snippet/example/python/check_music.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/check_music.py -------------------------------------------------------------------------------- /snippet/example/python/circuit_breaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/circuit_breaker.py -------------------------------------------------------------------------------- /snippet/example/python/classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/classifier.py -------------------------------------------------------------------------------- /snippet/example/python/config-parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/config-parser.py -------------------------------------------------------------------------------- /snippet/example/python/falcon_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/falcon_app.py -------------------------------------------------------------------------------- /snippet/example/python/greentaskpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/greentaskpool.py -------------------------------------------------------------------------------- /snippet/example/python/gunicorn-conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/gunicorn-conf.py -------------------------------------------------------------------------------- /snippet/example/python/gunicorn-logrotate.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/gunicorn-logrotate.conf -------------------------------------------------------------------------------- /snippet/example/python/gunicorn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/gunicorn.py -------------------------------------------------------------------------------- /snippet/example/python/gunicorn_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/gunicorn_app.py -------------------------------------------------------------------------------- /snippet/example/python/init_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/init_logging.py -------------------------------------------------------------------------------- /snippet/example/python/lifemanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/lifemanager.py -------------------------------------------------------------------------------- /snippet/example/python/oslo_messaging/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/oslo_messaging/client.py -------------------------------------------------------------------------------- /snippet/example/python/oslo_messaging/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/oslo_messaging/server.py -------------------------------------------------------------------------------- /snippet/example/python/osloconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/osloconfig.py -------------------------------------------------------------------------------- /snippet/example/python/oslolog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/oslolog.py -------------------------------------------------------------------------------- /snippet/example/python/ovs-port-range.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/ovs-port-range.py -------------------------------------------------------------------------------- /snippet/example/python/password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/password.py -------------------------------------------------------------------------------- /snippet/example/python/ping_ip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/ping_ip.py -------------------------------------------------------------------------------- /snippet/example/python/pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/pool.py -------------------------------------------------------------------------------- /snippet/example/python/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/process.py -------------------------------------------------------------------------------- /snippet/example/python/project/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/project/LICENSE -------------------------------------------------------------------------------- /snippet/example/python/project/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/project/PKG-INFO -------------------------------------------------------------------------------- /snippet/example/python/project/README.rst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /snippet/example/python/project/doc/Introduction.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /snippet/example/python/project/logging.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/project/logging.ini -------------------------------------------------------------------------------- /snippet/example/python/project/project.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/project/project.conf -------------------------------------------------------------------------------- /snippet/example/python/project/project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /snippet/example/python/project/project/_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/project/project/_options.py -------------------------------------------------------------------------------- /snippet/example/python/project/project/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /snippet/example/python/project/project/common/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/project/project/common/logging.py -------------------------------------------------------------------------------- /snippet/example/python/project/project/common/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/project/project/common/utils.py -------------------------------------------------------------------------------- /snippet/example/python/project/project/db/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/project/project/db/__init__.py -------------------------------------------------------------------------------- /snippet/example/python/project/project/db/sqlalchemy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /snippet/example/python/project/project/db/sqlalchemy/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/project/project/db/sqlalchemy/api.py -------------------------------------------------------------------------------- /snippet/example/python/project/project/db/sqlalchemy/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/project/project/db/sqlalchemy/base.py -------------------------------------------------------------------------------- /snippet/example/python/project/project/db/sqlalchemy/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/project/project/db/sqlalchemy/models.py -------------------------------------------------------------------------------- /snippet/example/python/project/project/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/project/project/main.py -------------------------------------------------------------------------------- /snippet/example/python/project/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/project/requirements.txt -------------------------------------------------------------------------------- /snippet/example/python/project/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/project/setup.cfg -------------------------------------------------------------------------------- /snippet/example/python/project/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/project/setup.py -------------------------------------------------------------------------------- /snippet/example/python/project/test/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/project/test/test.py -------------------------------------------------------------------------------- /snippet/example/python/ratelimit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/ratelimit.py -------------------------------------------------------------------------------- /snippet/example/python/resourcelock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/resourcelock.py -------------------------------------------------------------------------------- /snippet/example/python/ryu-nat-switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/ryu-nat-switch.py -------------------------------------------------------------------------------- /snippet/example/python/scrapy/crawler/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/scrapy/crawler/README -------------------------------------------------------------------------------- /snippet/example/python/scrapy/crawler/crawler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /snippet/example/python/scrapy/crawler/crawler/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/scrapy/crawler/crawler/items.py -------------------------------------------------------------------------------- /snippet/example/python/scrapy/crawler/crawler/linkextractors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/scrapy/crawler/crawler/linkextractors.py -------------------------------------------------------------------------------- /snippet/example/python/scrapy/crawler/crawler/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/scrapy/crawler/crawler/pipelines.py -------------------------------------------------------------------------------- /snippet/example/python/scrapy/crawler/crawler/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/scrapy/crawler/crawler/settings.py -------------------------------------------------------------------------------- /snippet/example/python/scrapy/crawler/crawler/spiders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/scrapy/crawler/crawler/spiders/__init__.py -------------------------------------------------------------------------------- /snippet/example/python/scrapy/crawler/crawler/spiders/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/scrapy/crawler/crawler/spiders/base.py -------------------------------------------------------------------------------- /snippet/example/python/scrapy/crawler/crawler/spiders/imagespide.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/scrapy/crawler/crawler/spiders/imagespide.py -------------------------------------------------------------------------------- /snippet/example/python/scrapy/crawler/crawler/spiders/textspider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/scrapy/crawler/crawler/spiders/textspider.py -------------------------------------------------------------------------------- /snippet/example/python/scrapy/crawler/crawler/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/scrapy/crawler/crawler/utils.py -------------------------------------------------------------------------------- /snippet/example/python/scrapy/crawler/scrapy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/scrapy/crawler/scrapy.cfg -------------------------------------------------------------------------------- /snippet/example/python/snake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/snake.py -------------------------------------------------------------------------------- /snippet/example/python/sqlalchemy-orm-example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/sqlalchemy-orm-example.py -------------------------------------------------------------------------------- /snippet/example/python/sqlalchemy-orm-model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/sqlalchemy-orm-model.py -------------------------------------------------------------------------------- /snippet/example/python/sqlalchemy_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/sqlalchemy_db.py -------------------------------------------------------------------------------- /snippet/example/python/stevedore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/stevedore.md -------------------------------------------------------------------------------- /snippet/example/python/tap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/tap.c -------------------------------------------------------------------------------- /snippet/example/python/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/template.py -------------------------------------------------------------------------------- /snippet/example/python/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/url.py -------------------------------------------------------------------------------- /snippet/example/python/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/utils.py -------------------------------------------------------------------------------- /snippet/example/python/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/version.py -------------------------------------------------------------------------------- /snippet/example/python/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/wsgi.py -------------------------------------------------------------------------------- /snippet/example/python/xml2json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/xml2json.py -------------------------------------------------------------------------------- /snippet/example/python/zookeeper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/python/zookeeper.py -------------------------------------------------------------------------------- /snippet/example/shell/openvpn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/shell/openvpn.sh -------------------------------------------------------------------------------- /snippet/example/shell/rublock.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/shell/rublock.sh -------------------------------------------------------------------------------- /snippet/example/templates/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/templates/Makefile -------------------------------------------------------------------------------- /snippet/example/templates/html5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/templates/html5.html -------------------------------------------------------------------------------- /snippet/example/templates/service-script(openstack-nova-api): -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/templates/service-script(openstack-nova-api) -------------------------------------------------------------------------------- /snippet/example/templates/sublimetext-sftp-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/example/templates/sublimetext-sftp-config.json -------------------------------------------------------------------------------- /snippet/libs/c-c++/encode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/libs/c-c++/encode.cpp -------------------------------------------------------------------------------- /snippet/libs/c-c++/frame-crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/libs/c-c++/frame-crc32.c -------------------------------------------------------------------------------- /snippet/libs/c-c++/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/libs/c-c++/list.h -------------------------------------------------------------------------------- /snippet/libs/c-c++/xlib/xdlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/libs/c-c++/xlib/xdlist.c -------------------------------------------------------------------------------- /snippet/libs/c-c++/xlib/xdlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/libs/c-c++/xlib/xdlist.h -------------------------------------------------------------------------------- /snippet/libs/c-c++/xlib/xgf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/libs/c-c++/xlib/xgf.c -------------------------------------------------------------------------------- /snippet/libs/c-c++/xlib/xgf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/libs/c-c++/xlib/xgf.h -------------------------------------------------------------------------------- /snippet/libs/c-c++/xlib/xslist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/libs/c-c++/xlib/xslist.c -------------------------------------------------------------------------------- /snippet/libs/c-c++/xlib/xslist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/libs/c-c++/xlib/xslist.h -------------------------------------------------------------------------------- /snippet/libs/c-c++/xlib/xtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/libs/c-c++/xlib/xtypes.h -------------------------------------------------------------------------------- /snippet/libs/css/cssbase.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/libs/css/cssbase.css -------------------------------------------------------------------------------- /snippet/libs/css/cssreset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/libs/css/cssreset.css -------------------------------------------------------------------------------- /snippet/libs/css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/libs/css/normalize.css -------------------------------------------------------------------------------- /snippet/libs/js/cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/libs/js/cookie.js -------------------------------------------------------------------------------- /snippet/libs/js/jquery.cookie/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/libs/js/jquery.cookie/README.md -------------------------------------------------------------------------------- /snippet/libs/js/jquery.cookie/jquery.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/libs/js/jquery.cookie/jquery.cookie.js -------------------------------------------------------------------------------- /snippet/libs/js/json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/libs/js/json.js -------------------------------------------------------------------------------- /snippet/libs/js/loadjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/libs/js/loadjs.js -------------------------------------------------------------------------------- /snippet/libs/js/md5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/libs/js/md5.js -------------------------------------------------------------------------------- /snippet/libs/js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/libs/js/utils.js -------------------------------------------------------------------------------- /snippet/libs/linux/init.d-service-example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/libs/linux/init.d-service-example -------------------------------------------------------------------------------- /snippet/libs/linux/kernel-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/libs/linux/kernel-utils.h -------------------------------------------------------------------------------- /snippet/software/symbol-fonts_1.2_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgfone/snippet/HEAD/snippet/software/symbol-fonts_1.2_all.deb --------------------------------------------------------------------------------