Drag from an existing node to add a new node or link. Click to select/deselect nodes/links. Hit the DELETE key to remove the selected node or link. Drag to pan. Scroll to zoom.
Built with D3.js.
| 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() |
| 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) { |
| 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; |
| #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 |
| # Source: https://splice.com/blog/cleaning-git-branches/ | |
| git checkout master && git branch --merged | grep -v master | xargs git branch -d |
Drag from an existing node to add a new node or link. Click to select/deselect nodes/links. Hit the DELETE key to remove the selected node or link. Drag to pan. Scroll to zoom.
Built with D3.js.
| ''' | |
| Created on May 8, 2013 | |
| @author: Victor J. Reventos | |
| Copies the preferences from the src workspace to the dest workspace. | |
| If the dest workspace doesn't exist it will be created. | |
| Enjoy! | |
| ''' |
| import sys | |
| import math | |
| def numberOfOnes(n): | |
| mask = 1 | |
| bits = n.bit_length() | |
| if n < 0: | |
| bits +=1 | |
| count = 0 | |
| for i in range(0, bits): | |
| count += n & mask |
| package search.pairs; | |
| /* Head ends here */ | |
| import java.util.HashSet; | |
| import java.util.Scanner; | |
| import java.util.Set; | |
| public class Solution { |
| 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 |