codegym

所属分类:加密解密
开发工具:GO
文件大小:513KB
下载次数:0
上传日期:2023-06-03 03:39:39
上 传 者sh-1993
说明:  一个学习、失败、实验、玩耍和娱乐的空间!一切都是科技!
(A space to learn, fail, experiment, play and have fun! All things tech!)

文件列表:
.vscode (0, 2023-06-03)
.vscode\settings.json (105, 2023-06-03)
azure (0, 2023-06-03)
azure\az-900-notes.md (67832, 2023-06-03)
c (0, 2023-06-03)
c\domain_sockets (0, 2023-06-03)
c\domain_sockets\Makefile (411, 2023-06-03)
c\domain_sockets\uds.h (39, 2023-06-03)
c\domain_sockets\uds_client.c (1487, 2023-06-03)
c\domain_sockets\uds_server.c (3254, 2023-06-03)
c\echo_server_client (0, 2023-06-03)
c\echo_server_client\Makefile (207, 2023-06-03)
c\echo_server_client\echo_client.c (2360, 2023-06-03)
c\echo_server_client\echo_server.c (3598, 2023-06-03)
c\epoll (0, 2023-06-03)
c\epoll\Makefile (231, 2023-06-03)
c\epoll\epoll_server.c (6173, 2023-06-03)
c\epoll\epoll_server_et.c (9440, 2023-06-03)
c\mmap (0, 2023-06-03)
c\mmap\ex1 (0, 2023-06-03)
c\mmap\ex1\Makefile (140, 2023-06-03)
c\mmap\ex1\mmap_example.c (769, 2023-06-03)
c\mmap\ex1\mmap_parent_child.c (1193, 2023-06-03)
c\mmap\ex2 (0, 2023-06-03)
c\mmap\ex2\Makefile (152, 2023-06-03)
c\mmap\ex2\mmap_demo.c (1155, 2023-06-03)
c\mmap\mmap_with_file (0, 2023-06-03)
c\mmap\mmap_with_file\Makefile (161, 2023-06-03)
c\mmap\mmap_with_file\mmap_with_file.c (1114, 2023-06-03)
c\mmap\mmap_with_file\testfile (1795, 2023-06-03)
c\non_blocking (0, 2023-06-03)
c\non_blocking\Makefile (196, 2023-06-03)
c\non_blocking\nb_client.c (3509, 2023-06-03)
c\non_blocking\nb_server.c (5118, 2023-06-03)
c\poll (0, 2023-06-03)
c\poll\Makefile (208, 2023-06-03)
c\poll\poll_client.c (2387, 2023-06-03)
... ...

# Code Garage Welcome to my learning ground. This is my space where I try to learn new things, fail, learn and share. - [Learning gRPC](https://github.com/deepns/codegym/blob/master/go/learning/grpc) - [gRPC Features](https://github.com/deepns/codegym/blob/master/go/learning/grpc/features) - contains sample working code for different features of gRPC - [Oauth authentication](https://github.com/deepns/codegym/blob/master/go/learning/grpc/features/authentication_oauth/) - [Static authentication with username and password](https://github.com/deepns/codegym/blob/master/go/learning/grpc/features/authentication_static/) - [Interceptor](https://github.com/deepns/codegym/blob/master/go/learning/grpc/features/interceptor/) - [Keepalive](https://github.com/deepns/codegym/blob/master/go/learning/grpc/features/keepalive/) - [Load balancing](https://github.com/deepns/codegym/blob/master/go/learning/grpc/features/load_balancing/) - [Metadata processing](https://github.com/deepns/codegym/blob/master/go/learning/grpc/features/metadata/) - [Multiplexing](https://github.com/deepns/codegym/blob/master/go/learning/grpc/features/multiplex/) - [Name resolving](https://github.com/deepns/codegym/blob/master/go/learning/grpc/features/name_resolving/) - [Reflection](https://github.com/deepns/codegym/blob/master/go/learning/grpc/features/reflection/) - [Configuring TLS](https://github.com/deepns/codegym/blob/master/go/learning/grpc/features/tls/) - [Reminders](https://github.com/deepns/codegym/blob/master/go/learning/grpc/examples/reminders) - a simple service to show case serving clients on both grpc server via grpc and grpc-gateway server via http - [Refreshing C++](https://github.com/deepns/codegym/blob/master/cpp) - [Azure Fundamentals](https://github.com/deepns/codegym/blob/master/azure/az-900-notes.md) - [Learning Golang](https://github.com/deepns/codegym/blob/master/go/learning/) - code snippets to learn various features of golang - [Playing with signal handling](https://github.com/deepns/codegym/blob/master/c/signals/) - [I/O Multiplexing with epoll](https://github.com/deepns/codegym/blob/master/c/epoll/) - [I/O Multiplexing with poll](https://github.com/deepns/codegym/blob/master/c/poll/) - [TCP client/server with non-blocking sockets](https://github.com/deepns/codegym/blob/master/c/non_blocking/) - [Simple TCP client/server in Python](https://github.com/deepns/codegym/blob/master/python/echo_server_client/) - [Containerizing a python script](https://github.com/deepns/codegym/blob/master/python/pydockdemo/) - [Share shared-memory between two containers](https://github.com/deepns/codegym/blob/master/python/pydockshm/) - [Unix domain sockets](https://github.com/deepns/codegym/blob/master/c/domain_sockets/) - [Simple TCP client/server in C](https://github.com/deepns/codegym/blob/master/c/echo_server_client/) - [Simple TCP client/server in C with TLS](https://github.com/deepns/codegym/blob/master/c/tls_experiments/tls_server.c) - [Simple TCP client/server in C with mutual TLS](https://github.com/deepns/codegym/blob/master/c/tls_experiments/mtls_server.c) - [Read X509 certificates using openssl library](https://github.com/deepns/codegym/blob/master/c/tls_experiments/cert_util.c) - [I/O Multiplexing with select()](https://github.com/deepns/codegym/blob/master/c/select/) - [Vectored I/O](https://github.com/deepns/codegym/blob/master/c/vectored_io/) - [Deploying a webapp in a minikube k8s cluster](https://github.com/deepns/codegym/blob/master/kubernetes/testapp/README.md) - [Generate SSL certificates using openssl](https://github.com/deepns/codegym/blob/master/scripts/ssl-certs-gen/generate_ssl_certs.sh)

近期下载者

相关文件


收藏者