One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| document.querySelectorAll('tr[id^=tr_line_of_]').forEach(el => { | |
| const start = el.querySelector('input[name^=start]'); | |
| const end = el.querySelector('input[name^=end]'); | |
| const button = el.querySelector('.btn'); | |
| const holiday = el.querySelector('#uneditable_holiday'); | |
| if (!!start.value && !!end.value) { | |
| return; | |
| } | |
| if (holiday.innerText.match(/δΌ/)) { |
| package main | |
| import "fmt" | |
| // WithPrefix | |
| type prefixOption struct{} | |
| func WithPrefix() interface { | |
| GetOption |
| # Block Facebook IPv4 | |
| 127.0.0.1 www.facebook.com | |
| 127.0.0.1 facebook.com | |
| 127.0.0.1 login.facebook.com | |
| 127.0.0.1 www.login.facebook.com | |
| 127.0.0.1 fbcdn.net | |
| 127.0.0.1 www.fbcdn.net | |
| 127.0.0.1 fbcdn.com | |
| 127.0.0.1 www.fbcdn.com | |
| 127.0.0.1 static.ak.fbcdn.net |
| gulp = require('gulp') | |
| plumber = require('gulp-plumber') | |
| util = require('gulp-util') | |
| sass = require('gulp-ruby-sass') | |
| rimraf = require('gulp-rimraf') | |
| uglify = require('gulp-uglify') | |
| minifyCSS = require('gulp-minify-css') | |
| streamify = require('gulp-streamify') | |
| size = require('gulp-size') | |
| tap = require('gulp-tap') |
| # $Date:$ | |
| $pdf_mode = 1; | |
| $pdflatex = 'pdflatex -interaction=nonstopmode -synctex=1 %O %S'; | |
| $bibtex = 'bibtex %O %B'; | |
| # for japanese platex2e | |
| # $pdf_mode = 3; | |
| # $latex = 'platex -kanji=utf8 -interaction=nonstopmode -synctex=1 %O %S'; | |
| # $bibtex = 'pbibtex -kanji=utf8 %O %B'; |
| # app/models/concerns/multiparameter_attribute_assignment.rb | |
| module MultiparameterAttributeAssignment | |
| include ActiveModel::ForbiddenAttributesProtection | |
| def initialize(params = {}) | |
| assign_attributes(params) | |
| end | |
| def assign_attributes(new_attributes) |