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
# OSX taken from: https://github.com/github/gitignore/blob/master/Global/OSX.gitignore | |
# ---------------------------------------------------------------------------------------------- | |
.DS_Store | |
# Thumbnails | |
._* | |
# Files that might appear on external disk | |
.Spotlight-V100 | |
.Trashes | |
# Windows taken from: https://github.com/github/gitignore/blob/master/Global/Windows.gitignore |
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
#include <stdio.h> | |
int main(void) | |
{ | |
int x = 1; | |
int y = 2; | |
int val = 5 + ( x = 3, x + y ) + 7; | |
printf("VAL: %d | X: %d | Y: %d", val, x, y); |
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
#!/bin/sh | |
# | |
# Find current script directory | |
# | |
ScriptDirectory="$( cd "$( dirname "$0" )" && pwd )" | |
echo "This script is currently @ $ScriptDirectory" |
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
object CodacySbt extends sbt.AutoPlugin { | |
private val buildVersion = sys.props.getOrElse("build.number", "dev") | |
object autoImport extends Modules { | |
val commonAppSettings: Seq[Def.Setting[_]] = Seq( | |
organization := "codacy", | |
scalaVersion := "2.11.6", | |
testOptions in Test := Nil, |
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
val uiSettings: Seq[Def.Setting[_]] = Seq( | |
JsEngineKeys.engineType := JsEngineKeys.EngineType.Node, | |
includeFilter in gzip := "*.html" || "*.css" || "*.js", | |
DigestKeys.algorithms += "sha1", | |
includeFilter in digest := "*.html" || "*.css" || "*.js", | |
UglifyKeys.mangle := false, | |
pipelineStages := Seq(uglify, digest, gzip), | |
LessKeys.compress in Assets := true, | |
includeFilter in(Assets, LessKeys.less) := "*.less", | |
excludeFilter in(Assets, LessKeys.less) := "_*.less" |
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
val commonResolvers: Seq[Def.Setting[_]] = Seq( | |
resolvers ++= Seq[Resolver]( | |
DefaultMavenRepository, | |
Classpaths.typesafeReleases, | |
"Typesafe repository" at "http://repo.typesafe.com/typesafe/releases/", | |
Classpaths.sbtPluginReleases, | |
"Eclipse repositories" at "https://repo.eclipse.org/service/local/repositories/egit-releases/content/", | |
"Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots" | |
) | |
) |
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
lazy val root = project.in(file(".")) | |
.settings( | |
dockerBaseImage := "your/base/docker", | |
dockerExposedPorts := Seq(1234), | |
version in Docker := buildVersion) |
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
#!/bin/bash | |
# | |
# Fix Spotlight | |
# | |
sudo launchctl unload -w /System/Library/LaunchDaemons/com.apple.metadata.mds.plist | |
sudo rm -rf /.Spotlight-V100 | |
sudo launchctl load -w /System/Library/LaunchDaemons/com.apple.metadata.mds.plist |
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
public class HelloWorld { | |
public static void main(String... args) { | |
// The comment below is no typo. | |
// \u000d System.out.println("Hello World!"); | |
} | |
} |