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
/* -*- C++ -*- | |
* File: raw_dump.cpp | |
* Copyright 2008-2019 LibRaw LLC ([email protected]) | |
* Created: Sat Mar 14, 2020 | |
* | |
* LibRaw sample | |
* Demosaic RAW image and write color channel data to stdout | |
* | |
* The default is to output all color channels, but a combination of channels can also be selected | |
* Inspiration taken from the rawtran RAW to FITS conversion wrapper for dcraw |
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
from progressbar import ProgressBar, SimpleProgress | |
from multiprocessing import Process, Queue | |
from time import sleep | |
import progressbar | |
class Worker(): | |
def __init__(self, name, result_queue, process): | |
self.name = name |
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
-- List all hosts, including custom attributes | |
-- | |
-- LONG_DESC: | |
-- This query will return a list of FQDN names for all hosts in the database. | |
-- It includes the device type, IP, MAC, Subnet name, location, plus custom attributes | |
-- | |
-- USAGE: | |
-- No options available for this query, just run it | |
-- | |
-- Your SQL statement would go below this line: |
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
require 'formula' | |
class Coin < Formula | |
homepage 'https://bitbucket.org/Coin3D/coin/wiki/Home' | |
url 'https://bitbucket.org/Coin3D/coin/downloads/Coin-3.1.3.tar.gz' | |
sha1 '8e9f05628461963623686d3ec53102214e233dd1' | |
def install | |
system "./configure", "--disable-debug", "--disable-dependency-tracking", | |
"--prefix=#{prefix}", |