This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3.3' | |
services: | |
db: | |
container_name: 'local-wordpress-db' | |
image: 'mysql:5.7' | |
volumes: | |
- './data/mysql:/var/lib/mysql' | |
ports: | |
- 18766:3306 | |
environment: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
target$ = this.source$.pipe( | |
concatMap(() => this.buddies$.pipe( | |
concatAll(), | |
first(), | |
map( name => 'Hi ' + name.name))), | |
flatMap(greeting => greeting)) | |
.subscribe( res => console.log(res)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* CensusAppUITest | |
* com.newthinktank.censusapp.test | |
* HomeScreenTestCase.java | |
* TODO | |
* Copyright (c) 30.10.2013, 2013 t.prosser | |
* Description: | |
*/ | |
package com.newthinktank.censusapp.test; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* CensusAppTest | |
* com.newthinktank.censusapp.test | |
* ContactListActivityTest.java | |
* TODO | |
* Copyright (c) 30.10.2013, 2013 t.prosser | |
* Description: | |
*/ | |
package com.newthinktank.censusapp.test; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from com.android.monkeyrunner import MonkeyRunner, MonkeyDevice, MonkeyImage | |
# Get a device | |
device = MonkeyRunner.waitForConnection() | |
def main(): | |
# Install Package | |
device.installPackage("C:\\Users\\t.prosser\\workspace\\CensusApp\\bin\\CensusApp.apk") | |
package = 'com.newthinktank.censusapp' | |
main_activity = 'com.newthinktank.censusapp.ContactListActivity' |