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
| module.exports = function (grunt) { | |
| // collect the test files from our test folder | |
| // for example grunt.file.expand | |
| function getTests () { | |
| var tests = [ | |
| { | |
| filePath: '/Users/Mate/Desktop/LoginTest.js', | |
| name: 'Login 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
| package fr.mga.concurrent; | |
| import org.springframework.context.ApplicationContext; | |
| import org.springframework.context.support.ClassPathXmlApplicationContext; | |
| import java.util.ArrayList; | |
| import java.util.List; | |
| import java.util.concurrent.*; | |
| public class ConcurrentFooBarQix implements Callable<String> { |
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
| upstream docker_registry { | |
| server 127.0.0.1:15000; | |
| } | |
| server { | |
| listen 443; | |
| root /dev/null; | |
| index index.html index.htm; |
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
| #!/bin/bash | |
| ################################################################## | |
| # A Project of TNET Services, Inc | |
| # | |
| # Title: WiFi_Check | |
| # Author: Kevin Reed (Dweeber) | |
| # dweeber.dweebs@gmail.com | |
| # Project: Raspberry Pi Stuff | |
| # | |
| # Copyright: Copyright (c) 2012 Kevin Reed <kreed@tnet.com> |
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
| apply plugin: 'eclipse' | |
| apply plugin: 'maven' | |
| buildscript { | |
| repositories { | |
| mavenCentral() | |
| } | |
| dependencies { | |
| classpath 'org.apache.commons:commons-email:1.2' | |
| } |