Skip to content

Instantly share code, notes, and snippets.

@FengZeming
FengZeming / index.html
Created September 1, 2022 03:34
Responsive Mega Menu
<div style="text-align:center;margin-top:25px;marin-bottom:15px;font-weight:bold;texxxt-decoration:none; color:#484848;">
<a style="color:#000;" href="https://www.linkedin.com/in/arjunamgain/" target="_blank">My Profile</a>
</div>
<link href='https://fonts.googleapis.com/css?family=Roboto:400,300,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
@FengZeming
FengZeming / CSScomb.sublime-settings
Created May 19, 2018 05:33 — forked from yedanbo/CSScomb.sublime-settings
CSScomb用户配置文件(JSON)
{
// If plugin has trouble finding Node.js, replace this string with path
// to your `node` bin
"node-path" : ":/usr/local/bin",
// Full list of supported options and acceptable values can be found here:
// https://github.com/csscomb/csscomb.js/blob/master/doc/options.md
"config": {
// Whether to add a semicolon after the last value/mixin.
@FengZeming
FengZeming / jsonp-memory-leak.html
Created June 2, 2016 05:30 — forked from hushicai/jsonp-memory-leak.html
jsonp memory leak test
<!DOCTYPE html>
<html>
<head>
<title>jsonp-memory-leak</title>
<meta charset="utf-8" />
</head>
<body>
<script>
function x(data) {
// console.log(data);
@FengZeming
FengZeming / express.js
Created April 26, 2016 03:10 — forked from azat-co/express.js
Tutorial: REST API with Node.js and MongoDB using Mongoskin and Express.js
var express = require('express')
, mongoskin = require('mongoskin')
var app = express()
app.use(express.bodyParser())
var db = mongoskin.db('localhost:27017/test', {safe:true});
app.param('collectionName', function(req, res, next, collectionName){
req.collection = db.collection(collectionName)
@FengZeming
FengZeming / github_member_developer
Last active November 28, 2022 03:12 — 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