Skip to content

Instantly share code, notes, and snippets.

View leeyk0501's full-sized avatar
🥽
Coffee-Driven Development

YuKai Lee leeyk0501

🥽
Coffee-Driven Development
  • Chunghwa Telecom Co., Ltd.
  • Taipei, Taiwan
  • 12:21 (UTC +08:00)
  • LinkedIn in/yu-kai-lee
View GitHub Profile
@wellwind
wellwind / Angular 6 開發環境說明.md
Last active March 10, 2022 05:34 — forked from doggy8088/Angular 18 Dev Setup.md
Angular 6 開發環境說明

Angular 6 開發環境說明

為了能讓大家能夠順利的建立起 Angular 6 開發環境,以下是需要安裝的相關軟體與安裝步驟與說明。

[ 作業系統 ]

  • Windows 7 以上版本 (更新到最新 Service Pack 版本)
  • Mac OS X 10.6 以上版本

[ 套件管理器 ( Mac OS X Only ) ]

@kevinkindom
kevinkindom / Python Socket 编程详细介绍.md
Last active April 18, 2025 06:52
Python Socket 编程详细介绍

Python Socket 编程详细介绍

Python 提供了两个基本的 socket 模块:

  • Socket 它提供了标准的BSD Socket API。
  • SocketServer 它提供了服务器重心,可以简化网络服务器的开发。

下面讲解下 Socket模块功能。

Socket 类型

@dansimau
dansimau / ping-csv.sh
Created December 23, 2011 11:01
Ping a host and output each reply in CSV format
#!/bin/bash
#
# Do a ping and output results as CSV.
#
# [email protected]
# 2011-12-23
#
if [ $# -lt 1 ]; then
echo "Usage: $0 [--add-timestamp] <ping host>"