| Namespace | Utility classes |
|---|---|
--accent-color-* |
Accent color utilities like accent-blue-600 |
--animate-* |
Animation utilities like animate-spin |
--aspect-* |
Aspect ratio utilities like aspect-video |
--backdrop-blur-* |
Backdrop blur utilities like backdrop-blur-md |
--backdrop-brightness-* |
Backdrop brightness utilities like backdrop-brightness-125 |
--backdrop-contrast-* |
Backdrop contrast utilities like backdrop-contrast-125 |
--backdrop-grayscale-* |
Backdrop grayscale utilities like backdrop-grayscale |
--backdrop-hue-rotate-* |
Backdrop hue rotate utilities like backdrop-hue-rotate-60 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const axios = require('axios') | |
| const decode = require('decode-html') | |
| const CHANNEL = '#dev' | |
| const ISSUE_REPO = 'foo/bar' | |
| exports.otochan = (req, res) => { | |
| console.log('Received request:', req.body) | |
| // slack challenge | |
| if (req.body.challenge) { |
A dead simple React Twemoji component.
npm install --save twemoji
未修正のアプリが数多く残っている状態なので、パブリックな場所での言及には注意して下さい
未修正のアプリが数多く残っている状況ですが、すでに広く情報が公開されており、2.5.2で修正されたという情報が広まると混乱が生じるため広く周知する次第です。
AFNetworking 2.5.1 にMITM攻撃を許す脆弱性があり、2.5.2で修正された、 と報道されていますが、これは誤りです。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # code inspired from http://jainmarket.blogspot.com/2009/05/creating-custom-table-view-cell.html | |
| class CustomCell < UITableViewCell | |
| attr_accessor :primaryLabel | |
| attr_accessor :secondaryLabel | |
| def createLabels | |
| @primaryLabel = UILabel.alloc.init |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env ruby | |
| require 'json' | |
| require 'open-uri' | |
| require 'open3' | |
| require 'date' | |
| class Importer | |
| attr_reader :screen_name |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ja: | |
| admin: | |
| js: | |
| true: True | |
| false: False | |
| is_present: 存在する | |
| is_blank: 空白 | |
| date: 日付 ... | |
| between_and_: ... から ... | |
| today: 今日 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/perl | |
| use strict; | |
| use warnings; | |
| use List::MoreUtils qw(any); | |
| sub git; | |
| chdir git('rev-parse --git-dir') . '/..'; | |
| my @submodules = map [split /\s+/]->[-1], grep /^160000 /, git 'ls-files --stage'; |
