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.amazon.pq.listingviolationreview.common; | |
import com.google.common.collect.ImmutableList; | |
import java.util.ArrayList; | |
import java.util.List; | |
public class Test { | |
public static List<Integer> evenNumbers(List<Integer> integers) { |
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.vjames19.functional; | |
import lombok.RequiredArgsConstructor; | |
import java.util.Optional; | |
import java.util.concurrent.CompletableFuture; | |
import java.util.function.Function; | |
import static java.util.concurrent.CompletableFuture.completedFuture; |
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
# Source: https://splice.com/blog/cleaning-git-branches/ | |
git checkout master && git branch --merged | grep -v master | xargs git branch -d |
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
FROM node:0.10-wheezy | |
# node-canvas dependencies. | |
RUN apt-get update && apt-get install -y libcairo2-dev libjpeg8-dev libpango1.0-dev libgif-dev build-essential g++ | |
# nginx (fast proxy server) | |
RUN apt-get update && apt-get install -y nginx | |
# Install global dependencies | |
RUN npm install -g pm2 |
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
function y = HL(x) | |
x2 = x(x >= -60 & x <= 60); | |
y(find(x >= -60 & x <= 60))= exp(-1i *((2*pi)/30 * x2)); | |
y(find(x > 60 | x < -60)) = 0; | |
end |
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.vjames19; | |
/** | |
* Created by vjames19 on 3/16/15. | |
*/ | |
public class LargestBlockOfOnes { | |
public static int[] largestBlockOfOnes(int[] a, int low, int sup) { | |
if (low > sup) { | |
return new int[] {-1, -1}; |
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
cmake_minimum_required(VERSION 2.8) | |
project( imageproc ) | |
find_package(OpenMP REQUIRED) | |
if(OPENMP_FOUND) | |
message(STATUS "Enabling OpenMP support") | |
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${OpenMP_C_FLAGS}") | |
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${OpenMP_CXX_FLAGS}") | |
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} ${OpenMP_EXE_LINKER_FLAGS}") | |
else() |
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
#include <stdlib.h> | |
#include <string.h> | |
#include "msp430.h" | |
#define TXD BIT2 | |
#define RXD BIT1 | |
unsigned int CV = 0; | |
unsigned int DV = 0; | |
unsigned int RO = 0; |
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
#include <stdlib.h> | |
#include <string.h> | |
#include "msp430.h" | |
unsigned int CV = 0; | |
unsigned int DV = 0; | |
char RO = '0'; | |
const double CRITICAL_OXYGEN_LEVEL = 1.5; | |
volatile double oxygenThreshold = 2; | |
volatile double oxygen = 15; // assign a value greater than 2 |
NewerOlder