Skip to content

Instantly share code, notes, and snippets.

View selmi-karim's full-sized avatar
🐢
I may be slow to respond.

karim selmi-karim

🐢
I may be slow to respond.
  • OneFootball
  • Berlin
  • 18:37 (UTC +01:00)
View GitHub Profile
@parmentf
parmentf / GitCommitEmoji.md
Last active March 9, 2026 16:01
Git Commit message Emoji
@mrzmyr
mrzmyr / index.js
Created November 22, 2015 16:56
React Native - Detect Double Tap
var Index = React.createClass({
getInitialState: function () {
return {
lastPress: 0
}
},
onPress: function () {
var delta = new Date().getTime() - this.state.lastPress;