Skip to content

Instantly share code, notes, and snippets.

View wsx90315's full-sized avatar
🍣
I love sushi

祐詮 (Rex) wsx90315

🍣
I love sushi
  • Taichung ,Taiwan
View GitHub Profile
@nitin42
nitin42 / universal-links-react-native.md
Last active April 11, 2025 08:06
Handling Universal Links in React Native web view
@diachedelic
diachedelic / deep-link-from-browser.js
Last active April 1, 2025 08:05
Deep link to a native app from a browser, with a fallback
@akexorcist
akexorcist / buddhist-year.js
Last active April 25, 2024 10:20
MomentJS with Buddhist year
module.exports = {
toBuddhistYear: (moment, format) => {
var christianYear = moment.format('YYYY')
var buddhishYear = (parseInt(christianYear) + 543).toString()
return moment
.format(format.replace('YYYY', buddhishYear).replace('YY', buddhishYear.substring(2, 4)))
.replace(christianYear, buddhishYear)
}
}
@alexathylane
alexathylane / iOS Universal Links Support Checklist.md
Last active August 8, 2024 09:35
iOS Universal Links Support Checklist