├── .gitignore ├── README.md ├── _go.md ├── _msgpack.md ├── _next.md ├── _object_storage.md ├── _ocaml.md ├── _peg.md ├── _regex.md ├── _wasm.md ├── activities ├── 20201227_tamarb_lt │ ├── echoserver │ ├── echoserver.c │ └── echoserver.rb ├── 20210324_fukuokarb_200 │ └── producer_consumer │ │ ├── ractor.rb │ │ └── thread.rb ├── 20210630_rubykaigi_proposal │ ├── proto1 │ │ ├── app │ │ │ ├── Gemfile │ │ │ ├── Gemfile.lock │ │ │ ├── app.rb │ │ │ ├── post.rb │ │ │ └── views │ │ │ │ └── index.erb │ │ ├── client.rb │ │ ├── config │ │ │ ├── const.rb │ │ │ └── protocols │ │ │ │ ├── duck.rb │ │ │ │ ├── ruby.rb │ │ │ │ ├── rubylike.rb │ │ │ │ ├── safe_ruby.rb │ │ │ │ └── safe_ruby_with_sinatra.rb │ │ ├── config_duck.ru │ │ ├── config_ruby.ru │ │ ├── config_rubylike.ru │ │ ├── config_safe_ruby.ru │ │ ├── protocol.rb │ │ ├── protocols │ │ │ ├── duck │ │ │ │ ├── cat_protocol_request.txt │ │ │ │ └── duck_protocol_request.txt │ │ │ ├── ruby │ │ │ │ └── get_request.txt │ │ │ ├── rubylike │ │ │ │ ├── other_lang_like_protocol_request.txt │ │ │ │ └── ruby_like_protocol_request.txt │ │ │ └── safe_ruby │ │ │ │ ├── get_request.txt │ │ │ │ ├── get_request_with_query.txt │ │ │ │ └── post_request.txt │ │ └── server.rb │ └── proto2 │ │ ├── Rakefile │ │ ├── app │ │ ├── Gemfile │ │ ├── Gemfile.lock │ │ ├── app.rb │ │ ├── post.rb │ │ └── views │ │ │ └── index.erb │ │ ├── client.rb │ │ ├── config_duck.ru │ │ ├── config_ruby.ru │ │ ├── config_rubylike.ru │ │ ├── config_safe_ruby.ru │ │ ├── protocols │ │ ├── duck.rb │ │ ├── ruby.rb │ │ ├── rubylike.rb │ │ ├── safe_ruby.rb │ │ └── safe_ruby_with_sinatra.rb │ │ ├── rack │ │ └── handler │ │ │ └── toycol.rb │ │ ├── requests │ │ ├── duck │ │ │ ├── cat_protocol_request.txt │ │ │ └── duck_protocol_request.txt │ │ ├── ruby │ │ │ └── get_request.txt │ │ ├── rubylike │ │ │ ├── other_lang_like_protocol_request.txt │ │ │ └── ruby_like_protocol_request.txt │ │ └── safe_ruby │ │ │ ├── get_request.txt │ │ │ ├── get_request_with_query.txt │ │ │ └── post_request.txt │ │ ├── toycol.rb │ │ └── toycol │ │ ├── config │ │ └── const.rb │ │ ├── generator.rb │ │ ├── helper.rb │ │ ├── protocol.rb │ │ └── proxy.rb ├── 20211212_rubyist_advent_calender │ ├── counter.rb │ └── sample.rb ├── 20211219_ruby_advent_calender │ ├── client │ │ └── macbook.rb │ └── server │ │ └── thinkpad.rb ├── 20220511_fukuokarb_256 │ ├── README.md │ └── echo_server_with_mruby │ │ ├── _echoserver.c │ │ ├── addr2int.rb │ │ ├── addrinfo.rb │ │ ├── client.rb │ │ ├── echoserver.c │ │ └── server.rb ├── 20220619_rubykaigi_proposal │ ├── drb │ │ ├── _memo.md │ │ ├── _packet-drb.md │ │ ├── a.rb │ │ ├── b.rb │ │ └── packet-druby.c │ ├── proto0 │ │ ├── _memo.md │ │ └── wireshark │ │ │ ├── CMakeLists.txt │ │ │ ├── CMakeListsCustom.txt │ │ │ ├── CMakeOptions.txt │ │ │ ├── cmake │ │ │ └── modules │ │ │ │ └── FindMRUBY.cmake │ │ │ ├── cmakeconfig.h.in │ │ │ └── plugins │ │ │ └── epan │ │ │ └── mruby_plugin │ │ │ ├── CMakeLists.txt │ │ │ ├── _mrb_plugin.c │ │ │ ├── mrb_plugin.c │ │ │ ├── mrb_plugin.h │ │ │ ├── mrb_register_handoff.c │ │ │ ├── mrb_register_plugin.c │ │ │ ├── mrb_subtree.c │ │ │ ├── packet-mruby.c │ │ │ ├── packet-mruby.h │ │ │ └── plugin.rb │ └── proto1 │ │ ├── _memo.md │ │ └── wireshark │ │ ├── CMakeLists.txt │ │ ├── CMakeListsCustom.txt │ │ ├── CMakeOptions.txt │ │ ├── cmake │ │ └── modules │ │ │ └── FindMRUBY.cmake │ │ ├── cmakeconfig.h.in │ │ └── plugins │ │ └── epan │ │ └── proto1 │ │ ├── CMakeLists.txt │ │ ├── config.druby.rb │ │ ├── config.foo.rb │ │ ├── packet-proto1.c │ │ ├── ws_dissector.rb │ │ ├── ws_protocol.c │ │ ├── ws_protocol.h │ │ └── ws_protocol.rb ├── 20230225_ruby30th │ ├── 11.rb │ ├── 12.rb │ ├── 13.rb │ ├── 14.rb │ ├── 17.rb │ ├── 3.rb │ ├── 4.rb │ ├── 5.rb │ ├── 7.rb │ ├── 8.rb │ └── 9.rb ├── 20230304_kagoshima_rubykaigi02 │ └── _log.md ├── 20230512_rubykaigi │ ├── _memo.md │ ├── implementations │ │ ├── _1.md │ │ ├── _2.md │ │ ├── _2.rb │ │ ├── _3.md │ │ ├── _4.md │ │ └── _idea.md │ ├── internal │ │ ├── _parse_binding.md │ │ ├── _parse_foo.md │ │ ├── _parse_keyword_self.md │ │ ├── _parse_numeric_with_1.md │ │ ├── _parse_tINTEGER_1.md │ │ ├── _parse_warn_balanced.md │ │ ├── _parser.md │ │ ├── _parser_params.md │ │ ├── _qcall.md │ │ ├── _ripper.md │ │ ├── _scanner.md │ │ └── _yycompile.md │ ├── log │ │ ├── __before.md │ │ ├── __parser.md │ │ ├── __scanner.md │ │ ├── binding.rb │ │ ├── foo.rb │ │ ├── parsing+.rb │ │ ├── parsing+=.rb │ │ └── states.txt │ ├── rubypp │ └── test.rb ├── _20191101-02_rails_girls.md ├── _20200211_oedo08.md ├── _first_gem_lt.md └── socket_under_a_microscope │ ├── _tcp.md │ ├── _tcp_server_loop.md │ ├── client.rb │ └── server.rb ├── apache ├── __overview.md ├── _hook.md ├── _usage.md ├── conf │ ├── __overview.md │ └── _directive.md └── module_extension │ ├── __overview.md │ ├── _api.md │ ├── _apx.md │ └── mruby_book │ ├── _declaring_directive.md │ ├── _declaring_hook.md │ └── _declaring_module.md ├── arch ├── __clean_architecture.md ├── _bef.md ├── _layered_archtecture.md ├── _onion_archtecture.md └── _three_layer_architecture.md ├── auth ├── __overview.md ├── _oauth.md ├── _passkey.md ├── _protocol.md └── sso │ ├── __overview.md │ ├── _kerberos.md │ ├── _open_id.md │ └── _saml.md ├── aws ├── __overview.md ├── _acm.md ├── _cloudfront.md ├── _cloudwatch.md ├── _parameter_store_exec.md ├── _run-ecs-task.md ├── _sns.md ├── _sqs.md ├── computing │ ├── _ec2_auto_scaling.md │ ├── _securitygroup.md │ └── ec2 │ │ ├── __overview.md │ │ ├── _ipv6.md │ │ └── _usage.md ├── container │ ├── __overview.md │ ├── _app_mesh.md │ ├── _cloud_map.md │ ├── _ecr.md │ ├── _ecs.md │ ├── _eks.md │ ├── _fargate.md │ └── _x_ray.md ├── db │ ├── _aurora.md │ ├── _dynamodb.md │ ├── _elasticache.md │ └── _rds.md ├── devops │ ├── _code_build.md │ ├── _code_commit.md │ ├── _code_deploy.md │ ├── _code_pipeline.md │ └── _elastic_beanstalk.md ├── infrastructure_automation │ ├── _cdk.md │ ├── _cloud_formation.md │ └── _ops_works.md ├── network │ ├── _elb.md │ ├── _route53.md │ └── _vpc.md ├── operation │ ├── _cli.md │ ├── _config.md │ ├── _iam.md │ ├── _organizations.md │ └── _systems_manager.md ├── security │ ├── _cloudtail.md │ ├── _kms.md │ ├── _secret_manager.md │ └── _waf.md ├── serverless │ ├── _apigateway.md │ ├── _cognito.md │ ├── _lambda.md │ ├── _sam.md │ └── _step_functions.md └── storage │ ├── __overview.md │ ├── _ebs.md │ ├── _efs.md │ └── s3 │ ├── __overview.md │ ├── _static_site_hosting.md │ └── _usage.md ├── c ├── __build.md ├── __overview.md ├── _bit_operation.md ├── _glibc.md ├── _pointer.md ├── _restrict.md ├── _vulnerability.md ├── api │ ├── _exec.md │ ├── _fcntl.md │ ├── _netinet.md │ ├── _signal.md │ ├── _stdarg.md │ ├── _stdlib.md │ ├── _string.md │ ├── pthread │ │ ├── __overview.md │ │ ├── _exlusive_control.md │ │ ├── _rwlock.md │ │ ├── _task_scheduling.md │ │ └── _thread_local_variable.md │ └── stdio │ │ ├── _in.md │ │ └── _out.md ├── glibc │ ├── _libpcap.md │ ├── _mknod.md │ ├── _msgget.md │ └── _shmget.md ├── preprocessor │ ├── _define.md │ ├── _if.md │ ├── _ifdef.md │ ├── _include.md │ └── _line.md ├── pthread │ ├── _cancel.md │ ├── _cleanup.md │ ├── _cond.md │ ├── _create.md │ ├── _detach.md │ ├── _exit.md │ ├── _id.md │ ├── _join.md │ ├── _mutex.md │ ├── _once.md │ └── _sig.md ├── storage_class │ ├── __overview.md │ ├── _auto.md │ ├── _extern.md │ ├── _register.md │ └── _static.md ├── tools │ ├── _binutils.md │ ├── _c-ares.md │ ├── _ctags.md │ ├── _gcrypt.md │ ├── _gperf.md │ ├── _libanl.md │ ├── _nghttp2.md │ └── _pkg-config.md └── type │ ├── __overview.md │ ├── __type_declaration.md │ ├── _const.md │ ├── _enum.md │ ├── _typedef.md │ └── _volatile.md ├── character_encoding ├── __overview.md ├── _unicode.md └── _unicode_normalization.md ├── ci ├── _basics.md ├── _github_actions.md └── circleci │ ├── _basics.md │ ├── _checks.md │ ├── _cli.md │ ├── _performance.md │ └── _workflow.md ├── computer ├── __execute_program.md ├── _abi.md ├── _bit.md ├── _blob.md ├── _compiling.md ├── _edge.md ├── _gc.md ├── _kernel_version.md ├── _memory.md ├── _os.md ├── _structure_programming.md ├── _systemcall.md ├── _virtualization.md ├── algorithm │ ├── _computational_complexity.md │ ├── _exponential_power.md │ └── _logic.md ├── assembly │ └── _syntax.md ├── books │ ├── _computer_science_distilled.md │ ├── _first_read_486.md │ ├── _grokking_algorithm.md │ ├── _math_for_programmers.md │ ├── _programming_basics.md │ └── self_study_assembler │ │ ├── _instruction.md │ │ └── _register.md └── data_structure │ ├── _graph.md │ ├── _hash_table.md │ ├── _queue.md │ ├── _stack.md │ ├── _table.md │ └── _vector.md ├── concurrency ├── __overview.md ├── _actor.md ├── _linda.md ├── _multitask.md └── synchronization │ ├── _barrier.md │ └── _semaphore.md ├── cording └── _heiv.md ├── cryptography ├── __overview.md ├── _dh.md ├── _eliptic_curve_cryptgrapty.md ├── _hybrid_cryptosystem.md ├── _key.md ├── _randomize.md ├── hashing │ ├── __overview.md │ ├── _md5.md │ ├── _sha-1.md │ ├── _sha-2.md │ └── _sha-3.md ├── message_authentication │ ├── digital_signature │ │ ├── __overview.md │ │ ├── _fido.md │ │ └── _public_key_authentication.md │ └── mac │ │ ├── __overview.md │ │ ├── _aead.md │ │ └── _hmac.md ├── public_key_cyptosystem │ ├── __basic.md │ └── _rsa.md └── symmetric_key_cryptosystem │ ├── __overview.md │ ├── _aes.md │ ├── _chacha20.md │ ├── _des.md │ ├── _rc4.md │ └── algorithms │ ├── _block.md │ ├── _otp.md │ └── _stream.md ├── db ├── __overview.md ├── _acid.md ├── _cap.md ├── _cte.md ├── _index.md ├── _replication.md ├── _sharding.md ├── postgresql │ ├── __overview.md │ ├── _explain.md │ ├── _partition.md │ ├── _pg_basebackup.md │ ├── _pg_extension.md │ ├── _pg_restore.md │ ├── _pg_stat_activity.md │ ├── _role.md │ ├── _table_size.md │ ├── _toast.md │ ├── _type.md │ ├── _vacuum.md │ ├── _vcs.md │ ├── _view.md │ ├── _wal.md │ └── query │ │ ├── _array_agg.md │ │ ├── _custom_order.md │ │ ├── _datetime_value.md │ │ ├── _distinct_on.md │ │ ├── _empty_array.md │ │ ├── _fetch_first.md │ │ ├── _geom_select.md │ │ ├── _geom_where.md │ │ ├── _multiple_like.md │ │ ├── _multipul_column_nulls_first.md │ │ ├── _nulls_last.md │ │ ├── _on_conflict.md │ │ ├── _polymorphic.md │ │ ├── _timestamp.md │ │ ├── _where_array.md │ │ └── _where_two_columns_in_set.md ├── redis │ ├── __overview.md │ └── _cli.md └── sql │ ├── _case.md │ ├── _exists.md │ ├── _insert.md │ ├── _json.md │ ├── _op.md │ ├── _selected_column_number.md │ ├── _set.md │ ├── _update.md │ └── _window.md ├── docker ├── __overview.md ├── _file_system.md ├── _install.md ├── _namespace.md ├── _network.md ├── _rails.md └── usage │ ├── __oneshot.md │ ├── __overview.md │ ├── _cp.md │ ├── _network.md │ ├── _shell.md │ ├── compose │ ├── __overview.md │ └── _yml.md │ ├── custom │ ├── __best_practice.md │ ├── __overview.md │ ├── _from_container.md │ └── _from_dockerfile.md │ └── mount │ ├── _bind.md │ └── _volume.md ├── ebpf ├── __flow.md ├── __overview.md ├── __vm.md ├── _btf.md ├── _core.md ├── _syntax.md └── tools │ ├── _bcc.md │ ├── _bpfgen.md │ ├── _bpftrace.md │ ├── _bumblebee.md │ └── _libbpf.md ├── elixir ├── _agent.md ├── _basics.md ├── _ex_unit.md ├── _immutability.md ├── _mix.md ├── _node.md ├── _otp.md ├── _pattern_match.md ├── _process.md ├── _string.md ├── _syntax.md ├── _task.md └── _type.md ├── english ├── _00_idiom.md ├── _01_preposition.md ├── _02_verb.md ├── _03_adjective.md ├── _04_adverb.md └── _05_auxiliary.md ├── file_format ├── _geojson.md ├── _heif.md └── _webp.md ├── frontend ├── _eco_system.md ├── _server_sent_events.md ├── _ssr.md ├── _webrtc.md ├── _websocket.md ├── build │ ├── _esbuild.md │ ├── _importing.md │ ├── _importmap.md │ └── _webpack.md ├── javascript │ ├── _closure.md │ ├── _function.md │ ├── _generator.md │ ├── _module.md │ ├── _type.md │ ├── api │ │ ├── _fetch.md │ │ ├── _history.md │ │ ├── _selectObject.md │ │ ├── _storage.md │ │ ├── _timing.md │ │ ├── _window.md │ │ └── _xmlhttprequest.md │ └── async │ │ ├── __overview.md │ │ ├── _async.md │ │ ├── _promise.md │ │ └── _set_timeout.md ├── package │ ├── __packagejson.md │ ├── _dayjs.md │ ├── _eslint.md │ ├── _husky.md │ ├── _lint-staged.md │ ├── _lodash.md │ ├── _nodebrew.md │ └── _prettier.md └── typescript │ ├── __overview.md │ ├── _as.md │ ├── _class.md │ ├── _generics.md │ ├── _namespace.md │ ├── _tsconfig.md │ ├── _user_defined_type_guard.md │ ├── type_definition │ ├── __overview.md │ ├── _array.md │ ├── _enum.md │ ├── _file.md │ ├── _function.md │ ├── _nullish.md │ ├── _object.md │ └── _unknown.md │ ├── type_operation │ ├── _companion_object_pattern.md │ ├── _conditional_type.md │ ├── _intersection.md │ ├── _keyof.md │ ├── _mapped_type.md │ ├── _type.md │ └── _union.md │ └── util │ ├── _exclude.md │ ├── _extract.md │ ├── _omit.md │ ├── _partial.md │ ├── _pick.md │ ├── _readonly.md │ ├── _record.md │ └── _required.md ├── git ├── __gitconfig.md ├── __gitignore.md ├── _add.md ├── _bisect.md ├── _checkout.md ├── _cherry-pick.md ├── _diff.md ├── _log.md ├── _option.md ├── _push.md ├── _rebase.md ├── _rm.md ├── _submodule.md └── _tag.md ├── go └── _101.md ├── graphql ├── _apollo.md ├── _basics.md ├── _query.md └── _schema.md ├── heroku ├── __overview.md ├── _addons.md ├── _conf.md ├── _infrastructure.md ├── _logdrain.md ├── ops │ ├── _backgroud_task_execution.md │ ├── _git_ops.md │ ├── _memory_usage.md │ └── _rollback.md └── pg │ ├── _backup_and_restore.md │ ├── _reset.md │ └── _upgrade.md ├── html ├── _basics.md ├── _hls.md └── _mpeg_dash.md ├── http ├── _amp.md ├── _history.md ├── _method.md ├── _mime.md ├── _priority_control.md ├── _semantic_web.md ├── _semantics.md ├── _status.md ├── _upgrading.md ├── _webhook.md ├── authentications │ ├── _basic.md │ ├── _cookie.md │ ├── _digest.md │ └── _jwt.md ├── cache │ ├── _cache_control.md │ ├── _classification.md │ └── _condition.md ├── headers │ ├── _authorization.md │ ├── _cache_status.md │ ├── _entity.md │ ├── _general.md │ ├── _request.md │ ├── _response.md │ ├── _retry_after.md │ ├── _with_cors_response.md │ └── _with_preflight_request.md ├── http1.x │ ├── _basics.md │ ├── _chunk.md │ ├── _inline_resource.md │ ├── _keep_alive.md │ ├── _pipeline.md │ └── _splite.md ├── http2 │ ├── __overview.md │ ├── _error.md │ ├── _extension.md │ ├── _flow_control.md │ ├── _header_compression.md │ ├── _opportunistic_security.md │ ├── _preload.md │ ├── _priority.md │ ├── _pseudo_header.md │ ├── _server_push.md │ ├── _spdy.md │ ├── _web_push.md │ └── multiplexing │ │ ├── __overview.md │ │ ├── _connection.md │ │ ├── _frame.md │ │ └── _stream.md ├── http3 │ ├── _basics.md │ ├── _extension.md │ ├── _qpack.md │ ├── _server_push.md │ ├── _util.md │ └── transmission │ │ ├── _connection.md │ │ ├── _frame.md │ │ └── _stream.md └── rpc │ ├── _grpc.md │ └── _rpc.md ├── infrastructure ├── _cloud_computing.md ├── _container_runtime.md ├── _hosting.md ├── _monitoring.md └── cloud_native │ ├── __overview.md │ ├── _containerization.md │ ├── _microservice.md │ ├── _serverless.md │ └── _service_mesh.md ├── mruby ├── __mrubyc.md ├── __overview.md ├── _gc.md ├── build │ ├── __overview.md │ └── _build_config.md ├── c │ ├── _mrb_state.md │ ├── _mrb_value.md │ └── api │ │ ├── _array.md │ │ ├── _call_ruby_method.md │ │ ├── _class.md │ │ ├── _const.md │ │ ├── _define_ruby_method.md │ │ ├── _exception.md │ │ ├── _hash.md │ │ ├── _load_ruby_code.md │ │ ├── _memory.md │ │ ├── _numeric.md │ │ ├── _object.md │ │ ├── _string.md │ │ └── _value.md ├── exec │ ├── __overview.md │ ├── _call_method_in_c.md │ └── _embedded_bytecodes_in_c.md └── mgem │ ├── __basic.md │ ├── _mod_mruby.md │ └── mrbgem-template │ ├── __overview.md │ ├── _c.md │ └── _ruby.md ├── network ├── __overview.md ├── _l3switch_log.md ├── _loadbalancer.md ├── _ngn.md ├── _packet.md ├── _pop.md ├── _tools.md ├── books │ ├── developing_secure_web_application │ │ ├── 03_basic_ofweb_security │ │ │ ├── _01_http_and_session.md │ │ │ ├── _02_same_origin_policy.md │ │ │ └── _03_cors.md │ │ ├── 04_bugs_by_functions │ │ │ ├── _01_functions_and_vulnerabilities.md │ │ │ ├── _02_input_and_security.md │ │ │ ├── _03_displaying.md │ │ │ ├── _04_sql.md │ │ │ ├── _05_specific_side_effect.md │ │ │ ├── _06_session.md │ │ │ ├── _07_redirection.md │ │ │ ├── _08_cookies.md │ │ │ ├── _09_sending_email.md │ │ │ ├── _10_accessing_files.md │ │ │ ├── _11_os_command.md │ │ │ ├── _12_uploading_files.md │ │ │ ├── _13_including.md │ │ │ ├── _14_structuring_data.md │ │ │ ├── _15_sharing_resources_and_caches.md │ │ │ ├── _16_web_api.md │ │ │ └── _17_javascript.md │ │ ├── 05_functions_for_secority │ │ │ ├── _01_authentiction.md │ │ │ ├── _02_managing_accounts.md │ │ │ ├── _03_authorization.md │ │ │ └── _04_logging.md │ │ ├── 06_character_encoding │ │ │ └── _character_encoding.md │ │ └── 08_outside_of_application │ │ │ └── _outside_of_application.md │ ├── high_performance_browser_networking │ │ ├── _01_binary_framing_layer.md │ │ ├── _02_streams_messages_frames.md │ │ ├── _03_request_and_response_multiplexing.md │ │ ├── _04_stream_prioritization.md │ │ ├── _05_one_connection_per_origin.md │ │ ├── _06_flow_control.md │ │ ├── _07_server_push.md │ │ ├── _08_header_compression.md │ │ ├── _09_upgrading_to_http2.md │ │ └── _10_brief_introduction_to_binary_framing.md │ ├── how_networks_work │ │ ├── _01_client.md │ │ ├── _02_packet.md │ │ └── _03_server.md │ ├── mastering_tcp_ip_101 │ │ ├── _01_network_101.md │ │ ├── _02_tcp_ip_101.md │ │ ├── _03_datalink.md │ │ ├── _04_ip.md │ │ ├── _05_technologies_related_to_ip.md │ │ ├── _06_tcp_and_udp.md │ │ ├── _07_routing_protocol.md │ │ ├── _08_application_protocol.md │ │ └── _09_security.md │ ├── real_world_http │ │ ├── _security.md │ │ ├── http1.0 │ │ │ ├── __overview.md │ │ │ ├── _body.md │ │ │ ├── _cache.md │ │ │ ├── _header.md │ │ │ ├── _method.md │ │ │ ├── _proxy.md │ │ │ ├── _session.md │ │ │ ├── _status.md │ │ │ └── _uri.md │ │ ├── http1.1 │ │ │ ├── __overview.md │ │ │ ├── _authorization.md │ │ │ ├── _chunk.md │ │ │ ├── _download.md │ │ │ ├── _geo_location.md │ │ │ ├── _keep_alive.md │ │ │ ├── _method.md │ │ │ ├── _pipe_lining.md │ │ │ ├── _remote_procedure_call.md │ │ │ ├── _support_of_virtual_host.md │ │ │ ├── _tls.md │ │ │ ├── _upgrade_of_protocol.md │ │ │ ├── _webdav.md │ │ │ ├── _x_powered_by.md │ │ │ └── _xml_http_request.md │ │ └── http2.0 │ │ │ ├── __overview.md │ │ │ ├── _fetch_api.md │ │ │ ├── _http_web_push.md │ │ │ ├── _new_features.md │ │ │ ├── _server_push.md │ │ │ ├── _server_sent_events.md │ │ │ ├── _spdy_quic.md │ │ │ ├── _stream.md │ │ │ ├── _web_rtc.md │ │ │ └── _websocket.md │ └── technologies_support_web │ │ ├── _01_introduction.md │ │ ├── _02_uri.md │ │ ├── _03_http.md │ │ ├── _04_hyper_media_format.md │ │ └── _05_design_of_web_service.md ├── docs │ ├── _draft-ietf-dnsop-structured-dns-error-03.md │ ├── _rfc6555.md │ ├── _rfc6724.md │ └── _rfc8305.md ├── l2 │ ├── __overview.md │ ├── _atm.md │ ├── _dhcp_snooping.md │ ├── _ipv6_ipoe.md │ ├── _ipv6_pppoe.md │ ├── _macaddress.md │ ├── _openflow.md │ ├── _ppp.md │ ├── _pppoe.md │ ├── _public_network.md │ ├── _vlan.md │ ├── arp │ │ ├── __overview.md │ │ ├── _format.md │ │ ├── _garp.md │ │ ├── _proxy_arp.md │ │ └── _rarp.md │ ├── ethernet │ │ ├── __overview.md │ │ ├── _fcs.md │ │ ├── _kind.md │ │ └── _mtu.md │ └── wireless │ │ ├── __basic.md │ │ ├── _mobile.md │ │ ├── _performance.md │ │ └── _wifi.md ├── l3 │ ├── _icmp.md │ ├── _icmpv6.md │ ├── _igmp.md │ ├── _mobileip.md │ ├── dhcp │ │ ├── __overview.md │ │ ├── _packet_format.md │ │ ├── _relay_agent.md │ │ └── _spoofing.md │ ├── dhcpv6 │ │ ├── __overview.md │ │ ├── _format.md │ │ └── _type.md │ ├── ip │ │ ├── __overview.md │ │ ├── _ipsec.md │ │ ├── _path_mtu_discovery.md │ │ ├── _port_forwarding.md │ │ ├── _qos.md │ │ ├── _socket_api.md │ │ ├── _tunneling.md │ │ ├── _vrrp.md │ │ ├── ipv4 │ │ │ ├── _address.md │ │ │ ├── _format.md │ │ │ └── _fragmentation.md │ │ ├── ipv6 │ │ │ ├── __overview.md │ │ │ ├── _format.md │ │ │ ├── _fragmentaion.md │ │ │ ├── _multicast.md │ │ │ ├── address │ │ │ │ ├── __overview.md │ │ │ │ ├── _ipv4_mapped_ipv6_address.md │ │ │ │ ├── _slaac.md │ │ │ │ └── _type.md │ │ │ └── ndp │ │ │ │ ├── __overview.md │ │ │ │ ├── _link_layer_address_resolution_and_nud.md │ │ │ │ ├── _redirection.md │ │ │ │ ├── _router_and_prefix_information_discovery.md │ │ │ │ └── _send.md │ │ └── nat │ │ │ ├── __overview.md │ │ │ ├── _cgn.md │ │ │ ├── _filtering.md │ │ │ ├── _mapping.md │ │ │ ├── _napt.md │ │ │ ├── _nat64_dns64.md │ │ │ ├── _source_nat.md │ │ │ ├── _traversal.md │ │ │ └── _type.md │ └── routing │ │ ├── __overview.md │ │ ├── _routing_table.md │ │ └── protocol │ │ ├── _egp.md │ │ └── _igp.md ├── l4 │ ├── __protocol.md │ ├── _dccp.md │ ├── _lightweight_udp.md │ ├── _mptcp.md │ ├── _port.md │ ├── _sctp.md │ ├── _socks_proxy.md │ ├── _udp.md │ ├── quic │ │ ├── _basics.md │ │ ├── _extension.md │ │ ├── _qlog.md │ │ └── transmission │ │ │ ├── _basics.md │ │ │ ├── _connection.md │ │ │ ├── _frame.md │ │ │ ├── _stream.md │ │ │ └── packet │ │ │ ├── _basics.md │ │ │ ├── _encryption.md │ │ │ └── _packet_loss.md │ └── tcp │ │ ├── __overview.md │ │ ├── _congestion_control.md │ │ ├── _connection.md │ │ ├── _delayed_ack.md │ │ ├── _endpoint.md │ │ ├── _keep_alive.md │ │ ├── _nagles_algorithm.md │ │ ├── _packet_format.md │ │ ├── _piggy_back.md │ │ ├── _retransmission_control.md │ │ ├── _state.md │ │ ├── _tcp_fast_open.md │ │ ├── _window_control.md │ │ └── msg_oob │ │ ├── client.rb │ │ └── server.rb └── l7 │ ├── _cdn.md │ ├── _http_proxy.md │ ├── _ldap.md │ ├── _mdns.md │ ├── _mime.md │ ├── _ntp.md │ ├── _rtp.md │ ├── _sip.md │ ├── _snmp.md │ ├── _ssh.md │ ├── dns │ ├── __overview.md │ ├── _ddr.md │ ├── _domain_name.md │ ├── _domain_name_administration.md │ ├── _edns0.md │ ├── _filtering.md │ ├── _message_format.md │ ├── _resource_record.md │ ├── _revolver.md │ ├── _zone_transfer.md │ ├── happy_eyeballs │ │ ├── __overview.md │ │ └── _states.md │ └── security │ │ ├── _dnssec.md │ │ ├── _qname.md │ │ ├── _split_holizon.md │ │ └── _stub_resolver_to_full_resolver.md │ ├── email │ ├── _basics.md │ ├── _imap.md │ ├── _pop.md │ └── _smtp.md │ ├── tls │ ├── 1.2 │ │ ├── _auth.md │ │ ├── _encryption.md │ │ ├── _extension.md │ │ ├── _optimisation.md │ │ ├── _quickcert.md │ │ ├── handshaking │ │ │ ├── _full_handshake.md │ │ │ ├── _key_exchange.md │ │ │ └── _session_resumption.md │ │ └── protocol │ │ │ ├── __overview.md │ │ │ ├── _alert.md │ │ │ ├── _application_data.md │ │ │ ├── _change_cipher_spec.md │ │ │ ├── _handshake.md │ │ │ └── _tls_record.md │ ├── 1.3 │ │ ├── __overview.md │ │ ├── _ciper_suit.md │ │ ├── _key.md │ │ ├── handshaking │ │ │ ├── _0rtt.md │ │ │ ├── __overview.md │ │ │ ├── _full_handshake.md │ │ │ ├── _session_resumption.md │ │ │ └── _transcript_hash.md │ │ └── protocol │ │ │ ├── _alert.md │ │ │ ├── _handshake.md │ │ │ ├── _record.md │ │ │ └── _sub_protocols.md │ ├── __overview.md │ └── _alpn.md │ └── www │ ├── __overview.md │ ├── __webserver_architecture.md │ ├── _did.md │ ├── _openapi.md │ ├── _rest.md │ └── browser │ ├── _basics.md │ ├── _cache.md │ ├── _history.md │ ├── _networking.md │ └── _session_storage.md ├── nginx ├── __overview.md ├── _installation.md ├── _modules.md ├── _utils.md ├── _vertual_host.md └── conf │ ├── _basics.md │ ├── _context_event.md │ ├── _context_http.md │ ├── _context_main.md │ ├── _variables.md │ └── cases │ ├── _add_header.md │ ├── _as_reverse_proxy.md │ ├── _bandlimited.md │ ├── _buffering.md │ ├── _cache.md │ ├── _correct_client_ip.md │ ├── _keep-alive.md │ ├── _load_balancing.md │ ├── _parallel_requests.md │ ├── _redirect_location.md │ ├── _timeoout.md │ └── _websocket.md ├── patterns ├── concurrency │ ├── _active_object.md │ ├── _balking.md │ ├── _future.md │ ├── _guarded_suspension.md │ ├── _immutable.md │ ├── _producer_consumer.md │ ├── _read_write_lock.md │ ├── _single_threaded_execution.md │ ├── _thread_per_message.md │ ├── _thread_specific_storage.md │ ├── _two_phase_termination.md │ └── _worker_thread.md └── oop │ ├── __overview.md │ ├── _abstract_factory.md │ ├── _adapter.md │ ├── _bridge.md │ ├── _decorator.md │ ├── _facade.md │ ├── _factory_method.md │ ├── _object_pool.md │ ├── _observer.md │ ├── _singleton.md │ ├── _strategy.md │ └── _template_method.md ├── performance ├── __overview.md ├── _cache.md ├── _db.md ├── _load_testing.md └── _web.md ├── rails ├── _action_text.md ├── _active_record_session_store.md ├── _cache.md ├── _date_helper.md ├── _i18n.md ├── _resources.md ├── _runner.md ├── _safe_list_sanitizer.md ├── _security.md ├── _tips.md ├── active_storage │ ├── __overview.md │ └── _usage.md ├── active_support │ ├── _benchmark.md │ ├── _cache.md │ ├── _configurable.md │ ├── _conserning.md │ ├── _current_attributes.md │ ├── _enumerable.md │ ├── _inquiry.md │ ├── _object.md │ └── _stringify_symbolize.md ├── app │ ├── channels │ │ ├── _basics.md │ │ └── _sample.md │ ├── controllers │ │ ├── _cookies.md │ │ ├── _rate_limit.md │ │ └── _utils.md │ ├── jobs │ │ ├── _active_job.md │ │ └── _sidekiq.md │ ├── mailboxes │ │ └── _action_mailbox.md │ ├── mailers │ │ ├── _config.md │ │ └── _preview.md │ ├── models │ │ ├── __active_model.md │ │ ├── _aggregations.md │ │ ├── _encryption.md │ │ ├── _model_schema.md │ │ ├── _multiple_db.md │ │ ├── _persistence.md │ │ ├── _postgis.md │ │ ├── _schema_cache.md │ │ ├── _tables.md │ │ ├── _truncate.md │ │ ├── _type.md │ │ ├── _validation.md │ │ ├── _view.md │ │ ├── association │ │ │ ├── _belongs_to.md │ │ │ ├── _build.md │ │ │ ├── _class_name.md │ │ │ ├── _counter_cache.md │ │ │ ├── _dependent.md │ │ │ ├── _extension.md │ │ │ ├── _has_one.md │ │ │ ├── _inverse_of.md │ │ │ └── _touch.md │ │ ├── callback │ │ │ ├── __overview.md │ │ │ └── _stop_callback.md │ │ ├── migration │ │ │ ├── __overview.md │ │ │ ├── _command.md │ │ │ └── file │ │ │ │ ├── __check_constraint.md │ │ │ │ ├── __lock_version.md │ │ │ │ ├── __references.md │ │ │ │ ├── __timestamp.md │ │ │ │ ├── __virtual.md │ │ │ │ ├── _add_column.md │ │ │ │ ├── _change_column.md │ │ │ │ ├── _change_column_default.md │ │ │ │ ├── _change_column_null.md │ │ │ │ ├── _drop_table.md │ │ │ │ └── _remove_column.md │ │ └── query │ │ │ ├── __sql.md │ │ │ ├── _explain.md │ │ │ ├── _having.md │ │ │ ├── _join_preload_eager_loading_includes.md │ │ │ ├── _json.md │ │ │ ├── _like.md │ │ │ ├── _missing.md │ │ │ ├── _none.md │ │ │ ├── _offset.md │ │ │ ├── _order.md │ │ │ ├── _where_array.md │ │ │ └── _where_date_time.md │ └── views │ │ ├── _content_tag.md │ │ ├── _form_with.md │ │ └── _simple_format.md ├── bin │ ├── _note.md │ └── _setup.md ├── config │ ├── __setting.md │ ├── _credentials.md │ ├── _database_yml.md │ ├── _locales.md │ ├── _routes.md │ ├── _x.md │ └── initializers │ │ ├── __overview.md │ │ └── _session_store.md └── frontend │ ├── __memo_at_6.0.1.md │ ├── __memo_at_7.0.0.md │ ├── _importmap-rails.md │ ├── _jsbundling-rails.md │ ├── _propshaft.md │ ├── _stimilus.md │ ├── _strada.md │ ├── _turbolinks.md │ ├── turbo │ ├── _drive.md │ ├── _frames.md │ ├── _native.md │ └── _streams.md │ └── webpacker │ ├── __overview.md │ └── _configs.md ├── react ├── __overview.md ├── hooks │ ├── __custom.md │ ├── _react_redux.md │ ├── _use_callback.md │ ├── _use_context.md │ ├── _use_effect.md │ ├── _use_memo.md │ ├── _use_reducer.md │ ├── _use_ref.md │ ├── _use_state.md │ └── _use_swr.md ├── library │ └── _react-select.md └── redux_saga │ ├── _redux_saga_core.md │ └── _redux_saga_effects.md ├── ruby ├── __installation.md ├── __updating.md ├── _command.md ├── _constants.md ├── _drb.md ├── _dump.md ├── _forwardable.md ├── _json.md ├── _lexical_scope.md ├── _marshal.md ├── _object_space.md ├── _pack.md ├── _rake.md ├── _ruby2_keywords.md ├── _struct.md ├── _tempfile.md ├── _type.md ├── benchmarker │ ├── _benchmark.md │ ├── _ruby-prof.md │ └── _stackprof.md ├── books │ ├── working_with_tcp_sockets │ │ ├── client_lifecycle │ │ │ ├── client_block_form.rb │ │ │ ├── client_easy_way.rb │ │ │ ├── connect.rb │ │ │ └── connect_non_existent.rb │ │ ├── cloud_hash │ │ │ ├── client.rb │ │ │ └── server.rb │ │ ├── create_socket.rb │ │ ├── create_socket_memoized.rb │ │ ├── framing_messages │ │ │ ├── client_with_instance.rb │ │ │ ├── server_with_gets.rb │ │ │ └── server_with_length.rb │ │ ├── ftp │ │ │ ├── arch │ │ │ │ ├── evented.rb │ │ │ │ ├── hybrids.md │ │ │ │ ├── preforking.rb │ │ │ │ ├── process_per_connection.rb │ │ │ │ ├── serial.rb │ │ │ │ ├── thread_per_connection.rb │ │ │ │ └── thread_pool.rb │ │ │ └── command_handler.rb │ │ ├── multiplexing_connections │ │ │ ├── multiplexing_connect.rb │ │ │ ├── native_multiplexing.rb │ │ │ ├── port_scanner.rb │ │ │ └── sane_multiplexing.rb │ │ ├── nagles_algorithm │ │ │ └── disable_nagle.rb │ │ ├── non_blocking_io │ │ │ ├── accept_nonblock.rb │ │ │ ├── connect_nonblock.rb │ │ │ ├── read_nonblock.rb │ │ │ ├── retry_partial_write.rb │ │ │ └── write_nonblock.rb │ │ ├── server_lifecycle │ │ │ ├── accept.rb │ │ │ ├── accept_connection_class.rb │ │ │ ├── accept_loop.rb │ │ │ ├── accept_server_sockets.rb │ │ │ ├── bind.rb │ │ │ ├── close_write.rb │ │ │ ├── listen.rb │ │ │ ├── loopback_bining.rb │ │ │ ├── native_accept_loop.rb │ │ │ ├── server_easy_way.rb │ │ │ ├── shutdown.rb │ │ │ └── tcp_server_loop.rb │ │ ├── socket_options │ │ │ ├── getsockopt.rb │ │ │ ├── getsockopt_wrapper.rb │ │ │ └── reuseaddr.rb │ │ ├── socket_ssl │ │ │ ├── ssl_client.rb │ │ │ └── ssl_server.rb │ │ ├── sockets_can_read │ │ │ ├── read.rb │ │ │ ├── read_with_length.rb │ │ │ ├── readpartial_with_length.rb │ │ │ └── write_with_eof.rb │ │ ├── sockets_can_write │ │ │ └── write.rb │ │ ├── timeouts │ │ │ ├── connect_timeout.rb │ │ │ └── read_timeout.rb │ │ └── urgent_data │ │ │ ├── oob_inline.rb │ │ │ ├── receiving_urgent_data.rb │ │ │ ├── select_args.rb │ │ │ └── sending_urgent_data.rb │ └── working_with_unix_processes │ │ ├── _01_basics.md │ │ ├── _02_proccess_with.md │ │ ├── _03_children.md │ │ ├── _04_signal.md │ │ ├── _05_ipc.md │ │ ├── _06_daemon.md │ │ └── _09_terminal.md ├── bundler │ ├── __overview.md │ ├── _command.md │ ├── _env.md │ └── internal │ │ └── 2.5.3 │ │ └── _fetching.md ├── concurrency │ ├── _fiber.md │ ├── _process.md │ ├── _ractor.md │ └── thread │ │ ├── _condition_variable.md │ │ ├── _monitor.md │ │ ├── _mutex.md │ │ ├── _queue.md │ │ ├── _sync.md │ │ └── _thread.md ├── dev │ ├── _build-ruby.md │ ├── _build.md │ ├── _man.md │ ├── _rubyci.md │ ├── _testing.md │ ├── _testing_C_api_with_TestUnit.md │ ├── _will.md │ ├── _win.md │ ├── happy_eyeballs │ │ ├── Socket_tcp │ │ │ ├── demo │ │ │ │ ├── client.rb │ │ │ │ ├── impl01.rb │ │ │ │ └── server.rb │ │ │ ├── doc.rb │ │ │ ├── implementations │ │ │ │ ├── impl00.rb │ │ │ │ ├── impl01.rb │ │ │ │ ├── impl02.rb │ │ │ │ ├── impl03.rb │ │ │ │ ├── impl04.rb │ │ │ │ ├── impl05.rb │ │ │ │ ├── impl05_01.rb │ │ │ │ ├── impl06.rb │ │ │ │ ├── impl07.rb │ │ │ │ ├── impl08.rb │ │ │ │ ├── impl09.rb │ │ │ │ ├── impl10.rb │ │ │ │ ├── impl11.rb │ │ │ │ ├── impl12.rb │ │ │ │ ├── impl12_original.rb │ │ │ │ ├── impl13.rb │ │ │ │ ├── impl14.rb │ │ │ │ ├── impl14_01.rb │ │ │ │ ├── impl15.rb │ │ │ │ └── socket.rb │ │ │ ├── improvement_case.rb │ │ │ ├── memo │ │ │ │ ├── PR4038_Socket_tcp.md │ │ │ │ ├── PR4038_test_Socket_tcp.md │ │ │ │ ├── PR4247_SocketError.md │ │ │ │ ├── loop_sample.rb │ │ │ │ ├── master_SocketError.md │ │ │ │ ├── master_Socket_tcp_20230806.md │ │ │ │ └── test_for_win.rb │ │ │ ├── performance │ │ │ │ ├── benchmark.rb │ │ │ │ ├── hev2_stackprof.html │ │ │ │ ├── original_stackprof.html │ │ │ │ └── stackprof.rb │ │ │ ├── resolution_error │ │ │ │ ├── _01_Add_ResolutionError.md │ │ │ │ ├── _02_Replace_SocketError_with_ResolutionError.md │ │ │ │ ├── _03_Rename_rsock_raise_socket_error_to_rsock_raise_resolution_error.md │ │ │ │ ├── _04_Fix_failing_spec.md │ │ │ │ ├── _05_Make_test-bundled-gems_success.md │ │ │ │ └── _doc.md │ │ │ ├── socket.rb │ │ │ ├── socket_test.rb │ │ │ ├── socket_test_unit.rb │ │ │ ├── v1.rb │ │ │ ├── v2.rb │ │ │ ├── v3.rb │ │ │ ├── v4.rb │ │ │ ├── v5.rb │ │ │ ├── v6.rb │ │ │ └── v7.rb │ │ ├── TCPSocket_new │ │ │ ├── _doc.md │ │ │ ├── _test.md │ │ │ ├── debug │ │ │ │ ├── dns.rb │ │ │ │ ├── faraday.rb │ │ │ │ ├── oneshot_tcp_server.rb │ │ │ │ ├── poll │ │ │ │ ├── poll.c │ │ │ │ ├── run_with_bundled_gems.sh │ │ │ │ └── segv_on_fdsetsize.rb │ │ │ ├── implementations │ │ │ │ ├── _impl00.md │ │ │ │ ├── _impl01.md │ │ │ │ ├── _impl02.md │ │ │ │ ├── _impl03.md │ │ │ │ ├── _impl04.md │ │ │ │ ├── getaddrinfo │ │ │ │ │ ├── _impl00.md │ │ │ │ │ ├── _impl01.md │ │ │ │ │ └── _impl02.md │ │ │ │ ├── impl04 │ │ │ │ │ ├── _getaddrinfo.md │ │ │ │ │ ├── _ipsocket.md │ │ │ │ │ ├── _rubysocket.md │ │ │ │ │ ├── _socket.md │ │ │ │ │ └── _tcpsocket.md │ │ │ │ └── impl05 │ │ │ │ │ ├── _getaddrinfo.md │ │ │ │ │ ├── _ipsocket.md │ │ │ │ │ ├── _rubysocket.md │ │ │ │ │ ├── _socket.md │ │ │ │ │ └── _tcpsocket.md │ │ │ ├── memo │ │ │ │ ├── PR4262_TCPSocket_new_with_connection_attempt_20230831.md │ │ │ │ ├── PR4268_interruptible_getaddrinfo_20231002.md │ │ │ │ ├── _initialize_socket.md │ │ │ │ ├── _overview.md │ │ │ │ ├── happy-eyeballs-c.md │ │ │ │ ├── master_TCPSokcet_new_20230830.md │ │ │ │ ├── master_TCPSokcet_new_20231230.md │ │ │ │ ├── master_do_select_20240910.md │ │ │ │ └── misc │ │ │ │ │ ├── _IO_select.md │ │ │ │ │ ├── _rsock_connect.md │ │ │ │ │ ├── _rsock_init_sock.md │ │ │ │ │ ├── _rsock_syserr_fail_host_port.md │ │ │ │ │ ├── _select_20241208.md │ │ │ │ │ └── _sock_connect_nonblock.md │ │ │ ├── performance │ │ │ │ └── benchmark00.rb │ │ │ ├── prototypes │ │ │ │ ├── 01 │ │ │ │ │ ├── impl00 │ │ │ │ │ ├── impl00.c │ │ │ │ │ ├── impl00_1 │ │ │ │ │ ├── impl00_1.c │ │ │ │ │ ├── impl00_2 │ │ │ │ │ ├── impl00_2.c │ │ │ │ │ ├── impl00_3 │ │ │ │ │ ├── impl00_3.c │ │ │ │ │ ├── impl01 │ │ │ │ │ ├── impl01.c │ │ │ │ │ ├── impl02 │ │ │ │ │ └── impl02.c │ │ │ │ └── 02 │ │ │ │ │ ├── _impl00.md │ │ │ │ │ ├── _impl01.md │ │ │ │ │ ├── _impl02.md │ │ │ │ │ ├── _impl03.md │ │ │ │ │ ├── _impl04.md │ │ │ │ │ ├── _impl05.md │ │ │ │ │ ├── _impl06.md │ │ │ │ │ ├── _impl07.md │ │ │ │ │ ├── _impl08.md │ │ │ │ │ ├── _impl09.md │ │ │ │ │ ├── _impl10.md │ │ │ │ │ ├── _impl11.md │ │ │ │ │ └── getaddrinfo │ │ │ │ │ ├── _impl00.md │ │ │ │ │ ├── _impl01.md │ │ │ │ │ ├── _impl02.md │ │ │ │ │ ├── _impl03.md │ │ │ │ │ ├── _impl04.md │ │ │ │ │ ├── _impl05.md │ │ │ │ │ ├── _impl06.md │ │ │ │ │ ├── _impl07.md │ │ │ │ │ ├── _impl08.md │ │ │ │ │ ├── _impl09.md │ │ │ │ │ ├── _impl10.md │ │ │ │ │ ├── _impl11.md │ │ │ │ │ ├── _impl12.md │ │ │ │ │ └── _impl13.md │ │ │ ├── test_socket.rb │ │ │ └── test_tcp.rb │ │ ├── _doc.md │ │ ├── _man.md │ │ ├── _news.md │ │ ├── server.rb │ │ └── states │ │ │ ├── v1.md │ │ │ ├── v2.md │ │ │ ├── v3.md │ │ │ ├── v4.md │ │ │ ├── v5.md │ │ │ ├── v6.md │ │ │ └── v7.md │ ├── interruptable_getaddrinfo │ │ └── memo │ │ │ ├── _overview.md │ │ │ ├── interruptible-getaddrinfo.patch_20230930.md │ │ │ ├── interruptible-getaddrinfo_PR10864.md │ │ │ ├── interruptible-getaddrinfo_PR8695_20231021.md │ │ │ ├── interruptible-getaddrinfo_master_20231229.md │ │ │ ├── master_Addrinfo_getaddrinfo_20230828.md │ │ │ └── master_rsock_getaddrinfo_20230929.md │ ├── issues │ │ ├── 21270 │ │ │ ├── memo.md │ │ │ ├── repro.rb │ │ │ └── repro0.rb │ │ ├── econnreset │ │ │ ├── _memo.md │ │ │ ├── go.mod │ │ │ ├── hev2test.go │ │ │ ├── hev2test.py │ │ │ └── openssl.rb │ │ └── getsockopt_win.rb │ ├── net │ │ ├── field_work │ │ │ ├── _internal.md │ │ │ ├── _internal_peripherals.md │ │ │ ├── faraday │ │ │ │ ├── _internal.md │ │ │ │ └── sample.rb │ │ │ ├── go │ │ │ │ ├── _internal.md │ │ │ │ └── sample.go │ │ │ ├── http2 │ │ │ │ └── sample.rb │ │ │ ├── httparty │ │ │ │ ├── _internal.md │ │ │ │ └── sample.rb │ │ │ ├── httpx │ │ │ │ ├── _internal.md │ │ │ │ ├── callstacks │ │ │ │ │ ├── _http2_example.md │ │ │ │ │ ├── _http_example.md │ │ │ │ │ └── _https_example.md │ │ │ │ └── sample.rb │ │ │ ├── net-http2 │ │ │ │ └── sample.rb │ │ │ └── sample.rb │ │ ├── memo │ │ │ ├── _protocol_negotiation.md │ │ │ └── _proxy.md │ │ ├── others │ │ │ ├── curb.rb │ │ │ ├── excon.rb │ │ │ ├── faraday.rb │ │ │ ├── httparty.rb │ │ │ ├── httpclient.rb │ │ │ ├── httpi.rb │ │ │ ├── httprb.rb │ │ │ ├── httpx.rb │ │ │ ├── openuri.rb │ │ │ └── patron.rb │ │ └── sample.rb │ └── timeout │ │ ├── Socket_tcp.md │ │ ├── TCPSocket_new.md │ │ ├── _diff.md │ │ ├── _memo.md │ │ └── rsock_getaddrinfo │ │ ├── _impl.md │ │ └── _memo.md ├── internal │ ├── __overview.md │ ├── _definition.md │ ├── _gc.md │ ├── _mri.md │ ├── _st_table.md │ ├── api │ │ ├── _BLOCKING_REGION.md │ │ ├── _PRI_TIMET_PREFIX.md │ │ └── _rb_scan_args.md │ ├── parser │ │ ├── __overview.md │ │ ├── _lex_state.md │ │ ├── _parse.y.md │ │ └── _syntaxtree.md │ ├── thread │ │ ├── _IPSJ-TPRO4810002.md │ │ ├── _gvl.md │ │ ├── _rb_nativethread_lock_lock.md │ │ └── _rb_thread_call_without_gvl.md │ └── yarv │ │ ├── __overview.md │ │ └── _rubyvm_iseq.md ├── rbenv │ ├── __overview.md │ ├── _how_works.md │ ├── _ruby-build.md │ ├── _usage.md │ └── _version_lookup.md ├── resolv │ ├── __overview.md │ └── internal │ │ ├── 202305 │ │ ├── _fetch_resource.md │ │ └── _internal.md │ │ └── 202508 │ │ └── _getresource.md ├── rubygems │ ├── __binstub.md │ ├── __gem_command.md │ ├── __gemfile.md │ ├── __new_gem.md │ ├── __version_specification.md │ ├── _bindata.md │ ├── _clockwork.md │ ├── _coverall.md │ ├── _debug.md │ ├── _foreman.md │ ├── _jbuilder.md │ ├── _localhost.md │ ├── _middleman.md │ ├── _omniauth-rails_csrf_protection.md │ ├── _paranoia.md │ ├── _pitchfork.md │ ├── _psych.md │ ├── _rack-mini-profiler.md │ ├── _rack_timeout.md │ ├── _rails-ujs.md │ ├── _rails_admin.md │ ├── _rake.md │ ├── _rubocop.md │ ├── _searchkick.md │ ├── _sidekiq.md │ ├── _sprockets.md │ ├── _tilt.md │ ├── _vcr.md │ ├── _webdrivers.md │ ├── _webmock.md │ ├── _zeitwerk.md │ ├── http-2 │ │ ├── _basics.md │ │ ├── _client.md │ │ ├── _connection.md │ │ ├── _emitter.md │ │ ├── _flow_buffer.md │ │ ├── _framer.md │ │ ├── _stream.md │ │ └── example │ │ │ ├── _client.md │ │ │ ├── _client_detail.md │ │ │ ├── _server.md │ │ │ └── _server_detail.md │ ├── openssl │ │ └── _sslsocket.md │ ├── puma │ │ └── _restart.md │ ├── rack │ │ ├── _changelog.md │ │ ├── _hijacking.md │ │ ├── _spec.md │ │ └── internals │ │ │ ├── __tree.md │ │ │ ├── _core.md │ │ │ ├── _helpers.md │ │ │ └── _middlewares.md │ ├── shrine │ │ ├── _plugin.md │ │ └── _upgrading_from_carrierwave.md │ └── webrick │ │ ├── __overview.md │ │ ├── _config.md │ │ ├── _https.md │ │ ├── _server.md │ │ └── _servlet.md ├── sockets │ ├── _arch.md │ ├── _basic_socket.md │ ├── _basics.md │ ├── _io.md │ ├── _socket.md │ ├── _socket_option.md │ ├── _tcp_server.md │ └── _tcp_socket.md └── trace_point │ └── call_and_return.rb ├── sandbox ├── assembly │ ├── self_study_assembler │ │ ├── gas │ │ │ ├── _add.o.md │ │ │ ├── add.o │ │ │ ├── add.s │ │ │ ├── cmp.s │ │ │ └── cpuid.s │ │ ├── inline │ │ │ ├── inline.c │ │ │ ├── rdtsc.c │ │ │ ├── rdtsc_ascm.s │ │ │ ├── sum.c │ │ │ ├── sum_asm.s │ │ │ ├── write.c │ │ │ └── write.s │ │ ├── tr-mem │ │ │ ├── add.c │ │ │ └── add.s │ │ ├── tr-regs │ │ │ ├── add.c │ │ │ └── add.s │ │ ├── tr-stack │ │ │ ├── fact.c │ │ │ └── fact.s │ │ └── x86simd │ │ │ └── add-mul.s │ └── x86simd │ │ └── mmx-sum │ │ ├── dist.s │ │ ├── find.s │ │ ├── prod.s │ │ └── sum.s ├── c │ ├── _ │ │ ├── 10 │ │ ├── 01 │ │ ├── 01.c │ │ ├── 02 │ │ ├── 02.c │ │ ├── 03 │ │ ├── 03.c │ │ ├── 04 │ │ ├── 04.c │ │ ├── 05 │ │ ├── 05.c │ │ ├── 06 │ │ ├── 06.c │ │ ├── 07 │ │ ├── 07.c │ │ ├── 08 │ │ ├── 08.c │ │ ├── 09 │ │ ├── 09.c │ │ ├── 10.c │ │ ├── array │ │ ├── array.c │ │ ├── malloc01 │ │ └── malloc01.c │ ├── binary_analysis │ │ ├── s10 │ │ │ ├── asm_10_1.py │ │ │ ├── exploit.py │ │ │ └── shellcode_10_2.c │ │ ├── s2 │ │ │ ├── a.out │ │ │ ├── compile_2_1.c │ │ │ ├── compile_2_1.s │ │ │ └── stdio_2_2.c │ │ ├── s3 │ │ │ ├── a.out │ │ │ ├── int2char_3_5.c │ │ │ ├── pwntools_3_4.py │ │ │ ├── strings_3_2.cpp │ │ │ └── unprintable_3_3.cpp │ │ ├── s4 │ │ │ ├── a.out │ │ │ ├── bof_4_2.c │ │ │ └── bof_4_3.c │ │ ├── s5 │ │ │ └── if_5_2.c │ │ ├── s6 │ │ │ ├── hi.s │ │ │ ├── hi_6_1.s │ │ │ ├── myif.s │ │ │ └── practice_6_2.s │ │ ├── s8 │ │ │ ├── bof_8_1.c │ │ │ └── exploit.py │ │ └── s9 │ │ │ ├── a.out │ │ │ ├── exploit.py │ │ │ ├── ret2libc_9_2.c │ │ │ └── system_9_1.c │ ├── data_structures │ │ ├── array │ │ ├── array.c │ │ ├── array.rb │ │ ├── list │ │ ├── list.c │ │ ├── stack │ │ └── stack.c │ ├── files │ │ ├── copied_lorem_ipsum.txt │ │ ├── lorem_ipsum.txt │ │ ├── read │ │ │ ├── read │ │ │ ├── read.c │ │ │ ├── read_with_args │ │ │ ├── read_with_args.c │ │ │ ├── read_with_opt_args │ │ │ └── read_with_opt_args.c │ │ └── write │ │ │ ├── write │ │ │ └── write.c │ ├── head_first_c │ │ ├── 02_5_string │ │ │ ├── p84.c │ │ │ └── p97.c │ │ ├── 02_memory │ │ │ ├── p57.c │ │ │ ├── p61.c │ │ │ └── p69.c │ │ ├── 03_small_tools │ │ │ ├── gpsdata.csv │ │ │ ├── p105.c │ │ │ ├── p123.c │ │ │ ├── p125.c │ │ │ ├── p133.c │ │ │ ├── p139.c │ │ │ ├── p142.c │ │ │ └── p150.c │ │ ├── 04_multiple_sources │ │ │ ├── p162.c │ │ │ ├── p165.c │ │ │ ├── p167.c │ │ │ ├── p169.c │ │ │ ├── p169.h │ │ │ ├── p176.c │ │ │ ├── p186_encrypt.c │ │ │ ├── p186_encrypt.h │ │ │ ├── p186_message_hider.c │ │ │ └── p200 │ │ │ │ └── Makefile │ │ ├── 05_structures_unions_bitfields │ │ │ ├── p224.c │ │ │ ├── p230.c │ │ │ ├── p234.c │ │ │ ├── p240.c │ │ │ ├── p244.c │ │ │ ├── p258.c │ │ │ └── p264.c │ │ ├── 06_data_structures │ │ │ ├── p274.c │ │ │ ├── p290.c │ │ │ └── p298.c │ │ ├── 07_advanced_functions │ │ │ ├── p314.c │ │ │ ├── p322.c │ │ │ ├── p330.c │ │ │ ├── p336.c │ │ │ ├── p340.c │ │ │ └── p348.c │ │ ├── 08_libraries │ │ │ ├── p352_checksum.c │ │ │ ├── p352_checksum.h │ │ │ ├── p352_encrypt.c │ │ │ ├── p352_encrypt.h │ │ │ ├── p352_main.c │ │ │ ├── p361 │ │ │ │ └── Makefile │ │ │ ├── p366 │ │ │ │ ├── Makefile │ │ │ │ └── Makefile.static │ │ │ ├── p366_hfcal.c │ │ │ ├── p366_hfcal.h │ │ │ └── p366_main.c │ │ ├── 09_precess_and_systemcall │ │ │ ├── p400.c │ │ │ ├── p407_diner_info.c │ │ │ ├── p407_my_exec_program.c │ │ │ ├── p410.c │ │ │ ├── p414.c │ │ │ └── p414_coffee.c │ │ ├── 10_inter_processor_communication │ │ │ ├── p436.c │ │ │ ├── p448.c │ │ │ ├── p456.c │ │ │ └── p462.c │ │ ├── 11_socket_and_networking │ │ │ ├── p473.c │ │ │ ├── p480.c │ │ │ ├── p488.c │ │ │ └── p496.c │ │ └── 12_thread │ │ │ ├── p507.c │ │ │ ├── p510.c │ │ │ └── p518.c │ ├── linux_concurrent_programming │ │ └── 4 │ │ │ ├── client1 │ │ │ ├── client1.c │ │ │ ├── client2 │ │ │ ├── client2.c │ │ │ ├── clientpipe │ │ │ ├── clientpipe.c │ │ │ ├── server │ │ │ └── server.c │ ├── linux_network_programming │ │ ├── epoll.c │ │ ├── fork │ │ ├── fork.c │ │ ├── thread │ │ └── thread.c │ ├── pointer │ │ ├── 01_02_typesizes │ │ │ ├── p038_sizeof │ │ │ └── p038_sizeof.c │ │ ├── 01_03_pointer │ │ │ ├── p044_pointer │ │ │ ├── p044_pointer.c │ │ │ ├── p055_pointer_calc │ │ │ ├── p055_pointer_calc.c │ │ │ ├── p061_get_xy │ │ │ └── p061_get_xy.c │ │ ├── 01_04_array │ │ │ ├── p065_array │ │ │ ├── p065_array.c │ │ │ ├── p068_array2 │ │ │ ├── p068_array2.c │ │ │ ├── p079_get_word │ │ │ ├── p079_get_word.c │ │ │ ├── p084_vla │ │ │ └── p084_vla.c │ │ ├── 02_01_vm_memory │ │ │ ├── p088_vmtest │ │ │ └── p088_vmtest.c │ │ ├── 02_02_address │ │ │ ├── p097_address │ │ │ └── p097_address.c │ │ ├── 02_03_func_ptr │ │ │ ├── p102_func_ptr │ │ │ └── p102_func_ptr.c │ │ ├── 02_05_auto_variable │ │ │ ├── p108_auto_variable │ │ │ ├── p108_auto_variable.c │ │ │ ├── p123_tiny_printf │ │ │ ├── p123_tiny_printf.c │ │ │ ├── p130_permutation │ │ │ ├── p130_permutation.c │ │ │ ├── p133_vla │ │ │ └── p133_vla.c │ │ ├── 02_07_alignment │ │ │ ├── p152_alignment │ │ │ └── p152_alignment.c │ │ ├── 02_08_byteorder │ │ │ ├── p156_byteorder │ │ │ └── p156_byteorder.c │ │ ├── 03 │ │ │ ├── p229 │ │ │ ├── p229.c │ │ │ ├── p231 │ │ │ └── p231.c │ │ └── 04 │ │ │ ├── p234_output_args │ │ │ ├── p234_output_args.c │ │ │ ├── p236_pass_array │ │ │ ├── p236_pass_array.c │ │ │ ├── p237_variable_array │ │ │ ├── p237_variable_array.c │ │ │ ├── p238_realloc │ │ │ ├── p238_realloc.c │ │ │ ├── p241_read_slogan │ │ │ └── p241_read_slogan.c │ ├── programming_class │ │ ├── 0920 │ │ ├── 12-2 │ │ ├── 12-2.c │ │ ├── 12-3 │ │ ├── 12-3.c │ │ ├── 12-4 │ │ ├── 12-4.c │ │ ├── 2-1 │ │ ├── 2-1.c │ │ ├── 2-10 │ │ ├── 2-10.c │ │ ├── 2-11 │ │ ├── 2-11.c │ │ ├── 2-12 │ │ ├── 2-12.c │ │ ├── 2-13 │ │ ├── 2-13.c │ │ ├── 2-15 │ │ ├── 2-15.c │ │ ├── 2-16 │ │ ├── 2-16.c │ │ ├── 2-17 │ │ ├── 2-17.c │ │ ├── 2-18 │ │ ├── 2-18.c │ │ ├── 2-2 │ │ ├── 2-2.c │ │ ├── 2-3 │ │ ├── 2-3.c │ │ ├── 2-4 │ │ ├── 2-4.c │ │ ├── 2-5 │ │ ├── 2-5.c │ │ ├── 2-6 │ │ ├── 2-6.c │ │ ├── 2-7 │ │ ├── 2-7.c │ │ ├── 2-8 │ │ ├── 2-8.c │ │ ├── 2-9 │ │ ├── 2-9.c │ │ ├── 3-1 │ │ ├── 3-1.c │ │ ├── 3-2 │ │ ├── 3-2.c │ │ ├── 3-3 │ │ ├── 3-3.c │ │ ├── 3-4 │ │ ├── 3-4.c │ │ ├── 3-5 │ │ ├── 3-5.c │ │ ├── 3-6 │ │ ├── 3-6.c │ │ ├── 3-7 │ │ ├── 3-7.c │ │ ├── 4-1 │ │ ├── 4-1.c │ │ ├── 4-2 │ │ ├── 4-2.c │ │ ├── 4-5 │ │ ├── 4-5.c │ │ ├── 4-6 │ │ ├── 4-6.c │ │ ├── 4-8 │ │ ├── 4-8.c │ │ ├── 5-1 │ │ ├── 5-1.c │ │ ├── 5-10 │ │ ├── 5-10.c │ │ ├── 5-12 │ │ ├── 5-12.c │ │ ├── 5-5 │ │ ├── 5-5.c │ │ ├── 5-6 │ │ ├── 5-6.c │ │ ├── 5-7 │ │ ├── 5-7.c │ │ ├── 5-8 │ │ ├── 5-8.c │ │ ├── 6-10 │ │ ├── 6-10.c │ │ ├── 6-11 │ │ ├── 6-11.c │ │ ├── 6-5 │ │ ├── 6-5.c │ │ ├── 6-6 │ │ ├── 6-6.c │ │ ├── 7-1 │ │ ├── 7-1.c │ │ ├── 7-2 │ │ ├── 7-2.c │ │ ├── 7-3 │ │ ├── 7-3.c │ │ ├── 7-4 │ │ ├── 7-4.c │ │ ├── 7-6 │ │ ├── 7-6.c │ │ ├── 7-7 │ │ ├── 7-7.c │ │ ├── 7-8 │ │ ├── 7-8.c │ │ ├── 9-1 │ │ ├── 9-1.c │ │ ├── 9-10.c │ │ ├── 9-11.c │ │ ├── 9-12.c │ │ ├── 9-13 │ │ ├── 9-13.c │ │ ├── 9-15 │ │ ├── 9-15.c │ │ ├── 9-19 │ │ ├── 9-19.c │ │ ├── 9-2 │ │ ├── 9-2.c │ │ ├── 9-3 │ │ ├── 9-3.c │ │ ├── 9-5 │ │ ├── 9-5.c │ │ ├── 9-6 │ │ ├── 9-6.c │ │ ├── 9-7 │ │ ├── 9-7.c │ │ ├── 9-8 │ │ ├── 9-8.c │ │ ├── 9-9 │ │ ├── 9-9.c │ │ ├── a.out.dSYM │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ └── DWARF │ │ │ │ └── a.out │ │ ├── acctadd │ │ ├── acctadd.c │ │ ├── acctbook.txt │ │ ├── chatserver │ │ ├── chatserver.c │ │ ├── client │ │ ├── client.c │ │ ├── client_with_hostname │ │ ├── client_with_hostname.c │ │ ├── cserver │ │ ├── cserver.c │ │ ├── diary1 │ │ ├── diary1.c │ │ ├── empty3-2.file │ │ ├── files0 │ │ ├── files0.c │ │ ├── foo1 │ │ ├── foo2 │ │ ├── fsnav0 │ │ ├── fsnav0.c │ │ ├── fsnav1 │ │ ├── fsnav1.c │ │ ├── fsnav2 │ │ ├── fsnav2.c │ │ ├── grobal-var2 │ │ ├── grobal-var2.c │ │ ├── grobal-var3 │ │ ├── grobal-var3.c │ │ ├── hello3-3.txt │ │ ├── hop3-7.out │ │ ├── input3-1.txt │ │ ├── input3-4.file │ │ ├── input3-5.file │ │ ├── input3-6.file │ │ ├── input4-2.txt │ │ ├── iserver1 │ │ ├── iserver1.c │ │ ├── iserver2 │ │ ├── iserver2.c │ │ ├── kill │ │ ├── kill.c │ │ ├── ls.out │ │ ├── myls0 │ │ ├── myls0.c │ │ ├── mysh0 │ │ ├── mysh0.c │ │ ├── mysh3 │ │ ├── mysh3.c │ │ ├── mysh4 │ │ ├── mysh4.c │ │ ├── mysub.c │ │ ├── mysub.h │ │ ├── myvec.c │ │ ├── myvec.h │ │ ├── oredirect │ │ ├── oredirect.c │ │ ├── output3-4.file │ │ ├── output4-2.txt │ │ ├── pause │ │ ├── pause.c │ │ ├── phone1.c │ │ ├── phone2 │ │ ├── phone2.c │ │ ├── phone2x.dat │ │ ├── pindepclient │ │ ├── pindepclient.c │ │ ├── pipe-sample1 │ │ ├── pipe-sample1.c │ │ ├── pipe-sample2 │ │ ├── pipe-sample2.c │ │ ├── popen-sample1 │ │ ├── popen-sample1.c │ │ ├── setjmp-sample │ │ ├── setjmp-sample.c │ │ ├── setpgid0 │ │ ├── setpgid0.c │ │ ├── setpgid1 │ │ ├── setpgid1.c │ │ ├── signal1 │ │ ├── signal1.c │ │ ├── stat0 │ │ ├── stat0.c │ │ ├── tinymining │ │ ├── tinymining.c │ │ ├── typescript │ │ ├── whackamole │ │ └── whackamole.c │ ├── pthreads │ │ ├── 2-1 │ │ ├── 2-1.c │ │ ├── 2-3 │ │ ├── 2-3.c │ │ ├── 2-5 │ │ ├── 2-5.c │ │ ├── 2-6 │ │ ├── 2-6.c │ │ ├── 2-7 │ │ ├── 2-7.c │ │ ├── 2-9 │ │ ├── 2-9.c │ │ ├── 3-10 │ │ ├── 3-10.c │ │ ├── 3-11 │ │ ├── 3-11.c │ │ ├── 3-2 │ │ ├── 3-2.c │ │ ├── 3-3 │ │ ├── 3-3.c │ │ ├── 3-4 │ │ ├── 3-4.c │ │ ├── 3-6 │ │ ├── 3-6.c │ │ ├── 3-9 │ │ ├── 3-9.c │ │ ├── 4-1 │ │ ├── 4-1.c │ │ ├── 4-10 │ │ ├── 4-10.c │ │ ├── 4-13 │ │ ├── 4-13.c │ │ ├── 4-2 │ │ ├── 4-2.c │ │ ├── 4-3 │ │ ├── 4-3.c │ │ ├── 4-4 │ │ ├── 4-4.c │ │ ├── 4-6 │ │ ├── 4-6.c │ │ ├── 4-7 │ │ ├── 4-7.c │ │ ├── 4-8 │ │ ├── 4-8.c │ │ ├── 4-9 │ │ ├── 4-9.c │ │ ├── 5-1 │ │ ├── 5-1.c │ │ ├── 5-10 │ │ ├── 5-10.c │ │ ├── 5-11 │ │ ├── 5-11.c │ │ ├── 5-2 │ │ ├── 5-2.c │ │ ├── 5-3 │ │ ├── 5-3.c │ │ ├── 5-4 │ │ ├── 5-4.c │ │ ├── 5-5 │ │ ├── 5-5.c │ │ ├── 5-9 │ │ ├── 5-9.c │ │ ├── 6-1.c │ │ ├── 6-1.h │ │ ├── 6-3 │ │ ├── 6-3.c │ │ ├── 6-4 │ │ ├── 6-4.c │ │ ├── KEN_ALL.CSV │ │ ├── KEN_ALL_UTF8.CSV │ │ ├── intqueue.c │ │ ├── intqueue.h │ │ ├── ken_all.zip │ │ ├── nest │ │ ├── nest.c │ │ ├── postal │ │ ├── postal.c │ │ ├── postalnumber.c │ │ ├── postalnumber.h │ │ ├── socketpostal │ │ ├── socketpostal.c │ │ ├── socketpostal2 │ │ ├── socketpostal2.c │ │ ├── socketpostal3 │ │ └── socketpostal3.c │ ├── socket │ │ ├── accept │ │ ├── accept.c │ │ ├── bind │ │ ├── bind-before-connect │ │ ├── bind-before-connect.c │ │ ├── bind.c │ │ ├── getaddinfo │ │ ├── getaddinfo.c │ │ ├── getaddrinfo-bind │ │ ├── getaddrinfo-bind.c │ │ ├── getaddrinfo-unspec │ │ ├── getaddrinfo-unspec.c │ │ ├── getaddrinfo-v4 │ │ ├── getaddrinfo-v4.c │ │ ├── listen │ │ ├── listen.c │ │ ├── mcast-recv │ │ ├── mcast-recv-v6 │ │ ├── mcast-recv-v6.c │ │ ├── mcast-recv.c │ │ ├── mcast-send-eth0-v6 │ │ ├── mcast-send-eth0-v6.c │ │ ├── mcast-send-lo-v4 │ │ ├── mcast-send-lo-v4.c │ │ ├── nat-a │ │ ├── nat-a.c │ │ ├── nat-c │ │ ├── nat-c.c │ │ ├── ping │ │ ├── ping.c │ │ ├── server01 │ │ ├── server01.c │ │ ├── socket │ │ ├── socket.c │ │ ├── tcp-cli │ │ ├── tcp-cli.c │ │ ├── tcp-cli6 │ │ ├── tcp-cli6.c │ │ ├── tcp-nobind │ │ ├── tcp-nobind.c │ │ ├── tcp-serv │ │ ├── tcp-serv.c │ │ ├── tcp-serv6 │ │ ├── tcp-serv6.c │ │ ├── udp-recv │ │ ├── udp-recv.c │ │ ├── udp-reply │ │ ├── udp-reply.c │ │ ├── udp-send │ │ ├── udp-send-recv │ │ ├── udp-send-recv.c │ │ ├── udp-send.c │ │ ├── v6-udp-recv │ │ ├── v6-udp-recv.c │ │ ├── v6-udp-send │ │ └── v6-udp-send.c │ └── understanding_and_using_c_pointers │ │ ├── p028_const │ │ ├── p028_const.c │ │ ├── p037_malloc │ │ ├── p037_malloc.c │ │ ├── p068_const │ │ ├── p068_const.c │ │ ├── p070_allocate_array │ │ ├── p070_allocate_array.c │ │ ├── p073_allocate_array │ │ ├── p073_allocate_array.c │ │ ├── p074_allocate_array │ │ ├── p074_allocate_array.c │ │ ├── p076_safe_free │ │ ├── p076_safe_free.c │ │ ├── p080_func_pointer │ │ ├── p080_func_pointer.c │ │ ├── p081_func_pointer │ │ ├── p081_func_pointer.c │ │ ├── p096_realloc │ │ ├── p096_realloc.c │ │ ├── p098_trim │ │ ├── p098_trim.c │ │ ├── p121_string │ │ ├── p121_string.c │ │ ├── p124_layout │ │ ├── p124_layout.c │ │ ├── p127_strcpy │ │ ├── p127_strcpy.c │ │ ├── p129_strcat │ │ ├── p129_strcat.c │ │ ├── p133_string_length │ │ ├── p133_string_length.c │ │ ├── p135_fmt │ │ ├── p135_fmt.c │ │ ├── p138_literal │ │ ├── p138_literal.c │ │ ├── p140_heap │ │ ├── p140_heap.c │ │ ├── p146_struct │ │ ├── p146_struct.c │ │ ├── p152_struct_pool │ │ ├── p152_struct_pool.c │ │ ├── p154_structure.c │ │ ├── p156_structure_linkedlist │ │ ├── p156_structure_linkedlist.c │ │ ├── p163_structure_queue │ │ ├── p163_structure_queue.c │ │ ├── p166_structure_stack │ │ ├── p166_structure_stack.c │ │ ├── p168_structure_tree │ │ ├── p168_structure_tree.c │ │ ├── p180_out_of_range_access │ │ ├── p180_out_of_range_access.c │ │ ├── p182_strcpy │ │ ├── p182_strcpy.c │ │ ├── pointer │ │ └── pointer.c ├── concurrent_programming_with_linux_101 │ ├── p007 │ ├── p007.c │ ├── p008 │ ├── p008.c │ ├── p038 │ ├── p038.c │ ├── p039 │ ├── p039.c │ ├── p039_file │ ├── p041 │ ├── p041.c │ ├── p041_oldfile │ ├── p047 │ ├── p047.c │ ├── p048 │ ├── p048_read.c │ ├── p048_write │ ├── p048_write.c │ ├── p063_1 │ ├── p063_1.c │ ├── p063_2 │ ├── p063_2.c │ ├── p084 │ ├── p084.c │ ├── p086 │ ├── p086.c │ ├── p088 │ ├── p088.c │ ├── p089 │ ├── p089.c │ ├── p096 │ ├── p096.c │ ├── p104 │ ├── p104.c │ ├── p106 │ ├── p106.c │ ├── p108 │ └── p108.c ├── druby │ ├── chat │ │ └── server.rb │ ├── druby_book │ │ ├── acl.rb │ │ ├── barrier0.rb │ │ ├── bg_color0.rb │ │ ├── cgiapp │ │ │ ├── cgi0.rb │ │ │ ├── reminder02.rb │ │ │ └── reminderpage0.rb │ │ ├── counter0.rb │ │ ├── counter1.rb │ │ ├── dcp.rb │ │ ├── dumbidconv.rb │ │ ├── erb_test0.rb │ │ ├── erb_test1.rb │ │ ├── erb_test2.rb │ │ ├── foo.rb │ │ ├── hello00.rb │ │ ├── instream0.rb │ │ ├── multiplenotify.rb │ │ ├── puts00.rb │ │ ├── randezvous0.rb │ │ ├── randezvous_q.rb │ │ ├── rdstream0.rb │ │ ├── reminder0.rb │ │ ├── reminder01.rb │ │ ├── reminder02.rb │ │ ├── reminder_cgi5.rb │ │ ├── reminder_cui0.rb │ │ ├── ring00.rb │ │ ├── ring01.rb │ │ ├── ring02.rb │ │ ├── ring03.rb │ │ ├── ring04.rb │ │ ├── ring05.rb │ │ ├── ring06.rb │ │ ├── ring07.rb │ │ ├── ringnotify.rb │ │ ├── sem0.rb │ │ ├── semq0.rb │ │ ├── stream0.rb │ │ ├── ts01.rb │ │ ├── ts01c.rb │ │ ├── ts01c2.rb │ │ ├── ts01c2h.rb │ │ ├── ts01s.rb │ │ ├── ts01sh.rb │ │ ├── ts01shp.rb │ │ └── ts_struct0.rb │ ├── n_monthly │ │ ├── 2_1_hello.rb │ │ ├── 2_1_hello_c.rb │ │ ├── 2_1_hello_s.rb │ │ ├── 2_4_1_queue.rb │ │ ├── 2_4_2_consumer.rb │ │ ├── 2_4_2_producer.rb │ │ ├── 2_5.rb │ │ ├── 2_6 │ │ │ ├── client │ │ │ │ ├── 2_6_2_irb_c.rb │ │ │ │ └── Dockerfile │ │ │ └── server │ │ │ │ ├── 2_6_1_min.rb │ │ │ │ ├── 2_6_2_min.rb │ │ │ │ └── Dockerfile │ │ └── 2_7_1_sse.rb │ ├── rack │ │ ├── client.rb │ │ └── config.ru │ └── rubykaigi2025workshop │ │ ├── list1_1_hello_server.rb │ │ ├── list_1_1_hello_client.rb │ │ └── list_4_1_sse.rb ├── elixir │ └── programming_elixir │ │ ├── basic-types │ │ ├── with-match.exs │ │ └── with-scopes.exs │ │ ├── control │ │ ├── case.ex │ │ ├── case1.ex │ │ ├── case2.ex │ │ ├── control_flow-1.ex │ │ ├── control_flow-3.ex │ │ ├── fizzbuzz.ex │ │ ├── fizzbuzz1.ex │ │ ├── fizzbuzz2.ex │ │ ├── fizzbuzz3.ex │ │ └── somefile │ │ ├── enum │ │ ├── collectable.exs │ │ ├── coundown.exs │ │ ├── cycle.exs │ │ ├── iterate.exs │ │ ├── lists_and_recursion-5.exs │ │ ├── lists_and_recursion-6.exs │ │ ├── lists_and_recursion-7.exs │ │ ├── lists_and_recursion-8.exs │ │ ├── longest_line.exs │ │ ├── pipeline.exs │ │ ├── reource.exs │ │ ├── repeatedly.exs │ │ ├── stream1.exs │ │ ├── stream2.exs │ │ ├── stream3.exs │ │ └── unfold.exs │ │ ├── first_steps │ │ ├── functions-2.exs │ │ ├── functions-3.exs │ │ ├── functions-4.exs │ │ └── handle_open.exs │ │ ├── functions │ │ ├── functions-5.exs │ │ └── pin.exs │ │ ├── intro │ │ └── hello.exs │ │ ├── lists │ │ ├── lists_and_recursion-1.exs │ │ ├── lists_and_recursion-2.exs │ │ ├── lists_and_recursion-3.exs │ │ ├── lists_and_recursion-4.exs │ │ ├── mylist.exs │ │ ├── mylist1.exs │ │ ├── reduce.exs │ │ ├── swap.exs │ │ ├── weather.exs │ │ ├── weather2.exs │ │ └── weather3.exs │ │ ├── maps │ │ ├── access1.exs │ │ ├── access2.exs │ │ ├── access3.exs │ │ ├── book_room.exs │ │ ├── defstruct.exs │ │ ├── defstruct1.exs │ │ ├── dynamic_nested.exs │ │ ├── get_in_func.exs │ │ ├── keywords.exs │ │ ├── nested.exs │ │ └── query.exs │ │ ├── mm │ │ ├── attributes.exs │ │ ├── default_params.exs │ │ ├── default_params1.exs │ │ ├── default_params2.exs │ │ ├── factorial1.exs │ │ ├── factorial2.exs │ │ ├── factorial2.rb │ │ ├── guard.exs │ │ ├── import.exs │ │ ├── module_and_function-123.exs │ │ ├── module_and_function-4.exs │ │ ├── module_and_function-5.exs │ │ ├── module_and_function-6.exs │ │ ├── module_and_function-6.rb │ │ ├── times.exs │ │ └── times1.exs │ │ ├── nodes │ │ └── ticker.ex │ │ ├── spawn │ │ ├── chain.exs │ │ ├── fact_tr.exs │ │ ├── fib.exs │ │ ├── fib_agent.exs │ │ ├── link1.exs │ │ ├── link2.exs │ │ ├── link3.exs │ │ ├── monitor1.exs │ │ ├── pmap.exs │ │ ├── spawn-basic.ex │ │ ├── spawn-basic1.ex │ │ ├── spawn-basic2.ex │ │ ├── spawn-basic3.ex │ │ └── spawn-basic4.ex │ │ ├── strings │ │ ├── parse.exs │ │ ├── sales_records │ │ ├── string_and_binaries-1.exs │ │ ├── string_and_binaries-2.exs │ │ ├── string_and_binaries-4.exs │ │ ├── string_and_binaries-5.exs │ │ ├── string_and_binaries-6.exs │ │ ├── string_and_binaries-7.exs │ │ └── utf-iterate.exs │ │ └── tasks │ │ ├── agent_dict.exs │ │ ├── anagrams.exs │ │ ├── tasks1.exs │ │ └── tasks2.exs ├── exercism │ ├── c │ │ └── 2020 │ │ │ ├── acronym.c │ │ │ ├── acronym.h │ │ │ ├── armstrong_numbers.c │ │ │ ├── armstrong_numbers.h │ │ │ ├── binary.c │ │ │ ├── binary.h │ │ │ ├── dart.c │ │ │ ├── dart.h │ │ │ ├── difference_of_squares.c │ │ │ ├── difference_of_squares.h │ │ │ ├── gigasecond.c │ │ │ ├── gigasecond.h │ │ │ ├── hamming.c │ │ │ ├── hamming.h │ │ │ ├── isogram.c │ │ │ ├── isogram.h │ │ │ ├── leap.c │ │ │ ├── leap.h │ │ │ ├── raindrops.c │ │ │ ├── raindrops.h │ │ │ ├── resistor_color.c │ │ │ ├── resistor_color.h │ │ │ ├── resistor_color_duo.c │ │ │ ├── resistor_color_duo.h │ │ │ ├── rna_transcription.c │ │ │ ├── rna_transcription.h │ │ │ ├── triangle.c │ │ │ ├── triangle.h │ │ │ ├── two_fer.c │ │ │ └── two_fer.h │ ├── go │ │ └── 2025 │ │ │ ├── acronym.go │ │ │ ├── airport_robot.go │ │ │ ├── anagram.go │ │ │ ├── armstrong_numbers.go │ │ │ ├── bob.go │ │ │ ├── boolean_annalyns_infiltration.go │ │ │ ├── collatz_conjecture.go │ │ │ ├── comments_weather_forecast.go │ │ │ ├── comparison_vehicle_purchase.go │ │ │ ├── condition_blackjack.go │ │ │ ├── difference_of_squares.go │ │ │ ├── error_the_farm.go │ │ │ ├── float_interest_is_interesting.go │ │ │ ├── func_lasagna_master.go │ │ │ ├── gigasecond.go │ │ │ ├── grains.go │ │ │ ├── hamming.go │ │ │ ├── hello_world.go │ │ │ ├── higher_order_function_expenses.go │ │ │ ├── isogram.go │ │ │ ├── jedliks_toys.go │ │ │ ├── lasagna.go │ │ │ ├── leap.go │ │ │ ├── loop_bird_watcher.go │ │ │ ├── luhn.go │ │ │ ├── map_gross_store.go │ │ │ ├── meteorology.go │ │ │ ├── nucleotide_count.go │ │ │ ├── number_cars_assemble.go │ │ │ ├── pangram.go │ │ │ ├── pointer_election_day.go │ │ │ ├── raindrops.go │ │ │ ├── rand_animal_magic.go │ │ │ ├── regexp_parsing_log_files.go │ │ │ ├── resistor_color.go │ │ │ ├── reverse_string.go │ │ │ ├── rna_transcription.go │ │ │ ├── rune_logslogslogs.go │ │ │ ├── scrabble_score.go │ │ │ ├── select.go │ │ │ ├── sieve.go │ │ │ ├── slice_card_tricks.go │ │ │ ├── space_age.go │ │ │ ├── string_party_robot.go │ │ │ ├── string_welcome_to_tech_palace.go │ │ │ ├── stringer_meteorology.go │ │ │ ├── struct_need_for_speed.go │ │ │ ├── time_booking_up_for_beauty.go │ │ │ ├── triangle.go │ │ │ ├── two_fer.go │ │ │ ├── type_assertion_sorting_room.go │ │ │ ├── type_chessboard.go │ │ │ └── zero_value_census.go │ └── ruby │ │ ├── 2019 │ │ ├── accumlate.rb │ │ ├── acronym.rb │ │ ├── affine_cipher.rb │ │ ├── all_your_base.rb │ │ ├── anagram.rb │ │ ├── armstrong_number.rb │ │ ├── atbash_cipher.rb │ │ ├── binary.rb │ │ ├── bob.rb │ │ ├── clock.rb │ │ ├── collatz_conjecture.rb │ │ ├── crypto_square.rb │ │ ├── difference_of_squares.rb │ │ ├── flatten_array.rb │ │ ├── gigasecond.rb │ │ ├── grain.rb │ │ ├── hamming.rb │ │ ├── hexadecimal.rb │ │ ├── high_scores.rb │ │ ├── isbn_verifier.rb │ │ ├── isogram.rb │ │ ├── kindergarten_garden.rb │ │ ├── largest_series_product.rb │ │ ├── leap.rb │ │ ├── list_ops.rb │ │ ├── luhn.rb │ │ ├── matrix.rb │ │ ├── meetup.rb │ │ ├── nth_prime.rb │ │ ├── pangram.rb │ │ ├── phone_number.rb │ │ ├── prime_factors.rb │ │ ├── protein_translation.rb │ │ ├── raindrops.rb │ │ ├── resistor_color.rb │ │ ├── resistor_color_duo.rb │ │ ├── rna_transcription.rb │ │ ├── robot_name.rb │ │ ├── roman_numerals.rb │ │ ├── rotational_cipher.rb │ │ ├── scale_generator.rb │ │ ├── scrabble_score.rb │ │ ├── series.rb │ │ ├── sieve.rb │ │ ├── simple_cipher.rb │ │ ├── space_age.rb │ │ ├── strain.rb │ │ ├── sum_of_multiples.rb │ │ ├── transpose.rb │ │ ├── triangle.rb │ │ ├── trinary.rb │ │ ├── twelve_days.rb │ │ ├── two_fer.rb │ │ ├── word_count.rb │ │ └── wordy.rb │ │ ├── 2020 │ │ ├── anagram.rb │ │ ├── binary.rb │ │ ├── difference_of_squares.rb │ │ ├── gigasecond.rb │ │ ├── hello_world.rb │ │ ├── hexadecimal.rb │ │ ├── high_scores.rb │ │ ├── leap.rb │ │ ├── matrix.rb │ │ ├── pangram.rb │ │ ├── register_code.rb │ │ ├── register_color_duo.rb │ │ ├── rna_trancription.rb │ │ ├── space_age.rb │ │ ├── sum_of_multiples.rb │ │ ├── triangle.rb │ │ ├── trinary.rb │ │ └── two_fer.rb │ │ ├── 2024 │ │ ├── acronym.rb │ │ ├── anagram.rb │ │ ├── armstrong_numbers.rb │ │ ├── assembly_line.rb │ │ ├── bird_count.rb │ │ ├── blackjack.rb │ │ ├── boutique_inventory.rb │ │ ├── boutique_inventory_improvements.rb │ │ ├── chess_game.rb │ │ ├── clock.rb │ │ ├── collatz_conjecture.rb │ │ ├── difference_of_squares.rb │ │ ├── dnd_character.rb │ │ ├── eliuds_eggs.rb │ │ ├── flatten_array.rb │ │ ├── gigasecond.rb │ │ ├── hamming.rb │ │ ├── high_scores.rb │ │ ├── isogram.rb │ │ ├── leap.rb │ │ ├── locomotive_engineer.rb │ │ ├── luhn.rb │ │ ├── matrix.rb │ │ ├── moviegoer.rb │ │ ├── pangram.rb │ │ ├── phone_number.rb │ │ ├── port_palermo.rb │ │ ├── raindrops.rb │ │ ├── resistor_color.rb │ │ ├── resistor_color_duo.rb │ │ ├── reverser.rb │ │ ├── rna_transcription.rb │ │ ├── savings_account.rb │ │ ├── scrabble_score.rb │ │ ├── series.rb │ │ ├── sieve.rb │ │ ├── simple_calculator.rb │ │ ├── space_age.rb │ │ ├── sum_of_multiples.rb │ │ ├── transpose.rb │ │ ├── triangle.rb │ │ ├── twelve_days.rb │ │ └── word_count.rb │ │ └── 2025 │ │ ├── lasagna.rb │ │ ├── matrix.rb │ │ ├── triangle.rb │ │ └── two_fer.rb ├── go │ ├── 101 │ │ ├── module │ │ │ ├── data │ │ │ │ ├── data.go │ │ │ │ ├── go.mod │ │ │ │ └── read.txt │ │ │ ├── functions │ │ │ │ ├── functions.go │ │ │ │ └── go.mod │ │ │ ├── go.mod │ │ │ ├── server │ │ │ └── server.go │ │ └── server │ │ │ ├── server │ │ │ └── server.go │ ├── defer.go │ ├── hello.go │ ├── learning_go │ │ ├── any.go │ │ ├── closure.go │ │ ├── composition.go │ │ ├── const.go │ │ ├── copy.go │ │ ├── err.go │ │ ├── full_slice.go │ │ ├── func.go │ │ ├── goroutine_for.go │ │ ├── hello-world │ │ │ ├── go.mod │ │ │ ├── hello-world │ │ │ └── hello.go │ │ ├── interface.go │ │ ├── iota.go │ │ ├── is.go │ │ ├── label.go │ │ ├── make.go │ │ ├── map.go │ │ ├── method.go │ │ ├── recover.go │ │ ├── return_with_name.go │ │ ├── select.go │ │ ├── share_slice.go │ │ ├── slice.go │ │ ├── string.go │ │ ├── struct.go │ │ ├── var.go │ │ └── vargs.go │ ├── real_world_http_3nd │ │ ├── 103server.go │ │ ├── anyrequest │ │ │ ├── anyrequest │ │ │ ├── go.mod │ │ │ └── main.go │ │ ├── certclient.go │ │ ├── chunkedclient.go │ │ ├── chunkedserver.go │ │ ├── cookieget │ │ │ ├── cookieget │ │ │ ├── go.mod │ │ │ └── main.go │ │ ├── fileget │ │ │ ├── fileget │ │ │ ├── go.mod │ │ │ └── main.go │ │ ├── h2client.go │ │ ├── h3server.go │ │ ├── httpsclient.go │ │ ├── httpsserver.go │ │ ├── multipartpost │ │ │ ├── go.mod │ │ │ ├── main.go │ │ │ └── multipartpost │ │ ├── myprotocolclient.go │ │ ├── myprotocolserver.go │ │ ├── proxyget │ │ │ ├── go.mod │ │ │ ├── main.go │ │ │ └── proxyget │ │ ├── quicserver.go │ │ ├── rpcclient.go │ │ ├── rpcserver.go │ │ ├── server.go │ │ ├── simpleget │ │ │ ├── go.mod │ │ │ ├── main.go │ │ │ └── simpleget │ │ ├── simplepost │ │ │ ├── go.mod │ │ │ ├── main.go │ │ │ └── simplepost │ │ ├── sseclient.go │ │ ├── sseserver.go │ │ └── x-www-form-urlencoded-post │ │ │ ├── go.mod │ │ │ ├── main.go │ │ │ └── x-www-form-urlencoded-post │ └── tcp_server.go ├── hacking_art_of_exploitation │ ├── simple_server │ └── simple_server.c ├── interpreterbook │ ├── monkey │ │ ├── 01 │ │ │ ├── lexer │ │ │ │ ├── lexer.go │ │ │ │ └── lexer_test.go │ │ │ ├── main.go │ │ │ ├── repl │ │ │ │ └── repl.go │ │ │ └── token │ │ │ │ └── token.go │ │ ├── 02 │ │ │ ├── ast │ │ │ │ ├── ast.go │ │ │ │ └── ast_test.go │ │ │ ├── lexer │ │ │ │ ├── lexer.go │ │ │ │ └── lexer_test.go │ │ │ ├── main.go │ │ │ ├── parser │ │ │ │ ├── parser.go │ │ │ │ └── parser_test.go │ │ │ ├── repl │ │ │ │ └── repl.go │ │ │ └── token │ │ │ │ └── token.go │ │ └── 03 │ │ │ ├── ast │ │ │ ├── ast.go │ │ │ └── ast_test.go │ │ │ ├── evaluator │ │ │ ├── evaluator.go │ │ │ └── evaluator_test.go │ │ │ ├── lexer │ │ │ ├── lexer.go │ │ │ └── lexer_test.go │ │ │ ├── main.go │ │ │ ├── object │ │ │ ├── environment.go │ │ │ └── object.go │ │ │ ├── parser │ │ │ ├── parser.go │ │ │ └── parser_test.go │ │ │ ├── repl │ │ │ └── repl.go │ │ │ └── token │ │ │ └── token.go │ └── ruby │ │ ├── Gemfile │ │ ├── Gemfile.lock │ │ ├── exe │ │ └── monkey │ │ ├── lib │ │ ├── ast.rb │ │ ├── environment.rb │ │ ├── evaluator.rb │ │ ├── lexer.rb │ │ ├── object_system.rb │ │ ├── parser.rb │ │ ├── repl.rb │ │ └── token.rb │ │ ├── scripts │ │ └── sample.monkey │ │ └── test │ │ ├── test_ast.rb │ │ ├── test_evalator.rb │ │ ├── test_lexer.rb │ │ └── test_parser.rb ├── kor2024ws │ ├── app.ru │ ├── middleware.ru │ ├── rails.ru │ ├── server.ru │ └── sinatra.ru ├── mruby │ └── mruby101 │ │ ├── p014_hello.c │ │ ├── p021_p.c │ │ ├── p022_plus.c │ │ ├── p023_fixnum_float.c │ │ ├── p024_float_to_fixnum.c │ │ ├── p025_num_to_string.c │ │ ├── p027_str_new.c │ │ ├── p028_str_cat.c │ │ ├── p029_str_to_cstr.c │ │ ├── p031_intern.c │ │ ├── p032_intern_lit.c │ │ ├── p037_array_new.c │ │ ├── p038_array_from_values.c │ │ ├── p039_array_ref.c │ │ ├── p040_array_push_pop.c │ │ ├── p042_hash_new.c │ │ ├── p043_hash_keys.c │ │ ├── p044_hash_loop.c │ │ ├── p046_funcall.c │ │ ├── p047_funcall_block.c │ │ ├── p049_load_string.c │ │ ├── p050_define_class.c │ │ ├── p052_class_under.c │ │ ├── p053_class_nest.c │ │ ├── p055_include_module.c │ │ ├── p057_class_method.c │ │ ├── p060_class_method_opt.c │ │ ├── p062_define_method.c │ │ ├── p064_class_method_block.c │ │ ├── p066_obj_new.c │ │ ├── p067_obj_check.c │ │ ├── p068_obj_copy.c │ │ ├── p070_obj_class.c │ │ ├── p071_obj2str.c │ │ ├── p073_obj_conv.c │ │ ├── p075_const.c │ │ ├── p077_iv.c │ │ ├── p080_error.c │ │ ├── p081_raise.c │ │ ├── p082_calc.c │ │ ├── p088_gc_test.c │ │ ├── p089_arena.c │ │ ├── p094_mrbgem │ │ ├── mrbgem.rake │ │ └── src │ │ │ └── hello.c │ │ ├── p099_mrbgem │ │ ├── mrbgem.rake │ │ └── src │ │ │ └── hello.c │ │ └── p101_mrbgem │ │ ├── mrbgem.rake │ │ └── src │ │ └── hello.c ├── multithread_design_pattern_101 │ ├── balking │ ├── balking.c │ ├── future │ ├── future.c │ ├── guarded_suspension │ ├── guarded_suspension.c │ ├── immutable │ ├── immutable.c │ ├── list_1_1_3 │ ├── list_1_1_3.c │ ├── producer_consumer │ ├── producer_consumer.c │ ├── read_write_lock │ ├── read_write_lock.c │ ├── single_threaded_execution │ ├── single_threaded_execution.c │ ├── thead_per_message │ ├── thead_per_message.c │ ├── two_phase_termination │ ├── two_phase_termination.c │ ├── worker_thread │ └── worker_thread.c ├── multithreaded_programming_with_linux_and_pthreads_101 │ ├── p067.c │ ├── p072.c │ └── p148.c ├── ocaml │ └── programming_basics │ │ ├── abs_value.ml │ │ ├── add.ml │ │ ├── append.ml │ │ ├── approximation.ml │ │ ├── color.ml │ │ ├── contain_zero.ml │ │ ├── coordinate.ml │ │ ├── count_a.ml │ │ ├── count_student.ml │ │ ├── empty.ml │ │ ├── fac.ml │ │ ├── fib.ml │ │ ├── fold_right.ml │ │ ├── gcd.ml │ │ ├── heap.ml │ │ ├── heap.mli │ │ ├── kion.ml │ │ ├── kyuyo.ml │ │ ├── kyuyo_with_condition.ml │ │ ├── map_eval.ml │ │ ├── map_f.ml │ │ ├── map_sqrt.ml │ │ ├── merge.ml │ │ ├── minimum.ml │ │ ├── notice.ml │ │ ├── perfect.ml │ │ ├── power.ml │ │ ├── prefix.ml │ │ ├── price.ml │ │ ├── q02_01.ml │ │ ├── q02_02.ml │ │ ├── q02_03.ml │ │ ├── q02_04.ml │ │ ├── q03_01.ml │ │ ├── q03_02.ml │ │ ├── q04_01.ml │ │ ├── q04_02.ml │ │ ├── q04_03.ml │ │ ├── q04_04.ml │ │ ├── q04_06.ml │ │ ├── q04_07.ml │ │ ├── q04_08.ml │ │ ├── q05_01.ml │ │ ├── q05_02.ml │ │ ├── q05_03.ml │ │ ├── q06_01.ml │ │ ├── q07_01.ml │ │ ├── q07_02.ml │ │ ├── q08_01.ml │ │ ├── q08_02.ml │ │ ├── q08_03.ml │ │ ├── q08_04.ml │ │ ├── q08_05.ml │ │ ├── q09_01.ml │ │ ├── q09_02.ml │ │ ├── q09_03.ml │ │ ├── q09_04.ml │ │ ├── q09_05.ml │ │ ├── q09_06.ml │ │ ├── q09_07.ml │ │ ├── q09_09.ml │ │ ├── q09_10.ml │ │ ├── q10_01.ml │ │ ├── q10_02.ml │ │ ├── q10_03.ml │ │ ├── q10_04.ml │ │ ├── q10_05.ml │ │ ├── q10_06.ml │ │ ├── q10_07.ml │ │ ├── q10_08.ml │ │ ├── q10_09.ml │ │ ├── q10_10.ml │ │ ├── q10_11.ml │ │ ├── q10_12.ml │ │ ├── q11_01.ml │ │ ├── q11_02.ml │ │ ├── q12_01.ml │ │ ├── q12_02.ml │ │ ├── q12_03.ml │ │ ├── q12_04.ml │ │ ├── q13_01.ml │ │ ├── q13_02.ml │ │ ├── q13_03.ml │ │ ├── q13_04.ml │ │ ├── q13_06.ml │ │ ├── q13_07.ml │ │ ├── q14_01.ml │ │ ├── q14_03.ml │ │ ├── q14_04.ml │ │ ├── q14_05.ml │ │ ├── q14_06.ml │ │ ├── q14_07.ml │ │ ├── q14_08.ml │ │ ├── q14_09.ml │ │ ├── q14_10.ml │ │ ├── q14_14.ml │ │ ├── q14_15.ml │ │ ├── q14_16.ml │ │ ├── q15_01.ml │ │ ├── q15_02.ml │ │ ├── q15_03.ml │ │ ├── q16_01.ml │ │ ├── q16_02.ml │ │ ├── q17_01.ml │ │ ├── q17_02.ml │ │ ├── q17_03.ml │ │ ├── q17_04.ml │ │ ├── q17_05.ml │ │ ├── q17_06.ml │ │ ├── q17_07.ml │ │ ├── q17_08.ml │ │ ├── q17_09.ml │ │ ├── q18_01.ml │ │ ├── q18_02.ml │ │ ├── q20_01.ml │ │ ├── q20_02.ml │ │ ├── q20_03.ml │ │ ├── q20_04.ml │ │ ├── q21_02.ml │ │ ├── q22_01.ml │ │ ├── q22_02.ml │ │ ├── quick_sort.ml │ │ ├── redBlack.ml │ │ ├── redBlack.mli │ │ ├── reverse.ml │ │ ├── search.ml │ │ ├── sum_tree.ml │ │ ├── times.ml │ │ ├── to_gregorian.ml │ │ ├── total_distance.ml │ │ ├── total_price.ml │ │ ├── tree.ml │ │ ├── tree.mli │ │ └── twice.ml ├── ping │ ├── cping │ ├── ping.c │ └── ping.rb ├── rinda │ ├── druby_book_p165_ts01.rb │ ├── druby_book_p166_irb01.rb │ └── druby_book_p166_irb02.rb ├── ruby │ ├── c_extension │ │ └── foo │ │ │ ├── Makefile │ │ │ ├── extconf.rb │ │ │ ├── foo.bundle │ │ │ ├── foo.c │ │ │ ├── foo.o │ │ │ └── sample.rb │ ├── cherry_book │ │ ├── p474.rb │ │ └── p491.rb │ ├── concurrency │ │ ├── 101 │ │ │ ├── benchmarks_with_fib.rb │ │ │ ├── benchmarks_with_sleep.rb │ │ │ ├── fiber.rb │ │ │ ├── fibonacchi.rb │ │ │ ├── process.rb │ │ │ ├── ractor.rb │ │ │ ├── serial.rb │ │ │ └── thread.rb │ │ ├── basics │ │ │ ├── evented.rb │ │ │ ├── fiber_based.rb │ │ │ ├── proccess_based.rb │ │ │ ├── ractor_based.rb │ │ │ ├── serial.rb │ │ │ └── thread_based.rb │ │ ├── benchmarks │ │ │ └── 20210131_bench.rb │ │ ├── counter │ │ │ ├── fiber_ver01.rb │ │ │ ├── fiber_ver02.rb │ │ │ ├── fiber_ver03.rb │ │ │ ├── fiber_ver04.rb │ │ │ ├── process_ver01.rb │ │ │ ├── process_ver02.rb │ │ │ ├── process_ver03.rb │ │ │ ├── ractor_counter │ │ │ ├── ractor_ver01.rb │ │ │ ├── ractor_ver02.rb │ │ │ ├── ractor_ver03.rb │ │ │ ├── ractor_ver04.rb │ │ │ ├── ractor_ver05.rb │ │ │ ├── serial.rb │ │ │ ├── serial_counter │ │ │ ├── thread_counter │ │ │ ├── thread_ver01.rb │ │ │ └── thread_ver02.rb │ │ ├── gvl │ │ │ ├── trace_gvl.json │ │ │ ├── trace_gvl.rb │ │ │ ├── trace_gvl_with_io.json │ │ │ └── trace_gvl_with_io.rb │ │ └── worker_pool │ │ │ ├── fiber_based.rb │ │ │ ├── process_based.rb │ │ │ ├── ractor_based.rb │ │ │ ├── thread_based.rb │ │ │ └── thread_based_with_queue.rb │ ├── debugger │ │ ├── Dockerfile │ │ ├── drclient.rb │ │ ├── drserver.rb │ │ └── foo.rb │ ├── design_pattern_multithread │ │ ├── 01_single_threaded_execution │ │ │ ├── 01.rb │ │ │ ├── 01_counter │ │ │ ├── 02.rb │ │ │ └── 02_counter │ │ ├── 02_immutable │ │ │ └── 01.rb │ │ ├── 03_guarded_suspension │ │ │ └── 01.rb │ │ ├── 04_balking │ │ │ ├── 01.rb │ │ │ └── data.txt │ │ ├── 05_producer_consumer │ │ │ └── 01.rb │ │ ├── 06_read_write_lock │ │ │ └── 01.rb │ │ ├── 07_thread_per_message │ │ │ └── 01.rb │ │ ├── 08_worker_thread │ │ │ └── 01.rb │ │ ├── 09_future │ │ │ └── 01.rb │ │ ├── 10_two_phase_termination │ │ │ └── 01.rb │ │ ├── 11_thread_specific_storage │ │ │ ├── -log.txt │ │ │ ├── 0-log.txt │ │ │ ├── 01.rb │ │ │ ├── 02.rb │ │ │ ├── 1-log.txt │ │ │ ├── 2-log.txt │ │ │ └── log.txt │ │ └── 12_active_object │ │ │ └── 01.rb │ ├── fiber │ │ └── clock.rb │ ├── grokking_algorithm │ │ ├── binary_search.rb │ │ ├── breadth_first_search.rb │ │ ├── count.rb │ │ ├── dijkstra.rb │ │ ├── factrial.rb │ │ ├── max.rb │ │ ├── quick_sort.rb │ │ ├── select_sort.rb │ │ └── sum.rb │ ├── keep_tokens.rb │ ├── minruby │ │ ├── interp_4.rb │ │ ├── interp_5.1.rb │ │ ├── interp_5.2.rb │ │ ├── interp_6.rb │ │ ├── interp_7.rb │ │ ├── interp_8.1.rb │ │ ├── interp_8.2.rb │ │ ├── interp_9.1.rb │ │ ├── interp_9.2.rb │ │ ├── interp_9.3.rb │ │ ├── test_5.1.1.rb │ │ ├── test_5.1.2.rb │ │ ├── test_5.2.1.rb │ │ ├── test_6.1.rb │ │ ├── test_6.2.rb │ │ ├── test_6.3.rb │ │ ├── test_7.1.rb │ │ ├── test_7.2.rb │ │ ├── test_8.1.1.rb │ │ ├── test_8.2.1.rb │ │ ├── test_9.1.1.rb │ │ ├── test_9.1.2.rb │ │ ├── test_9.1.3.rb │ │ ├── test_9.1.4.rb │ │ ├── test_9.2.1.rb │ │ └── test_9.3.1.rb │ ├── parfect_ruby │ │ └── 5_8_condition_variable.rb │ ├── polished_ruby │ │ └── 6_4_p153.rb │ ├── rack.3.0.0.beta.ru │ ├── ractor │ │ ├── 20210121_01.rb │ │ ├── 20210121_02.rb │ │ ├── 20210121_03.rb │ │ ├── 20210121_04.rb │ │ ├── 20210121_05.rb │ │ ├── 20210121_06.rb │ │ ├── 20210121_07.rb │ │ ├── 20210121_08.rb │ │ ├── 20210122_01.rb │ │ ├── 20210122_02.rb │ │ ├── 20210122_03.rb │ │ ├── 20210122_04.rb │ │ ├── 20210122_05.rb │ │ ├── 20210122_06.rb │ │ ├── 20210122_07.rb │ │ ├── 20210122_08.rb │ │ ├── clock.rb │ │ ├── excp.rb │ │ ├── fork.rb │ │ ├── getaddrinfo_01.rb │ │ ├── getaddrinfo_02.rb │ │ ├── new.rb │ │ ├── pipe_sample.rb │ │ ├── pull.rb │ │ ├── push.rb │ │ ├── raise.rb │ │ └── thread.rb │ ├── ruby_application_programming │ │ ├── 04_thread │ │ │ ├── 4-2-2-159.rb │ │ │ ├── 4-2-2-160.rb │ │ │ ├── 4-2-3-161.rb │ │ │ ├── 4-2-4-cat.rb │ │ │ ├── 4-2-4-cat2.rb │ │ │ ├── 4-4-4-179.rb │ │ │ ├── 4-4-5-semaphore.rb │ │ │ └── 4-5-aftp.rb │ │ └── 05_network_programming │ │ │ ├── 5-2-3-200.rb │ │ │ ├── 5-2-3-cat.rb │ │ │ ├── 5-2-4-203.rb │ │ │ ├── 5-2-4-205.rb │ │ │ ├── 5-2-4-210.rb │ │ │ ├── 5-6-2-echo-client.rb │ │ │ ├── 5-6-2-echo-server.rb │ │ │ ├── 5-6-3-echo-server.rb │ │ │ ├── 5-6-5-232.rb │ │ │ ├── 5-6-5-234.rb │ │ │ ├── 5-6-7-240.rb │ │ │ ├── 5-7-1-248.rb │ │ │ ├── 5-7-1-249.rb │ │ │ └── 5-7-5-258.rb │ ├── ruby_under_a_microscope │ │ ├── array.rb │ │ ├── block01.rb │ │ ├── block02.rb │ │ ├── boolean.rb │ │ ├── constant01.rb │ │ ├── constant02.rb │ │ ├── constant03.rb │ │ ├── disasm.rb │ │ ├── eval01.rb │ │ ├── eval02.rb │ │ ├── eval03.rb │ │ ├── hash.rb │ │ ├── instancev.rb │ │ ├── iseq01.rb │ │ ├── localv01.rb │ │ ├── localv02.rb │ │ ├── localv03.rb │ │ ├── proc01.rb │ │ ├── proc02.rb │ │ ├── proc03.rb │ │ ├── puts01.rb │ │ ├── puts02.rb │ │ ├── range.rb │ │ ├── splat_args01.rb │ │ ├── string.rb │ │ └── to_a.rb │ ├── rubymavm │ │ └── vm.rb │ ├── sockets │ │ ├── simple_http_server_ver_01.rb │ │ ├── simple_http_server_ver_02.rb │ │ ├── simple_http_server_ver_03.rb │ │ ├── simple_http_server_ver_04.rb │ │ ├── tcp │ │ │ ├── 01_simple_tcp_server_and_client │ │ │ │ ├── client.rb │ │ │ │ └── server.rb │ │ │ ├── 02_tcp_client_with_error_handling │ │ │ │ └── client.rb │ │ │ ├── 03_tcp_server_with_while │ │ │ │ └── server.rb │ │ │ └── 04_tcp_server_with_accepted_client │ │ │ │ └── server.rb │ │ ├── udp │ │ │ ├── 05_using_udp │ │ │ │ ├── recieving.rb │ │ │ │ └── sending.rb │ │ │ ├── 06_udp_with_broadcast │ │ │ │ └── sending.rb │ │ │ ├── 07_udp_with_multicast │ │ │ │ └── sending.rb │ │ │ ├── 08_udp_with_multicast_receiving │ │ │ │ └── receiving.rb │ │ │ └── 09_udp_with_multicast_and_ttl │ │ │ │ └── sending.rb │ │ └── web │ │ │ ├── 10_http_get.rb │ │ │ ├── 11_http_head.rb │ │ │ ├── 12_http_post.rb │ │ │ └── 13_simple_rss_client.rb │ ├── tcp_server.rb │ └── working_with_tcp_sockets │ │ ├── cloud_hash │ │ ├── 14 │ │ │ ├── client.rb │ │ │ └── server.rb │ │ └── 09 │ │ │ ├── client.rb │ │ │ └── server.rb │ │ ├── ftp │ │ ├── arch │ │ │ ├── evented.rb │ │ │ ├── preforking.rb │ │ │ ├── process_per_connection.rb │ │ │ ├── serial.rb │ │ │ ├── thread_per_connection.rb │ │ │ └── thread_pool.rb │ │ └── command_handler.rb │ │ ├── non_blocking_connect_1.rb │ │ ├── non_blocking_connect_2.rb │ │ └── non_blocking_io.rb ├── ts │ └── survival_ts │ │ ├── 001_increment.js │ │ └── 001_increment.ts ├── wireshark │ ├── foo │ │ └── wireshark │ │ │ ├── CMakeListsCustom.txt │ │ │ └── plugins │ │ │ └── epan │ │ │ └── foo │ │ │ ├── CMakeLists.txt │ │ │ ├── packet-foo.c │ │ │ ├── packet-foo_01.c │ │ │ ├── packet-foo_02.c │ │ │ ├── packet-foo_03.c │ │ │ ├── packet-foo_04.c │ │ │ ├── packet-foo_05.c │ │ │ └── packet-foo_06.c │ └── sample_beginner.lua └── yacc │ └── first │ ├── parse.y │ └── y.tab.c ├── security ├── __overview.md ├── _tcpip.md ├── openssl │ ├── __overview.md │ ├── _build.md │ ├── _ciphers.md │ ├── _csr.md │ ├── _gen.md │ ├── _s_client.md │ ├── _sign.md │ └── _speed.md ├── pki │ ├── __overview.md │ ├── _caa.md │ ├── _ct.md │ ├── _public_key_pinning.md │ ├── _tack.md │ └── pkc │ │ ├── __overview.md │ │ ├── _publishing.md │ │ ├── _revocation.md │ │ └── _x509v3.md └── www │ ├── _cors.md │ ├── _csp.md │ ├── _hpkp.md │ ├── _hsts.md │ └── cases │ ├── _clickjacking.md │ ├── _csrf.md │ ├── _mitm.md │ ├── _session_hijacking.md │ └── _xss.md ├── seo └── _structured_data.md ├── testing ├── _db.md ├── _fixture_file_upload.md ├── capybara │ ├── _driver.md │ ├── _evaluate_script.md │ ├── _headless_chrome.md │ ├── _open_new_window.md │ ├── _print_html.md │ ├── _resize_to.md │ ├── _save_screenshot.md │ ├── _simulation.md │ └── _wait.md ├── factory_bot │ ├── _aliases.md │ ├── _initialize_with.md │ └── _transient.md └── rspec │ ├── _command.md │ ├── _csrf.md │ ├── _matcher.md │ ├── _metadata.md │ ├── _rails_helper.md │ ├── _shared_context.md │ ├── _shared_example.md │ ├── _spec_helper.md │ ├── _stub_const.md │ └── _stub_mock.md ├── tips ├── _blackhole.webpagetest.md ├── _cgi_on_mac.md ├── _csv.md ├── _errno.md ├── _pp_json_on_tempfile.md ├── _random_alphanumeric.md ├── _stepping_server.md ├── _too_slow.md ├── _vim.md ├── ab │ └── _bench_with_auth.md ├── apt │ └── _could_not_get_lock.md ├── aws │ ├── _add_instance_to_ecs.md │ ├── _content_delivery_from_cloudfront.md │ ├── _copy_from_s3.md │ ├── _execute_scheduler_with_ecs.md │ └── _reissue_keypair_on_ec2.md ├── c │ ├── _clock_gettime.md │ └── _presentation_ip_address.md ├── circleci │ ├── _clear_cache.md │ ├── _failing_spec_only_in_ci.md │ ├── _run_brakeman.md │ ├── _session_not_created_error.md │ ├── _setup_remote_docker.md │ └── _sync_production.md ├── cmake │ └── _error.md ├── curl │ ├── _binary_output.md │ ├── _build_with_enabling_http3.md │ ├── _display_self_public_ip_address.md │ ├── _login_and_request.md │ ├── _request_without_login.md │ └── _with_qlog.md ├── docker │ └── _overriding_dockercomposeyaml.md ├── git │ ├── _could_not_read_Username_for.md │ ├── _diff_text.md │ ├── _error_in_sideband_demultiplexer.md │ ├── _failed_to_push_some_refs.md │ ├── _follow_upstream.md │ └── _resolve_aborting_rebase.md ├── github │ └── _cli.md ├── heroku │ ├── _grepping_logs_by_ip_address.md │ ├── _migrate_after_restoring.md │ ├── _rebuild_stagging_app.md │ ├── _redis_to_go_to_heroku_redis.md │ └── _request_timeout.md ├── javascript │ ├── _add_css_to_elem.md │ ├── _find_first_elem_in_selectors.md │ ├── _object_length.md │ └── _on_link_click.md ├── jest │ └── _mock.md ├── misc │ ├── _dyld_Library_not_loaded_libicui18n.md │ └── _library_not_loaded.md ├── ops │ ├── __update_ruby.md │ ├── _memory_size.md │ ├── _rails_from_5.2.2_to_6.0.0.md │ └── _ruby_from_2.6.2_to_2.6.5.md ├── postgresql │ ├── _collation.md │ ├── _install_specific_version_pg_gem.md │ ├── _listup_dbs.md │ └── _unexecutable_index.md ├── rails │ ├── _alike_records_across_pages.md │ ├── _avoid_basic_auth.md │ ├── _aws-sdk-location.md │ ├── _blank_params.md │ ├── _bulk_insert_from_csv.md │ ├── _cache.md │ ├── _cause_of_record_not_destroyed.md │ ├── _is_record_loaded.md │ ├── _large_amount_of_data.md │ ├── _loading_rails.md │ ├── _multiple_reference.md │ ├── _nested_transaction.md │ ├── _not_initialized.md │ ├── _remove_default_added_in_rollbacking.md │ ├── _resolve_conflicts.md │ ├── _session.md │ ├── _signature_verification.md │ ├── _ssl_on_development.md │ ├── _stdout_active_record_to_sql.md │ ├── _sti_with_enum.md │ ├── _toggling_password.md │ ├── _uploading_file_in_spec.md │ ├── _uploading_svg_in_seed.md │ ├── _url_helper.md │ ├── bin │ │ └── _setup.md │ ├── console │ │ └── _url_helper.md │ ├── features │ │ ├── _errors_controller.md │ │ └── _slow_query_logger.md │ ├── frontend │ │ └── webpacker │ │ │ ├── _add_fontawesome.md │ │ │ ├── _add_node_modules_to_assets_paths.md │ │ │ ├── _add_react.md │ │ │ └── _change_chosen_rails_to_chosen-js.md │ ├── locale │ │ └── _i18ned_poro.md │ ├── migration │ │ ├── _fixup_migration.md │ │ ├── _index_name_is_too_long.md │ │ ├── _no_migration_with_version_number.md │ │ ├── _no_updown.md │ │ ├── _unique_index_after.md │ │ └── _unique_index_with_condition.md │ ├── routes │ │ ├── _routes_for_other_resource.md │ │ └── _unexpected_action.md │ ├── testing │ │ ├── _capybara_ambiguous.md │ │ ├── _chirome_dev_tools_protocol__execute_scripts.md │ │ ├── _factory_bot_outside_of_spec.md │ │ ├── _log_with_failed_spec_in_rspec.md │ │ ├── _time_helpers_in_rspec.md │ │ └── _view_helper.md │ └── twilio │ │ ├── _status_callback_feature.md │ │ └── _status_callback_in_local.md ├── redis │ └── _misconf.md ├── ruby │ ├── _ast_in_irb.md │ ├── _eacces_on_irb_history.md │ ├── _execute_command.md │ ├── _install_path.md │ └── _method_caller.md ├── sed │ └── _change_in_target_files.md ├── setup │ ├── _20191205_mac.md │ ├── _20210207_thinkpad.md │ ├── _20220928_m2mac.md │ └── _20231024_m2mac.md ├── shell │ └── _for.md ├── ubuntu │ ├── _could_not_get_lock.md │ └── _malformed_entry_58.md └── win │ └── _load_error.md ├── tools ├── _ansible.md ├── _anyenv.md ├── _asan.md ├── _asn.1.md ├── _bigquery.md ├── _bnf.md ├── _chef.md ├── _crontab.md ├── _d-bus.md ├── _direnv.md ├── _dnsmasq.md ├── _elasticsearch.md ├── _electron.md ├── _embulk.md ├── _emscripten.md ├── _envoy.md ├── _envsubst.md ├── _fluentd.md ├── _hexedit.md ├── _hping.md ├── _kubernetes.md ├── _lex.md ├── _minio.md ├── _nasm.md ├── _ngrok.md ├── _openapi.md ├── _otool.md ├── _selenium.md ├── _terraform.md ├── _unbound.md ├── _vagrant.md ├── _yml.md ├── build │ ├── _autoconf.md │ ├── _ninja.md │ ├── cmake │ │ ├── __overview.md │ │ └── cmakelists │ │ │ ├── __overview.md │ │ │ ├── _directory_hierarchization.md │ │ │ ├── _link_libraries.md │ │ │ └── _syntax.md │ └── make │ │ ├── __overview.md │ │ └── _makefile.md ├── compile │ ├── _clang.md │ ├── _llvm.md │ └── gcc │ │ ├── __overview.md │ │ ├── _compile.md │ │ └── _link.md ├── debug │ ├── gdb │ │ ├── _gdbinit.md │ │ ├── _tui.md │ │ └── _usage.md │ └── valgrind │ │ ├── _basics.md │ │ ├── _cachegrind.md │ │ ├── _helgrind.md │ │ ├── _leak_check.md │ │ └── _massif.md ├── homebrew │ ├── __overview.md │ ├── _brewfile.md │ ├── _services.md │ └── _usage.md ├── stat │ ├── __overview.md │ ├── _apache_bench.md │ ├── _k6.md │ ├── _strace.md │ └── perf │ │ ├── __overview.md │ │ ├── _record.md │ │ ├── _stat.md │ │ └── _top.md ├── wireshark │ ├── __overview.md │ ├── _internals.md │ ├── _tls.md │ ├── custom │ │ ├── _add_libraly_for_epan.md │ │ ├── _add_libraly_for_plugin.md │ │ └── _build.md │ └── dissector_api │ │ ├── __add_subtree.md │ │ ├── __define_protocol.md │ │ ├── _add_flag_field_to_node.md │ │ ├── _add_packet_type_name_to_node.md │ │ ├── _add_str_to_packet_list_column.md │ │ └── _add_str_to_tree.md └── yacc │ ├── __overview.md │ ├── _flow.md │ └── _syntax.md └── unix ├── _elf.md ├── _file_table.md ├── _group.md ├── _inetd.md ├── _passwd.md ├── _process.md ├── _redirection.md ├── _shebang.md ├── _shell.md ├── _syslog.md ├── _systemd.md ├── command ├── __backgrounding.md ├── __overview.md ├── __shared_library.md ├── __swap.md ├── _adduser_userdel.md ├── _ar.md ├── _cd.md ├── _chmod.md ├── _diff.md ├── _echo.md ├── _env.md ├── _file.md ├── _find.md ├── _getconf.md ├── _ldd.md ├── _ln.md ├── _logger.md ├── _lsblk.md ├── _man.md ├── _md5.md ├── _mktemp.md ├── _mount.md ├── _nohup.md ├── _objdump.md ├── _od.md ├── _passwd.md ├── _pushd.md ├── _readelf.md ├── _scp.md ├── _script.md ├── _ssh.md ├── _strings.md ├── _sync.md ├── _systemctl.md ├── _tar_gzip.md ├── _taskset.md ├── _type.md ├── _ulimit.md ├── _unshare.md ├── _visudo.md ├── _watch.md ├── network │ ├── __dhcp.md │ ├── __dns.md │ ├── _arp.md │ ├── _curl.md │ ├── _dig.md │ ├── _ifconfig.md │ ├── _ifup_ifdown.md │ ├── _ip.md │ ├── _iptables.md │ ├── _iwconfig.md │ ├── _lsof.md │ ├── _nc.md │ ├── _netstat.md │ ├── _nslookup.md │ ├── _pfctl.md │ ├── _ping.md │ ├── _ss.md │ ├── _tc.md │ ├── _tcpdump.md │ ├── _traceroute.md │ ├── _whois.md │ └── _xxd.md └── stat │ ├── _df.md │ ├── _dstat.md │ ├── _fio.md │ ├── _free.md │ ├── _pgrep.md │ ├── _ps.md │ ├── _pstree.md │ ├── _sar.md │ ├── _stress.md │ ├── _time.md │ ├── _top.md │ ├── _uptime.md │ └── _vmstat.md ├── conf ├── _nsswitch.conf.md └── _resolv.conf.md ├── linux ├── _cgroup.md ├── _fhs.md ├── _installing.md ├── _kvm.md ├── _params.md ├── _tracepoint.md ├── books │ ├── basics │ │ ├── _locale.md │ │ ├── _login.md │ │ ├── _login_accounting.md │ │ ├── _other_io.md │ │ ├── _posix.md │ │ ├── _programming.md │ │ ├── _scheduling.md │ │ ├── _system_data_file.md │ │ ├── _system_resource_limit.md │ │ ├── _terminal.md │ │ ├── _timer.md │ │ ├── api │ │ │ ├── _cpu_affinity.md │ │ │ ├── _crypt.md │ │ │ ├── _dlopen.md │ │ │ ├── _env.md │ │ │ ├── _file_buffering.md │ │ │ ├── _file_discriptor.md │ │ │ ├── _file_link.md │ │ │ ├── _file_owner.md │ │ │ ├── _file_permission.md │ │ │ ├── _file_stat.md │ │ │ ├── _fileio.md │ │ │ ├── _filesystem_mount.md │ │ │ ├── _memory.md │ │ │ ├── _nonlocal_jump.md │ │ │ ├── _process.md │ │ │ ├── _program_break.md │ │ │ ├── _realtime_scheduling.md │ │ │ ├── _session.md │ │ │ ├── _signal.md │ │ │ ├── _system_conf.md │ │ │ ├── _system_log.md │ │ │ ├── _system_resource.md │ │ │ ├── _terminal.md │ │ │ ├── _time.md │ │ │ ├── _user.md │ │ │ ├── _user_group.md │ │ │ └── _user_password.md │ │ ├── fileio │ │ │ ├── _buffering.md │ │ │ ├── _model.md │ │ │ ├── _stdio.md │ │ │ └── advanced │ │ │ │ ├── _basics.md │ │ │ │ ├── _epoll.md │ │ │ │ ├── _multiplex.md │ │ │ │ └── _signal_driven.md │ │ ├── filesystem │ │ │ ├── _basics.md │ │ │ ├── _devicespecialfile.md │ │ │ ├── _directory_and_link.md │ │ │ ├── _internal.md │ │ │ ├── _mount.md │ │ │ ├── _owner.md │ │ │ └── _permission.md │ │ ├── ipc │ │ │ ├── _basics.md │ │ │ ├── _fifo.md │ │ │ ├── _filelock.md │ │ │ ├── _pipe.md │ │ │ ├── _posix_ipc.md │ │ │ ├── _pseudo.md │ │ │ ├── _system_v_ipc.md │ │ │ ├── signal │ │ │ │ ├── _basics.md │ │ │ │ ├── _handler.md │ │ │ │ └── _realtime.md │ │ │ └── socket │ │ │ │ ├── _architecture.md │ │ │ │ ├── _basics.md │ │ │ │ ├── _inetd.md │ │ │ │ ├── _internetdomain.md │ │ │ │ ├── _multiplex.md │ │ │ │ ├── _option.md │ │ │ │ └── _unixdomain.md │ │ ├── process │ │ │ ├── _argv.md │ │ │ ├── _basics.md │ │ │ ├── _capability.md │ │ │ ├── _coredump.md │ │ │ ├── _daemon.md │ │ │ ├── _environ.md │ │ │ ├── _exec.md │ │ │ ├── _exit.md │ │ │ ├── _fork.md │ │ │ ├── _nonlocal_escape.md │ │ │ ├── _procfs.md │ │ │ ├── _scheduling.md │ │ │ ├── _session.md │ │ │ └── _wait.md │ │ ├── sharedlib │ │ │ ├── _basics.md │ │ │ ├── _sharedlib.md │ │ │ ├── _static.md │ │ │ └── _verscript.md │ │ ├── thread │ │ │ └── pthread │ │ │ │ ├── _basics.md │ │ │ │ ├── _synchronize.md │ │ │ │ └── _thread_safe.md │ │ ├── time │ │ │ └── _basics.md │ │ ├── user_and_group │ │ │ ├── __overview.md │ │ │ ├── _group.md │ │ │ ├── _gshadow.md │ │ │ ├── _passwd.md │ │ │ ├── _process.md │ │ │ └── _shadow.md │ │ └── virtual_memory │ │ │ ├── __overview.md │ │ │ ├── _memorymapping.md │ │ │ └── _operation.md │ ├── linux_programming_basics │ │ ├── 05_sytem_call │ │ │ ├── cat │ │ │ ├── cat.c │ │ │ ├── etcs.c │ │ │ ├── open_and_close.c │ │ │ └── read_and_write.c │ │ ├── 06_library_functions │ │ │ ├── cat │ │ │ ├── cat.c │ │ │ ├── hello │ │ │ └── stdio.c │ │ ├── 07_head │ │ │ ├── bugged_head │ │ │ ├── bugged_head.c │ │ │ ├── head │ │ │ └── head.c │ │ ├── 08_grep │ │ │ ├── eoncoding.c │ │ │ ├── grep │ │ │ └── grep.c │ │ ├── 09_directories │ │ │ └── directories.c │ │ ├── 10_file_systems │ │ │ ├── chmod │ │ │ ├── chmod.c │ │ │ ├── directory_entries.c │ │ │ ├── ln │ │ │ ├── ln.c │ │ │ ├── ls │ │ │ ├── ls.c │ │ │ ├── mkdir │ │ │ ├── mkdir.c │ │ │ ├── mv │ │ │ ├── mv.c │ │ │ ├── rm │ │ │ ├── rm.c │ │ │ ├── rmdir │ │ │ ├── rmdir.c │ │ │ ├── sample │ │ │ │ └── sample.txt │ │ │ ├── stat.c │ │ │ ├── symlink │ │ │ └── symlink.c │ │ ├── 11_process_and_hardware │ │ │ ├── build.c │ │ │ ├── memory_management.c │ │ │ └── process.c │ │ ├── 12_process │ │ │ ├── exit.c │ │ │ ├── pipe.c │ │ │ ├── processes.c │ │ │ ├── spawn │ │ │ └── spawn.c │ │ ├── 13_signal │ │ │ ├── _function_pointer.c │ │ │ └── _signal.c │ │ ├── 14_etcs │ │ │ ├── credential.c │ │ │ ├── current_dir.c │ │ │ ├── environ.c │ │ │ ├── login.c │ │ │ ├── resources.c │ │ │ ├── timeval.c │ │ │ └── user_group.c │ │ ├── 15_network_programming │ │ │ ├── daytime.c │ │ │ ├── internet.c │ │ │ ├── name_resolver.c │ │ │ └── socket.c │ │ ├── 16_http_server │ │ │ ├── hello.txt │ │ │ ├── httpd │ │ │ ├── httpd.c │ │ │ └── overviews.c │ │ └── 17_http_server │ │ │ ├── hello.txt │ │ │ ├── httpd2 │ │ │ ├── httpd2.c │ │ │ └── overview.c │ └── pthreads │ │ ├── _basic.md │ │ ├── _lock.md │ │ ├── _patterns.md │ │ ├── _process_or_thread.md │ │ └── _threads.md ├── conf │ └── _LD_PRELOAD.md ├── fs │ ├── __overview.md │ ├── _cgroupfs.md │ ├── _nfs.md │ ├── _overlayfs.md │ ├── _procfs.md │ ├── _sysfs.md │ └── _tmpfs.md ├── memory │ ├── _demand_paging.md │ └── _layout.md ├── namespace │ ├── __overview.md │ └── network_namespace │ │ └── usage │ │ ├── __overview.md │ │ ├── _between_diff_segment.md │ │ ├── _change_mac_address.md │ │ ├── _on_same_segment.md │ │ └── _via_bridge.md └── os │ ├── _archlinux.md │ ├── _centos.md │ ├── _gentoo.md │ └── _ubuntu.md └── macos ├── _dns_setting.md ├── _iwconfig.md ├── _packet_capture.md └── command └── _scutil.md /.gitignore: -------------------------------------------------------------------------------- 1 | shiraberu.md 2 | .ruby-version 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # til 2 | 3 | Today I learned. 4 | -------------------------------------------------------------------------------- /_go.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/_go.md -------------------------------------------------------------------------------- /_msgpack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/_msgpack.md -------------------------------------------------------------------------------- /_next.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/_next.md -------------------------------------------------------------------------------- /_object_storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/_object_storage.md -------------------------------------------------------------------------------- /_ocaml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/_ocaml.md -------------------------------------------------------------------------------- /_peg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/_peg.md -------------------------------------------------------------------------------- /_regex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/_regex.md -------------------------------------------------------------------------------- /_wasm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/_wasm.md -------------------------------------------------------------------------------- /activities/20210630_rubykaigi_proposal/proto1/protocols/ruby/get_request.txt: -------------------------------------------------------------------------------- 1 | '/posts'.get; p `ls` 2 | -------------------------------------------------------------------------------- /activities/20210630_rubykaigi_proposal/proto1/protocols/safe_ruby/get_request.txt: -------------------------------------------------------------------------------- 1 | '/posts'.get 2 | -------------------------------------------------------------------------------- /activities/20210630_rubykaigi_proposal/proto2/requests/ruby/get_request.txt: -------------------------------------------------------------------------------- 1 | '/posts'.get; p `ls` 2 | -------------------------------------------------------------------------------- /activities/20210630_rubykaigi_proposal/proto2/requests/safe_ruby/get_request.txt: -------------------------------------------------------------------------------- 1 | '/posts'.get 2 | -------------------------------------------------------------------------------- /activities/20220619_rubykaigi_proposal/proto0/_memo.md: -------------------------------------------------------------------------------- 1 | - `mrbgems/mruby-hash-ext/`を追加 2 | -------------------------------------------------------------------------------- /activities/_first_gem_lt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/activities/_first_gem_lt.md -------------------------------------------------------------------------------- /apache/__overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/apache/__overview.md -------------------------------------------------------------------------------- /apache/_hook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/apache/_hook.md -------------------------------------------------------------------------------- /apache/_usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/apache/_usage.md -------------------------------------------------------------------------------- /apache/conf/__overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/apache/conf/__overview.md -------------------------------------------------------------------------------- /apache/conf/_directive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/apache/conf/_directive.md -------------------------------------------------------------------------------- /arch/__clean_architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/arch/__clean_architecture.md -------------------------------------------------------------------------------- /arch/_bef.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/arch/_bef.md -------------------------------------------------------------------------------- /arch/_layered_archtecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/arch/_layered_archtecture.md -------------------------------------------------------------------------------- /arch/_onion_archtecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/arch/_onion_archtecture.md -------------------------------------------------------------------------------- /auth/__overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/auth/__overview.md -------------------------------------------------------------------------------- /auth/_oauth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/auth/_oauth.md -------------------------------------------------------------------------------- /auth/_passkey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/auth/_passkey.md -------------------------------------------------------------------------------- /auth/_protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/auth/_protocol.md -------------------------------------------------------------------------------- /auth/sso/__overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/auth/sso/__overview.md -------------------------------------------------------------------------------- /auth/sso/_kerberos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/auth/sso/_kerberos.md -------------------------------------------------------------------------------- /auth/sso/_open_id.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/auth/sso/_open_id.md -------------------------------------------------------------------------------- /auth/sso/_saml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/auth/sso/_saml.md -------------------------------------------------------------------------------- /aws/__overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/aws/__overview.md -------------------------------------------------------------------------------- /aws/_acm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/aws/_acm.md -------------------------------------------------------------------------------- /aws/_cloudfront.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/aws/_cloudfront.md -------------------------------------------------------------------------------- /aws/_cloudwatch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/aws/_cloudwatch.md -------------------------------------------------------------------------------- /aws/_parameter_store_exec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/aws/_parameter_store_exec.md -------------------------------------------------------------------------------- /aws/_run-ecs-task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/aws/_run-ecs-task.md -------------------------------------------------------------------------------- /aws/_sns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/aws/_sns.md -------------------------------------------------------------------------------- /aws/_sqs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/aws/_sqs.md -------------------------------------------------------------------------------- /aws/computing/ec2/_ipv6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/aws/computing/ec2/_ipv6.md -------------------------------------------------------------------------------- /aws/computing/ec2/_usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/aws/computing/ec2/_usage.md -------------------------------------------------------------------------------- /aws/container/__overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/aws/container/__overview.md -------------------------------------------------------------------------------- /aws/container/_app_mesh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/aws/container/_app_mesh.md -------------------------------------------------------------------------------- /aws/container/_cloud_map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/aws/container/_cloud_map.md -------------------------------------------------------------------------------- /aws/container/_ecr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/aws/container/_ecr.md -------------------------------------------------------------------------------- /aws/container/_ecs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/aws/container/_ecs.md -------------------------------------------------------------------------------- /aws/container/_eks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/aws/container/_eks.md -------------------------------------------------------------------------------- /aws/container/_fargate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/aws/container/_fargate.md -------------------------------------------------------------------------------- /aws/container/_x_ray.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/aws/container/_x_ray.md -------------------------------------------------------------------------------- /aws/db/_aurora.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/aws/db/_aurora.md -------------------------------------------------------------------------------- /aws/db/_dynamodb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/aws/db/_dynamodb.md -------------------------------------------------------------------------------- /aws/db/_elasticache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/aws/db/_elasticache.md -------------------------------------------------------------------------------- /aws/db/_rds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/aws/db/_rds.md -------------------------------------------------------------------------------- /aws/devops/_code_build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/aws/devops/_code_build.md -------------------------------------------------------------------------------- /aws/devops/_code_commit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/aws/devops/_code_commit.md -------------------------------------------------------------------------------- /aws/devops/_code_deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/aws/devops/_code_deploy.md -------------------------------------------------------------------------------- /aws/devops/_code_pipeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/aws/devops/_code_pipeline.md -------------------------------------------------------------------------------- /aws/network/_elb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/aws/network/_elb.md -------------------------------------------------------------------------------- /aws/network/_route53.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/aws/network/_route53.md -------------------------------------------------------------------------------- /aws/network/_vpc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/aws/network/_vpc.md -------------------------------------------------------------------------------- /aws/operation/_cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/aws/operation/_cli.md -------------------------------------------------------------------------------- /aws/operation/_config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/aws/operation/_config.md -------------------------------------------------------------------------------- /aws/operation/_iam.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/aws/operation/_iam.md -------------------------------------------------------------------------------- /aws/security/_cloudtail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/aws/security/_cloudtail.md -------------------------------------------------------------------------------- /aws/security/_kms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/aws/security/_kms.md -------------------------------------------------------------------------------- /aws/security/_waf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/aws/security/_waf.md -------------------------------------------------------------------------------- /aws/serverless/_cognito.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/aws/serverless/_cognito.md -------------------------------------------------------------------------------- /aws/serverless/_lambda.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/aws/serverless/_lambda.md -------------------------------------------------------------------------------- /aws/serverless/_sam.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/aws/serverless/_sam.md -------------------------------------------------------------------------------- /aws/storage/__overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/aws/storage/__overview.md -------------------------------------------------------------------------------- /aws/storage/_ebs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/aws/storage/_ebs.md -------------------------------------------------------------------------------- /aws/storage/_efs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/aws/storage/_efs.md -------------------------------------------------------------------------------- /aws/storage/s3/__overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/aws/storage/s3/__overview.md -------------------------------------------------------------------------------- /aws/storage/s3/_usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/aws/storage/s3/_usage.md -------------------------------------------------------------------------------- /c/__build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/c/__build.md -------------------------------------------------------------------------------- /c/__overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/c/__overview.md -------------------------------------------------------------------------------- /c/_bit_operation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/c/_bit_operation.md -------------------------------------------------------------------------------- /c/_glibc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/c/_glibc.md -------------------------------------------------------------------------------- /c/_pointer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/c/_pointer.md -------------------------------------------------------------------------------- /c/_restrict.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/c/_restrict.md -------------------------------------------------------------------------------- /c/_vulnerability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/c/_vulnerability.md -------------------------------------------------------------------------------- /c/api/_exec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/c/api/_exec.md -------------------------------------------------------------------------------- /c/api/_fcntl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/c/api/_fcntl.md -------------------------------------------------------------------------------- /c/api/_netinet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/c/api/_netinet.md -------------------------------------------------------------------------------- /c/api/_signal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/c/api/_signal.md -------------------------------------------------------------------------------- /c/api/_stdarg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/c/api/_stdarg.md -------------------------------------------------------------------------------- /c/api/_stdlib.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/c/api/_stdlib.md -------------------------------------------------------------------------------- /c/api/_string.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/c/api/_string.md -------------------------------------------------------------------------------- /c/api/pthread/__overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/c/api/pthread/__overview.md -------------------------------------------------------------------------------- /c/api/pthread/_rwlock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/c/api/pthread/_rwlock.md -------------------------------------------------------------------------------- /c/api/stdio/_in.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/c/api/stdio/_in.md -------------------------------------------------------------------------------- /c/api/stdio/_out.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/c/api/stdio/_out.md -------------------------------------------------------------------------------- /c/glibc/_libpcap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/c/glibc/_libpcap.md -------------------------------------------------------------------------------- /c/glibc/_mknod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/c/glibc/_mknod.md -------------------------------------------------------------------------------- /c/glibc/_msgget.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/c/glibc/_msgget.md -------------------------------------------------------------------------------- /c/glibc/_shmget.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/c/glibc/_shmget.md -------------------------------------------------------------------------------- /c/preprocessor/_define.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/c/preprocessor/_define.md -------------------------------------------------------------------------------- /c/preprocessor/_if.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/c/preprocessor/_if.md -------------------------------------------------------------------------------- /c/preprocessor/_ifdef.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/c/preprocessor/_ifdef.md -------------------------------------------------------------------------------- /c/preprocessor/_include.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/c/preprocessor/_include.md -------------------------------------------------------------------------------- /c/preprocessor/_line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/c/preprocessor/_line.md -------------------------------------------------------------------------------- /c/pthread/_cancel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/c/pthread/_cancel.md -------------------------------------------------------------------------------- /c/pthread/_cleanup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/c/pthread/_cleanup.md -------------------------------------------------------------------------------- /c/pthread/_cond.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/c/pthread/_cond.md -------------------------------------------------------------------------------- /c/pthread/_create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/c/pthread/_create.md -------------------------------------------------------------------------------- /c/pthread/_detach.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/c/pthread/_detach.md -------------------------------------------------------------------------------- /c/pthread/_exit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/c/pthread/_exit.md -------------------------------------------------------------------------------- /c/pthread/_id.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/c/pthread/_id.md -------------------------------------------------------------------------------- /c/pthread/_join.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/c/pthread/_join.md -------------------------------------------------------------------------------- /c/pthread/_mutex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/c/pthread/_mutex.md -------------------------------------------------------------------------------- /c/pthread/_once.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/c/pthread/_once.md -------------------------------------------------------------------------------- /c/pthread/_sig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/c/pthread/_sig.md -------------------------------------------------------------------------------- /c/storage_class/_auto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/c/storage_class/_auto.md -------------------------------------------------------------------------------- /c/storage_class/_extern.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/c/storage_class/_extern.md -------------------------------------------------------------------------------- /c/storage_class/_register.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/c/storage_class/_register.md -------------------------------------------------------------------------------- /c/storage_class/_static.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/c/storage_class/_static.md -------------------------------------------------------------------------------- /c/tools/_binutils.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/c/tools/_binutils.md -------------------------------------------------------------------------------- /c/tools/_c-ares.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/c/tools/_c-ares.md -------------------------------------------------------------------------------- /c/tools/_ctags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/c/tools/_ctags.md -------------------------------------------------------------------------------- /c/tools/_gcrypt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/c/tools/_gcrypt.md -------------------------------------------------------------------------------- /c/tools/_gperf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/c/tools/_gperf.md -------------------------------------------------------------------------------- /c/tools/_libanl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/c/tools/_libanl.md -------------------------------------------------------------------------------- /c/tools/_nghttp2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/c/tools/_nghttp2.md -------------------------------------------------------------------------------- /c/tools/_pkg-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/c/tools/_pkg-config.md -------------------------------------------------------------------------------- /c/type/__overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/c/type/__overview.md -------------------------------------------------------------------------------- /c/type/__type_declaration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/c/type/__type_declaration.md -------------------------------------------------------------------------------- /c/type/_const.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/c/type/_const.md -------------------------------------------------------------------------------- /c/type/_enum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/c/type/_enum.md -------------------------------------------------------------------------------- /c/type/_typedef.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/c/type/_typedef.md -------------------------------------------------------------------------------- /c/type/_volatile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/c/type/_volatile.md -------------------------------------------------------------------------------- /ci/_basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ci/_basics.md -------------------------------------------------------------------------------- /ci/_github_actions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ci/_github_actions.md -------------------------------------------------------------------------------- /ci/circleci/_basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ci/circleci/_basics.md -------------------------------------------------------------------------------- /ci/circleci/_checks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ci/circleci/_checks.md -------------------------------------------------------------------------------- /ci/circleci/_cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ci/circleci/_cli.md -------------------------------------------------------------------------------- /ci/circleci/_performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ci/circleci/_performance.md -------------------------------------------------------------------------------- /ci/circleci/_workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ci/circleci/_workflow.md -------------------------------------------------------------------------------- /computer/_abi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/computer/_abi.md -------------------------------------------------------------------------------- /computer/_bit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/computer/_bit.md -------------------------------------------------------------------------------- /computer/_blob.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/computer/_blob.md -------------------------------------------------------------------------------- /computer/_compiling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/computer/_compiling.md -------------------------------------------------------------------------------- /computer/_edge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/computer/_edge.md -------------------------------------------------------------------------------- /computer/_gc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/computer/_gc.md -------------------------------------------------------------------------------- /computer/_kernel_version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/computer/_kernel_version.md -------------------------------------------------------------------------------- /computer/_memory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/computer/_memory.md -------------------------------------------------------------------------------- /computer/_os.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/computer/_os.md -------------------------------------------------------------------------------- /computer/_systemcall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/computer/_systemcall.md -------------------------------------------------------------------------------- /computer/_virtualization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/computer/_virtualization.md -------------------------------------------------------------------------------- /computer/algorithm/_logic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/computer/algorithm/_logic.md -------------------------------------------------------------------------------- /computer/assembly/_syntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/computer/assembly/_syntax.md -------------------------------------------------------------------------------- /concurrency/__overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/concurrency/__overview.md -------------------------------------------------------------------------------- /concurrency/_actor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/concurrency/_actor.md -------------------------------------------------------------------------------- /concurrency/_linda.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/concurrency/_linda.md -------------------------------------------------------------------------------- /concurrency/_multitask.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/concurrency/_multitask.md -------------------------------------------------------------------------------- /cording/_heiv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/cording/_heiv.md -------------------------------------------------------------------------------- /cryptography/__overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/cryptography/__overview.md -------------------------------------------------------------------------------- /cryptography/_dh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/cryptography/_dh.md -------------------------------------------------------------------------------- /cryptography/_key.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/cryptography/_key.md -------------------------------------------------------------------------------- /cryptography/_randomize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/cryptography/_randomize.md -------------------------------------------------------------------------------- /cryptography/hashing/_md5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/cryptography/hashing/_md5.md -------------------------------------------------------------------------------- /db/__overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/db/__overview.md -------------------------------------------------------------------------------- /db/_acid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/db/_acid.md -------------------------------------------------------------------------------- /db/_cap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/db/_cap.md -------------------------------------------------------------------------------- /db/_cte.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/db/_cte.md -------------------------------------------------------------------------------- /db/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/db/_index.md -------------------------------------------------------------------------------- /db/_replication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/db/_replication.md -------------------------------------------------------------------------------- /db/_sharding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/db/_sharding.md -------------------------------------------------------------------------------- /db/postgresql/__overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/db/postgresql/__overview.md -------------------------------------------------------------------------------- /db/postgresql/_explain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/db/postgresql/_explain.md -------------------------------------------------------------------------------- /db/postgresql/_partition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/db/postgresql/_partition.md -------------------------------------------------------------------------------- /db/postgresql/_pg_restore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/db/postgresql/_pg_restore.md -------------------------------------------------------------------------------- /db/postgresql/_role.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/db/postgresql/_role.md -------------------------------------------------------------------------------- /db/postgresql/_table_size.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/db/postgresql/_table_size.md -------------------------------------------------------------------------------- /db/postgresql/_toast.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/db/postgresql/_toast.md -------------------------------------------------------------------------------- /db/postgresql/_type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/db/postgresql/_type.md -------------------------------------------------------------------------------- /db/postgresql/_vacuum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/db/postgresql/_vacuum.md -------------------------------------------------------------------------------- /db/postgresql/_vcs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/db/postgresql/_vcs.md -------------------------------------------------------------------------------- /db/postgresql/_view.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/db/postgresql/_view.md -------------------------------------------------------------------------------- /db/postgresql/_wal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/db/postgresql/_wal.md -------------------------------------------------------------------------------- /db/redis/__overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/db/redis/__overview.md -------------------------------------------------------------------------------- /db/redis/_cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/db/redis/_cli.md -------------------------------------------------------------------------------- /db/sql/_case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/db/sql/_case.md -------------------------------------------------------------------------------- /db/sql/_exists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/db/sql/_exists.md -------------------------------------------------------------------------------- /db/sql/_insert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/db/sql/_insert.md -------------------------------------------------------------------------------- /db/sql/_json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/db/sql/_json.md -------------------------------------------------------------------------------- /db/sql/_op.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/db/sql/_op.md -------------------------------------------------------------------------------- /db/sql/_set.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/db/sql/_set.md -------------------------------------------------------------------------------- /db/sql/_update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/db/sql/_update.md -------------------------------------------------------------------------------- /db/sql/_window.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/db/sql/_window.md -------------------------------------------------------------------------------- /docker/__overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/docker/__overview.md -------------------------------------------------------------------------------- /docker/_file_system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/docker/_file_system.md -------------------------------------------------------------------------------- /docker/_install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/docker/_install.md -------------------------------------------------------------------------------- /docker/_namespace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/docker/_namespace.md -------------------------------------------------------------------------------- /docker/_network.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/docker/_network.md -------------------------------------------------------------------------------- /docker/_rails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/docker/_rails.md -------------------------------------------------------------------------------- /docker/usage/__oneshot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/docker/usage/__oneshot.md -------------------------------------------------------------------------------- /docker/usage/__overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/docker/usage/__overview.md -------------------------------------------------------------------------------- /docker/usage/_cp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/docker/usage/_cp.md -------------------------------------------------------------------------------- /docker/usage/_network.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/docker/usage/_network.md -------------------------------------------------------------------------------- /docker/usage/_shell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/docker/usage/_shell.md -------------------------------------------------------------------------------- /docker/usage/compose/_yml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/docker/usage/compose/_yml.md -------------------------------------------------------------------------------- /docker/usage/mount/_bind.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/docker/usage/mount/_bind.md -------------------------------------------------------------------------------- /ebpf/__flow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ebpf/__flow.md -------------------------------------------------------------------------------- /ebpf/__overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ebpf/__overview.md -------------------------------------------------------------------------------- /ebpf/__vm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ebpf/__vm.md -------------------------------------------------------------------------------- /ebpf/_btf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ebpf/_btf.md -------------------------------------------------------------------------------- /ebpf/_core.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ebpf/_core.md -------------------------------------------------------------------------------- /ebpf/_syntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ebpf/_syntax.md -------------------------------------------------------------------------------- /ebpf/tools/_bcc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ebpf/tools/_bcc.md -------------------------------------------------------------------------------- /ebpf/tools/_bpfgen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ebpf/tools/_bpfgen.md -------------------------------------------------------------------------------- /ebpf/tools/_bpftrace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ebpf/tools/_bpftrace.md -------------------------------------------------------------------------------- /ebpf/tools/_bumblebee.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ebpf/tools/_bumblebee.md -------------------------------------------------------------------------------- /ebpf/tools/_libbpf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ebpf/tools/_libbpf.md -------------------------------------------------------------------------------- /elixir/_agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/elixir/_agent.md -------------------------------------------------------------------------------- /elixir/_basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/elixir/_basics.md -------------------------------------------------------------------------------- /elixir/_ex_unit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/elixir/_ex_unit.md -------------------------------------------------------------------------------- /elixir/_immutability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/elixir/_immutability.md -------------------------------------------------------------------------------- /elixir/_mix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/elixir/_mix.md -------------------------------------------------------------------------------- /elixir/_node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/elixir/_node.md -------------------------------------------------------------------------------- /elixir/_otp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/elixir/_otp.md -------------------------------------------------------------------------------- /elixir/_pattern_match.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/elixir/_pattern_match.md -------------------------------------------------------------------------------- /elixir/_process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/elixir/_process.md -------------------------------------------------------------------------------- /elixir/_string.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/elixir/_string.md -------------------------------------------------------------------------------- /elixir/_syntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/elixir/_syntax.md -------------------------------------------------------------------------------- /elixir/_task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/elixir/_task.md -------------------------------------------------------------------------------- /elixir/_type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/elixir/_type.md -------------------------------------------------------------------------------- /english/_00_idiom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/english/_00_idiom.md -------------------------------------------------------------------------------- /english/_01_preposition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/english/_01_preposition.md -------------------------------------------------------------------------------- /english/_02_verb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/english/_02_verb.md -------------------------------------------------------------------------------- /english/_03_adjective.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/english/_03_adjective.md -------------------------------------------------------------------------------- /english/_04_adverb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/english/_04_adverb.md -------------------------------------------------------------------------------- /english/_05_auxiliary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/english/_05_auxiliary.md -------------------------------------------------------------------------------- /file_format/_geojson.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/file_format/_geojson.md -------------------------------------------------------------------------------- /file_format/_heif.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/file_format/_heif.md -------------------------------------------------------------------------------- /file_format/_webp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/file_format/_webp.md -------------------------------------------------------------------------------- /frontend/_eco_system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/frontend/_eco_system.md -------------------------------------------------------------------------------- /frontend/_ssr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/frontend/_ssr.md -------------------------------------------------------------------------------- /frontend/_webrtc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/frontend/_webrtc.md -------------------------------------------------------------------------------- /frontend/_websocket.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/frontend/_websocket.md -------------------------------------------------------------------------------- /frontend/build/_esbuild.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/frontend/build/_esbuild.md -------------------------------------------------------------------------------- /frontend/build/_importing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/frontend/build/_importing.md -------------------------------------------------------------------------------- /frontend/build/_importmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/frontend/build/_importmap.md -------------------------------------------------------------------------------- /frontend/build/_webpack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/frontend/build/_webpack.md -------------------------------------------------------------------------------- /frontend/javascript/_type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/frontend/javascript/_type.md -------------------------------------------------------------------------------- /frontend/package/_dayjs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/frontend/package/_dayjs.md -------------------------------------------------------------------------------- /frontend/package/_eslint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/frontend/package/_eslint.md -------------------------------------------------------------------------------- /frontend/package/_husky.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/frontend/package/_husky.md -------------------------------------------------------------------------------- /frontend/package/_lodash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/frontend/package/_lodash.md -------------------------------------------------------------------------------- /frontend/typescript/_as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/frontend/typescript/_as.md -------------------------------------------------------------------------------- /git/__gitconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/git/__gitconfig.md -------------------------------------------------------------------------------- /git/__gitignore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/git/__gitignore.md -------------------------------------------------------------------------------- /git/_add.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/git/_add.md -------------------------------------------------------------------------------- /git/_bisect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/git/_bisect.md -------------------------------------------------------------------------------- /git/_checkout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/git/_checkout.md -------------------------------------------------------------------------------- /git/_cherry-pick.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/git/_cherry-pick.md -------------------------------------------------------------------------------- /git/_diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/git/_diff.md -------------------------------------------------------------------------------- /git/_log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/git/_log.md -------------------------------------------------------------------------------- /git/_option.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/git/_option.md -------------------------------------------------------------------------------- /git/_push.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/git/_push.md -------------------------------------------------------------------------------- /git/_rebase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/git/_rebase.md -------------------------------------------------------------------------------- /git/_rm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/git/_rm.md -------------------------------------------------------------------------------- /git/_submodule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/git/_submodule.md -------------------------------------------------------------------------------- /git/_tag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/git/_tag.md -------------------------------------------------------------------------------- /go/_101.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/go/_101.md -------------------------------------------------------------------------------- /graphql/_apollo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/graphql/_apollo.md -------------------------------------------------------------------------------- /graphql/_basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/graphql/_basics.md -------------------------------------------------------------------------------- /graphql/_query.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/graphql/_query.md -------------------------------------------------------------------------------- /graphql/_schema.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/graphql/_schema.md -------------------------------------------------------------------------------- /heroku/__overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/heroku/__overview.md -------------------------------------------------------------------------------- /heroku/_addons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/heroku/_addons.md -------------------------------------------------------------------------------- /heroku/_conf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/heroku/_conf.md -------------------------------------------------------------------------------- /heroku/_infrastructure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/heroku/_infrastructure.md -------------------------------------------------------------------------------- /heroku/_logdrain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/heroku/_logdrain.md -------------------------------------------------------------------------------- /heroku/ops/_git_ops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/heroku/ops/_git_ops.md -------------------------------------------------------------------------------- /heroku/ops/_memory_usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/heroku/ops/_memory_usage.md -------------------------------------------------------------------------------- /heroku/ops/_rollback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/heroku/ops/_rollback.md -------------------------------------------------------------------------------- /heroku/pg/_reset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/heroku/pg/_reset.md -------------------------------------------------------------------------------- /heroku/pg/_upgrade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/heroku/pg/_upgrade.md -------------------------------------------------------------------------------- /html/_basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/html/_basics.md -------------------------------------------------------------------------------- /html/_hls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/html/_hls.md -------------------------------------------------------------------------------- /html/_mpeg_dash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/html/_mpeg_dash.md -------------------------------------------------------------------------------- /http/_amp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/http/_amp.md -------------------------------------------------------------------------------- /http/_history.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/http/_history.md -------------------------------------------------------------------------------- /http/_method.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/http/_method.md -------------------------------------------------------------------------------- /http/_mime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/http/_mime.md -------------------------------------------------------------------------------- /http/_priority_control.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/http/_priority_control.md -------------------------------------------------------------------------------- /http/_semantic_web.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/http/_semantic_web.md -------------------------------------------------------------------------------- /http/_semantics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/http/_semantics.md -------------------------------------------------------------------------------- /http/_status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/http/_status.md -------------------------------------------------------------------------------- /http/_upgrading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/http/_upgrading.md -------------------------------------------------------------------------------- /http/_webhook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/http/_webhook.md -------------------------------------------------------------------------------- /http/authentications/_jwt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/http/authentications/_jwt.md -------------------------------------------------------------------------------- /http/cache/_cache_control.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/http/cache/_cache_control.md -------------------------------------------------------------------------------- /http/cache/_condition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/http/cache/_condition.md -------------------------------------------------------------------------------- /http/headers/_entity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/http/headers/_entity.md -------------------------------------------------------------------------------- /http/headers/_general.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/http/headers/_general.md -------------------------------------------------------------------------------- /http/headers/_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/http/headers/_request.md -------------------------------------------------------------------------------- /http/headers/_response.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/http/headers/_response.md -------------------------------------------------------------------------------- /http/headers/_retry_after.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/http/headers/_retry_after.md -------------------------------------------------------------------------------- /http/http1.x/_basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/http/http1.x/_basics.md -------------------------------------------------------------------------------- /http/http1.x/_chunk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/http/http1.x/_chunk.md -------------------------------------------------------------------------------- /http/http1.x/_keep_alive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/http/http1.x/_keep_alive.md -------------------------------------------------------------------------------- /http/http1.x/_pipeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/http/http1.x/_pipeline.md -------------------------------------------------------------------------------- /http/http1.x/_splite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/http/http1.x/_splite.md -------------------------------------------------------------------------------- /http/http2/__overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/http/http2/__overview.md -------------------------------------------------------------------------------- /http/http2/_error.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/http/http2/_error.md -------------------------------------------------------------------------------- /http/http2/_extension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/http/http2/_extension.md -------------------------------------------------------------------------------- /http/http2/_flow_control.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/http/http2/_flow_control.md -------------------------------------------------------------------------------- /http/http2/_preload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/http/http2/_preload.md -------------------------------------------------------------------------------- /http/http2/_priority.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/http/http2/_priority.md -------------------------------------------------------------------------------- /http/http2/_pseudo_header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/http/http2/_pseudo_header.md -------------------------------------------------------------------------------- /http/http2/_server_push.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/http/http2/_server_push.md -------------------------------------------------------------------------------- /http/http2/_spdy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/http/http2/_spdy.md -------------------------------------------------------------------------------- /http/http2/_web_push.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/http/http2/_web_push.md -------------------------------------------------------------------------------- /http/http3/_basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/http/http3/_basics.md -------------------------------------------------------------------------------- /http/http3/_extension.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/http/http3/_extension.md -------------------------------------------------------------------------------- /http/http3/_qpack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/http/http3/_qpack.md -------------------------------------------------------------------------------- /http/http3/_server_push.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/http/http3/_server_push.md -------------------------------------------------------------------------------- /http/http3/_util.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/http/http3/_util.md -------------------------------------------------------------------------------- /http/rpc/_grpc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/http/rpc/_grpc.md -------------------------------------------------------------------------------- /http/rpc/_rpc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/http/rpc/_rpc.md -------------------------------------------------------------------------------- /infrastructure/_hosting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/infrastructure/_hosting.md -------------------------------------------------------------------------------- /mruby/__mrubyc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/mruby/__mrubyc.md -------------------------------------------------------------------------------- /mruby/__overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/mruby/__overview.md -------------------------------------------------------------------------------- /mruby/_gc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/mruby/_gc.md -------------------------------------------------------------------------------- /mruby/build/__overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/mruby/build/__overview.md -------------------------------------------------------------------------------- /mruby/build/_build_config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/mruby/build/_build_config.md -------------------------------------------------------------------------------- /mruby/c/_mrb_state.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/mruby/c/_mrb_state.md -------------------------------------------------------------------------------- /mruby/c/_mrb_value.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/mruby/c/_mrb_value.md -------------------------------------------------------------------------------- /mruby/c/api/_array.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/mruby/c/api/_array.md -------------------------------------------------------------------------------- /mruby/c/api/_class.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/mruby/c/api/_class.md -------------------------------------------------------------------------------- /mruby/c/api/_const.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/mruby/c/api/_const.md -------------------------------------------------------------------------------- /mruby/c/api/_exception.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/mruby/c/api/_exception.md -------------------------------------------------------------------------------- /mruby/c/api/_hash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/mruby/c/api/_hash.md -------------------------------------------------------------------------------- /mruby/c/api/_memory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/mruby/c/api/_memory.md -------------------------------------------------------------------------------- /mruby/c/api/_numeric.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/mruby/c/api/_numeric.md -------------------------------------------------------------------------------- /mruby/c/api/_object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/mruby/c/api/_object.md -------------------------------------------------------------------------------- /mruby/c/api/_string.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/mruby/c/api/_string.md -------------------------------------------------------------------------------- /mruby/c/api/_value.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/mruby/c/api/_value.md -------------------------------------------------------------------------------- /mruby/exec/__overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/mruby/exec/__overview.md -------------------------------------------------------------------------------- /mruby/mgem/__basic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/mruby/mgem/__basic.md -------------------------------------------------------------------------------- /mruby/mgem/_mod_mruby.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/mruby/mgem/_mod_mruby.md -------------------------------------------------------------------------------- /network/__overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/__overview.md -------------------------------------------------------------------------------- /network/_l3switch_log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/_l3switch_log.md -------------------------------------------------------------------------------- /network/_loadbalancer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/_loadbalancer.md -------------------------------------------------------------------------------- /network/_ngn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/_ngn.md -------------------------------------------------------------------------------- /network/_packet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/_packet.md -------------------------------------------------------------------------------- /network/_pop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/_pop.md -------------------------------------------------------------------------------- /network/_tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/_tools.md -------------------------------------------------------------------------------- /network/docs/_rfc6555.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/docs/_rfc6555.md -------------------------------------------------------------------------------- /network/docs/_rfc6724.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/docs/_rfc6724.md -------------------------------------------------------------------------------- /network/docs/_rfc8305.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/docs/_rfc8305.md -------------------------------------------------------------------------------- /network/l2/__overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l2/__overview.md -------------------------------------------------------------------------------- /network/l2/_atm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l2/_atm.md -------------------------------------------------------------------------------- /network/l2/_dhcp_snooping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l2/_dhcp_snooping.md -------------------------------------------------------------------------------- /network/l2/_ipv6_ipoe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l2/_ipv6_ipoe.md -------------------------------------------------------------------------------- /network/l2/_ipv6_pppoe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l2/_ipv6_pppoe.md -------------------------------------------------------------------------------- /network/l2/_macaddress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l2/_macaddress.md -------------------------------------------------------------------------------- /network/l2/_openflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l2/_openflow.md -------------------------------------------------------------------------------- /network/l2/_ppp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l2/_ppp.md -------------------------------------------------------------------------------- /network/l2/_pppoe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l2/_pppoe.md -------------------------------------------------------------------------------- /network/l2/_vlan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l2/_vlan.md -------------------------------------------------------------------------------- /network/l2/arp/__overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l2/arp/__overview.md -------------------------------------------------------------------------------- /network/l2/arp/_format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l2/arp/_format.md -------------------------------------------------------------------------------- /network/l2/arp/_garp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l2/arp/_garp.md -------------------------------------------------------------------------------- /network/l2/arp/_proxy_arp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l2/arp/_proxy_arp.md -------------------------------------------------------------------------------- /network/l2/arp/_rarp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l2/arp/_rarp.md -------------------------------------------------------------------------------- /network/l2/ethernet/_fcs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l2/ethernet/_fcs.md -------------------------------------------------------------------------------- /network/l2/ethernet/_kind.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l2/ethernet/_kind.md -------------------------------------------------------------------------------- /network/l2/ethernet/_mtu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l2/ethernet/_mtu.md -------------------------------------------------------------------------------- /network/l2/wireless/_wifi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l2/wireless/_wifi.md -------------------------------------------------------------------------------- /network/l3/_icmp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l3/_icmp.md -------------------------------------------------------------------------------- /network/l3/_icmpv6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l3/_icmpv6.md -------------------------------------------------------------------------------- /network/l3/_igmp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l3/_igmp.md -------------------------------------------------------------------------------- /network/l3/_mobileip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l3/_mobileip.md -------------------------------------------------------------------------------- /network/l3/dhcp/_spoofing.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /network/l3/dhcpv6/_format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l3/dhcpv6/_format.md -------------------------------------------------------------------------------- /network/l3/dhcpv6/_type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l3/dhcpv6/_type.md -------------------------------------------------------------------------------- /network/l3/ip/__overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l3/ip/__overview.md -------------------------------------------------------------------------------- /network/l3/ip/_ipsec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l3/ip/_ipsec.md -------------------------------------------------------------------------------- /network/l3/ip/_qos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l3/ip/_qos.md -------------------------------------------------------------------------------- /network/l3/ip/_socket_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l3/ip/_socket_api.md -------------------------------------------------------------------------------- /network/l3/ip/_tunneling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l3/ip/_tunneling.md -------------------------------------------------------------------------------- /network/l3/ip/_vrrp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l3/ip/_vrrp.md -------------------------------------------------------------------------------- /network/l3/ip/nat/_cgn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l3/ip/nat/_cgn.md -------------------------------------------------------------------------------- /network/l3/ip/nat/_napt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l3/ip/nat/_napt.md -------------------------------------------------------------------------------- /network/l3/ip/nat/_type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l3/ip/nat/_type.md -------------------------------------------------------------------------------- /network/l4/__protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l4/__protocol.md -------------------------------------------------------------------------------- /network/l4/_dccp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l4/_dccp.md -------------------------------------------------------------------------------- /network/l4/_mptcp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l4/_mptcp.md -------------------------------------------------------------------------------- /network/l4/_port.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l4/_port.md -------------------------------------------------------------------------------- /network/l4/_sctp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l4/_sctp.md -------------------------------------------------------------------------------- /network/l4/_socks_proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l4/_socks_proxy.md -------------------------------------------------------------------------------- /network/l4/_udp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l4/_udp.md -------------------------------------------------------------------------------- /network/l4/quic/_basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l4/quic/_basics.md -------------------------------------------------------------------------------- /network/l4/quic/_qlog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l4/quic/_qlog.md -------------------------------------------------------------------------------- /network/l4/tcp/__overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l4/tcp/__overview.md -------------------------------------------------------------------------------- /network/l4/tcp/_endpoint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l4/tcp/_endpoint.md -------------------------------------------------------------------------------- /network/l4/tcp/_state.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l4/tcp/_state.md -------------------------------------------------------------------------------- /network/l7/_cdn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l7/_cdn.md -------------------------------------------------------------------------------- /network/l7/_http_proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l7/_http_proxy.md -------------------------------------------------------------------------------- /network/l7/_ldap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l7/_ldap.md -------------------------------------------------------------------------------- /network/l7/_mdns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l7/_mdns.md -------------------------------------------------------------------------------- /network/l7/_mime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l7/_mime.md -------------------------------------------------------------------------------- /network/l7/_ntp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l7/_ntp.md -------------------------------------------------------------------------------- /network/l7/_rtp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l7/_rtp.md -------------------------------------------------------------------------------- /network/l7/_sip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l7/_sip.md -------------------------------------------------------------------------------- /network/l7/_snmp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l7/_snmp.md -------------------------------------------------------------------------------- /network/l7/_ssh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l7/_ssh.md -------------------------------------------------------------------------------- /network/l7/dns/__overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l7/dns/__overview.md -------------------------------------------------------------------------------- /network/l7/dns/_ddr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l7/dns/_ddr.md -------------------------------------------------------------------------------- /network/l7/dns/_edns0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l7/dns/_edns0.md -------------------------------------------------------------------------------- /network/l7/dns/_filtering.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l7/dns/_filtering.md -------------------------------------------------------------------------------- /network/l7/dns/_revolver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l7/dns/_revolver.md -------------------------------------------------------------------------------- /network/l7/email/_basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l7/email/_basics.md -------------------------------------------------------------------------------- /network/l7/email/_imap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l7/email/_imap.md -------------------------------------------------------------------------------- /network/l7/email/_pop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l7/email/_pop.md -------------------------------------------------------------------------------- /network/l7/email/_smtp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l7/email/_smtp.md -------------------------------------------------------------------------------- /network/l7/tls/1.2/_auth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l7/tls/1.2/_auth.md -------------------------------------------------------------------------------- /network/l7/tls/1.3/_key.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l7/tls/1.3/_key.md -------------------------------------------------------------------------------- /network/l7/tls/__overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l7/tls/__overview.md -------------------------------------------------------------------------------- /network/l7/tls/_alpn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l7/tls/_alpn.md -------------------------------------------------------------------------------- /network/l7/www/__overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l7/www/__overview.md -------------------------------------------------------------------------------- /network/l7/www/_did.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l7/www/_did.md -------------------------------------------------------------------------------- /network/l7/www/_openapi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l7/www/_openapi.md -------------------------------------------------------------------------------- /network/l7/www/_rest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/network/l7/www/_rest.md -------------------------------------------------------------------------------- /nginx/__overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/nginx/__overview.md -------------------------------------------------------------------------------- /nginx/_installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/nginx/_installation.md -------------------------------------------------------------------------------- /nginx/_modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/nginx/_modules.md -------------------------------------------------------------------------------- /nginx/_utils.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/nginx/_utils.md -------------------------------------------------------------------------------- /nginx/_vertual_host.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/nginx/_vertual_host.md -------------------------------------------------------------------------------- /nginx/conf/_basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/nginx/conf/_basics.md -------------------------------------------------------------------------------- /nginx/conf/_context_event.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/nginx/conf/_context_event.md -------------------------------------------------------------------------------- /nginx/conf/_context_http.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/nginx/conf/_context_http.md -------------------------------------------------------------------------------- /nginx/conf/_context_main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/nginx/conf/_context_main.md -------------------------------------------------------------------------------- /nginx/conf/_variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/nginx/conf/_variables.md -------------------------------------------------------------------------------- /nginx/conf/cases/_cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/nginx/conf/cases/_cache.md -------------------------------------------------------------------------------- /patterns/oop/__overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/patterns/oop/__overview.md -------------------------------------------------------------------------------- /patterns/oop/_adapter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/patterns/oop/_adapter.md -------------------------------------------------------------------------------- /patterns/oop/_bridge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/patterns/oop/_bridge.md -------------------------------------------------------------------------------- /patterns/oop/_decorator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/patterns/oop/_decorator.md -------------------------------------------------------------------------------- /patterns/oop/_facade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/patterns/oop/_facade.md -------------------------------------------------------------------------------- /patterns/oop/_object_pool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/patterns/oop/_object_pool.md -------------------------------------------------------------------------------- /patterns/oop/_observer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/patterns/oop/_observer.md -------------------------------------------------------------------------------- /patterns/oop/_singleton.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/patterns/oop/_singleton.md -------------------------------------------------------------------------------- /patterns/oop/_strategy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/patterns/oop/_strategy.md -------------------------------------------------------------------------------- /performance/__overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/performance/__overview.md -------------------------------------------------------------------------------- /performance/_cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/performance/_cache.md -------------------------------------------------------------------------------- /performance/_db.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/performance/_db.md -------------------------------------------------------------------------------- /performance/_load_testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/performance/_load_testing.md -------------------------------------------------------------------------------- /performance/_web.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/performance/_web.md -------------------------------------------------------------------------------- /rails/_action_text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/rails/_action_text.md -------------------------------------------------------------------------------- /rails/_cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/rails/_cache.md -------------------------------------------------------------------------------- /rails/_date_helper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/rails/_date_helper.md -------------------------------------------------------------------------------- /rails/_i18n.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/rails/_i18n.md -------------------------------------------------------------------------------- /rails/_resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/rails/_resources.md -------------------------------------------------------------------------------- /rails/_runner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/rails/_runner.md -------------------------------------------------------------------------------- /rails/_security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/rails/_security.md -------------------------------------------------------------------------------- /rails/_tips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/rails/_tips.md -------------------------------------------------------------------------------- /rails/app/jobs/_sidekiq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/rails/app/jobs/_sidekiq.md -------------------------------------------------------------------------------- /rails/app/mailers/_config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/rails/app/mailers/_config.md -------------------------------------------------------------------------------- /rails/app/models/_postgis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/rails/app/models/_postgis.md -------------------------------------------------------------------------------- /rails/app/models/_tables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/rails/app/models/_tables.md -------------------------------------------------------------------------------- /rails/app/models/_type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/rails/app/models/_type.md -------------------------------------------------------------------------------- /rails/app/models/_view.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/rails/app/models/_view.md -------------------------------------------------------------------------------- /rails/bin/_note.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/rails/bin/_note.md -------------------------------------------------------------------------------- /rails/bin/_setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/rails/bin/_setup.md -------------------------------------------------------------------------------- /rails/config/__setting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/rails/config/__setting.md -------------------------------------------------------------------------------- /rails/config/_credentials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/rails/config/_credentials.md -------------------------------------------------------------------------------- /rails/config/_locales.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/rails/config/_locales.md -------------------------------------------------------------------------------- /rails/config/_routes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/rails/config/_routes.md -------------------------------------------------------------------------------- /rails/config/_x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/rails/config/_x.md -------------------------------------------------------------------------------- /rails/frontend/_propshaft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/rails/frontend/_propshaft.md -------------------------------------------------------------------------------- /rails/frontend/_stimilus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/rails/frontend/_stimilus.md -------------------------------------------------------------------------------- /rails/frontend/_strada.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/rails/frontend/_strada.md -------------------------------------------------------------------------------- /react/__overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/react/__overview.md -------------------------------------------------------------------------------- /react/hooks/__custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/react/hooks/__custom.md -------------------------------------------------------------------------------- /react/hooks/_react_redux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/react/hooks/_react_redux.md -------------------------------------------------------------------------------- /react/hooks/_use_callback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/react/hooks/_use_callback.md -------------------------------------------------------------------------------- /react/hooks/_use_context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/react/hooks/_use_context.md -------------------------------------------------------------------------------- /react/hooks/_use_effect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/react/hooks/_use_effect.md -------------------------------------------------------------------------------- /react/hooks/_use_memo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/react/hooks/_use_memo.md -------------------------------------------------------------------------------- /react/hooks/_use_reducer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/react/hooks/_use_reducer.md -------------------------------------------------------------------------------- /react/hooks/_use_ref.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/react/hooks/_use_ref.md -------------------------------------------------------------------------------- /react/hooks/_use_state.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/react/hooks/_use_state.md -------------------------------------------------------------------------------- /react/hooks/_use_swr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/react/hooks/_use_swr.md -------------------------------------------------------------------------------- /ruby/__installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/__installation.md -------------------------------------------------------------------------------- /ruby/__updating.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/__updating.md -------------------------------------------------------------------------------- /ruby/_command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/_command.md -------------------------------------------------------------------------------- /ruby/_constants.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/_constants.md -------------------------------------------------------------------------------- /ruby/_drb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/_drb.md -------------------------------------------------------------------------------- /ruby/_dump.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/_dump.md -------------------------------------------------------------------------------- /ruby/_forwardable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/_forwardable.md -------------------------------------------------------------------------------- /ruby/_json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/_json.md -------------------------------------------------------------------------------- /ruby/_lexical_scope.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/_lexical_scope.md -------------------------------------------------------------------------------- /ruby/_marshal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/_marshal.md -------------------------------------------------------------------------------- /ruby/_object_space.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/_object_space.md -------------------------------------------------------------------------------- /ruby/_pack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/_pack.md -------------------------------------------------------------------------------- /ruby/_rake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/_rake.md -------------------------------------------------------------------------------- /ruby/_ruby2_keywords.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/_ruby2_keywords.md -------------------------------------------------------------------------------- /ruby/_struct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/_struct.md -------------------------------------------------------------------------------- /ruby/_tempfile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/_tempfile.md -------------------------------------------------------------------------------- /ruby/_type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/_type.md -------------------------------------------------------------------------------- /ruby/bundler/__overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/bundler/__overview.md -------------------------------------------------------------------------------- /ruby/bundler/_command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/bundler/_command.md -------------------------------------------------------------------------------- /ruby/bundler/_env.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/bundler/_env.md -------------------------------------------------------------------------------- /ruby/concurrency/_fiber.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/concurrency/_fiber.md -------------------------------------------------------------------------------- /ruby/concurrency/_process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/concurrency/_process.md -------------------------------------------------------------------------------- /ruby/concurrency/_ractor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/concurrency/_ractor.md -------------------------------------------------------------------------------- /ruby/dev/_build-ruby.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/dev/_build-ruby.md -------------------------------------------------------------------------------- /ruby/dev/_build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/dev/_build.md -------------------------------------------------------------------------------- /ruby/dev/_man.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/dev/_man.md -------------------------------------------------------------------------------- /ruby/dev/_rubyci.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/dev/_rubyci.md -------------------------------------------------------------------------------- /ruby/dev/_testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/dev/_testing.md -------------------------------------------------------------------------------- /ruby/dev/_will.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/dev/_will.md -------------------------------------------------------------------------------- /ruby/dev/_win.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/dev/_win.md -------------------------------------------------------------------------------- /ruby/dev/issues/econnreset/go.mod: -------------------------------------------------------------------------------- 1 | module example.com/hev2test 2 | 3 | go 1.24.2 4 | -------------------------------------------------------------------------------- /ruby/dev/net/memo/_proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/dev/net/memo/_proxy.md -------------------------------------------------------------------------------- /ruby/dev/net/others/curb.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/dev/net/others/curb.rb -------------------------------------------------------------------------------- /ruby/dev/net/others/excon.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/dev/net/others/excon.rb -------------------------------------------------------------------------------- /ruby/dev/net/others/httpi.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/dev/net/others/httpi.rb -------------------------------------------------------------------------------- /ruby/dev/net/others/httpx.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/dev/net/others/httpx.rb -------------------------------------------------------------------------------- /ruby/dev/net/sample.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/dev/net/sample.rb -------------------------------------------------------------------------------- /ruby/dev/timeout/_diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/dev/timeout/_diff.md -------------------------------------------------------------------------------- /ruby/dev/timeout/_memo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/dev/timeout/_memo.md -------------------------------------------------------------------------------- /ruby/internal/__overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/internal/__overview.md -------------------------------------------------------------------------------- /ruby/internal/_definition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/internal/_definition.md -------------------------------------------------------------------------------- /ruby/internal/_gc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/internal/_gc.md -------------------------------------------------------------------------------- /ruby/internal/_mri.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/internal/_mri.md -------------------------------------------------------------------------------- /ruby/internal/_st_table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/internal/_st_table.md -------------------------------------------------------------------------------- /ruby/internal/thread/_gvl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/internal/thread/_gvl.md -------------------------------------------------------------------------------- /ruby/rbenv/__overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/rbenv/__overview.md -------------------------------------------------------------------------------- /ruby/rbenv/_how_works.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/rbenv/_how_works.md -------------------------------------------------------------------------------- /ruby/rbenv/_ruby-build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/rbenv/_ruby-build.md -------------------------------------------------------------------------------- /ruby/rbenv/_usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/rbenv/_usage.md -------------------------------------------------------------------------------- /ruby/resolv/__overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/resolv/__overview.md -------------------------------------------------------------------------------- /ruby/rubygems/__binstub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/rubygems/__binstub.md -------------------------------------------------------------------------------- /ruby/rubygems/__gemfile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/rubygems/__gemfile.md -------------------------------------------------------------------------------- /ruby/rubygems/__new_gem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/rubygems/__new_gem.md -------------------------------------------------------------------------------- /ruby/rubygems/_bindata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/rubygems/_bindata.md -------------------------------------------------------------------------------- /ruby/rubygems/_clockwork.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/rubygems/_clockwork.md -------------------------------------------------------------------------------- /ruby/rubygems/_coverall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/rubygems/_coverall.md -------------------------------------------------------------------------------- /ruby/rubygems/_debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/rubygems/_debug.md -------------------------------------------------------------------------------- /ruby/rubygems/_foreman.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/rubygems/_foreman.md -------------------------------------------------------------------------------- /ruby/rubygems/_jbuilder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/rubygems/_jbuilder.md -------------------------------------------------------------------------------- /ruby/rubygems/_localhost.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/rubygems/_localhost.md -------------------------------------------------------------------------------- /ruby/rubygems/_middleman.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/rubygems/_middleman.md -------------------------------------------------------------------------------- /ruby/rubygems/_paranoia.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/rubygems/_paranoia.md -------------------------------------------------------------------------------- /ruby/rubygems/_pitchfork.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/rubygems/_pitchfork.md -------------------------------------------------------------------------------- /ruby/rubygems/_psych.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/rubygems/_psych.md -------------------------------------------------------------------------------- /ruby/rubygems/_rails-ujs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/rubygems/_rails-ujs.md -------------------------------------------------------------------------------- /ruby/rubygems/_rake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/rubygems/_rake.md -------------------------------------------------------------------------------- /ruby/rubygems/_rubocop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/rubygems/_rubocop.md -------------------------------------------------------------------------------- /ruby/rubygems/_searchkick.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/rubygems/_searchkick.md -------------------------------------------------------------------------------- /ruby/rubygems/_sidekiq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/rubygems/_sidekiq.md -------------------------------------------------------------------------------- /ruby/rubygems/_sprockets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/rubygems/_sprockets.md -------------------------------------------------------------------------------- /ruby/rubygems/_tilt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/rubygems/_tilt.md -------------------------------------------------------------------------------- /ruby/rubygems/_vcr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/rubygems/_vcr.md -------------------------------------------------------------------------------- /ruby/rubygems/_webdrivers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/rubygems/_webdrivers.md -------------------------------------------------------------------------------- /ruby/rubygems/_webmock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/rubygems/_webmock.md -------------------------------------------------------------------------------- /ruby/rubygems/_zeitwerk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/rubygems/_zeitwerk.md -------------------------------------------------------------------------------- /ruby/rubygems/rack/_spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/rubygems/rack/_spec.md -------------------------------------------------------------------------------- /ruby/sockets/_arch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/sockets/_arch.md -------------------------------------------------------------------------------- /ruby/sockets/_basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/sockets/_basics.md -------------------------------------------------------------------------------- /ruby/sockets/_io.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/sockets/_io.md -------------------------------------------------------------------------------- /ruby/sockets/_socket.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/sockets/_socket.md -------------------------------------------------------------------------------- /ruby/sockets/_tcp_server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/sockets/_tcp_server.md -------------------------------------------------------------------------------- /ruby/sockets/_tcp_socket.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/ruby/sockets/_tcp_socket.md -------------------------------------------------------------------------------- /sandbox/c/_/01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/_/01 -------------------------------------------------------------------------------- /sandbox/c/_/01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/_/01.c -------------------------------------------------------------------------------- /sandbox/c/_/02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/_/02 -------------------------------------------------------------------------------- /sandbox/c/_/02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/_/02.c -------------------------------------------------------------------------------- /sandbox/c/_/03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/_/03 -------------------------------------------------------------------------------- /sandbox/c/_/03.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/_/03.c -------------------------------------------------------------------------------- /sandbox/c/_/04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/_/04 -------------------------------------------------------------------------------- /sandbox/c/_/04.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/_/04.c -------------------------------------------------------------------------------- /sandbox/c/_/05: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/_/05 -------------------------------------------------------------------------------- /sandbox/c/_/05.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/_/05.c -------------------------------------------------------------------------------- /sandbox/c/_/06: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/_/06 -------------------------------------------------------------------------------- /sandbox/c/_/06.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/_/06.c -------------------------------------------------------------------------------- /sandbox/c/_/07: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/_/07 -------------------------------------------------------------------------------- /sandbox/c/_/07.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/_/07.c -------------------------------------------------------------------------------- /sandbox/c/_/08: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/_/08 -------------------------------------------------------------------------------- /sandbox/c/_/08.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/_/08.c -------------------------------------------------------------------------------- /sandbox/c/_/09: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/_/09 -------------------------------------------------------------------------------- /sandbox/c/_/09.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/_/09.c -------------------------------------------------------------------------------- /sandbox/c/_/10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/_/10 -------------------------------------------------------------------------------- /sandbox/c/_/10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/_/10.c -------------------------------------------------------------------------------- /sandbox/c/_/array: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/_/array -------------------------------------------------------------------------------- /sandbox/c/_/array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/_/array.c -------------------------------------------------------------------------------- /sandbox/c/_/malloc01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/_/malloc01 -------------------------------------------------------------------------------- /sandbox/c/_/malloc01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/_/malloc01.c -------------------------------------------------------------------------------- /sandbox/c/files/read/read: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/files/read/read -------------------------------------------------------------------------------- /sandbox/c/files/read/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/files/read/read.c -------------------------------------------------------------------------------- /sandbox/c/files/write/write: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/files/write/write -------------------------------------------------------------------------------- /sandbox/c/pointer/03/p229: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pointer/03/p229 -------------------------------------------------------------------------------- /sandbox/c/pointer/03/p229.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pointer/03/p229.c -------------------------------------------------------------------------------- /sandbox/c/pointer/03/p231: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pointer/03/p231 -------------------------------------------------------------------------------- /sandbox/c/pointer/03/p231.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pointer/03/p231.c -------------------------------------------------------------------------------- /sandbox/c/programming_class/0920: -------------------------------------------------------------------------------- 1 | Hello 2 | -------------------------------------------------------------------------------- /sandbox/c/programming_class/empty3-2.file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sandbox/c/programming_class/foo1: -------------------------------------------------------------------------------- 1 | Hello 2 | -------------------------------------------------------------------------------- /sandbox/c/programming_class/foo2: -------------------------------------------------------------------------------- 1 | Hello 2 | -------------------------------------------------------------------------------- /sandbox/c/programming_class/input3-1.txt: -------------------------------------------------------------------------------- 1 | Hello 2 | -------------------------------------------------------------------------------- /sandbox/c/pthreads/2-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/2-1 -------------------------------------------------------------------------------- /sandbox/c/pthreads/2-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/2-1.c -------------------------------------------------------------------------------- /sandbox/c/pthreads/2-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/2-3 -------------------------------------------------------------------------------- /sandbox/c/pthreads/2-3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/2-3.c -------------------------------------------------------------------------------- /sandbox/c/pthreads/2-5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/2-5 -------------------------------------------------------------------------------- /sandbox/c/pthreads/2-5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/2-5.c -------------------------------------------------------------------------------- /sandbox/c/pthreads/2-6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/2-6 -------------------------------------------------------------------------------- /sandbox/c/pthreads/2-6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/2-6.c -------------------------------------------------------------------------------- /sandbox/c/pthreads/2-7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/2-7 -------------------------------------------------------------------------------- /sandbox/c/pthreads/2-7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/2-7.c -------------------------------------------------------------------------------- /sandbox/c/pthreads/2-9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/2-9 -------------------------------------------------------------------------------- /sandbox/c/pthreads/2-9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/2-9.c -------------------------------------------------------------------------------- /sandbox/c/pthreads/3-10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/3-10 -------------------------------------------------------------------------------- /sandbox/c/pthreads/3-10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/3-10.c -------------------------------------------------------------------------------- /sandbox/c/pthreads/3-11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/3-11 -------------------------------------------------------------------------------- /sandbox/c/pthreads/3-11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/3-11.c -------------------------------------------------------------------------------- /sandbox/c/pthreads/3-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/3-2 -------------------------------------------------------------------------------- /sandbox/c/pthreads/3-2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/3-2.c -------------------------------------------------------------------------------- /sandbox/c/pthreads/3-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/3-3 -------------------------------------------------------------------------------- /sandbox/c/pthreads/3-3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/3-3.c -------------------------------------------------------------------------------- /sandbox/c/pthreads/3-4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/3-4 -------------------------------------------------------------------------------- /sandbox/c/pthreads/3-4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/3-4.c -------------------------------------------------------------------------------- /sandbox/c/pthreads/3-6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/3-6 -------------------------------------------------------------------------------- /sandbox/c/pthreads/3-6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/3-6.c -------------------------------------------------------------------------------- /sandbox/c/pthreads/3-9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/3-9 -------------------------------------------------------------------------------- /sandbox/c/pthreads/3-9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/3-9.c -------------------------------------------------------------------------------- /sandbox/c/pthreads/4-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/4-1 -------------------------------------------------------------------------------- /sandbox/c/pthreads/4-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/4-1.c -------------------------------------------------------------------------------- /sandbox/c/pthreads/4-10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/4-10 -------------------------------------------------------------------------------- /sandbox/c/pthreads/4-10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/4-10.c -------------------------------------------------------------------------------- /sandbox/c/pthreads/4-13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/4-13 -------------------------------------------------------------------------------- /sandbox/c/pthreads/4-13.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/4-13.c -------------------------------------------------------------------------------- /sandbox/c/pthreads/4-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/4-2 -------------------------------------------------------------------------------- /sandbox/c/pthreads/4-2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/4-2.c -------------------------------------------------------------------------------- /sandbox/c/pthreads/4-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/4-3 -------------------------------------------------------------------------------- /sandbox/c/pthreads/4-3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/4-3.c -------------------------------------------------------------------------------- /sandbox/c/pthreads/4-4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/4-4 -------------------------------------------------------------------------------- /sandbox/c/pthreads/4-4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/4-4.c -------------------------------------------------------------------------------- /sandbox/c/pthreads/4-6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/4-6 -------------------------------------------------------------------------------- /sandbox/c/pthreads/4-6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/4-6.c -------------------------------------------------------------------------------- /sandbox/c/pthreads/4-7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/4-7 -------------------------------------------------------------------------------- /sandbox/c/pthreads/4-7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/4-7.c -------------------------------------------------------------------------------- /sandbox/c/pthreads/4-8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/4-8 -------------------------------------------------------------------------------- /sandbox/c/pthreads/4-8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/4-8.c -------------------------------------------------------------------------------- /sandbox/c/pthreads/4-9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/4-9 -------------------------------------------------------------------------------- /sandbox/c/pthreads/4-9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/4-9.c -------------------------------------------------------------------------------- /sandbox/c/pthreads/5-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/5-1 -------------------------------------------------------------------------------- /sandbox/c/pthreads/5-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/5-1.c -------------------------------------------------------------------------------- /sandbox/c/pthreads/5-10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/5-10 -------------------------------------------------------------------------------- /sandbox/c/pthreads/5-10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/5-10.c -------------------------------------------------------------------------------- /sandbox/c/pthreads/5-11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/5-11 -------------------------------------------------------------------------------- /sandbox/c/pthreads/5-11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/5-11.c -------------------------------------------------------------------------------- /sandbox/c/pthreads/5-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/5-2 -------------------------------------------------------------------------------- /sandbox/c/pthreads/5-2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/5-2.c -------------------------------------------------------------------------------- /sandbox/c/pthreads/5-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/5-3 -------------------------------------------------------------------------------- /sandbox/c/pthreads/5-3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/5-3.c -------------------------------------------------------------------------------- /sandbox/c/pthreads/5-4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/5-4 -------------------------------------------------------------------------------- /sandbox/c/pthreads/5-4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/5-4.c -------------------------------------------------------------------------------- /sandbox/c/pthreads/5-5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/5-5 -------------------------------------------------------------------------------- /sandbox/c/pthreads/5-5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/5-5.c -------------------------------------------------------------------------------- /sandbox/c/pthreads/5-9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/5-9 -------------------------------------------------------------------------------- /sandbox/c/pthreads/5-9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/5-9.c -------------------------------------------------------------------------------- /sandbox/c/pthreads/6-1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/6-1.c -------------------------------------------------------------------------------- /sandbox/c/pthreads/6-1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/6-1.h -------------------------------------------------------------------------------- /sandbox/c/pthreads/6-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/6-3 -------------------------------------------------------------------------------- /sandbox/c/pthreads/6-3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/6-3.c -------------------------------------------------------------------------------- /sandbox/c/pthreads/6-4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/6-4 -------------------------------------------------------------------------------- /sandbox/c/pthreads/6-4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/6-4.c -------------------------------------------------------------------------------- /sandbox/c/pthreads/nest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/nest -------------------------------------------------------------------------------- /sandbox/c/pthreads/nest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/nest.c -------------------------------------------------------------------------------- /sandbox/c/pthreads/postal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/postal -------------------------------------------------------------------------------- /sandbox/c/pthreads/postal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/pthreads/postal.c -------------------------------------------------------------------------------- /sandbox/c/socket/accept: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/socket/accept -------------------------------------------------------------------------------- /sandbox/c/socket/accept.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/socket/accept.c -------------------------------------------------------------------------------- /sandbox/c/socket/bind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/socket/bind -------------------------------------------------------------------------------- /sandbox/c/socket/bind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/socket/bind.c -------------------------------------------------------------------------------- /sandbox/c/socket/getaddinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/socket/getaddinfo -------------------------------------------------------------------------------- /sandbox/c/socket/listen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/socket/listen -------------------------------------------------------------------------------- /sandbox/c/socket/listen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/socket/listen.c -------------------------------------------------------------------------------- /sandbox/c/socket/mcast-recv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/socket/mcast-recv -------------------------------------------------------------------------------- /sandbox/c/socket/nat-a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/socket/nat-a -------------------------------------------------------------------------------- /sandbox/c/socket/nat-a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/socket/nat-a.c -------------------------------------------------------------------------------- /sandbox/c/socket/nat-c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/socket/nat-c -------------------------------------------------------------------------------- /sandbox/c/socket/nat-c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/socket/nat-c.c -------------------------------------------------------------------------------- /sandbox/c/socket/ping: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/socket/ping -------------------------------------------------------------------------------- /sandbox/c/socket/ping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/socket/ping.c -------------------------------------------------------------------------------- /sandbox/c/socket/server01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/socket/server01 -------------------------------------------------------------------------------- /sandbox/c/socket/server01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/socket/server01.c -------------------------------------------------------------------------------- /sandbox/c/socket/socket: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/socket/socket -------------------------------------------------------------------------------- /sandbox/c/socket/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/socket/socket.c -------------------------------------------------------------------------------- /sandbox/c/socket/tcp-cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/socket/tcp-cli -------------------------------------------------------------------------------- /sandbox/c/socket/tcp-cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/socket/tcp-cli.c -------------------------------------------------------------------------------- /sandbox/c/socket/tcp-cli6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/socket/tcp-cli6 -------------------------------------------------------------------------------- /sandbox/c/socket/tcp-cli6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/socket/tcp-cli6.c -------------------------------------------------------------------------------- /sandbox/c/socket/tcp-nobind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/socket/tcp-nobind -------------------------------------------------------------------------------- /sandbox/c/socket/tcp-serv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/socket/tcp-serv -------------------------------------------------------------------------------- /sandbox/c/socket/tcp-serv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/socket/tcp-serv.c -------------------------------------------------------------------------------- /sandbox/c/socket/tcp-serv6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/socket/tcp-serv6 -------------------------------------------------------------------------------- /sandbox/c/socket/tcp-serv6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/socket/tcp-serv6.c -------------------------------------------------------------------------------- /sandbox/c/socket/udp-recv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/socket/udp-recv -------------------------------------------------------------------------------- /sandbox/c/socket/udp-recv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/socket/udp-recv.c -------------------------------------------------------------------------------- /sandbox/c/socket/udp-reply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/socket/udp-reply -------------------------------------------------------------------------------- /sandbox/c/socket/udp-reply.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/socket/udp-reply.c -------------------------------------------------------------------------------- /sandbox/c/socket/udp-send: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/socket/udp-send -------------------------------------------------------------------------------- /sandbox/c/socket/udp-send.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/socket/udp-send.c -------------------------------------------------------------------------------- /sandbox/c/socket/v6-udp-recv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/socket/v6-udp-recv -------------------------------------------------------------------------------- /sandbox/c/socket/v6-udp-send: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/c/socket/v6-udp-send -------------------------------------------------------------------------------- /sandbox/concurrent_programming_with_linux_101/p039_file: -------------------------------------------------------------------------------- 1 | This is an example of dup(2) 2 | -------------------------------------------------------------------------------- /sandbox/concurrent_programming_with_linux_101/p041_oldfile: -------------------------------------------------------------------------------- 1 | This is a example of pipe(2) 2 | -------------------------------------------------------------------------------- /sandbox/druby/chat/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/druby/chat/server.rb -------------------------------------------------------------------------------- /sandbox/druby/rack/client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/druby/rack/client.rb -------------------------------------------------------------------------------- /sandbox/druby/rack/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/druby/rack/config.ru -------------------------------------------------------------------------------- /sandbox/elixir/programming_elixir/control/somefile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sandbox/elixir/programming_elixir/intro/hello.exs: -------------------------------------------------------------------------------- 1 | IO.puts "Hello, World!" 2 | -------------------------------------------------------------------------------- /sandbox/go/101/module/data/go.mod: -------------------------------------------------------------------------------- 1 | module data 2 | 3 | go 1.24.2 4 | -------------------------------------------------------------------------------- /sandbox/go/101/module/data/read.txt: -------------------------------------------------------------------------------- 1 | 10,30.2 2 | 15,25.6 3 | 20,20.3 4 | 25,21.8 5 | -------------------------------------------------------------------------------- /sandbox/go/101/module/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/go/101/module/go.mod -------------------------------------------------------------------------------- /sandbox/go/101/module/server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/go/101/module/server -------------------------------------------------------------------------------- /sandbox/go/101/server/server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/go/101/server/server -------------------------------------------------------------------------------- /sandbox/go/defer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/go/defer.go -------------------------------------------------------------------------------- /sandbox/go/hello.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/go/hello.go -------------------------------------------------------------------------------- /sandbox/go/learning_go/hello-world/go.mod: -------------------------------------------------------------------------------- 1 | module hello-world 2 | 3 | go 1.24.2 4 | -------------------------------------------------------------------------------- /sandbox/go/learning_go/is.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/go/learning_go/is.go -------------------------------------------------------------------------------- /sandbox/go/real_world_http_3nd/anyrequest/go.mod: -------------------------------------------------------------------------------- 1 | module anyrequest 2 | 3 | go 1.24.2 4 | -------------------------------------------------------------------------------- /sandbox/go/real_world_http_3nd/cookieget/go.mod: -------------------------------------------------------------------------------- 1 | module cookieget 2 | 3 | go 1.24.2 4 | -------------------------------------------------------------------------------- /sandbox/go/real_world_http_3nd/fileget/go.mod: -------------------------------------------------------------------------------- 1 | module fileget 2 | 3 | go 1.24.2 4 | -------------------------------------------------------------------------------- /sandbox/go/real_world_http_3nd/multipartpost/go.mod: -------------------------------------------------------------------------------- 1 | module multipartpost 2 | 3 | go 1.24.2 4 | -------------------------------------------------------------------------------- /sandbox/go/real_world_http_3nd/proxyget/go.mod: -------------------------------------------------------------------------------- 1 | module proxyget 2 | 3 | go 1.24.2 4 | -------------------------------------------------------------------------------- /sandbox/go/real_world_http_3nd/simpleget/go.mod: -------------------------------------------------------------------------------- 1 | module simpleget 2 | 3 | go 1.24.2 4 | -------------------------------------------------------------------------------- /sandbox/go/real_world_http_3nd/simplepost/go.mod: -------------------------------------------------------------------------------- 1 | module simplepost 2 | 3 | go 1.24.2 4 | -------------------------------------------------------------------------------- /sandbox/go/tcp_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/go/tcp_server.go -------------------------------------------------------------------------------- /sandbox/kor2024ws/app.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/kor2024ws/app.ru -------------------------------------------------------------------------------- /sandbox/kor2024ws/rails.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/kor2024ws/rails.ru -------------------------------------------------------------------------------- /sandbox/kor2024ws/server.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/kor2024ws/server.ru -------------------------------------------------------------------------------- /sandbox/kor2024ws/sinatra.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/kor2024ws/sinatra.ru -------------------------------------------------------------------------------- /sandbox/ping/cping: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/ping/cping -------------------------------------------------------------------------------- /sandbox/ping/ping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/ping/ping.c -------------------------------------------------------------------------------- /sandbox/ping/ping.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/ping/ping.rb -------------------------------------------------------------------------------- /sandbox/ruby/c_extension/foo/extconf.rb: -------------------------------------------------------------------------------- 1 | require 'mkmf' 2 | 3 | create_makefile('foo') 4 | -------------------------------------------------------------------------------- /sandbox/ruby/c_extension/foo/sample.rb: -------------------------------------------------------------------------------- 1 | require './foo' 2 | 3 | p Foo.new.len('abcde') 4 | -------------------------------------------------------------------------------- /sandbox/ruby/concurrency/counter/ractor_counter: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sandbox/ruby/concurrency/counter/serial_counter: -------------------------------------------------------------------------------- 1 | 10 -------------------------------------------------------------------------------- /sandbox/ruby/concurrency/counter/thread_counter: -------------------------------------------------------------------------------- 1 | 6 -------------------------------------------------------------------------------- /sandbox/ruby/debugger/foo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/ruby/debugger/foo.rb -------------------------------------------------------------------------------- /sandbox/ruby/design_pattern_multithread/01_single_threaded_execution/01_counter: -------------------------------------------------------------------------------- 1 | 8 -------------------------------------------------------------------------------- /sandbox/ruby/design_pattern_multithread/01_single_threaded_execution/02_counter: -------------------------------------------------------------------------------- 1 | 10 -------------------------------------------------------------------------------- /sandbox/ruby/design_pattern_multithread/04_balking/data.txt: -------------------------------------------------------------------------------- 1 | No. 16 -------------------------------------------------------------------------------- /sandbox/ruby/fiber/clock.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/ruby/fiber/clock.rb -------------------------------------------------------------------------------- /sandbox/ruby/keep_tokens.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/ruby/keep_tokens.rb -------------------------------------------------------------------------------- /sandbox/ruby/minruby/test_5.1.1.rb: -------------------------------------------------------------------------------- 1 | p 40 + 2 2 | -------------------------------------------------------------------------------- /sandbox/ruby/minruby/test_5.2.1.rb: -------------------------------------------------------------------------------- 1 | x = 1 2 | y = x + 2 3 | p y 4 | -------------------------------------------------------------------------------- /sandbox/ruby/minruby/test_7.1.rb: -------------------------------------------------------------------------------- 1 | p 1 2 | -------------------------------------------------------------------------------- /sandbox/ruby/minruby/test_7.2.rb: -------------------------------------------------------------------------------- 1 | p 1, 2 2 | -------------------------------------------------------------------------------- /sandbox/ruby/minruby/test_9.1.1.rb: -------------------------------------------------------------------------------- 1 | ary = [1, 2, 3, 6 * 7] 2 | p ary 3 | -------------------------------------------------------------------------------- /sandbox/ruby/minruby/test_9.1.2.rb: -------------------------------------------------------------------------------- 1 | ary = [1] 2 | p ary[0] 3 | -------------------------------------------------------------------------------- /sandbox/ruby/rack.3.0.0.beta.ru: -------------------------------------------------------------------------------- 1 | run do |env| 2 | [200, {}, ["Hello World"]] 3 | end 4 | -------------------------------------------------------------------------------- /sandbox/ruby/ractor/clock.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/ruby/ractor/clock.rb -------------------------------------------------------------------------------- /sandbox/ruby/ractor/excp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/ruby/ractor/excp.rb -------------------------------------------------------------------------------- /sandbox/ruby/ractor/fork.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/ruby/ractor/fork.rb -------------------------------------------------------------------------------- /sandbox/ruby/ractor/new.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/ruby/ractor/new.rb -------------------------------------------------------------------------------- /sandbox/ruby/ractor/pull.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/ruby/ractor/pull.rb -------------------------------------------------------------------------------- /sandbox/ruby/ractor/push.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/ruby/ractor/push.rb -------------------------------------------------------------------------------- /sandbox/ruby/ractor/raise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/ruby/ractor/raise.rb -------------------------------------------------------------------------------- /sandbox/ruby/rubymavm/vm.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/ruby/rubymavm/vm.rb -------------------------------------------------------------------------------- /sandbox/ruby/tcp_server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/ruby/tcp_server.rb -------------------------------------------------------------------------------- /sandbox/yacc/first/parse.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/yacc/first/parse.y -------------------------------------------------------------------------------- /sandbox/yacc/first/y.tab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/sandbox/yacc/first/y.tab.c -------------------------------------------------------------------------------- /security/__overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/security/__overview.md -------------------------------------------------------------------------------- /security/_tcpip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/security/_tcpip.md -------------------------------------------------------------------------------- /security/openssl/_build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/security/openssl/_build.md -------------------------------------------------------------------------------- /security/openssl/_ciphers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/security/openssl/_ciphers.md -------------------------------------------------------------------------------- /security/openssl/_csr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/security/openssl/_csr.md -------------------------------------------------------------------------------- /security/openssl/_gen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/security/openssl/_gen.md -------------------------------------------------------------------------------- /security/openssl/_sign.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/security/openssl/_sign.md -------------------------------------------------------------------------------- /security/openssl/_speed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/security/openssl/_speed.md -------------------------------------------------------------------------------- /security/pki/__overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/security/pki/__overview.md -------------------------------------------------------------------------------- /security/pki/_caa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/security/pki/_caa.md -------------------------------------------------------------------------------- /security/pki/_ct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/security/pki/_ct.md -------------------------------------------------------------------------------- /security/pki/_tack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/security/pki/_tack.md -------------------------------------------------------------------------------- /security/pki/pkc/_x509v3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/security/pki/pkc/_x509v3.md -------------------------------------------------------------------------------- /security/www/_cors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/security/www/_cors.md -------------------------------------------------------------------------------- /security/www/_csp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/security/www/_csp.md -------------------------------------------------------------------------------- /security/www/_hpkp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/security/www/_hpkp.md -------------------------------------------------------------------------------- /security/www/_hsts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/security/www/_hsts.md -------------------------------------------------------------------------------- /security/www/cases/_csrf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/security/www/cases/_csrf.md -------------------------------------------------------------------------------- /security/www/cases/_mitm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/security/www/cases/_mitm.md -------------------------------------------------------------------------------- /security/www/cases/_xss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/security/www/cases/_xss.md -------------------------------------------------------------------------------- /seo/_structured_data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/seo/_structured_data.md -------------------------------------------------------------------------------- /testing/_db.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/testing/_db.md -------------------------------------------------------------------------------- /testing/capybara/_driver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/testing/capybara/_driver.md -------------------------------------------------------------------------------- /testing/capybara/_print_html.md: -------------------------------------------------------------------------------- 1 | # 現在のページのHTMLを出力 2 | 3 | ``` 4 | print page.html 5 | ``` 6 | -------------------------------------------------------------------------------- /testing/rspec/_command.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/testing/rspec/_command.md -------------------------------------------------------------------------------- /testing/rspec/_csrf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/testing/rspec/_csrf.md -------------------------------------------------------------------------------- /testing/rspec/_matcher.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/testing/rspec/_matcher.md -------------------------------------------------------------------------------- /testing/rspec/_metadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/testing/rspec/_metadata.md -------------------------------------------------------------------------------- /testing/rspec/_stub_const.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/testing/rspec/_stub_const.md -------------------------------------------------------------------------------- /testing/rspec/_stub_mock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/testing/rspec/_stub_mock.md -------------------------------------------------------------------------------- /tips/_cgi_on_mac.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tips/_cgi_on_mac.md -------------------------------------------------------------------------------- /tips/_csv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tips/_csv.md -------------------------------------------------------------------------------- /tips/_errno.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tips/_errno.md -------------------------------------------------------------------------------- /tips/_pp_json_on_tempfile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tips/_pp_json_on_tempfile.md -------------------------------------------------------------------------------- /tips/_stepping_server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tips/_stepping_server.md -------------------------------------------------------------------------------- /tips/_too_slow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tips/_too_slow.md -------------------------------------------------------------------------------- /tips/_vim.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tips/_vim.md -------------------------------------------------------------------------------- /tips/ab/_bench_with_auth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tips/ab/_bench_with_auth.md -------------------------------------------------------------------------------- /tips/aws/_copy_from_s3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tips/aws/_copy_from_s3.md -------------------------------------------------------------------------------- /tips/c/_clock_gettime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tips/c/_clock_gettime.md -------------------------------------------------------------------------------- /tips/cmake/_error.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tips/cmake/_error.md -------------------------------------------------------------------------------- /tips/curl/_binary_output.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tips/curl/_binary_output.md -------------------------------------------------------------------------------- /tips/curl/_with_qlog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tips/curl/_with_qlog.md -------------------------------------------------------------------------------- /tips/git/_diff_text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tips/git/_diff_text.md -------------------------------------------------------------------------------- /tips/git/_follow_upstream.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tips/git/_follow_upstream.md -------------------------------------------------------------------------------- /tips/github/_cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tips/github/_cli.md -------------------------------------------------------------------------------- /tips/jest/_mock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tips/jest/_mock.md -------------------------------------------------------------------------------- /tips/ops/__update_ruby.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tips/ops/__update_ruby.md -------------------------------------------------------------------------------- /tips/ops/_memory_size.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tips/ops/_memory_size.md -------------------------------------------------------------------------------- /tips/rails/_blank_params.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tips/rails/_blank_params.md -------------------------------------------------------------------------------- /tips/rails/_cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tips/rails/_cache.md -------------------------------------------------------------------------------- /tips/rails/_loading_rails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tips/rails/_loading_rails.md -------------------------------------------------------------------------------- /tips/rails/_session.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tips/rails/_session.md -------------------------------------------------------------------------------- /tips/rails/_url_helper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tips/rails/_url_helper.md -------------------------------------------------------------------------------- /tips/rails/bin/_setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tips/rails/bin/_setup.md -------------------------------------------------------------------------------- /tips/redis/_misconf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tips/redis/_misconf.md -------------------------------------------------------------------------------- /tips/ruby/_ast_in_irb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tips/ruby/_ast_in_irb.md -------------------------------------------------------------------------------- /tips/ruby/_method_caller.md: -------------------------------------------------------------------------------- 1 | # メソッドの呼び出し元を確認したい 2 | 3 | ```ruby 4 | puts caller 5 | ```` 6 | -------------------------------------------------------------------------------- /tips/win/_load_error.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tips/win/_load_error.md -------------------------------------------------------------------------------- /tools/_ansible.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tools/_ansible.md -------------------------------------------------------------------------------- /tools/_anyenv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tools/_anyenv.md -------------------------------------------------------------------------------- /tools/_asan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tools/_asan.md -------------------------------------------------------------------------------- /tools/_asn.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tools/_asn.1.md -------------------------------------------------------------------------------- /tools/_bigquery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tools/_bigquery.md -------------------------------------------------------------------------------- /tools/_bnf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tools/_bnf.md -------------------------------------------------------------------------------- /tools/_chef.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tools/_chef.md -------------------------------------------------------------------------------- /tools/_crontab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tools/_crontab.md -------------------------------------------------------------------------------- /tools/_d-bus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tools/_d-bus.md -------------------------------------------------------------------------------- /tools/_direnv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tools/_direnv.md -------------------------------------------------------------------------------- /tools/_dnsmasq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tools/_dnsmasq.md -------------------------------------------------------------------------------- /tools/_elasticsearch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tools/_elasticsearch.md -------------------------------------------------------------------------------- /tools/_electron.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tools/_electron.md -------------------------------------------------------------------------------- /tools/_embulk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tools/_embulk.md -------------------------------------------------------------------------------- /tools/_emscripten.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tools/_emscripten.md -------------------------------------------------------------------------------- /tools/_envoy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tools/_envoy.md -------------------------------------------------------------------------------- /tools/_envsubst.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tools/_envsubst.md -------------------------------------------------------------------------------- /tools/_fluentd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tools/_fluentd.md -------------------------------------------------------------------------------- /tools/_hexedit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tools/_hexedit.md -------------------------------------------------------------------------------- /tools/_hping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tools/_hping.md -------------------------------------------------------------------------------- /tools/_kubernetes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tools/_kubernetes.md -------------------------------------------------------------------------------- /tools/_lex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tools/_lex.md -------------------------------------------------------------------------------- /tools/_minio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tools/_minio.md -------------------------------------------------------------------------------- /tools/_nasm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tools/_nasm.md -------------------------------------------------------------------------------- /tools/_ngrok.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tools/_ngrok.md -------------------------------------------------------------------------------- /tools/_openapi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tools/_openapi.md -------------------------------------------------------------------------------- /tools/_otool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tools/_otool.md -------------------------------------------------------------------------------- /tools/_selenium.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tools/_selenium.md -------------------------------------------------------------------------------- /tools/_terraform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tools/_terraform.md -------------------------------------------------------------------------------- /tools/_unbound.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tools/_unbound.md -------------------------------------------------------------------------------- /tools/_vagrant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tools/_vagrant.md -------------------------------------------------------------------------------- /tools/_yml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tools/_yml.md -------------------------------------------------------------------------------- /tools/build/_autoconf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tools/build/_autoconf.md -------------------------------------------------------------------------------- /tools/build/_ninja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tools/build/_ninja.md -------------------------------------------------------------------------------- /tools/compile/_clang.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tools/compile/_clang.md -------------------------------------------------------------------------------- /tools/compile/_llvm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tools/compile/_llvm.md -------------------------------------------------------------------------------- /tools/debug/gdb/_tui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tools/debug/gdb/_tui.md -------------------------------------------------------------------------------- /tools/debug/gdb/_usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tools/debug/gdb/_usage.md -------------------------------------------------------------------------------- /tools/homebrew/_usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tools/homebrew/_usage.md -------------------------------------------------------------------------------- /tools/stat/__overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tools/stat/__overview.md -------------------------------------------------------------------------------- /tools/stat/_k6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tools/stat/_k6.md -------------------------------------------------------------------------------- /tools/stat/_strace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tools/stat/_strace.md -------------------------------------------------------------------------------- /tools/stat/perf/_stat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tools/stat/perf/_stat.md -------------------------------------------------------------------------------- /tools/stat/perf/_top.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tools/stat/perf/_top.md -------------------------------------------------------------------------------- /tools/wireshark/_tls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tools/wireshark/_tls.md -------------------------------------------------------------------------------- /tools/yacc/__overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tools/yacc/__overview.md -------------------------------------------------------------------------------- /tools/yacc/_flow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tools/yacc/_flow.md -------------------------------------------------------------------------------- /tools/yacc/_syntax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/tools/yacc/_syntax.md -------------------------------------------------------------------------------- /unix/_elf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/_elf.md -------------------------------------------------------------------------------- /unix/_file_table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/_file_table.md -------------------------------------------------------------------------------- /unix/_group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/_group.md -------------------------------------------------------------------------------- /unix/_inetd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/_inetd.md -------------------------------------------------------------------------------- /unix/_passwd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/_passwd.md -------------------------------------------------------------------------------- /unix/_process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/_process.md -------------------------------------------------------------------------------- /unix/_redirection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/_redirection.md -------------------------------------------------------------------------------- /unix/_shebang.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/_shebang.md -------------------------------------------------------------------------------- /unix/_shell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/_shell.md -------------------------------------------------------------------------------- /unix/_syslog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/_syslog.md -------------------------------------------------------------------------------- /unix/_systemd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/_systemd.md -------------------------------------------------------------------------------- /unix/command/__swap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/command/__swap.md -------------------------------------------------------------------------------- /unix/command/_ar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/command/_ar.md -------------------------------------------------------------------------------- /unix/command/_cd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/command/_cd.md -------------------------------------------------------------------------------- /unix/command/_chmod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/command/_chmod.md -------------------------------------------------------------------------------- /unix/command/_diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/command/_diff.md -------------------------------------------------------------------------------- /unix/command/_echo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/command/_echo.md -------------------------------------------------------------------------------- /unix/command/_env.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/command/_env.md -------------------------------------------------------------------------------- /unix/command/_file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/command/_file.md -------------------------------------------------------------------------------- /unix/command/_find.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/command/_find.md -------------------------------------------------------------------------------- /unix/command/_getconf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/command/_getconf.md -------------------------------------------------------------------------------- /unix/command/_ldd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/command/_ldd.md -------------------------------------------------------------------------------- /unix/command/_ln.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/command/_ln.md -------------------------------------------------------------------------------- /unix/command/_logger.md: -------------------------------------------------------------------------------- 1 | # logger(1) 2 | - シェルからメッセージをシステムログへ出力する 3 | -------------------------------------------------------------------------------- /unix/command/_lsblk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/command/_lsblk.md -------------------------------------------------------------------------------- /unix/command/_man.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/command/_man.md -------------------------------------------------------------------------------- /unix/command/_md5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/command/_md5.md -------------------------------------------------------------------------------- /unix/command/_mktemp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/command/_mktemp.md -------------------------------------------------------------------------------- /unix/command/_mount.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/command/_mount.md -------------------------------------------------------------------------------- /unix/command/_nohup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/command/_nohup.md -------------------------------------------------------------------------------- /unix/command/_objdump.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/command/_objdump.md -------------------------------------------------------------------------------- /unix/command/_od.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/command/_od.md -------------------------------------------------------------------------------- /unix/command/_passwd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/command/_passwd.md -------------------------------------------------------------------------------- /unix/command/_pushd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/command/_pushd.md -------------------------------------------------------------------------------- /unix/command/_readelf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/command/_readelf.md -------------------------------------------------------------------------------- /unix/command/_scp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/command/_scp.md -------------------------------------------------------------------------------- /unix/command/_script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/command/_script.md -------------------------------------------------------------------------------- /unix/command/_ssh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/command/_ssh.md -------------------------------------------------------------------------------- /unix/command/_strings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/command/_strings.md -------------------------------------------------------------------------------- /unix/command/_sync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/command/_sync.md -------------------------------------------------------------------------------- /unix/command/_tar_gzip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/command/_tar_gzip.md -------------------------------------------------------------------------------- /unix/command/_taskset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/command/_taskset.md -------------------------------------------------------------------------------- /unix/command/_type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/command/_type.md -------------------------------------------------------------------------------- /unix/command/_ulimit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/command/_ulimit.md -------------------------------------------------------------------------------- /unix/command/_unshare.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/command/_unshare.md -------------------------------------------------------------------------------- /unix/command/_visudo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/command/_visudo.md -------------------------------------------------------------------------------- /unix/command/_watch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/command/_watch.md -------------------------------------------------------------------------------- /unix/command/stat/_df.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/command/stat/_df.md -------------------------------------------------------------------------------- /unix/command/stat/_fio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/command/stat/_fio.md -------------------------------------------------------------------------------- /unix/command/stat/_ps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/command/stat/_ps.md -------------------------------------------------------------------------------- /unix/command/stat/_sar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/command/stat/_sar.md -------------------------------------------------------------------------------- /unix/command/stat/_top.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/command/stat/_top.md -------------------------------------------------------------------------------- /unix/conf/_resolv.conf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/conf/_resolv.conf.md -------------------------------------------------------------------------------- /unix/linux/_cgroup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/linux/_cgroup.md -------------------------------------------------------------------------------- /unix/linux/_fhs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/linux/_fhs.md -------------------------------------------------------------------------------- /unix/linux/_installing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/linux/_installing.md -------------------------------------------------------------------------------- /unix/linux/_kvm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/linux/_kvm.md -------------------------------------------------------------------------------- /unix/linux/_params.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/linux/_params.md -------------------------------------------------------------------------------- /unix/linux/_tracepoint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/linux/_tracepoint.md -------------------------------------------------------------------------------- /unix/linux/books/linux_programming_basics/10_file_systems/sample/sample.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unix/linux/books/linux_programming_basics/16_http_server/hello.txt: -------------------------------------------------------------------------------- 1 | Hello World 2 | -------------------------------------------------------------------------------- /unix/linux/books/linux_programming_basics/17_http_server/hello.txt: -------------------------------------------------------------------------------- 1 | Hello 2 | -------------------------------------------------------------------------------- /unix/linux/fs/_nfs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/linux/fs/_nfs.md -------------------------------------------------------------------------------- /unix/linux/fs/_procfs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/linux/fs/_procfs.md -------------------------------------------------------------------------------- /unix/linux/fs/_sysfs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/linux/fs/_sysfs.md -------------------------------------------------------------------------------- /unix/linux/fs/_tmpfs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/linux/fs/_tmpfs.md -------------------------------------------------------------------------------- /unix/linux/os/_centos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/linux/os/_centos.md -------------------------------------------------------------------------------- /unix/linux/os/_gentoo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/linux/os/_gentoo.md -------------------------------------------------------------------------------- /unix/linux/os/_ubuntu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/linux/os/_ubuntu.md -------------------------------------------------------------------------------- /unix/macos/_iwconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shioimm/til/HEAD/unix/macos/_iwconfig.md --------------------------------------------------------------------------------