See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| deb http://deb.debian.org/debian bullseye main contrib non-free | |
| deb-src http://deb.debian.org/debian bullseye main contrib non-free | |
| deb http://deb.debian.org/debian bullseye-updates main contrib non-free | |
| deb-src http://deb.debian.org/debian bullseye-updates main contrib non-free | |
| deb http://deb.debian.org/debian bullseye-backports main contrib non-free | |
| deb-src http://deb.debian.org/debian bullseye-backports main contrib non-free | |
| deb http://security.debian.org/debian-security/ bullseye-security main contrib non-free |
| const express = require("express"); | |
| const next = require("next"); | |
| const bodyParser = require('body-parser'); | |
| const mongoose = require('mongoose'); | |
| const keys = require('./config/keys'); | |
| const dev = process.env.NODE_ENV !== "production"; | |
| const app = next({ dev }); | |
| const logger = require('./log'); |
| #!/usr/bin/env ruby | |
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| require 'JSON' | |
| device_types = JSON.parse `xcrun simctl list -j devicetypes` | |
| runtimes = JSON.parse `xcrun simctl list -j runtimes` | |
| devices = JSON.parse `xcrun simctl list -j devices` |
Find the Discord channel in which you would like to send commits and other updates
In the settings for that channel, find the Webhooks option and create a new webhook. Note: Do NOT give this URL out to the public. Anyone or service can post messages to this channel, without even needing to be in the server. Keep it safe!
| _ _ _ ____ _ _ | |
| | | | | __ _ ___| | __ | __ ) __ _ ___| | _| | | |
| | |_| |/ _` |/ __| |/ / | _ \ / _` |/ __| |/ / | | |
| | _ | (_| | (__| < | |_) | (_| | (__| <|_| | |
| |_| |_|\__,_|\___|_|\_\ |____/ \__,_|\___|_|\_(_) | |
| A DIY Guide | |
| Meteor.methods({ | |
| createAlipayLink:function(){ | |
| const pay = "https://mapi.alipay.com/gateway.do?"; | |
| const pay = "https://openapi.alipaydev.com/gateway.do?"; // for sandbox | |
| let params = { | |
| seller_email:"abc@gmail.com", | |
| service: 'create_forex_trade_wap', |
| .fa-2x { color: #75858c } | |
| .ds-btn li { | |
| list-style: none; | |
| float: left; | |
| padding: 10px; | |
| } | |
| .ds-btn span{ | |
| font-size:90%; | |
| } | |
| .ds-btn li a span { |
| #!/bin/bash | |
| sudo kextunload -b com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport | |
| sudo kextload -b com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport |
| /** | |
| * 1. http://www.paulirish.com/2012/box-sizing-border-box-ftw/ | |
| * http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ | |
| * http://fatihhayrioglu.com/css3-box-sizing-ozelligi/ | |
| * | |
| * 2. http://aestheticallyloyal.com/public/optimize-legibility/ | |
| * | |
| * 3. http://maxvoltar.com/archive/-webkit-font-smoothing | |
| * | |
| * 4. http://maximilianhoffmann.com/posts/better-font-rendering-on-osx |