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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <title>Welcome to Firebase Hosting</title> | |
| <!-- update the version number as needed --> | |
| <script defer src="/__/firebase/9.17.1/firebase-app-compat.js"></script> | |
| <!-- include only the Firebase features as you need --> |
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
| div[aria-label="タイムライン: トレンド"] { | |
| display: none; | |
| } | |
| aside[aria-label="おすすめユーザー"] { | |
| display: none; | |
| } |
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
| ;; *scratch*を消さないようにする | |
| (defun my-make-scratch (&optional arg) | |
| (interactive) | |
| (progn | |
| ;; "*scratch*" を作成して buffer-list に放り込む | |
| (set-buffer (get-buffer-create "*scratch*")) | |
| (funcall initial-major-mode) | |
| (erase-buffer) | |
| (when (and initial-scratch-message (not inhibit-startup-message)) | |
| (insert initial-scratch-message)) |
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
| Pod::Spec.new do |s| | |
| s.name = "EasyImagy" | |
| s.version = "0.4.0" | |
| s.summary = "Makes it easy to process images in Swift" | |
| s.license = { :type => 'MIT', :file => 'LICENSE' } | |
| s.homepage = "https://github.com/koher/EasyImagy" | |
| s.author = { "SOMTD" => "[email protected]" } | |
| s.source = { :git => "https://github.com/koher/EasyImagy.git", :tag => "0.4.0" } | |
| s.platform = :ios, '9.0' | |
| s.requires_arc = true |
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
| Pod::Spec.new do |spec| | |
| spec.name = 'Folly' | |
| spec.version = '2018.06.11.00' | |
| spec.license = { :type => 'Apache License, Version 2.0' } | |
| spec.homepage = 'https://github.com/facebook/folly' | |
| spec.summary = 'An open-source C++ library developed and used at Facebook.' | |
| spec.authors = 'Facebook' | |
| spec.source = { :git => 'https://github.com/facebook/folly.git', | |
| :tag => "v#{spec.version}" } | |
| spec.module_name = 'folly' |
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
| diff --git a/App.js b/App.js | |
| index 411a196..5b9d526 100644 | |
| --- a/App.js | |
| +++ b/App.js | |
| @@ -6,15 +6,24 @@ | |
| import React, { Component } from 'react'; | |
| import { Provider } from 'mobx-react'; | |
| +import { create } from 'mobx-persist'; | |
| +import { AsyncStorage } from 'react-native'; |
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
| # Byte-compiled / optimized / DLL files | |
| __pycache__/ | |
| *.py[cod] | |
| *$py.class | |
| # C extensions | |
| *.so | |
| # Distribution / packaging | |
| .Python |
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
| targets = { | |
| '3.5' => '540x960 -bordercolor "#F5F5F5" -border 50x0', | |
| '4.0' => '640x1136!', | |
| '4.7' => '750x1334!', | |
| '5.5' => '1242x2208!' | |
| } | |
| targets.each do |k, v| | |
| (1..4).each do |i| | |
| system "mkdir #{k}inch" |
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
| require 'todoist' | |
| tasks = %W( | |
| hoge | |
| fuga | |
| ) | |
| Todoist::Base.setup('token') | |
| project = Todoist::Project.all.select{|project| project.name == "proj name"}.first |
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
| # Use this setup block to configure all options available in SimpleForm. | |
| SimpleForm.setup do |config| | |
| config.error_notification_class = 'alert alert-danger' | |
| config.button_class = 'btn btn-default' | |
| config.boolean_label_class = nil | |
| config.wrappers :vertical_form, tag: 'div', class: 'form-group', error_class: 'has-error' do |b| | |
| b.use :html5 | |
| b.use :placeholder | |
| b.optional :maxlength |
NewerOlder