Skip to content

Instantly share code, notes, and snippets.

View yamazaki-sensei's full-sized avatar
🤔
thinking

hira yamazaki-sensei

🤔
thinking
View GitHub Profile
@mizchi
mizchi / predict-frontend.md
Last active July 27, 2025 04:49
React のユーザーから見た今後のフロントエンドの予想

この記事は議論のたたき台で、ポジショントークや、偏見にまみれています。

今のフロントエンドの分類

  • 古典的なサーバーサイド WAF への +α の味付け
  • 大規模なクライアントアプリケーション管理のための SPA
  • SEO / SSR を考慮した Node ヘヴィーな環境

他、提唱されてるパターン

@heron2014
heron2014 / react-native-maps-enable-google-maps-instructions.md
Last active October 5, 2025 19:23
Visual instructions how to enable Google Maps on IOS using react-native-maps

Visual instructions how to enable Google Maps on IOS using react-native-maps

UPDATE: Following instructions are now a year old. I have recently managed to upgrade react-native-maps from 0.17 to the latest version 0.21 with react-native 0.51 - if you want to follow my instruction scroll down to the end this doc! Hope that will work for you too!

This is for my personal use, things might not be correctly explained here. For the official docs please check https://github.com/airbnb/react-native-maps

Steps from scratch:

1.react-native init GoogleMapPlayground

@lopspower
lopspower / README.md
Last active April 29, 2026 15:47
Hexadecimal color code for transparency

Hexadecimal color code for transparency

Twitter

How to set transparency with hex value ?

For example, you want to set 40% alpha transparence to #000000 (black color), you need to add 66 like this #66000000.

All hex value from 100% to 0% alpha:

@kurotaky
kurotaky / gist:6435921
Last active April 14, 2023 14:41
Pull Request 後にfork 元リポジトリのmasterの変更を rebase で追随してpush する。
hippo-password-strength の master の最新の変更を取り込んでPRする。
(すでにPR出している場合)
```
git remote add upstream git@github.com:kurotaky/hippo-password-strength.git
git checkout master
git pull upstream master
git checkout using-img-src
git rebase master using-img-src
git push -f origin using-img-src