-
React+Amplify+AppSyncでリアルタイム掲示板アプリを15分で作り上げる 〜これが最高のDeveloper Experienceだ〜 https://qiita.com/G-awa/items/a5b2cc7017b1eceeb002
-
AWS Amplify と Vue.js を使って、基本的な認証と CRUD 操作ができる Web アプリケーションを作る https://aws.amazon.com/jp/builders-flash/202008/amplify-crud-app/
-
Progressive Web Apps (PWA) 学習者のメモ その1 (Service Worker) https://qiita.com/TakeshiNickOsanai/items/8d012a128827c9db980d
-
Progressive Web Apps (PWA) 学習者のメモ その2 (プッシュ通知とFCM)
-
Rails APIモード + Reactに入門してみる https://ikeyu0806.hatenablog.com/entry/2019/05/05/113153
-
ReactとRailsの関係性がわかるサンプルアプリ集 https://zenn.dev/xxx/articles/6a2147111ca9c771dc27
-
ReactをRailsと共に使う方法 https://qiita.com/k-penguin-sato/items/e3cc04f787cf3254cfae
-
Ruby on Rails+ReactでCRUDを実装してみた
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
| npx create-react-app my-app --template cra-template-pwa |
- PWAの作り方をサクッと学ぶ - 「ホーム画面に追加」「キャッシュ操作」「プッシュ通知」の実装
https://eh-career.com/engineerhub/entry/2019/10/24/103000
- PWA対応で実装したことまとめ (実物あり)
https://qiita.com/chikara_funabashi/items/7e456100e1ceb1bf3f20
- Progressive Web Apps(PWA)ってどんな機能?概要と実装方法をまとめてみた
- webpackとBabelの基本を理解する(1) ―webpack編―
https://qiita.com/koedamon/items/3e64612d22f3473f36a4
- webpackとBabelの基本を理解する(2) ―Babel編―
https://qiita.com/koedamon/items/92c986456e4b9e845acd
- webpackとBabelの基本を理解する(3) ―webpackとBabel編―
- express実践入門
https://gist.github.com/mitsuruog/fc48397a8e80f051a145
- チュートリアル:Visual Studio で Node.js と Express のアプリを作成する
https://docs.microsoft.com/ja-jp/visualstudio/javascript/tutorial-nodejs?view=vs-2019
- Node.jsのフレームワーク「Express」とは【初心者向け】
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
| ### Testing if the client is a mobile or a desktop. | |
| ### The selection is based on the usual UA strings for desktop browsers. | |
| ## Testing a user agent using a method that reverts the logic of the | |
| ## UA detection. Inspired by notnotmobile.appspot.com. | |
| map $http_user_agent $is_desktop { | |
| default 0; | |
| ~*linux.*android|windows\s+(?:ce|phone) 0; # exceptions to the rule | |
| ~*spider|crawl|slurp|bot 1; # bots | |
| ~*windows|linux|os\s+x\s*[\d\._]+|solaris|bsd 1; # OSes |
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
| cat /dev/urandom | tr -dc '[:alnum:]' | head -c 16 |
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 'apache_log/parser' | |
| module Embulk | |
| module Parser | |
| class Apache_log_rubyParserPlugin < ParserPlugin | |
| Plugin.register_parser("apache_log_ruby", self) | |
| STRING_FIELDS = %w[ remote_host identity_check user status size ].map{|x| x.to_sym } | |
| REQUEST_FIELDS = %w[ method path protocol ].map{ |x| x.to_sym } |
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
| # install library | |
| wget http://www.vips.ecs.soton.ac.uk/supported/current/vips-8.0.2.tar.gz | |
| tar zxf vips-8.0.2.tar.gz | |
| cd vips-8.0.2 | |
| yum install glib2-devel | |
| yum install libxml2-devel | |
| yum install libpng-devel | |
| yum install libtiff-devel | |
| yum install libjpeg-devel | |
| yum install libwebp-devel |
NewerOlder