One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| <!DOCTYPE html> | |
| <html lang="en" class="theme theme--mercado "> | |
| <head> | |
| <script type="application/javascript"> | |
| !function(i, n) { | |
| void 0 !== i.addEventListener && void 0 !== i.hidden && (n.liVisibilityChangeListener = function() { | |
| i.hidden && (n.liHasWindowHidden = !0) | |
| }, i.addEventListener("visibilitychange", n.liVisibilityChangeListener)) | |
| }(document, window); | |
| </script> |
| #!/usr/bin/env bash | |
| git branch -r | grep -v '\->' | while read remote; do git branch --track "${remote#origin/}" "$remote"; done | |
| git fetch --all | |
| git pull --all |
| # connect to tty on Docker for Mac VM | |
| screen ~/Library/Containers/com.docker.docker/Data/com.docker.driver.amd64-linux/tty | |
| # disconnect that session but leave it open in background | |
| Ctrl-a d | |
| # list that session that's still running in background | |
| screen -ls | |
| # reconnect to that session (don't open a new one, that won't work and 2nd tty will give you garbled screen) |
| var touchstartX = 0; | |
| var touchstartY = 0; | |
| var touchendX = 0; | |
| var touchendY = 0; | |
| var gesuredZone = document.getElementById('gesuredZone'); | |
| gesuredZone.addEventListener('touchstart', function(event) { | |
| touchstartX = event.screenX; | |
| touchstartY = event.screenY; |
| var swipeFunc = { | |
| touches : { | |
| "touchstart": {"x":-1, "y":-1}, | |
| "touchmove" : {"x":-1, "y":-1}, | |
| "touchend" : false, | |
| "direction" : "undetermined" | |
| }, | |
| touchHandler: function(event) { | |
| var touch; | |
| if (typeof event !== 'undefined'){ |
| $ # If you want to disable auto-imported functions, uncomment the following | |
| $ # export ADD_IMPORT_FUNCTIONS_PATCH=YES | |
| $ mkdir bash-fix | |
| $ cd bash-fix | |
| $ curl https://opensource.apple.com/tarballs/bash/bash-92.tar.gz | tar zxf - | |
| $ cd bash-92/bash-3.2 | |
| $ curl https://ftp.gnu.org/pub/gnu/bash/bash-3.2-patches/bash32-052 | patch -p0 | |
| $ curl https://ftp.gnu.org/pub/gnu/bash/bash-3.2-patches/bash32-053 | patch -p0 | |
| $ # See note above about ADD_IMPORT_FUNCTIONS_PATCH | |
| $ [ "$ADD_IMPORT_FUNCTIONS_PATCH" == "YES" ] && curl http://alblue.bandlem.com/import_functions.patch | patch -p0 |
| 2014-09-23 08:27:40.512 Rooms[7288:414440] CDVPlugin class CDVNotification (pluginName: Notification) does not exist. | |
| 2014-09-23 08:27:40.512 Rooms[7288:414440] ERROR: Plugin 'Notification' not found, or is not a CDVPlugin. Check your plugin mapping in config.xml. | |
| 2014-09-23 08:27:40.512 Rooms[7288:414440] -[CDVCommandQueue executePending] [Line 158] FAILED pluginJSON = [ | |
| "Notification1434422161", | |
| "Notification", | |
| "alert", | |
| [ | |
| "You have to perform the setup, before you can use the application.", | |
| "Perform Setup", | |
| "Don't worry, it's easy" |
| test |
| Option Public | |
| Option Declare | |
| Sub Initialize | |
| Dim s As New NotesSession | |
| Dim db As NotesDatabase | |
| Dim vRequest As NotesView | |
| Dim vMatchVacancy As NotesView | |
| Dim veRequest As NotesViewEntry | |
| Dim veMatchVacancy As NotesViewEntry | |
| Dim rowIds As String |