ChangeLog を書く際によく使われる英語をまとめました。
ほとんど引用です。
| { | |
| "parser": "@typescript-eslint/parser", | |
| "parserOptions": { | |
| "project": "./tsconfig.json", | |
| "tsconfigRootDir": "." | |
| }, | |
| "env": { | |
| "browser": true, | |
| "jest/globals": true | |
| }, |
| import UIKit | |
| infix operator ||| { associativity left precedence 80 } | |
| func ||| (lhs: Layout.Panel, rhs: Layout.Panel) -> Layout.Panel { | |
| return Layout.Panel(forkType: .Horizontal , panel1: lhs, panel2: rhs) | |
| } | |
| infix operator --- { associativity left precedence 80 } | |
| func --- (lhs: Layout.Panel, rhs: Layout.Panel) -> Layout.Panel { | |
| return Layout.Panel(forkType: .Vertical , panel1: lhs, panel2: rhs) |
| 'use strict'; | |
| var gulp = require('gulp'); | |
| var gutil = require('gulp-util'); | |
| var del = require('del'); | |
| var uglify = require('gulp-uglify'); | |
| var gulpif = require('gulp-if'); | |
| var exec = require('child_process').exec; | |
| var notify = require('gulp-notify'); |
| #!/usr/bin/env bash | |
| ### BEGIN INIT INFO | |
| # Provides: emperor | |
| # Required-Start: $all | |
| # Required-Stop: $all | |
| # Default-Start: 2 3 4 5 | |
| # Default-Stop: 0 1 6 | |
| # Short-Description: starts the uwsgi emperor app server | |
| # Description: starts uwsgi emperor app server using start-stop-daemon |
| """ | |
| The MIT License (MIT) | |
| Copyright (c) <2013> <David Medina> | |
| Permission is hereby granted, free of charge, to any person obtaining a copy | |
| of this software and associated documentation files (the "Software"), to deal | |
| in the Software without restriction, including without limitation the rights | |
| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| copies of the Software, and to permit persons to whom the Software is |
| // example | |
| User = Backbone.Model.extend({ | |
| url: function() { | |
| var origUrl = Backbone.Model.prototype.url.call(this); | |
| return origUrl + (origUrl.charAt(origUrl.length - 1) == '/' ? '' : '/'); | |
| } | |
| }); |
| # Monitoring on interface eth0 | |
| tcpdump -i eth0 -n port 67 and port 68 |