This file contains hidden or 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
| #****************************************************************************** | |
| # | |
| # Makefile - Rules for building the serialADC example. | |
| # | |
| # Copyright (c) 2012 Texas Instruments Incorporated. All rights reserved. | |
| # Software License Agreement | |
| # | |
| # Texas Instruments (TI) is supplying this software for use solely and | |
| # exclusively on TI's microcontroller products. The software is owned by | |
| # TI and/or its suppliers, and is protected under applicable copyright |
This file contains hidden or 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
| import soundcloud | |
| print '-------------------------------' | |
| print '- Soundcloud streaming helper -' | |
| print '-------------------------------\n' | |
| client = soundcloud.Client(client_id='YOUR_CLIENT_ID') | |
| track_url = raw_input('Insert track URL: ') | |
| print 'Resolving url', track_url , '...' | |
| track = client.get('/resolve', url=track_url) |
This file contains hidden or 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
| <repositories> | |
| <repository> | |
| <id>jitpack.io</id> | |
| <url>https://jitpack.io</url> | |
| </repository> | |
| </repositories> |
This file contains hidden or 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
| <dependencies> | |
| <dependency> | |
| <groupId>com.github.scompo</groupId> | |
| <artifactId>utils</artifactId> | |
| <version>LAST.VERSION.AVAILABLE</version> | |
| </dependency> | |
| </dependencies> |
This file contains hidden or 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
| <dependency> | |
| <groupId>com.github.scompo</groupId> | |
| <artifactId>utils</artifactId> | |
| <version>master-SNAPSHOT</version> | |
| </dependency> |
This file contains hidden or 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
| # Eclipse files. | |
| .classpath | |
| .project | |
| .settings | |
| # Maven target. | |
| target/ | |
| pom.xml.tag |
This file contains hidden or 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
| package com.github.scompo.walkstats; | |
| public class Application { | |
| } |
This file contains hidden or 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
| package com.github.scompo.walkstats; | |
| import static org.junit.Assert.assertNotNull; | |
| import static org.junit.Assert.fail; | |
| import org.junit.Test; | |
| public class ApplicationTest { | |
| @Test |
This file contains hidden or 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
| language: java | |
| before_install: | |
| - chmod +x gradlew | |
| jdk: | |
| - oraclejdk8 |
This file contains hidden or 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
| language: java | |
| jdk: | |
| - oraclejdk8 |
OlderNewer