Skip to content

Instantly share code, notes, and snippets.

View poychang's full-sized avatar
🏠
Stay Home & Be Health

Poy Chang poychang

🏠
Stay Home & Be Health
View GitHub Profile
@poychang
poychang / github_member_developer
Created March 3, 2017 00:06 — forked from belm/github_member_developer
GitHub 多人协作开发
GitHub 多人协作开发 三种方式:
一、Fork 方式 网上介绍比较多的方式(比较大型的开源项目,比如cocos2d-x)
开发者 fork 自己生成一个独立的分支,跟主分支完全独立,pull代码后,项目维护者可根据代码质量决定是否merge代码
此方式网上方法比较多,这里不详细描述
有两种常用的方法在GitHub上建立团队合作:
二、组织 – 组织的所有者可以针对不同的代码仓库建立不同访问权限的团队。
Accounts Settings => Organizations =>Create new Organizations 新建一个组织 然后添加项目成员,根据提示设置完毕即可。
新建一个Repository 新建完毕后 进入Repository的Settings =>Collaborators 在Teams下面点击刚创建的组织 比如eveloper-51/owners
@poychang
poychang / ChromeConsoleTricks.html
Created March 5, 2017 14:37
使用 Chrome Console 的小技巧
<!DOCTYPE html>
<html lang="en">
<head>
<title>Chrome Console Tricks!</title>
</head>
<body>
<p onclick="makeGreen()">BREAK DOWN</p>
<script>
@poychang
poychang / LineNotify.html
Last active August 15, 2021 10:07
LineNotify 連結頁面
<!DOCTYPE html>
<html lang="tw">
<head>
<title></title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script>
function oAuth2() {
var URL = 'https://notify-bot.line.me/oauth/authorize?';
URL += 'response_type=code';
@poychang
poychang / sitemap.xml
Created April 28, 2017 03:44
不使用套件產生 Jekyll 的 sitemap.xml
---
layout: null
sitemap:
exclude: 'yes'
---
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
{% for post in site.posts %}
{% unless post.published == false %}
<url>
@poychang
poychang / .deployment
Last active August 7, 2017 03:27
[使用 Azure WebApp 的 CI/CD 佈署 Angular 應用程式] #angular #azure
[config]
command = deploy.cmd
@poychang
poychang / reset.css
Created May 19, 2017 05:51
Eric Meyer's Reset CSS 2.0
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
@poychang
poychang / web.config
Last active August 7, 2017 03:22 — forked from doggy8088/web.config
[部屬含有路由機制的 Angular 至 IIS] 將含有路由機制的 Angular SPA 網頁部署到 IIS 網站伺服器 #angular
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="SPA" stopProcessing="true">
<match url=".*" />
<action type="Rewrite" url="/" />
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
@poychang
poychang / index.html
Last active August 7, 2017 03:25
[部屬含有路由機制的 Angular 至 IIS 的虛擬目錄/應用程式] 這用於將 Angular 網頁掛在某個 IIS 網站下 #angular
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>SPA - Virtual Directory</title>
<base href="/VirtualDirectory/">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico">
@poychang
poychang / privacy-policy-template-eng.md
Last active April 29, 2024 11:39
隱私權條款範本

Privacy Policy Template

Welcome to [Your Website Name] (hereinafter referred to as "the Website"). In order to provide you with a secure and seamless experience while using the various services and information on our website, we are committed to protecting your privacy rights. Please read the following information carefully:

1. Scope of Privacy Policy

This Privacy Policy outlines how we handle the collection, processing, and utilization of personal identifiable information when you use our website's services. This Privacy Policy does not apply to other related websites not operated by us or to individuals not managed or commissioned by us.

2. Collection, Processing, and Utilization of Personal Data

@poychang
poychang / index.html
Created June 16, 2017 05:05
使用 Bootsrap 3.3.7 建立的 Todo 練習用樣板,藉此練習 CRUD 之前端操作
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Todo</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" crossorigin="anonymous">
<link href="style.css" rel="stylesheet">
</head>