I hereby claim:
- I am syousif94 on github.
- I am syousif (https://keybase.io/syousif) on keybase.
- I have a public key ASCKvJZVMgc0at1-xWxkDJTS9HeF4x8WlL0NlWkifkaaLwo
To claim this, I am signing this object:
| Email [email protected] |
| This app does not collect any user information. |
| #!/bin/bash | |
| cat ~/.ssh/id_rsa.pub | ssh remote_username@server_ip_address "mkdir -p ~/.ssh && chmod 700 ~/.ssh && cat >> ~/.ssh/authorized_keys && chmod 600 ~/.ssh/authorized_keys" |
| class ViewController: UIViewController, KeyboardObserverDelegate { | |
| let keyboardObserver = KeyboardObserver() | |
| let scrollView = UIScrollView() | |
| let randomView = UIView() | |
| func viewDidLoad() { | |
| super.viewDidLoad() |
| function run() { | |
| console.log('sup') | |
| $('#siteTable').jscroll({ | |
| nextSelector: 'span.nextprev a:last', | |
| contentSelector: '#siteTable .thing, .nav-buttons', | |
| callback: function() { | |
| $('.nav-buttons').remove(); | |
| } |
| Sprinkle stores anonymous device locations. That's all. |
| Buncha does not collect identifiable user information. |
| <!doctype html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"/> | |
| <script src="https://api.tiles.mapbox.com/mapbox-gl-js/v0.37.0/mapbox-gl.js"></script> | |
| <link href="https://api.tiles.mapbox.com/mapbox-gl-js/v0.37.0/mapbox-gl.css" rel="stylesheet" /> | |
| <style> | |
| body { margin:0; padding:0; display: flex; justify-content: center; align-items: center; } | |
| #map { height: 768px; width: 1024px; } | |
| </style> |
I hereby claim:
To claim this, I am signing this object:
| export let iOS = (navigator.userAgent.indexOf('iPhone OS') > -1) || (navigator.userAgent.indexOf('iPad') > -1) | |
| export let android = navigator.userAgent.indexOf('Android') > -1 | |
| export let windowsPhone = navigator.userAgent.indexOf('Windows Phone') > -1 | |
| export let mobile = iOS || android || windowsPhone |