commit
stringlengths
40
40
old_file
stringlengths
4
237
new_file
stringlengths
4
237
old_contents
stringlengths
1
4.24k
new_contents
stringlengths
1
4.87k
subject
stringlengths
15
778
message
stringlengths
15
8.75k
lang
stringclasses
266 values
license
stringclasses
13 values
repos
stringlengths
5
127k
068460e74885378bade28d1c8184b8867128fd39
test/Driver/XRay/xray-instrument-cpu.c
test/Driver/XRay/xray-instrument-cpu.c
// RUN: not %clang -o /dev/null -v -fxray-instrument -c %s // XFAIL: amd64-, x86_64-, x86_64h-, arm, aarch64, arm64 // REQUIRES: linux typedef int a;
// RUN: not %clang -o /dev/null -v -fxray-instrument -c %s // XFAIL: amd64-, x86_64-, x86_64h-, arm, aarch64, arm64, powerpc64le- // REQUIRES: linux typedef int a;
Update XFAIL line after r294781.
Update XFAIL line after r294781. git-svn-id: ffe668792ed300d6c2daa1f6eba2e0aa28d7ec6c@294820 91177308-0d34-0410-b5e6-96231b3b80d8
C
apache-2.0
apple/swift-clang,apple/swift-clang,apple/swift-clang,apple/swift-clang,llvm-mirror/clang,apple/swift-clang,apple/swift-clang,llvm-mirror/clang,llvm-mirror/clang,llvm-mirror/clang,llvm-mirror/clang,apple/swift-clang,apple/swift-clang,llvm-mirror/clang,apple/swift-clang,llvm-mirror/clang,apple/swift-clang,llvm-mirror/clang,llvm-mirror/clang,llvm-mirror/clang
a0b806ff87bf32930f6713f256068a650d0a8ce5
ui/views/controls/button/menu_button_delegate.h
ui/views/controls/button/menu_button_delegate.h
// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef UI_VIEWS_CONTROLS_BUTTON_MENU_BUTTON_DELEGATE_H_ #define UI_VIEWS_CONTROLS_BUTTON_MENU_BUTTON_DELEGATE_H_ #pragma once namespace gfx { class Point; } namespace views { class View; //////////////////////////////////////////////////////////////////////////////// // // MenuButtonDelegate // // An interface that allows a component to tell a View about a menu that it // has constructed that the view can show (e.g. for MenuButton views, or as a // context menu.) // //////////////////////////////////////////////////////////////////////////////// class MenuButtonDelegate { public: // Creates and shows a menu at the specified position. |source| is the view // the MenuButtonDelegate was set on. virtual void RunMenu(View* source, const gfx::Point& point) = 0; protected: virtual ~MenuButtonDelegate() {} }; } // namespace views #endif // UI_VIEWS_CONTROLS_BUTTON_MENU_BUTTON_DELEGATE_H_
// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef UI_VIEWS_CONTROLS_BUTTON_MENU_BUTTON_DELEGATE_H_ #define UI_VIEWS_CONTROLS_BUTTON_MENU_BUTTON_DELEGATE_H_ #pragma once #include "ui/views/views_export.h" namespace gfx { class Point; } namespace views { class View; //////////////////////////////////////////////////////////////////////////////// // // MenuButtonDelegate // // An interface that allows a component to tell a View about a menu that it // has constructed that the view can show (e.g. for MenuButton views, or as a // context menu.) // //////////////////////////////////////////////////////////////////////////////// class VIEWS_EXPORT MenuButtonDelegate { public: // Creates and shows a menu at the specified position. |source| is the view // the MenuButtonDelegate was set on. virtual void RunMenu(View* source, const gfx::Point& point) = 0; protected: virtual ~MenuButtonDelegate() {} }; } // namespace views #endif // UI_VIEWS_CONTROLS_BUTTON_MENU_BUTTON_DELEGATE_H_
Fix win builder by tagging MenuButtonDelegate with VIEWS_EXPORT.
views: Fix win builder by tagging MenuButtonDelegate with VIEWS_EXPORT. BUG=117092 TBR=sky@chromium.org Review URL: https://chromiumcodereview.appspot.com/9647003 git-svn-id: de016e52bd170d2d4f2344f9bf92d50478b649e0@125656 0039d316-1c4b-4281-b951-d872f2087c98
C
bsd-3-clause
yitian134/chromium,yitian134/chromium,ropik/chromium,yitian134/chromium,gavinp/chromium,yitian134/chromium,ropik/chromium,yitian134/chromium,ropik/chromium,adobe/chromium,yitian134/chromium,adobe/chromium,gavinp/chromium,adobe/chromium,ropik/chromium,gavinp/chromium,gavinp/chromium,yitian134/chromium,adobe/chromium,gavinp/chromium,gavinp/chromium,adobe/chromium,yitian134/chromium,yitian134/chromium,gavinp/chromium,ropik/chromium,gavinp/chromium,ropik/chromium,gavinp/chromium,adobe/chromium,gavinp/chromium,ropik/chromium,adobe/chromium,ropik/chromium,ropik/chromium,adobe/chromium,yitian134/chromium,adobe/chromium,adobe/chromium,adobe/chromium
cf0e1ef6f2cde1d075141ded1b12395475fee83a
Archs/Architecture.h
Archs/Architecture.h
#pragma once class IElfRelocator; enum class Endianness { Big, Little }; class CArchitecture { public: virtual void AssembleOpcode(const std::wstring& name, const std::wstring& args) = 0; virtual bool AssembleDirective(const std::wstring& name, const std::wstring& args) = 0; virtual void NextSection() = 0; virtual void Pass2() = 0; virtual void Revalidate() = 0; virtual int GetWordSize() = 0; virtual IElfRelocator* getElfRelocator() = 0; virtual Endianness getEndianness() = 0; }; class CInvalidArchitecture: public CArchitecture { public: virtual void AssembleOpcode(const std::wstring& name, const std::wstring& args); virtual bool AssembleDirective(const std::wstring& name, const std::wstring& args); virtual void NextSection(); virtual void Pass2(); virtual void Revalidate(); virtual int GetWordSize(); virtual IElfRelocator* getElfRelocator(); virtual Endianness getEndianness() { return Endianness::Little; }; }; extern CInvalidArchitecture InvalidArchitecture;
#pragma once class IElfRelocator; class CAssemblerCommand; class Tokenizer; enum class Endianness { Big, Little }; class CArchitecture { public: virtual void AssembleOpcode(const std::wstring& name, const std::wstring& args) = 0; virtual bool AssembleDirective(const std::wstring& name, const std::wstring& args) = 0; virtual CAssemblerCommand* parseDirective(Tokenizer& tokenizer) { return nullptr; }; virtual CAssemblerCommand* parseOpcode(Tokenizer& tokenizer) { return nullptr; }; virtual void NextSection() = 0; virtual void Pass2() = 0; virtual void Revalidate() = 0; virtual int GetWordSize() = 0; virtual IElfRelocator* getElfRelocator() = 0; virtual Endianness getEndianness() = 0; }; class CInvalidArchitecture: public CArchitecture { public: virtual void AssembleOpcode(const std::wstring& name, const std::wstring& args); virtual bool AssembleDirective(const std::wstring& name, const std::wstring& args); virtual void NextSection(); virtual void Pass2(); virtual void Revalidate(); virtual int GetWordSize(); virtual IElfRelocator* getElfRelocator(); virtual Endianness getEndianness() { return Endianness::Little; }; }; extern CInvalidArchitecture InvalidArchitecture;
Extend interfaces with new parsing functions
Extend interfaces with new parsing functions
C
mit
Kingcom/armips,sp1187/armips,sp1187/armips,Kingcom/armips,hrydgard/armips,sp1187/armips,Kingcom/armips,hrydgard/armips,hrydgard/armips
892f9a9a7049bee59f4e64ee8245fcf5430ec128
vespalib/src/vespa/vespalib/tensor/default_tensor.h
vespalib/src/vespa/vespalib/tensor/default_tensor.h
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. #pragma once #include "compact/compact_tensor.h" #include "compact/compact_tensor_builder.h" namespace vespalib { namespace tensor { struct DefaultTensor { using type = CompactTensor; using builder = CompactTensorBuilder; }; } // namespace vespalib::tensor } // namespace vespalib
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. #pragma once #include "compact/compact_tensor_v2.h" #include "compact/compact_tensor_v2_builder.h" namespace vespalib { namespace tensor { struct DefaultTensor { using type = CompactTensorV2; using builder = CompactTensorV2Builder; }; } // namespace vespalib::tensor } // namespace vespalib
Change to using CompactTensorV2 as default impl for sparse tensors.
Change to using CompactTensorV2 as default impl for sparse tensors.
C
apache-2.0
vespa-engine/vespa,vespa-engine/vespa,vespa-engine/vespa,vespa-engine/vespa,vespa-engine/vespa,vespa-engine/vespa,vespa-engine/vespa,vespa-engine/vespa,vespa-engine/vespa,vespa-engine/vespa
d65adf9603243c66f9c7f4b5adc2a850c40a146c
tmpgb.c
tmpgb.c
#include <stdio.h> #include <stdlib.h> #include "error.h" #include "memory.h" #define READ_SIZE 0x4000 static void usage(void) { fprintf(stderr, "usage: tmpgb <file>"); exit(EXIT_FAILURE); } static void load_rom(const char *rom) { FILE *fp; unsigned char *buffer[READ_SIZE]; size_t nread; int i = -1; fp = fopen(rom, "rb"); if (fp == NULL) { fprintf(stderr, "Could not open %s", rom); exit(EXIT_FAILURE); } while (!feof(fp)) { nread = fread(buffer, READ_SIZE, 1, fp); if (nread == 0) { if (ferror(fp)) { fprintf(stderr, "Error reading %s", rom); exit(EXIT_FAILURE); } } read_rom(buffer, i); } fclose(fp); } static void run(void) { int ret; if ((ret = init_memory()) != 0) { errnr = ret; exit_error(); } } int main(int argc, char **argv) { char *rom; if (argc != 2) usage(); rom = argv[1]; load_rom(rom); run(); return 0; }
#include <stdio.h> #include <stdlib.h> #include "error.h" #include "memory.h" #define READ_SIZE 0x4000 static void usage(void) { fprintf(stderr, "usage: tmpgb <file>"); exit(EXIT_FAILURE); } static void load_rom(const char *rom) { FILE *fp; unsigned char buffer[READ_SIZE]; size_t nread; int i = -1; fp = fopen(rom, "rb"); if (fp == NULL) { fprintf(stderr, "Could not open %s", rom); exit(EXIT_FAILURE); } while (!feof(fp)) { nread = fread(buffer, READ_SIZE, 1, fp); if (nread == 0) { if (ferror(fp)) { fprintf(stderr, "Error reading %s", rom); exit(EXIT_FAILURE); } } read_rom(buffer, i); } fclose(fp); } static void run(void) { int ret; if ((ret = init_memory()) != 0) { errnr = ret; exit_error(); } } int main(int argc, char **argv) { char *rom; if (argc != 2) usage(); rom = argv[1]; load_rom(rom); run(); return 0; }
Fix error with char pointer
Fix error with char pointer
C
mit
hoferm/tmpgb,hoferm/tmpgb
f0dce4e4ff0dad5a12a2178caa6ddccc4b72debd
tests/simple.h
tests/simple.h
#pragma once #include <stdlib.h> #include <stdio.h> #include <math.h> #include <stdbool.h> #include <check.h> #include <pal.h> #include "../../src/base/pal_base_private.h" #include <common.h> /* Max allowed diff against expected value */ #define EPSILON_MAX 0.001f #define EPSILON_RELMAX 0.00001f struct gold { float ai; float bi; float res; float gold; }; extern float *ai, *bi, *res, *ref; /* Functions that can be overridden by individual tests */ /* Compare two values */ bool compare(float x, float y); /* Allow individual tests to add more test cases, e.g. against a reference * function */ void add_more_tests(TCase *tcase); /* Needs to be implemented by tests that define REF_FUNCTION */ void generate_ref(float *out, size_t n);
#pragma once #include <stdlib.h> #include <stdio.h> #include <math.h> #include <stdbool.h> #include <check.h> #include <pal.h> #include "../../src/base/pal_base_private.h" #include <common.h> /* Max allowed diff against expected value */ #ifndef EPSILON_MAX #define EPSILON_MAX 0.001f #endif #ifndef EPSILON_RELMAX #define EPSILON_RELMAX 0.00001f #endif struct gold { float ai; float bi; float res; float gold; }; extern float *ai, *bi, *res, *ref; /* Functions that can be overridden by individual tests */ /* Compare two values */ bool compare(float x, float y); /* Allow individual tests to add more test cases, e.g. against a reference * function */ void add_more_tests(TCase *tcase); /* Needs to be implemented by tests that define REF_FUNCTION */ void generate_ref(float *out, size_t n);
Allow tests to override error tolerance
tests: Allow tests to override error tolerance Signed-off-by: Ola Jeppsson <793f970c52ded1276b9264c742f19d1888cbaf73@adapteva.com>
C
apache-2.0
Adamszk/pal3,olajep/pal,eliteraspberries/pal,8l/pal,debug-de-su-ka/pal,eliteraspberries/pal,Adamszk/pal3,eliteraspberries/pal,parallella/pal,aolofsson/pal,olajep/pal,Adamszk/pal3,aolofsson/pal,mateunho/pal,mateunho/pal,debug-de-su-ka/pal,parallella/pal,aolofsson/pal,olajep/pal,olajep/pal,8l/pal,eliteraspberries/pal,mateunho/pal,parallella/pal,Adamszk/pal3,parallella/pal,8l/pal,mateunho/pal,parallella/pal,aolofsson/pal,debug-de-su-ka/pal,eliteraspberries/pal,debug-de-su-ka/pal,mateunho/pal,8l/pal,debug-de-su-ka/pal
07eda65a17fbf97ef7b1a5da06fde0817d0dc7ef
test2/initialisation/struct/empty/init.c
test2/initialisation/struct/empty/init.c
// RUN: %layout_check %s // RUN: %check %s struct A { }; // CHEKC: /warning: empty struct/ struct Containter { struct A a; }; struct Pre { int i; struct A a; int j; }; struct Pre p = { 1, /* warn */ 2 }; // CHECK: /warning: missing {} initialiser for empty struct/ struct Pre q = { 1, {}, 2 }; main() { struct A a = { 5 }; // CHECK: /warning: missing {} initialiser for empty struct/ struct A b = {}; struct Containter c = {{}}; c.a = (struct A){}; }
// RUN: %layout_check %s // RUN: %check %s struct A { }; // CHECK: /warning: empty struct/ struct Container { struct A a; }; struct Pre { int i; struct A a; int j; }; struct Pre p = { 1, /* warn */ 2 }; // CHECK: /warning: missing {} initialiser for empty struct/ struct Pre q = { 1, {}, 2 }; main() { struct A a = { 5 }; // CHECK: /warning: missing {} initialiser for empty struct/ struct A b = {}; struct Container c = {{}}; c.a = (struct A){}; }
Fix typo in empty struct test check
Fix typo in empty struct test check
C
mit
bobrippling/ucc-c-compiler,bobrippling/ucc-c-compiler,bobrippling/ucc-c-compiler
d8474b64fa65283e503821475ac6d13c28e51b41
lib/common/globals.c
lib/common/globals.c
/* $Id$ $Revision$ */ /* vim:set shiftwidth=4 ts=8: */ /********************************************************** * This software is part of the graphviz package * * http://www.graphviz.org/ * * * * Copyright (c) 1994-2004 AT&T Corp. * * and is licensed under the * * Common Public License, Version 1.0 * * by AT&T Corp. * * * * Information and Software Systems Research * * AT&T Research, Florham Park NJ * **********************************************************/ #ifdef HAVE_CONFIG_H #include "config.h" #endif #define EXTERN #include "types.h" #include "globals.h"
/* $Id$ $Revision$ */ /* vim:set shiftwidth=4 ts=8: */ /********************************************************** * This software is part of the graphviz package * * http://www.graphviz.org/ * * * * Copyright (c) 1994-2004 AT&T Corp. * * and is licensed under the * * Common Public License, Version 1.0 * * by AT&T Corp. * * * * Information and Software Systems Research * * AT&T Research, Florham Park NJ * **********************************************************/ #ifdef HAVE_CONFIG_H #include "config.h" #endif #define EXTERN #include "types.h" #include "globals.h" /* Default layout values, possibly set via command line; -1 indicates unset */ fdpParms_t fdp_parms = { 1, /* useGrid */ 1, /* useNew */ -1, /* numIters */ 50, /* unscaled */ 0.0, /* C */ 1.0, /* Tfact */ -1.0, /* K - set in initParams; used in init_edge */ -1.0, /* T0 */ };
Make sure fdp global parameters are statically initialized. This avoids making the algorithm independent of processing argv[].
Make sure fdp global parameters are statically initialized. This avoids making the algorithm independent of processing argv[].
C
epl-1.0
BMJHayward/graphviz,jho1965us/graphviz,jho1965us/graphviz,jho1965us/graphviz,BMJHayward/graphviz,tkelman/graphviz,tkelman/graphviz,BMJHayward/graphviz,kbrock/graphviz,MjAbuz/graphviz,BMJHayward/graphviz,MjAbuz/graphviz,tkelman/graphviz,BMJHayward/graphviz,pixelglow/graphviz,ellson/graphviz,BMJHayward/graphviz,tkelman/graphviz,MjAbuz/graphviz,pixelglow/graphviz,MjAbuz/graphviz,ellson/graphviz,pixelglow/graphviz,MjAbuz/graphviz,kbrock/graphviz,pixelglow/graphviz,kbrock/graphviz,jho1965us/graphviz,tkelman/graphviz,ellson/graphviz,kbrock/graphviz,MjAbuz/graphviz,MjAbuz/graphviz,kbrock/graphviz,jho1965us/graphviz,tkelman/graphviz,ellson/graphviz,jho1965us/graphviz,kbrock/graphviz,pixelglow/graphviz,ellson/graphviz,kbrock/graphviz,pixelglow/graphviz,tkelman/graphviz,jho1965us/graphviz,BMJHayward/graphviz,kbrock/graphviz,BMJHayward/graphviz,pixelglow/graphviz,ellson/graphviz,ellson/graphviz,BMJHayward/graphviz,kbrock/graphviz,ellson/graphviz,MjAbuz/graphviz,jho1965us/graphviz,MjAbuz/graphviz,tkelman/graphviz,kbrock/graphviz,tkelman/graphviz,jho1965us/graphviz,ellson/graphviz,MjAbuz/graphviz,jho1965us/graphviz,pixelglow/graphviz,tkelman/graphviz,BMJHayward/graphviz,MjAbuz/graphviz,pixelglow/graphviz,pixelglow/graphviz,jho1965us/graphviz,ellson/graphviz,tkelman/graphviz,kbrock/graphviz,ellson/graphviz,pixelglow/graphviz,BMJHayward/graphviz
ac6241f2f5f470d14938510c5cd04d1b8f2cb4af
Solutions/01/include/validator.h
Solutions/01/include/validator.h
#ifndef LPSLCD_VALIDATOR_H #define LPSLCD_VALIDATOR_H #include "generator.h" class Validator { public: static bool Validate (const Code & code) { // | N - k | // | ____ | // | \ a + a | < L // | /___ i i + k | // | i = 1 | // // k - 0 < k < N; // N - length of sequence. // L - limit of sidelobe level. const ssize_t sideLobeLimit = code.size () < 14 ? 1 : floor (code.size () / 14.0f); for (size_t shift = 1; shift < code.size (); ++shift) { ssize_t sideLobe = 0; for (size_t i = 0; i < code.size () - shift; ++i) { sideLobe += (code [i + shift] == '+' ? 1 : -1) * (code [i ] == '+' ? 1 : -1); } if (std::abs (sideLobe) > sideLobeLimit) { return false; } } return true; }; }; #endif//LPSLCD_VALIDATOR_H
#ifndef LPSLCD_VALIDATOR_H #define LPSLCD_VALIDATOR_H #include "generator.h" #include <cmath> class Validator { public: static bool Validate (const Code & code) { // | N - k | // | ____ | // | \ a + a | < L // | /___ i i + k | // | i = 1 | // // k - 0 < k < N; // N - length of sequence. // L - limit of sidelobe level. const ssize_t sideLobeLimit = code.size () < 14 ? 1 : std::floor (code.size () / 14.0f); for (size_t shift = 1; shift < code.size (); ++shift) { ssize_t sideLobe = 0; for (size_t i = 0; i < code.size () - shift; ++i) { sideLobe += (code [i + shift] == '+' ? 1 : -1) * (code [i ] == '+' ? 1 : -1); } if (std::abs (sideLobe) > sideLobeLimit) { return false; } } return true; }; }; #endif//LPSLCD_VALIDATOR_H
Fix compile error on gcc 6.3.0.
Fix compile error on gcc 6.3.0.
C
mit
Gluttton/PslRK,Gluttton/PslRK,Gluttton/PslRK
8144596da658cd3854610f51094b7b3407c0d4b4
solutions/uri/1039/1039.c
solutions/uri/1039/1039.c
#include <math.h> #include <stdio.h> int main() { double r1, x1, y1, r2, x2, y2; double distance; while (scanf("%lf %lf %lf %lf %lf %lf", &r1, &x1, &y1, &r2, &x2, &y2) != EOF) { distance = sqrt((x1 - x2) * (x1 - x2) + (y1 - y2) * (y1 - y2)); if (r1 >= distance + r2) { puts("RICO"); } else { puts("MORTO"); } } return 0; }
#include <math.h> #include <stdio.h> int main() { double r1, x1, y1, r2, x2, y2; double distance; while (scanf("%lf %lf %lf %lf %lf %lf", &r1, &x1, &y1, &r2, &x2, &y2) != EOF) { distance = sqrt((x1 - x2) * (x1 - x2) + (y1 - y2) * (y1 - y2)); if (r1 >= distance + r2) { puts("RICO"); } else { puts("MORTO"); } } return 0; }
Solve Fire Flowers in c
Solve Fire Flowers in c
C
mit
deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground,deniscostadsc/playground
3ed71339b1bb80eec219c142aca03a0cf0be0ffa
src/condor_includes/_condor_fix_types.h
src/condor_includes/_condor_fix_types.h
#ifndef FIX_TYPES_H #define FIX_TYPES_H #include <sys/types.h> /* The system include file defines this in terms of bzero(), but ANSI says we should use memset(). */ #if defined(OSF1) #undef FD_ZERO #define FD_ZERO(p) memset((char *)(p), 0, sizeof(*(p))) #endif /* Various non-POSIX conforming files which depend on sys/types.h will need these extra definitions... */ typedef unsigned int u_int; #if defined(ULTRIX42) || defined(ULTRIX43) typedef char * caddr_t; #endif #endif
#ifndef FIX_TYPES_H #define FIX_TYPES_H #include <sys/types.h> /* The system include file defines this in terms of bzero(), but ANSI says we should use memset(). */ #if defined(OSF1) #undef FD_ZERO #define FD_ZERO(p) memset((char *)(p), 0, sizeof(*(p))) #endif /* Various non-POSIX conforming files which depend on sys/types.h will need these extra definitions... */ typedef unsigned int u_int; #if defined(AIX32) typedef unsigned short ushort; #endif #if defined(ULTRIX42) || defined(ULTRIX43) typedef char * caddr_t; #endif #if defined(AIX32) typedef unsigned long rlim_t; #endif #endif
Add types "ushort" and "rlim_t" for AIX.
Add types "ushort" and "rlim_t" for AIX.
C
apache-2.0
bbockelm/condor-network-accounting,zhangzhehust/htcondor,djw8605/condor,neurodebian/htcondor,clalancette/condor-dcloud,djw8605/htcondor,mambelli/osg-bosco-marco,neurodebian/htcondor,zhangzhehust/htcondor,zhangzhehust/htcondor,mambelli/osg-bosco-marco,bbockelm/condor-network-accounting,clalancette/condor-dcloud,bbockelm/condor-network-accounting,djw8605/htcondor,bbockelm/condor-network-accounting,htcondor/htcondor,neurodebian/htcondor,zhangzhehust/htcondor,clalancette/condor-dcloud,mambelli/osg-bosco-marco,djw8605/condor,djw8605/htcondor,clalancette/condor-dcloud,zhangzhehust/htcondor,djw8605/htcondor,bbockelm/condor-network-accounting,bbockelm/condor-network-accounting,djw8605/condor,htcondor/htcondor,clalancette/condor-dcloud,djw8605/htcondor,djw8605/htcondor,mambelli/osg-bosco-marco,djw8605/condor,mambelli/osg-bosco-marco,htcondor/htcondor,htcondor/htcondor,neurodebian/htcondor,clalancette/condor-dcloud,neurodebian/htcondor,djw8605/condor,bbockelm/condor-network-accounting,mambelli/osg-bosco-marco,djw8605/condor,htcondor/htcondor,neurodebian/htcondor,zhangzhehust/htcondor,bbockelm/condor-network-accounting,zhangzhehust/htcondor,neurodebian/htcondor,htcondor/htcondor,mambelli/osg-bosco-marco,djw8605/htcondor,htcondor/htcondor,zhangzhehust/htcondor,clalancette/condor-dcloud,djw8605/condor,djw8605/condor,mambelli/osg-bosco-marco,djw8605/htcondor,djw8605/htcondor,zhangzhehust/htcondor,neurodebian/htcondor,htcondor/htcondor,neurodebian/htcondor
6bb6c383a5acfcd734a4453d4f7f20caa727c744
Josh_Zane_Sebastian/src/interpreter/interpreter.c
Josh_Zane_Sebastian/src/interpreter/interpreter.c
#include <stdlib.h> #include <stdio.h> #include <string.h> void runStep(struct stack_node node, struct stack_node *top) { switch( node.data.type ) { case 0: struct stack_node push; push.cdr = top; push.data = node.data; *top = push; break; } }
#include <stdlib.h> #include <stdio.h> #include <string.h> void runStep(struct stack_node node, struct stack_node *top) { switch( node.data.type ) { case T_INT: push(node, top); break; case T_SBRTN: push(node, top); break; case T_char 1: switch( nonde.data.numval ) { case '+': int x = pop(top); int y = pop(top); push(x + y); break; case '_': push(0); case '-': int x = pop(top); int y = pop(top); push(x - y); break; case '*': int x = pop(top); int y = pop(top); push(x * y); break; case '/': int x = pop(top); int y = pop(top); push(x / y); break; case '=': int x = pop(top); int y = pop(top); if(x == y) push(-1); else push(0); break; case '<': int x = pop(top); int y = pop(top); if(x < y) push(-1); else push(0); break; case '~': int x = pop(top); int y = pop(top); if(x == y): push(0); else push(-1); } } } struct stack_node pop(struct stack_node *top) { struct stack_node pop = *top; *top = *(pop.cdr); return pop; } void push(struct stack_node node, struct stack_node *top) { node.cdr = top; *top = node; }
Implement interpretation of basic arithmetic and comparatory functions.
Implement interpretation of basic arithmetic and comparatory functions.
C
mit
aacoppa/final,aacoppa/final
a70643b3c43dccc4cf855ad3d793044eaf959553
Wangscape/noise/module/codecs/NoiseSourcesCodec.h
Wangscape/noise/module/codecs/NoiseSourcesCodec.h
#pragma once #include <spotify/json.hpp> #include <spotify/json/codec/boost.hpp> #include "noise/module/NoiseSources.h" namespace spotify { namespace json { template<> struct default_codec_t<noise::module::NoiseSources> { typedef noise::module::NoiseSources NoiseSources; static codec::object_t<NoiseSources> codec() { auto codec = codec::object<NoiseSources>(); auto single_module_codec = codec::string(); auto module_list_codec = codec::array<std::vector<std::string>>(single_module_codec); auto optional_single_module_codec = codec::optional(single_module_codec); auto optional_module_list_codec = codec::optional(module_list_codec); codec.optional("SourceModule", &NoiseSources::sourceModules, optional_module_list_codec); codec.optional("ControlModule", &NoiseSources::controlModule, optional_single_module_codec); codec.optional("DisplaceModule", &NoiseSources::displaceModules, optional_module_list_codec); return codec; } }; } }
#pragma once #include <spotify/json.hpp> #include <spotify/json/codec/boost.hpp> #include "noise/module/NoiseSources.h" namespace spotify { namespace json { template<> struct default_codec_t<noise::module::NoiseSources> { typedef noise::module::NoiseSources NoiseSources; static codec::object_t<NoiseSources> codec() { auto codec = codec::object<NoiseSources>(); auto single_module_codec = codec::string(); auto module_list_codec = codec::array<std::vector<std::string>>(single_module_codec); auto optional_single_module_codec = codec::optional(single_module_codec); auto optional_module_list_codec = codec::optional(module_list_codec); codec.optional("SourceModule", &NoiseSources::sourceModules, optional_module_list_codec); codec.optional("ControlModule", &NoiseSources::controlModule, optional_single_module_codec); codec.optional("DisplaceModules", &NoiseSources::displaceModules, optional_module_list_codec); return codec; } }; } }
Correct name of "DisplaceModules" field
Correct name of "DisplaceModules" field
C
mit
serin-delaunay/Wangscape,Wangscape/Wangscape,Wangscape/Wangscape,serin-delaunay/Wangscape,Wangscape/Wangscape
1da49b17817fdfb4709976c462cc4a9ca943d989
scripts/start.c
scripts/start.c
start Go to Layout [ “budget” (budget) ] Set Window Title [ Current Window; New Title: "Budget Research" ] Set Zoom Level [ 100% ] # #Report version number to Memory Switch Table. Set Field [ MemorySwitch::versionBudget; Reference::version ] # #Show regular menus if Admin logs in only. Show/Hide Text Ruler [ Hide ] If [ Get ( AccountName ) = "Admin" ] Show/Hide Status Area [ Hide ] Install Menu Set [ “[Standard FileMaker Menus]” ] Else Show/Hide Status Area [ Lock; Hide ] Install Menu Set [ “Custom Menu Set 1” ] End If January 8, 平成26 18:44:18 Budget Research.fp7 - start -1-
start Go to Layout [ “budget” (budget) ] Set Window Title [ Current Window; New Title: "Budget Planner" ] Set Zoom Level [ 100% ] # #Report version number to Memory Switch Table. Set Field [ MemorySwitch::versionBudget; Reference::version ] # #Show regular menus if Admin logs in only. Show/Hide Text Ruler [ Hide ] If [ Get ( AccountName ) = "Admin" ] Show/Hide Status Area [ Hide ] Install Menu Set [ “[Standard FileMaker Menus]” ] Else Show/Hide Status Area [ Lock; Hide ] Install Menu Set [ “Custom Menu Set 1” ] End If January 30, 平成26 22:13:52 Budget Planner.fp7 - start -1-
Change solution name to Budget Planner
Change solution name to Budget Planner
C
apache-2.0
HelpGiveThanks/Budget
8bb57148432a0aea834343b0c5bfae98d28131b7
src/buffer.c
src/buffer.c
/* * buffer.c * * Created on: 06.02.2015. * Author: ichiro */ /* Includes ------------------------------------------------------------------*/ #include "buffer.h" /* Private typedef -----------------------------------------------------------*/ /* Private define ------------------------------------------------------------*/ /* Private macro -------------------------------------------------------------*/ /* Private variables ---------------------------------------------------------*/ /* Private function prototypes -----------------------------------------------*/ /* Private functions ---------------------------------------------------------*/ void buff_init(__IO fifo_t *buffer) { buffer->counter = 0; // 0 bytes in buffer buffer->head = 0; // Index points to start buffer->tail = 0; // Index points to start } void buff_put(__IO fifo_t *buffer, uint8_t ch) { buffer->buff[BUFF_MASK & (buffer->head++)] = ch; buffer->counter++; } uint8_t buff_get(__IO fifo_t *buffer) { uint8_t ch; ch = buffer->buff[BUFF_MASK & (buffer->tail++)]; buffer->counter--; return ch; } bool buff_empty(__IO fifo_t buffer) { return (buffer.counter == 0) ? true : false; } bool buff_full(__IO fifo_t buffer) { return (buffer.counter == BUFF_SIZE) ? true : false; }
/* * buffer.c * * Created on: 06.02.2015. * Author: ichiro */ /* Includes ------------------------------------------------------------------*/ #include "buffer.h" /* Private typedef -----------------------------------------------------------*/ /* Private define ------------------------------------------------------------*/ /* Private macro -------------------------------------------------------------*/ /* Private variables ---------------------------------------------------------*/ /* Private function prototypes -----------------------------------------------*/ /* Private functions ---------------------------------------------------------*/ void buff_init(__IO fifo_t *buffer) { buffer->counter = 0; // 0 bytes in the buffer buffer->head = 0; // Index points to start buffer->tail = 0; // Index points to start } void buff_put(__IO fifo_t *buffer, uint8_t ch) { buffer->buff[BUFF_MASK & (buffer->head++)] = ch; buffer->counter++; } uint8_t buff_get(__IO fifo_t *buffer) { uint8_t ch; ch = buffer->buff[BUFF_MASK & (buffer->tail++)]; buffer->counter--; return ch; } bool buff_empty(__IO fifo_t buffer) { return (buffer.counter == 0) ? true : false; } bool buff_full(__IO fifo_t buffer) { return (buffer.counter == BUFF_SIZE) ? true : false; }
Add a new feature, lol
Add a new feature, lol
C
mit
futoke/cnc,futoke/cnc,futoke/cnc
b1d73df29598cb3df43425377a395c1e4cafc1db
src/canard.c
src/canard.c
#include "canard.h" #include "canard_internals.h" void canardInitPoolAllocator(CanardPoolAllocator* allocator, CanardPoolAllocatorBlock* buf, unsigned int buf_len) { unsigned int current_index = 0; CanardPoolAllocatorBlock** current_block = &(allocator->free_list); while (current_index < buf_len) { *current_block = &buf[current_index]; current_block = &((*current_block)->next); current_index++; } *current_block = NULL; } void* canardAllocateBlock(CanardPoolAllocator* allocator) { /* Check if there are any blocks available in the free list. */ if (allocator->free_list == NULL) { return NULL; } /* Take first available block and prepares next block for use. */ void* result = allocator->free_list; allocator->free_list = allocator->free_list->next; return result; } void canardFreeBlock(CanardPoolAllocator* allocator, void* p) { CanardPoolAllocatorBlock* block = (CanardPoolAllocatorBlock*)p; block->next = allocator->free_list; allocator->free_list = block; }
#include "canard.h" #include "canard_internals.h" CANARD_INTERNAL void canardInitPoolAllocator(CanardPoolAllocator* allocator, CanardPoolAllocatorBlock* buf, unsigned int buf_len) { unsigned int current_index = 0; CanardPoolAllocatorBlock** current_block = &(allocator->free_list); while (current_index < buf_len) { *current_block = &buf[current_index]; current_block = &((*current_block)->next); current_index++; } *current_block = NULL; } CANARD_INTERNAL void* canardAllocateBlock(CanardPoolAllocator* allocator) { /* Check if there are any blocks available in the free list. */ if (allocator->free_list == NULL) { return NULL; } /* Take first available block and prepares next block for use. */ void* result = allocator->free_list; allocator->free_list = allocator->free_list->next; return result; } CANARD_INTERNAL void canardFreeBlock(CanardPoolAllocator* allocator, void* p) { CanardPoolAllocatorBlock* block = (CanardPoolAllocatorBlock*)p; block->next = allocator->free_list; allocator->free_list = block; }
Apply internal API marker to declarations too
Apply internal API marker to declarations too
C
mit
UAVCAN/libcanard,UAVCAN/libcanard,antoinealb/libcanard,UAVCAN/libcanard,antoinealb/libcanard
1fdc33b04d25fee097eab8b8614569992a0a4bf4
staging_vespalib/src/vespa/vespalib/util/scheduledexecutor.h
staging_vespalib/src/vespa/vespalib/util/scheduledexecutor.h
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. #pragma once #include <vespa/vespalib/util/executor.h> #include <vespa/vespalib/util/time.h> #include <vector> class FNET_Transport; namespace vespalib { class TimerTask; /** * ScheduledExecutor is a class capable of running Tasks at a regular * interval. The timer can be reset to clear all tasks currently being * scheduled. */ class ScheduledExecutor { private: using TaskList = std::vector<std::unique_ptr<TimerTask>>; FNET_Transport & _transport; std::mutex _lock; TaskList _taskList; public: /** * Create a new timer, capable of scheduling tasks at fixed intervals. */ ScheduledExecutor(FNET_Transport & transport); /** * Destroys this timer, finishing the current task executing and then * finishing. */ ~ScheduledExecutor(); /** * Schedule new task to be executed at specified intervals. * * @param task The task to schedule. * @param delay The delay to wait before first execution. * @param interval The interval in seconds. */ void scheduleAtFixedRate(std::unique_ptr<Executor::Task> task, duration delay, duration interval); /** * Reset timer, clearing the list of task to execute. */ void reset(); }; }
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. #pragma once #include <vespa/vespalib/util/executor.h> #include <vespa/vespalib/util/time.h> #include <mutex> #include <vector> class FNET_Transport; namespace vespalib { class TimerTask; /** * ScheduledExecutor is a class capable of running Tasks at a regular * interval. The timer can be reset to clear all tasks currently being * scheduled. */ class ScheduledExecutor { private: using TaskList = std::vector<std::unique_ptr<TimerTask>>; FNET_Transport & _transport; std::mutex _lock; TaskList _taskList; public: /** * Create a new timer, capable of scheduling tasks at fixed intervals. */ ScheduledExecutor(FNET_Transport & transport); /** * Destroys this timer, finishing the current task executing and then * finishing. */ ~ScheduledExecutor(); /** * Schedule new task to be executed at specified intervals. * * @param task The task to schedule. * @param delay The delay to wait before first execution. * @param interval The interval in seconds. */ void scheduleAtFixedRate(std::unique_ptr<Executor::Task> task, duration delay, duration interval); /** * Reset timer, clearing the list of task to execute. */ void reset(); }; }
Add include to get declaration for std::mutex (staging_vespalib).
Add include to get declaration for std::mutex (staging_vespalib).
C
apache-2.0
vespa-engine/vespa,vespa-engine/vespa,vespa-engine/vespa,vespa-engine/vespa,vespa-engine/vespa,vespa-engine/vespa,vespa-engine/vespa,vespa-engine/vespa,vespa-engine/vespa,vespa-engine/vespa
7434edc3b555319df75e77ed644f875a3d6f6ed6
Menu/Code/UI/BRMenuOrderingGroupViewController.h
Menu/Code/UI/BRMenuOrderingGroupViewController.h
// // BRMenuOrderingGroupViewController.h // MenuKit // // Created by Matt on 29/07/15. // Copyright (c) 2015 Blue Rocket. Distributable under the terms of the Apache License, Version 2.0. // #import <UIKit/UIKit.h> #import "BRMenuOrderingDelegate.h" #import <BRStyle/BRUIStylish.h> @class BRMenuOrderingFlowController; extern NSString * const BRMenuOrderingItemCellIdentifier; extern NSString * const BRMenuOrderingItemWithoutComponentsCellIdentifier; extern NSString * const BRMenuOrderingItemGroupHeaderCellIdentifier; /** Present a list of menu item groups as sections of menu items. */ @interface BRMenuOrderingGroupViewController : UITableViewController <BRMenuOrderingDelegate, BRUIStylish> @property (nonatomic, assign, getter=isUsePrototypeCells) IBInspectable BOOL usePrototypeCells; @property (nonatomic, strong) BRMenuOrderingFlowController *flowController; @property (nonatomic, weak) id<BRMenuOrderingDelegate> orderingDelegate; @end
// // BRMenuOrderingGroupViewController.h // MenuKit // // Created by Matt on 29/07/15. // Copyright (c) 2015 Blue Rocket. Distributable under the terms of the Apache License, Version 2.0. // #import <UIKit/UIKit.h> #import "BRMenuOrderingDelegate.h" #import <BRStyle/BRUIStylish.h> @class BRMenuOrderingFlowController; @class BRMenuStepper; extern NSString * const BRMenuOrderingItemCellIdentifier; extern NSString * const BRMenuOrderingItemWithoutComponentsCellIdentifier; extern NSString * const BRMenuOrderingItemGroupHeaderCellIdentifier; /** Present a list of menu item groups as sections of menu items. */ @interface BRMenuOrderingGroupViewController : UITableViewController <BRMenuOrderingDelegate, BRUIStylish> @property (nonatomic, assign, getter=isUsePrototypeCells) IBInspectable BOOL usePrototypeCells; @property (nonatomic, strong) BRMenuOrderingFlowController *flowController; @property (nonatomic, weak) id<BRMenuOrderingDelegate> orderingDelegate; /** Action sent to go backwards in the navigation flow. @param sender The action sender. */ - (IBAction)goBack:(id)sender; /** Action when changes are requested to be saved into the active order. @param sender The action sender. */ - (IBAction)saveToOrder:(id)sender; /** Action sent when the quantity should be adjusted via a stepper. @param sender The stepper. */ - (IBAction)didAdjustQuantity:(BRMenuStepper *)sender; @end
Move some action methods into header for subclasses to support.
Move some action methods into header for subclasses to support.
C
apache-2.0
Blue-Rocket/BRMenu,Blue-Rocket/BRMenu,Blue-Rocket/BRMenu,Blue-Rocket/BRMenu,Blue-Rocket/BRMenu
2b5a62f4d20141c1e94523a5727c5dea3b33f134
simd/nonnumber.h
simd/nonnumber.h
#if defined (__GNUC__) || defined (__INTEL_COMPILER) || defined (__clang__) #ifdef INFINITY #undef INFINITY #endif #ifdef NAN #undef NAN #endif #define NAN __builtin_nan("") #define NANf __builtin_nanf("") #define INFINITY __builtin_inf() #define INFINITYf __builtin_inff() #else #include <bits/nan.h> #include <bits/inf.h> #endif
#if defined (__GNUC__) || defined (__INTEL_COMPILER) || defined (__clang__) #ifdef INFINITY #undef INFINITY #endif #ifdef NAN #undef NAN #endif #define NAN __builtin_nan("") #define NANf __builtin_nanf("") #define INFINITY __builtin_inf() #define INFINITYf __builtin_inff() #else #include <math.h> #endif
Include math.h instead of bits headers.
Include math.h instead of bits headers.
C
mit
gwiazdorrr/sleef,gwiazdorrr/sleef
cc73100b98d4ac28318346e4a5d3e303ccadc05a
include/flatcc/flatcc_portable.h
include/flatcc/flatcc_portable.h
#ifndef FLATCC_PORTABLE_H #define FLATCC_PORTABLE_H #include "flatcc/portable/portable.h" #endif /* FLATCC_PORTABLE_H */
#ifndef FLATCC_PORTABLE_H #define FLATCC_PORTABLE_H #include "flatcc/portable/portable_basic.h" #endif /* FLATCC_PORTABLE_H */
Reduce chance of include guard conflicts
Reduce chance of include guard conflicts
C
apache-2.0
dvidelabs/flatcc,dvidelabs/flatcc,dvidelabs/flatcc
da663dd03d71768b4b58c0ac2c1ec7b7513b3ef8
test/NotifierTest.h
test/NotifierTest.h
#pragma once #include <gtest/gtest.h> #include <FileIO.h> #include <czmq.h> class NotifierTest : public ::testing::Test { public: NotifierTest() { }; ~NotifierTest() { } protected: virtual void SetUp() { }; virtual void TearDown() { FileIO::RemoveFileAsRoot(notifierIPCPath); FileIO::RemoveFileAsRoot(handshakeIPCPath); zctx_interrupted = false; }; private: const std::string notifierIPCPath = "/tmp/RestartServicesQueue.ipc"; const std::string handshakeIPCPath = "/tmp/RestartServicesHandshakeQueue.ipc"; };
#pragma once #include <gtest/gtest.h> #include <FileIO.h> #include <czmq.h> class NotifierTest : public ::testing::Test { public: NotifierTest() { }; ~NotifierTest() { } protected: virtual void SetUp() { }; virtual void TearDown() { FileIO::RemoveFile(notifierIPCPath); FileIO::RemoveFile(handshakeIPCPath); zctx_interrupted = false; }; private: const std::string notifierIPCPath = "/tmp/RestartServicesQueue.ipc"; const std::string handshakeIPCPath = "/tmp/RestartServicesHandshakeQueue.ipc"; };
Change RemoveFileAsRoot to RemoveFile per change in FileIO.
Change RemoveFileAsRoot to RemoveFile per change in FileIO.
C
mit
LogRhythm/QueueNado,LogRhythm/QueueNado,weberr13/QueueNado,weberr13/QueueNado,john-gress/QueueNado,john-gress/QueueNado
7777019a00df754e5e61f8d26af86014a02f8f92
src/pbkdf/pbkdf2/pbkdf2.h
src/pbkdf/pbkdf2/pbkdf2.h
/* * PBKDF2 * (C) 1999-2007 Jack Lloyd * * Distributed under the terms of the Botan license */ #ifndef BOTAN_PBKDF2_H__ #define BOTAN_PBKDF2_H__ #include <botan/pbkdf.h> #include <botan/mac.h> namespace Botan { /** * PKCS #5 PBKDF2 */ class BOTAN_DLL PKCS5_PBKDF2 : public PBKDF { public: std::string name() const { return "PBKDF2(" + mac->name() + ")"; } PBKDF* clone() const { return new PKCS5_PBKDF2(mac->clone()); } OctetString derive_key(u32bit output_len, const std::string& passphrase, const byte salt[], u32bit salt_len, u32bit iterations) const; /** * Create a PKCS #5 instance using the specified message auth code * @param mac the MAC to use */ PKCS5_PBKDF2(MessageAuthenticationCode* m) : mac(m) {} /** * Destructor */ ~PKCS5_PBKDF2() { delete mac; } private: MessageAuthenticationCode* mac; }; } #endif
/* * PBKDF2 * (C) 1999-2007 Jack Lloyd * * Distributed under the terms of the Botan license */ #ifndef BOTAN_PBKDF2_H__ #define BOTAN_PBKDF2_H__ #include <botan/pbkdf.h> #include <botan/mac.h> namespace Botan { /** * PKCS #5 PBKDF2 */ class BOTAN_DLL PKCS5_PBKDF2 : public PBKDF { public: std::string name() const { return "PBKDF2(" + mac->name() + ")"; } PBKDF* clone() const { return new PKCS5_PBKDF2(mac->clone()); } OctetString derive_key(u32bit output_len, const std::string& passphrase, const byte salt[], u32bit salt_len, u32bit iterations) const; /** * Create a PKCS #5 instance using the specified message auth code * @param mac_fn the MAC to use */ PKCS5_PBKDF2(MessageAuthenticationCode* mac_fn) : mac(mac_fn) {} /** * Destructor */ ~PKCS5_PBKDF2() { delete mac; } private: MessageAuthenticationCode* mac; }; } #endif
Fix Doxygen comment in PBKDF2 constructor
Fix Doxygen comment in PBKDF2 constructor
C
bsd-2-clause
Rohde-Schwarz-Cybersecurity/botan,webmaster128/botan,Rohde-Schwarz-Cybersecurity/botan,webmaster128/botan,webmaster128/botan,Rohde-Schwarz-Cybersecurity/botan,randombit/botan,randombit/botan,webmaster128/botan,randombit/botan,Rohde-Schwarz-Cybersecurity/botan,randombit/botan,webmaster128/botan,Rohde-Schwarz-Cybersecurity/botan,Rohde-Schwarz-Cybersecurity/botan,randombit/botan
6c91c7386f846f420cc3130af08d7c07fb1ec637
src/lang-dutch.c
src/lang-dutch.c
#include "num2words.h" // Language strings for Dutch const Language LANG_DUTCH = { .hours = { "een", "twee", "drie", "vier", "vijf", "zes", "zeven", "acht", "negen", "tien", "elf", "twaalf" }, .phrases = { "*$1 uur ", "vijf over *$1 ", "tien over *$1 ", "kwart over *$1 ", "tien voor half *$2 ", "vijf voor half *$2 ", "half *$2 ", "vijf over half *$2 ", "tien over half *$2 ", "kwart voor *$2 ", "tien voor *$2 ", "vijf voor *$2 " }, .greetings = { "Goede- morgen ", "Goede- dag ", "Goede- avond ", "Goede- nacht " }, .connection_lost = "Waar is je telefoon" };
#include "num2words.h" // Language strings for Dutch const Language LANG_DUTCH = { .hours = { "een", "twee", "drie", "vier", "vijf", "zes", "zeven", "acht", "negen", "tien", "elf", "twaalf" }, .phrases = { "*$1 uur ", "vijf over *$1 ", "tien over *$1 ", "kwart over *$1 ", "tien voor half *$2 ", "vijf voor half *$2 ", "half *$2 ", "vijf over half *$2 ", "tien over half *$2 ", "kwart voor *$2 ", "tien voor *$2 ", "vijf voor *$2 " }, .greetings = { "Goede- morgen ", "Goede- dag ", "Goede- avond ", "Goede- nacht " }, .connection_lost = "Waar is je tele- foon " };
Adjust dutch connection lost message.
Adjust dutch connection lost message.
C
mit
Sarastro72/Fuzzy-Text-Watch-Plus,Sarastro72/Swedish-Fuzzy-Text-watch,Sarastro72/Swedish-Fuzzy-Text-watch,Sarastro72/Swedish-Fuzzy-Text-watch,Sarastro72/Swedish-Fuzzy-Text-watch,Sarastro72/Fuzzy-Text-Watch-Plus,Sarastro72/Fuzzy-Text-Watch-Plus,Sarastro72/Swedish-Fuzzy-Text-watch,Sarastro72/Fuzzy-Text-Watch-Plus
559c89fcbf5560c5d72ef1824abe1322bf894dc8
StarFlight/Classes/SCStarFlightPushClient.h
StarFlight/Classes/SCStarFlightPushClient.h
// // StarFlightPushClient.h // // Created by Starcut Software on 4/30/13. // Copyright (c) Starcut. All rights reserved. // #import <Foundation/Foundation.h> NS_ASSUME_NONNULL_BEGIN extern NSString *const SCStarFlightClientUUIDNotification; @interface SCStarFlightPushClient : NSObject <NSURLConnectionDelegate> - (instancetype)initWithAppID:(NSString *)appID clientSecret:(NSString *)clientSecret; - (void)registerWithToken:(NSString *)token; - (void)registerWithToken:(NSString *)token clientUUID:(NSString *)clientUUID tags:(NSArray<NSString *> *)tags timePreferences:(NSDictionary *)timePreferencesDict; - (void)registerWithToken:(NSString *)token tags:(NSArray<NSString *> *)tags; - (void)unregisterWithToken:(NSString *)token tags:(nullable NSArray<NSString *> *)tags; - (void)openedMessageWithUUID:(NSString *)messageUUID deviceToken:(NSString *)deviceToken; NS_ASSUME_NONNULL_END @end
// // StarFlightPushClient.h // // Created by Starcut Software on 4/30/13. // Copyright (c) Starcut. All rights reserved. // #import <Foundation/Foundation.h> NS_ASSUME_NONNULL_BEGIN extern NSString *const SCStarFlightClientUUIDNotification; @interface SCStarFlightPushClient : NSObject <NSURLConnectionDelegate> - (instancetype)initWithAppID:(NSString *)appID clientSecret:(NSString *)clientSecret; - (void)registerWithToken:(NSString *)token; - (void)registerWithToken:(NSString *)token clientUUID:(nullable NSString *)clientUUID tags:(nullable NSArray<NSString *> *)tags timePreferences:(nullable NSDictionary *)timePreferencesDict; - (void)registerWithToken:(NSString *)token tags:(NSArray<NSString *> *)tags; - (void)unregisterWithToken:(NSString *)token tags:(nullable NSArray<NSString *> *)tags; - (void)openedMessageWithUUID:(NSString *)messageUUID deviceToken:(NSString *)deviceToken; NS_ASSUME_NONNULL_END @end
Allow optional(nullable) parameters to register starflight-client
Allow optional(nullable) parameters to register starflight-client
C
mit
StarcutFinland/StarFlight
01a9aca10d7b2995eae06645ccef2a8487a06137
src/age/entity/TransformComponent.h
src/age/entity/TransformComponent.h
#pragma once #include <age/core/MetaEnum.h> #include <age/entity/Component.h> #include <age/entity/Export.h> #include <age/math/Vector.h> namespace age { namespace entity { /// /// \struct TransformComponent /// /// \brief This component is given to entities that hold a position within the scene. /// /// \date June 11, 2017 /// /// \author Aaron Shelley /// struct AGE_ENTITY_EXPORT TransformComponent : public Component { TransformComponent(); age::math::Vector Position{}; double Rotation{}; }; } }
#pragma once #include <age/entity/Component.h> #include <age/entity/Export.h> #include <age/math/Vector.h> namespace age { namespace entity { /// /// \struct TransformComponent /// /// \brief This component is given to entities that hold a position within the scene. /// /// \date June 11, 2017 /// /// \author Aaron Shelley /// struct AGE_ENTITY_EXPORT TransformComponent : public Component { TransformComponent(); age::math::Vector Position{}; double Rotation{}; }; } }
Fix compilation error due to Meta Enum header that no longer exists.
Fix compilation error due to Meta Enum header that no longer exists.
C
mit
ASxa86/AGE,ASxa86/AGE
6a32e5daf12ec452f00dcb2c93ef3ea4b5bd99f2
src/types.h
src/types.h
#ifndef TYPES_H #define TYPES_H struct elf_header { }; #endif
#ifndef TYPES_H #define TYPES_H #define unsigned char ubyte_t #define unsigned int uint_t #define unsigned short int uword_t #define ELF_FORM 1 #define ELF_32 0 #define ELF_64 1 #define ELF_ORG 1 #define END_BIG 0 #define END_LTL 1 struct elf_header { ubyte_t elf_format : 1; ubyte_t elf_format_bit : 1; ubyte_t elf_endianess : 1; ubyte_t elf_version : 1; ubyte_t elf_os : 5; ubyte_t elf_abi ; ubyte_t elf_pad ; ubyte_t elf_type : 2; ubyte_t elf_arch ; ubyte_t elf_ver : 1; uint_t *elf_entry ; uint_t *elf_hdr_off ; uint_t *elf_sct_off ; uint_t elf_flags ; uword_t elf_hdr_size ; uword_t elf_hdrt_entry_size ; uword_t elf_hdrt_entries ; uword_t elf_sct_entry_size ; uword_t elf_sct_entries ; uword_t elf_sct_index ; }; typedef struct elf_header elf_hdr; #endif
Add first version of elf header struct
Add first version of elf header struct
C
mit
Raiona-IT/ELFReader
5e00c825d43914ce6ae0d859f72ffbef07794a6c
tests/regression/02-base/66-no-eval-on-write-multi.c
tests/regression/02-base/66-no-eval-on-write-multi.c
//PARAM: --enable ana.int.interval --enable ana.int.enums --exp.privatization "write" -v #include<pthread.h> // Test case that shows how avoiding reading integral globals can reduce the number of solver evaluations. // Avoiding to evaluate integral globals when setting them reduced the number of necessary evaluations from 62 to 21 in this test case. pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER; int glob = 10; void* t_fun(void* ptr) { pthread_mutex_lock(&mutex); glob = 3; glob = 4; glob = 1; pthread_mutex_unlock(&mutex); return NULL; } void bar() { glob = 2; } int main() { pthread_t t; pthread_create(&t, NULL, t_fun, NULL); pthread_mutex_lock(&mutex); bar(); pthread_mutex_unlock(&mutex); pthread_join(t, NULL); assert(glob >= 1); assert(glob <= 2); //UNKNOWN assert(glob <= 10); return 0; }
//PARAM: --enable ana.int.interval --enable ana.int.enums --exp.privatization "write" -v #include<pthread.h> // Test case that shows how avoiding reading integral globals can reduce the number of solver evaluations. // Avoiding to evaluate integral globals when setting them reduced the number of necessary evaluations from 62 to 20 in this test case. pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER; int glob = 10; void* t_fun(void* ptr) { pthread_mutex_lock(&mutex); glob = 3; glob = 4; glob = 1; pthread_mutex_unlock(&mutex); return NULL; } void bar() { glob = 2; } int main() { pthread_t t; pthread_create(&t, NULL, t_fun, NULL); pthread_mutex_lock(&mutex); bar(); pthread_mutex_unlock(&mutex); pthread_join(t, NULL); assert(glob >= 1); assert(glob <= 10); return 0; }
Remove confusing assert from test case
Remove confusing assert from test case
C
mit
goblint/analyzer,goblint/analyzer,goblint/analyzer,goblint/analyzer,goblint/analyzer
790173fc23a95d2fad35adb32a1906cf8af047ad
tests/test_float_macros.c
tests/test_float_macros.c
/* * Copyright 2019 Arnaud Gelas <arnaud.gelas@sensefly.com> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /* Use the unit test allocators */ #define UNIT_TESTING 1 #include <stdarg.h> #include <stddef.h> #include <setjmp.h> #include <cmocka.h> /* A test case that does check if float is equal. */ static void float_test_success(void **state) { assert_float_equal(0.5f, 1.f / 2.f, 0.000001f); assert_float_not_equal(0.5, 0.499f, 0.000001f); } int main(void) { const struct CMUnitTest tests[] = { cmocka_unit_test(float_test_success), }; return cmocka_run_group_tests(tests, NULL, NULL); }
/* * Copyright 2019 Arnaud Gelas <arnaud.gelas@sensefly.com> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /* Use the unit test allocators */ #define UNIT_TESTING 1 #include <stdarg.h> #include <stddef.h> #include <setjmp.h> #include <cmocka.h> /* A test case that does check if float is equal. */ static void float_test_success(void **state) { (void)state; /* unused */ assert_float_equal(0.5f, 1.f / 2.f, 0.000001f); assert_float_not_equal(0.5, 0.499f, 0.000001f); } int main(void) { const struct CMUnitTest tests[] = { cmocka_unit_test(float_test_success), }; return cmocka_run_group_tests(tests, NULL, NULL); }
Mark state unused in float test
tests: Mark state unused in float test Signed-off-by: Andreas Schneider <5be00ddc76278cf6077f5047ca3384a88460c671@cryptomilk.org>
C
apache-2.0
clibs/cmocka,clibs/cmocka
445f12dca8f06113caa775315bff574dee72b27d
arch/arm/mach-orion5x/include/mach/system.h
arch/arm/mach-orion5x/include/mach/system.h
/* * arch/arm/mach-orion5x/include/mach/system.h * * Tzachi Perelstein <tzachi@marvell.com> * * This file is licensed under the terms of the GNU General Public * License version 2. This program is licensed "as is" without any * warranty of any kind, whether express or implied. */ #ifndef __ASM_ARCH_SYSTEM_H #define __ASM_ARCH_SYSTEM_H #include <mach/bridge-regs.h> static inline void arch_idle(void) { cpu_do_idle(); } static inline void arch_reset(char mode, const char *cmd) { /* * Enable and issue soft reset */ orion5x_setbits(RSTOUTn_MASK, (1 << 2)); orion5x_setbits(CPU_SOFT_RESET, 1); } #endif
/* * arch/arm/mach-orion5x/include/mach/system.h * * Tzachi Perelstein <tzachi@marvell.com> * * This file is licensed under the terms of the GNU General Public * License version 2. This program is licensed "as is" without any * warranty of any kind, whether express or implied. */ #ifndef __ASM_ARCH_SYSTEM_H #define __ASM_ARCH_SYSTEM_H #include <mach/bridge-regs.h> static inline void arch_idle(void) { cpu_do_idle(); } static inline void arch_reset(char mode, const char *cmd) { /* * Enable and issue soft reset */ orion5x_setbits(RSTOUTn_MASK, (1 << 2)); orion5x_setbits(CPU_SOFT_RESET, 1); mdelay(200); orion5x_clrbits(CPU_SOFT_RESET, 1); } #endif
Fix soft-reset for some platforms
[ARM] orion5x: Fix soft-reset for some platforms Some platforms, such as the DNS-323 rev C requires the soft reset line to be toggled on and back off for the reset to work. Note: The choice of 200ms delay comes from the 2.6.12 based vendor kernel. It seems to be a -lot- though and I had my device working fine with much smaller delays but better safe... Signed-off-by: Benjamin Herrenschmidt <a7089bb6e7e92505d88aaff006cbdd60cc9120b6@kernel.crashing.org> Signed-off-by: Nicolas Pitre <d659c10e27d52b00987b65e85d99bce5480adcae@fluxnic.net>
C
mit
KristFoundation/Programs,TeamVee-Kanas/android_kernel_samsung_kanas,KristFoundation/Programs,KristFoundation/Programs,TeamVee-Kanas/android_kernel_samsung_kanas,KristFoundation/Programs,TeamVee-Kanas/android_kernel_samsung_kanas,TeamVee-Kanas/android_kernel_samsung_kanas,KristFoundation/Programs,TeamVee-Kanas/android_kernel_samsung_kanas,KristFoundation/Programs
f258b02abed915e2fadb2af2a4341486e403d104
test/FrontendC/2004-02-13-Memset.c
test/FrontendC/2004-02-13-Memset.c
// RUN: %llvmgcc -xc %s -c -o - | llvm-dis | grep llvm.memset | count 3 void *memset(void*, int, long); void bzero(void*, int); void test(int* X, char *Y) { memset(X, 4, 1000); bzero(Y, 100); }
// RUN: %llvmgcc -xc %s -c -o - | llvm-dis | grep llvm.memset | count 3 void *memset(void*, int, long); void bzero(void*, long); void test(int* X, char *Y) { memset(X, 4, 1000); bzero(Y, 100); }
Make the declaration of bzero match size_t on x86-64-linux.
Make the declaration of bzero match size_t on x86-64-linux. git-svn-id: 0ff597fd157e6f4fc38580e8d64ab130330d2411@58383 91177308-0d34-0410-b5e6-96231b3b80d8
C
apache-2.0
llvm-mirror/llvm,GPUOpen-Drivers/llvm,chubbymaggie/asap,GPUOpen-Drivers/llvm,llvm-mirror/llvm,chubbymaggie/asap,GPUOpen-Drivers/llvm,chubbymaggie/asap,apple/swift-llvm,GPUOpen-Drivers/llvm,dslab-epfl/asap,apple/swift-llvm,llvm-mirror/llvm,apple/swift-llvm,dslab-epfl/asap,apple/swift-llvm,dslab-epfl/asap,llvm-mirror/llvm,chubbymaggie/asap,llvm-mirror/llvm,GPUOpen-Drivers/llvm,apple/swift-llvm,chubbymaggie/asap,llvm-mirror/llvm,GPUOpen-Drivers/llvm,llvm-mirror/llvm,chubbymaggie/asap,apple/swift-llvm,dslab-epfl/asap,dslab-epfl/asap,apple/swift-llvm,llvm-mirror/llvm,llvm-mirror/llvm,GPUOpen-Drivers/llvm,apple/swift-llvm,dslab-epfl/asap,dslab-epfl/asap,GPUOpen-Drivers/llvm
6b6a544be44a930942bfce48211329bdca6cd5cf
hab/arduino/usage.c
hab/arduino/usage.c
#include "sim-hab.h" // // display usage // void usage(void) { fprintf(stderr, "\nsim-hab must be ran with two options. -p and -a both followed\n" "by a file location. To determine the file locations run the\n" "findPort program.\n" "\n" "usage: sim-hab [OPTIONS]\n" " -?, --help Show this information.\n" " -v, --version Show the version number.\n" " -i, --id <ID> Use ID as the HAB-ID (defaults to\n" " hostname if omitted).\n" " -p --proxr <FILE> Give the ProXR file location to open.\n" " -a --arduino <FILE> Give the Arduino file location to open.\n" ); }
#include "sim-hab.h" // // display usage // void usage(void) { fprintf(stderr, "\ncgba-sim-arduino-hab must be ran with one option. -a followed\n" "by a file location.\n" "\n" "usage: cgba-sim-arduino-hab [OPTIONS]\n" " -?, --help Show this information.\n" " -v, --version Show the version number.\n" " -i, --id <ID> Use ID as the HAB-ID (defaults to\n" " hostname if omitted).\n" " -a --arduino <FILE> Give the Arduino file location to open.\n" ); }
Modify arduino hab help menu.
Modify arduino hab help menu.
C
lgpl-2.1
ldm5180/hammerhead,ldm5180/hammerhead,ldm5180/hammerhead,ldm5180/hammerhead,ldm5180/hammerhead,ldm5180/hammerhead,ldm5180/hammerhead
7c3180c7c705795684dd54b3fa98c647c7599732
gfx/gl_common.h
gfx/gl_common.h
#ifndef _GL_COMMON_H #define _GL_COMMON_H #if defined(USING_GLES2) #ifdef IOS // I guess we can soon add ES 3.0 here too #include <OpenGLES/ES2/gl.h> #include <OpenGLES/ES2/glext.h> #else #include <GLES2/gl2.h> #include <GLES2/gl2ext.h> #ifndef MAEMO #include <EGL/egl.h> #endif // !MAEMO #endif // IOS #if defined(ANDROID) || defined(BLACKBERRY) // Support OpenGL ES 3.0 // This uses the "DYNAMIC" approach from the gles3jni NDK sample. // Should work on non-Android mobile platforms too. #include "../gfx_es2/gl3stub.h" #define MAY_HAVE_GLES3 1 #endif #else // OpenGL // Now that glew is upgraded beyond 4.3, we can define MAY_HAVE_GLES3 on GL platforms #define MAY_HAVE_GLES3 1 #include <GL/glew.h> #if defined(__APPLE__) #include <OpenGL/gl.h> #else #include <GL/gl.h> #endif #endif #if !defined(GLchar) && !defined(__APPLE__) typedef char GLchar; #endif #endif //_GL_COMMON_H
#ifndef _GL_COMMON_H #define _GL_COMMON_H #if defined(USING_GLES2) #ifdef IOS #include <OpenGLES/ES3/gl.h> #include <OpenGLES/ES3/glext.h> #include <OpenGLES/ES2/gl.h> #include <OpenGLES/ES2/glext.h> #else #include <GLES2/gl2.h> #include <GLES2/gl2ext.h> #ifndef MAEMO #include <EGL/egl.h> #endif // !MAEMO #endif // IOS #if defined(ANDROID) || defined(BLACKBERRY) // Support OpenGL ES 3.0 // This uses the "DYNAMIC" approach from the gles3jni NDK sample. // Should work on non-Android mobile platforms too. #include "../gfx_es2/gl3stub.h" #define MAY_HAVE_GLES3 1 #endif #else // OpenGL // Now that glew is upgraded beyond 4.3, we can define MAY_HAVE_GLES3 on GL platforms #define MAY_HAVE_GLES3 1 #include <GL/glew.h> #if defined(__APPLE__) #include <OpenGL/gl.h> #else #include <GL/gl.h> #endif #endif #if !defined(GLchar) && !defined(__APPLE__) typedef char GLchar; #endif #endif //_GL_COMMON_H
Add ES 3.0 support for iPhone
Add ES 3.0 support for iPhone
C
mit
unknownbrackets/native,zhykzhykzhyk/ppsspp-native,zhykzhykzhyk/ppsspp-native,unknownbrackets/native,hrydgard/native,zhykzhykzhyk/ppsspp-native,hrydgard/native,libretro/ppsspp-native,hrydgard/native,unknownbrackets/native,libretro/ppsspp-native,zhykzhykzhyk/ppsspp-native,hrydgard/native,libretro/ppsspp-native,libretro/ppsspp-native,unknownbrackets/native
c968cf224a77473fd0670ec9d52a64ac6e153c7e
_cdblib.c
_cdblib.c
#include "Python.h" /* Return a Python long instance containing the value of the DJB hash function * for the given string or array. */ static PyObject * djb_hash(PyObject *self, PyObject *args) { const unsigned char *s; unsigned int h = 5381; Py_ssize_t len; if(! PyArg_ParseTuple(args, "t#", &s, &len)) return NULL; while(len--) h = ((h << 5) + h) ^ *s++; return PyLong_FromUnsignedLong((unsigned long) h); } static /*const*/ PyMethodDef methods[] = { {"djb_hash", djb_hash, METH_VARARGS, "Return the value of DJB's hash function for the given 8-bit string."}, {NULL, NULL, 0, NULL} }; PyMODINIT_FUNC init_cdblib(void) { Py_InitModule("_cdblib", methods); }
#define PY_SSIZE_T_CLEAN #include "Python.h" /* Return a Python long instance containing the value of the DJB hash function * for the given string or array. */ static PyObject * djb_hash(PyObject *self, PyObject *args) { const unsigned char *s; unsigned int h = 5381; Py_ssize_t len; if(! PyArg_ParseTuple(args, "t#", &s, &len)) return NULL; while(len--) h = ((h << 5) + h) ^ *s++; return PyLong_FromUnsignedLong((unsigned long) h); } static /*const*/ PyMethodDef methods[] = { {"djb_hash", djb_hash, METH_VARARGS, "Return the value of DJB's hash function for the given 8-bit string."}, {NULL, NULL, 0, NULL} }; PyMODINIT_FUNC init_cdblib(void) { Py_InitModule("_cdblib", methods); }
Fix 64-bit breakage introduced in rev 04f373b0e015
Fix 64-bit breakage introduced in rev 04f373b0e015 According to PEP-353: "The conversion codes 's#' and 't#' will output Py_ssize_t if the macro PY_SSIZE_T_CLEAN is defined before Python.h is included, and continue to output int if that macro isn't defined."
C
mit
dw/python-pure-cdb,douglasbagnall/python-pure-cdb,douglasbagnall/python-pure-cdb,pombredanne/python-pure-cdb,douglasbagnall/python-pure-cdb,pombredanne/python-pure-cdb,dw/python-pure-cdb
0594623991b24dc37c7a9934cbd87d486f564608
SSPSolution/SSPSolution/GameStateHandler.h
SSPSolution/SSPSolution/GameStateHandler.h
#ifndef SSPAPPLICATION_GAMESTATES_GAMESTATEHANDLER_H #define SSPAPPLICATION_GAMESTATES_GAMESTATEHANDLER_H #include "GameState.h" #include "StartState.h" #include "LevelSelectState.h" #include <vector> #define START_WITHOUT_MENU class GameStateHandler { private: std::vector<GameState*> m_stateStack; std::vector<GameState*> m_statesToRemove; public: GameStateHandler(); ~GameStateHandler(); int ShutDown(); int Initialize(ComponentHandler* cHandler, Camera* cameraRef, std::string levelPath = NULL); int Update(float dt, InputHandler* inputHandler); //Push a state to the stack int PushStateToStack(GameState* state); private: }; #endif
#ifndef SSPAPPLICATION_GAMESTATES_GAMESTATEHANDLER_H #define SSPAPPLICATION_GAMESTATES_GAMESTATEHANDLER_H #include "GameState.h" #include "StartState.h" #include "LevelSelectState.h" #include <vector> //#define START_WITHOUT_MENU class GameStateHandler { private: std::vector<GameState*> m_stateStack; std::vector<GameState*> m_statesToRemove; public: GameStateHandler(); ~GameStateHandler(); int ShutDown(); int Initialize(ComponentHandler* cHandler, Camera* cameraRef, std::string levelPath = NULL); int Update(float dt, InputHandler* inputHandler); //Push a state to the stack int PushStateToStack(GameState* state); private: }; #endif
ADD commented out skip menu
ADD commented out skip menu
C
apache-2.0
Chringo/SSP,Chringo/SSP
2fefbbf03dbacb0ac6f5da487dad19bbe0958074
source/daplink/interface/tasks.h
source/daplink/interface/tasks.h
/** * @file tasks.h * @brief Macros for configuring the run time tasks * * DAPLink Interface Firmware * Copyright (c) 2009-2020, ARM Limited, All Rights Reserved * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); you may * not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef TASK_H #define TASK_H // trouble here is that reset for different targets is implemented differently so all targets // have to use the largest stack or these have to be defined in multiple places... Not ideal // may want to move away from threads for some of these behaviours to optimize mempory usage (RAM) #define MAIN_TASK_STACK (800) #define MAIN_TASK_PRIORITY (osPriorityNormal) #endif
/** * @file tasks.h * @brief Macros for configuring the run time tasks * * DAPLink Interface Firmware * Copyright (c) 2009-2020, ARM Limited, All Rights Reserved * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); you may * not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef TASK_H #define TASK_H // trouble here is that reset for different targets is implemented differently so all targets // have to use the largest stack or these have to be defined in multiple places... Not ideal // may want to move away from threads for some of these behaviours to optimize mempory usage (RAM) #define MAIN_TASK_STACK (864) #define MAIN_TASK_PRIORITY (osPriorityNormal) #endif
Fix k64f stack overflow during WebUSB flashing
Fix k64f stack overflow during WebUSB flashing When flashing via the WebUSB interface (CMSIS v2) the K64F hangs and USB eventually times out. This is because the main stack overflows during this operation casuing RTX to trap and loop forever in osRtxErrorNotify. This patch prevents a stack overflow by by increasing the main stack size from 800 bytes to 864 bytes. Note - maximum stack usage recorded during WebUSB flashing is 816 bytes.
C
apache-2.0
google/DAPLink-port,google/DAPLink-port,google/DAPLink-port,google/DAPLink-port
860c40fee51dd87814b949a967ea77fd34e9fb1c
include/core/SkMilestone.h
include/core/SkMilestone.h
/* * Copyright 2016 Google Inc. * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #ifndef SK_MILESTONE #define SK_MILESTONE 103 #endif
/* * Copyright 2016 Google Inc. * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #ifndef SK_MILESTONE #define SK_MILESTONE 104 #endif
Update Skia milestone to 104
Update Skia milestone to 104 Change-Id: Iafd9cf15ac3c42bda7fa6b6857a82dc2eae6d234 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/540296 Reviewed-by: Heather Miller <2e22000c5d22374561fe5fba576a31095b72dc2e@google.com> Commit-Queue: Eric Boren <0e499112533c8544f0505ea0d08394fb5ad7d8fa@google.com> Commit-Queue: Heather Miller <2e22000c5d22374561fe5fba576a31095b72dc2e@google.com>
C
bsd-3-clause
google/skia,google/skia,google/skia,google/skia,google/skia,google/skia,google/skia,google/skia,google/skia,google/skia
e09d9db1a20d9e93bdb568975f26687b94ba7f7e
include/hl7parser/config.h
include/hl7parser/config.h
#ifndef HL7PARSER_CONFIG_H #define HL7PARSER_CONFIG_H /** * \file config.h * * Generic configuration directives and macros used by the HL7 parser. * * \internal * Copyright (c) 2003-2011 \b Erlar (http://erlar.com) */ /* ------------------------------------------------------------------------ Headers ------------------------------------------------------------------------ */ #include <hl7parser/bool.h> #include <assert.h> /* ------------------------------------------------------------------------ Macros ------------------------------------------------------------------------ */ /* Macros used when the library is included in a C++ project. */ #ifdef __cplusplus # define BEGIN_C_DECL() extern "C" { # define END_C_DECL() } #else # define BEGIN_C_DECL() # define END_C_DECL() #endif /* __cplusplus */ /** * \def HL7_ASSERT( p ) * Asserts that the predicate \a p is true; if not it aborts the program * showing the predicate, file and line number where the assertion failed. */ #define HL7_ASSERT( p ) assert( p ) #endif /* HL7PARSER_CONFIG_H */
#ifndef HL7PARSER_CONFIG_H #define HL7PARSER_CONFIG_H /** * \file config.h * * Generic configuration directives and macros used by the HL7 parser. * * \internal * Copyright (c) 2003-2011 \b Erlar (http://erlar.com) */ /* ------------------------------------------------------------------------ Headers ------------------------------------------------------------------------ */ #include <hl7parser/bool.h> #include <assert.h> /* ------------------------------------------------------------------------ Macros ------------------------------------------------------------------------ */ /* Macros used when the library is included in a C++ project. */ #ifdef __cplusplus # define BEGIN_C_DECL() extern "C" { # define END_C_DECL() } #else # define BEGIN_C_DECL() # define END_C_DECL() #endif /* __cplusplus */ /** * \def HL7_ASSERT( p ) * Asserts that the predicate \a p is true; if not it aborts the program * showing the predicate, file and line number where the assertion failed. */ #define HL7_ASSERT( p ) assert( p ) #ifdef __GNUC__ #define HL7_UNUSED __attribute__ ((__unused__)) #else #define HL7_UNUSED #endif #endif /* HL7PARSER_CONFIG_H */
Add attribute for unused arguments
Add attribute for unused arguments
C
apache-2.0
jcomellas/hl7parser,jcomellas/hl7parser,jcomellas/hl7parser
4e6c43c4fc864ae932243ee23cb5f104d0e342b3
kernel/kabort.c
kernel/kabort.c
#if defined(__linux__) #include <stdio.h> #else #include "../tlibc/stdio/stdio.h" #endif void abort(void) { // TODO: Add proper kernel panic. printf("Kernel Panic! abort()\n"); while ( 1 ) { } }
#include "kputs.c" void abort(void) { // TODO: Add proper kernel panic. kputs("Kernel Panic! abort()\n"); while ( 1 ) { } }
Replace include stdio with include terminal
Replace include stdio with include terminal
C
mit
awensaunders/kernel-of-truth,iankronquist/kernel-of-truth,Herbstein/kernel-of-truth,iankronquist/kernel-of-truth,iankronquist/kernel-of-truth,iankronquist/kernel-of-truth,awensaunders/kernel-of-truth,Herbstein/kernel-of-truth,iankronquist/kernel-of-truth,awensaunders/kernel-of-truth,Herbstein/kernel-of-truth
08d54e91deb4163df649161abadd5de89852c474
APLifecycleHooks/APLifecycleHooks.h
APLifecycleHooks/APLifecycleHooks.h
// // APLifecycleHooks.h // LoyaltyRtr // // Created by David Benko on 7/22/14. // Copyright (c) 2014 David Benko. All rights reserved. // #import <Foundation/Foundation.h> @interface APLifecycleHooks : NSObject +(void)setSDKLogging:(BOOL)shouldLog; +(void)synchronousConnectionFinished:(void (^)(NSData *downloadedData, NSError *error))hook; +(void)asyncConnectionStarted:(void (^)(NSURLRequest * req, NSURLConnection *conn))hook; +(void)asyncConnectionFinished:(BOOL (^)(NSMutableData *downloadedData, NSError *error))hook; @end
// // APLifecycleHooks.h // LoyaltyRtr // // Created by David Benko on 7/22/14. // Copyright (c) 2014 David Benko. All rights reserved. // #import <Foundation/Foundation.h> #define __VERBOSE @interface APLifecycleHooks : NSObject + (void)connectionWillStart:(NSURLRequest * (^)(NSURLRequest * req))connectionWillStartCallback didStart:(void (^)(NSURLRequest * req, NSURLConnection *conn))connectionDidStartCallback; + (void)connectionReceievedResponse:(void (^)(NSURLConnection *connection, NSURLResponse *response))connectionReceievedResponseCallback; + (void)checkConnectionResponse:(BOOL (^)(NSURLResponse *response, NSError **error))checkConnectionResponseCallback; + (void)connectionFinished:(BOOL (^)(NSURLResponse *response, NSMutableData *downloadedData, NSError *error))connectionDidFinishCallback; @end
Update method defs for v7
Update method defs for v7
C
mit
AnyPresence/APLifecycleHooks
a83c10d6ea79771eb898a72ca7768b17fe23835f
Menu/Code/UI/BRMenuPlusMinusButton.h
Menu/Code/UI/BRMenuPlusMinusButton.h
// // BRMenuPlusMinusButton.h // Menu // // Created by Matt on 4/17/13. // Copyright (c) 2013 Pervasent Consulting, Inc. All rights reserved. // #import <UIKit/UIKit.h> @class BRMenuUIStyle; IB_DESIGNABLE @interface BRMenuPlusMinusButton : UIControl @property (nonatomic, strong) BRMenuUIStyle *uiStyle; @property (nonatomic, getter = isPlus) IBInspectable BOOL plus; @end
// // BRMenuPlusMinusButton.h // Menu // // Created by Matt on 4/17/13. // Copyright (c) 2013 Pervasent Consulting, Inc. All rights reserved. // #import <UIKit/UIKit.h> @class BRMenuUIStyle; IB_DESIGNABLE @interface BRMenuPlusMinusButton : UIControl @property (nonatomic, strong) IBOutlet BRMenuUIStyle *uiStyle; @property (nonatomic, getter = isPlus) IBInspectable BOOL plus; @end
Add some IB support for uiStyle.
Add some IB support for uiStyle.
C
apache-2.0
Blue-Rocket/BRMenu,Blue-Rocket/BRMenu,Blue-Rocket/BRMenu,Blue-Rocket/BRMenu,Blue-Rocket/BRMenu
a9787a770a80293b0b709a49403460c9a380c9ed
lib/ReaderWriter/ELF/ARM/ARMDynamicLibraryWriter.h
lib/ReaderWriter/ELF/ARM/ARMDynamicLibraryWriter.h
//===- lib/ReaderWriter/ELF/ARM/ARMDynamicLibraryWriter.h -----------------===// // // The LLVM Linker // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// #ifndef LLD_READER_WRITER_ELF_ARM_ARM_DYNAMIC_LIBRARY_WRITER_H #define LLD_READER_WRITER_ELF_ARM_ARM_DYNAMIC_LIBRARY_WRITER_H #include "DynamicLibraryWriter.h" #include "ARMLinkingContext.h" #include "ARMTargetHandler.h" namespace lld { namespace elf { class ARMDynamicLibraryWriter : public DynamicLibraryWriter<ELF32LE> { public: ARMDynamicLibraryWriter(ARMLinkingContext &ctx, ARMTargetLayout &layout); protected: // Add any runtime files and their atoms to the output void createImplicitFiles(std::vector<std::unique_ptr<File>> &) override; private: ARMLinkingContext &_ctx; ARMTargetLayout &_armLayout; }; ARMDynamicLibraryWriter::ARMDynamicLibraryWriter(ARMLinkingContext &ctx, ARMTargetLayout &layout) : DynamicLibraryWriter(ctx, layout), _ctx(ctx), _armLayout(layout) {} void ARMDynamicLibraryWriter::createImplicitFiles( std::vector<std::unique_ptr<File>> &result) { DynamicLibraryWriter::createImplicitFiles(result); } } // namespace elf } // namespace lld #endif // LLD_READER_WRITER_ELF_ARM_ARM_DYNAMIC_LIBRARY_WRITER_H
//===- lib/ReaderWriter/ELF/ARM/ARMDynamicLibraryWriter.h -----------------===// // // The LLVM Linker // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// #ifndef LLD_READER_WRITER_ELF_ARM_ARM_DYNAMIC_LIBRARY_WRITER_H #define LLD_READER_WRITER_ELF_ARM_ARM_DYNAMIC_LIBRARY_WRITER_H #include "DynamicLibraryWriter.h" #include "ARMLinkingContext.h" #include "ARMTargetHandler.h" namespace lld { namespace elf { class ARMDynamicLibraryWriter : public DynamicLibraryWriter<ELF32LE> { public: ARMDynamicLibraryWriter(ARMLinkingContext &ctx, ARMTargetLayout &layout); protected: // Add any runtime files and their atoms to the output void createImplicitFiles(std::vector<std::unique_ptr<File>> &) override; }; ARMDynamicLibraryWriter::ARMDynamicLibraryWriter(ARMLinkingContext &ctx, ARMTargetLayout &layout) : DynamicLibraryWriter(ctx, layout) {} void ARMDynamicLibraryWriter::createImplicitFiles( std::vector<std::unique_ptr<File>> &result) { DynamicLibraryWriter::createImplicitFiles(result); } } // namespace elf } // namespace lld #endif // LLD_READER_WRITER_ELF_ARM_ARM_DYNAMIC_LIBRARY_WRITER_H
Remove unused fields in dynamic library writer
[ARM] Remove unused fields in dynamic library writer git-svn-id: f6089bf0e6284f307027cef4f64114ee9ebb0424@237883 91177308-0d34-0410-b5e6-96231b3b80d8
C
apache-2.0
llvm-mirror/lld,llvm-mirror/lld
a26f752285f822a3651bb75f78090bdbcbb7f9e5
src/omv/xalloc.c
src/omv/xalloc.c
/* * This file is part of the OpenMV project. * Copyright (c) 2013/2014 Ibrahim Abdelkader <i.abdalkader@gmail.com> * This work is licensed under the MIT license, see the file LICENSE for details. * * Memory allocation functions. * */ #include <mp.h> #include "mdefs.h" #include "xalloc.h" void *xalloc_fail() { nlr_raise(mp_obj_new_exception_msg(&mp_type_OSError, "Out of Memory!!")); return NULL; } void *xalloc(uint32_t size) { void *mem = gc_alloc(size, false); if (mem == NULL) { return xalloc_fail(); } return mem; } void *xalloc0(uint32_t size) { void *mem = gc_alloc(size, false); if (mem == NULL) { return xalloc_fail(); } memset(mem, 0, size); return mem; } void xfree(void *ptr) { gc_free(ptr); } void *xrealloc(void *ptr, uint32_t size) { ptr = gc_realloc(ptr, size); if (ptr == NULL) { return xalloc_fail(); } return ptr; }
/* * This file is part of the OpenMV project. * Copyright (c) 2013/2014 Ibrahim Abdelkader <i.abdalkader@gmail.com> * This work is licensed under the MIT license, see the file LICENSE for details. * * Memory allocation functions. * */ #include <mp.h> #include "mdefs.h" #include "xalloc.h" void *xalloc_fail() { nlr_raise(mp_obj_new_exception_msg(&mp_type_MemoryError, "Out of Memory!!")); return NULL; } void *xalloc(uint32_t size) { void *mem = gc_alloc(size, false); if (mem == NULL) { return xalloc_fail(); } return mem; } void *xalloc0(uint32_t size) { void *mem = gc_alloc(size, false); if (mem == NULL) { return xalloc_fail(); } memset(mem, 0, size); return mem; } void xfree(void *ptr) { gc_free(ptr); } void *xrealloc(void *ptr, uint32_t size) { ptr = gc_realloc(ptr, size); if (ptr == NULL) { return xalloc_fail(); } return ptr; }
Change memory exception to MemoryError
Change memory exception to MemoryError
C
mit
kwagyeman/openmv,kwagyeman/openmv,SmartArduino/openmv,openmv/openmv,SmartArduino/openmv,iabdalkader/openmv,tianzhihen/openmv,iabdalkader/openmv,tianzhihen/openmv,openmv/openmv,openmv/openmv,iabdalkader/openmv,SmartArduino/openmv,tianzhihen/openmv,openmv/openmv,iabdalkader/openmv,SmartArduino/openmv,kwagyeman/openmv,kwagyeman/openmv,tianzhihen/openmv
2720b5a73de4f2bcac26affa08b5e1303b5301ea
components/TARGET_PSA/services/attestation/tfm_client.h
components/TARGET_PSA/services/attestation/tfm_client.h
/* * Copyright (c) 2018-2019 ARM Limited. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the License); you may * not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an AS IS BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef __TFM_CLIENT_H__ #define __TFM_CLIENT_H__ #include "psa_defs.h" #ifdef __cplusplus extern "C" { #endif #ifdef __cplusplus } #endif #endif /* __TFM_CLIENT_H__ */
/* * Copyright (c) 2018-2019 ARM Limited. All rights reserved. * * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the License); you may * not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an AS IS BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef __TFM_CLIENT_H__ #define __TFM_CLIENT_H__ #include "psa/client.h" #ifdef __cplusplus extern "C" { #endif #ifdef __cplusplus } #endif #endif /* __TFM_CLIENT_H__ */
Update include psa_defs -> psa/client
Update include psa_defs -> psa/client
C
apache-2.0
mbedmicro/mbed,kjbracey-arm/mbed,mbedmicro/mbed,mbedmicro/mbed,andcor02/mbed-os,andcor02/mbed-os,andcor02/mbed-os,andcor02/mbed-os,andcor02/mbed-os,andcor02/mbed-os,kjbracey-arm/mbed,kjbracey-arm/mbed,mbedmicro/mbed,kjbracey-arm/mbed,mbedmicro/mbed
c75706f29ac0844cc480f6333415830f5983d6f7
src/lib/str-sanitize.c
src/lib/str-sanitize.c
/* Copyright (c) 2004 Timo Sirainen */ #include "lib.h" #include "str.h" #include "str-sanitize.h" void str_sanitize_append(string_t *dest, const char *src, size_t max_len) { const char *p; for (p = src; *p != '\0'; p++) { if ((unsigned char)*p < 32) break; } str_append_n(dest, src, (size_t)(p - src)); for (; *p != '\0' && max_len > 0; p++, max_len--) { if ((unsigned char)*p < 32) str_append_c(dest, '?'); else str_append_c(dest, *p); } if (*p != '\0') { str_truncate(dest, str_len(dest)-3); str_append(dest, "..."); } } const char *str_sanitize(const char *src, size_t max_len) { string_t *str; str = t_str_new(I_MIN(max_len, 256)); str_sanitize_append(str, src, max_len); return str_c(str); }
/* Copyright (c) 2004 Timo Sirainen */ #include "lib.h" #include "str.h" #include "str-sanitize.h" void str_sanitize_append(string_t *dest, const char *src, size_t max_len) { const char *p; for (p = src; *p != '\0'; p++) { if (((unsigned char)*p & 0x7f) < 32) break; } str_append_n(dest, src, (size_t)(p - src)); for (; *p != '\0' && max_len > 0; p++, max_len--) { if (((unsigned char)*p & 0x7f) < 32) str_append_c(dest, '?'); else str_append_c(dest, *p); } if (*p != '\0') { str_truncate(dest, str_len(dest)-3); str_append(dest, "..."); } } const char *str_sanitize(const char *src, size_t max_len) { string_t *str; str = t_str_new(I_MIN(max_len, 256)); str_sanitize_append(str, src, max_len); return str_c(str); }
Convert also 0x80..0x9f characters to '?'
Convert also 0x80..0x9f characters to '?'
C
mit
Distrotech/dovecot,Distrotech/dovecot,Distrotech/dovecot,Distrotech/dovecot,Distrotech/dovecot
f73128a5e940256d42bdb0efcb62ab2653910614
src/matchers/EXPMatchers+beIdenticalTo.h
src/matchers/EXPMatchers+beIdenticalTo.h
#import "Expecta.h" EXPMatcherInterface(_beIdenticalTo, (void *expected)); #if __has_feature(objc_arc) #define beIdenticalTo(expected) _beIdenticalTo((__bridge void*)expected) #else #define beIdenticalTo _beIdenticalTo #endif
#import "Expecta.h" EXPMatcherInterface(_beIdenticalTo, (void *expected)); EXPMatcherInterface(beIdenticalTo, (void *expected)); // to aid code completion #if __has_feature(objc_arc) #define beIdenticalTo(expected) _beIdenticalTo((__bridge void*)expected) #else #define beIdenticalTo _beIdenticalTo #endif
Add code completion helper for beIdenticalTo()
Add code completion helper for beIdenticalTo() Like for equal() this helps discovering the matcher using code completion in Xcode.
C
mit
specta/expecta,iosdev-republicofapps/expecta,tonyarnold/expecta,jmoody/expecta,Bogon/expecta,suxinde2009/expecta,jmburges/expecta,wessmith/expecta,udemy/expecta,PatrykKaczmarek/expecta,iosdev-republicofapps/expecta,ashfurrow/expecta,PatrykKaczmarek/expecta,tonyarnold/expecta,ashfurrow/expecta,jmoody/expecta,tonyarnold/expecta,jmoody/expecta,ashfurrow/expecta,PatrykKaczmarek/expecta,suxinde2009/expecta,iguchunhui/expecta,Lightricks/expecta,modocache/expecta,jmoody/expecta,Lightricks/expecta,Bogon/expecta,jmburges/expecta,ashfurrow/expecta,jmburges/expecta,wessmith/expecta,udemy/expecta,tonyarnold/expecta,PatrykKaczmarek/expecta,modocache/expecta,modocache/expecta,jmburges/expecta,modocache/expecta,iosdev-republicofapps/expecta,iosdev-republicofapps/expecta,iguchunhui/expecta
ba8f2bf8ca42a4150dce14ee87e0b2c69ae58ad2
testmud/mud/include/game/paths.h
testmud/mud/include/game/paths.h
#include <config.h> #define LIB_VERB (USR_DIR + "/Game/lib/verb") #define LIB_SIGHANDLER (USR_DIR + "/Game/lib/sighandler") #define GAME_LIB_OBJECT (USR_DIR + "/Game/lib/object") #define ALIASD (USR_DIR + "/Game/sys/aliasd") #define ACCOUNTD (USR_DIR + "/Game/sys/accountd") #define ROOT (USR_DIR + "/Game/sys/root") #define SNOOPD (USR_DIR + "/Game/sys/snoopd") #define GAME_HELPD (USR_DIR + "/Game/sys/helpd") #define GAME_DRIVER (USR_DIR + "/Game/sys/driver") #define GAME_USERD (USR_DIR + "/Game/sys/userd")
#include <config.h> #define LIB_VERB (USR_DIR + "/Game/lib/verb") #define LIB_SIGHANDLER (USR_DIR + "/Game/lib/sighandler") #define GAME_LIB_OBJECT (USR_DIR + "/Game/lib/object") #define ALIASD (USR_DIR + "/Game/sys/aliasd") #define BAND (USR_DIR + "/Game/sys/band") #define ACCOUNTD (USR_DIR + "/Game/sys/accountd") #define ROOT (USR_DIR + "/Game/sys/root") #define SNOOPD (USR_DIR + "/Game/sys/snoopd") #define GAME_HELPD (USR_DIR + "/Game/sys/helpd") #define GAME_DRIVER (USR_DIR + "/Game/sys/driver") #define GAME_USERD (USR_DIR + "/Game/sys/userd")
Add ban manager to game object list
Add ban manager to game object list
C
agpl-3.0
shentino/kotaka,shentino/kotaka,shentino/kotaka
2070f194f2fe399158cbc43a7379ef5572761950
include/cpp-sort/detail/functional.h
include/cpp-sort/detail/functional.h
/* * Copyright (c) 2021 Morwenn * SPDX-License-Identifier: MIT */ #ifndef CPPSORT_DETAIL_FUNCTIONAL_H_ #define CPPSORT_DETAIL_FUNCTIONAL_H_ //////////////////////////////////////////////////////////// // Headers //////////////////////////////////////////////////////////// #include <type_traits> #include <utility> #include <cpp-sort/utility/as_function.h> namespace cppsort { namespace detail { //////////////////////////////////////////////////////////// // indirect template<typename Projection> class indirect_t { private: Projection projection; public: indirect_t() = delete; explicit indirect_t(Projection projection): projection(std::move(projection)) {} template<typename T> auto operator()(T&& indirect_value) -> decltype(utility::as_function(projection)(*indirect_value)) { auto&& proj = utility::as_function(projection); return proj(*indirect_value); } template<typename T> auto operator()(T&& indirect_value) const -> decltype(utility::as_function(projection)(*indirect_value)) { auto&& proj = utility::as_function(projection); return proj(*indirect_value); } }; template<typename Projection> auto indirect(Projection&& proj) -> indirect_t<std::decay_t<Projection>> { return indirect_t<std::decay_t<Projection>>(std::forward<Projection>(proj)); } }} #endif // CPPSORT_DETAIL_FUNCTIONAL_H_
/* * Copyright (c) 2021-2022 Morwenn * SPDX-License-Identifier: MIT */ #ifndef CPPSORT_DETAIL_FUNCTIONAL_H_ #define CPPSORT_DETAIL_FUNCTIONAL_H_ //////////////////////////////////////////////////////////// // Headers //////////////////////////////////////////////////////////// #include <type_traits> #include <utility> #include <cpp-sort/utility/as_function.h> #include <cpp-sort/utility/functional.h> namespace cppsort { namespace detail { //////////////////////////////////////////////////////////// // indirect template<typename Projection> class indirect_t: utility::projection_base { private: Projection projection; public: indirect_t() = delete; explicit indirect_t(Projection projection): projection(std::move(projection)) {} template<typename T> auto operator()(T&& indirect_value) -> decltype(utility::as_function(projection)(*indirect_value)) { auto&& proj = utility::as_function(projection); return proj(*indirect_value); } template<typename T> auto operator()(T&& indirect_value) const -> decltype(utility::as_function(projection)(*indirect_value)) { auto&& proj = utility::as_function(projection); return proj(*indirect_value); } }; template<typename Projection> auto indirect(Projection&& proj) -> indirect_t<std::decay_t<Projection>> { return indirect_t<std::decay_t<Projection>>(std::forward<Projection>(proj)); } }} #endif // CPPSORT_DETAIL_FUNCTIONAL_H_
Make indirect_t inherit from projection_base
Make indirect_t inherit from projection_base
C
mit
Morwenn/cpp-sort,Morwenn/cpp-sort,Morwenn/cpp-sort,Morwenn/cpp-sort
0dac68d485c739947ea064b63dd4312ffc42a96c
You-DataStore/internal/operations/erase_operation.h
You-DataStore/internal/operations/erase_operation.h
#pragma once #ifndef YOU_DATASTORE_INTERNAL_OPERATIONS_ERASE_OPERATION_H_ #define YOU_DATASTORE_INTERNAL_OPERATIONS_ERASE_OPERATION_H_ #include "../operation.h" namespace You { namespace DataStore { namespace Internal { class EraseOperation : public IOperation { public: EraseOperation(TaskId); bool run(); }; } // namespace Internal } // namespace DataStore } // namespace You #endif // YOU_DATASTORE_INTERNAL_OPERATIONS_ERASE_OPERATION_H_
#pragma once #ifndef YOU_DATASTORE_INTERNAL_OPERATIONS_ERASE_OPERATION_H_ #define YOU_DATASTORE_INTERNAL_OPERATIONS_ERASE_OPERATION_H_ #include "../operation.h" namespace You { namespace DataStore { namespace Internal { class EraseOperation : public IOperation { public: explicit EraseOperation(TaskId); bool run(); }; } // namespace Internal } // namespace DataStore } // namespace You #endif // YOU_DATASTORE_INTERNAL_OPERATIONS_ERASE_OPERATION_H_
Add explicit modifier to EraseOperation ctor
Add explicit modifier to EraseOperation ctor
C
mit
cs2103aug2014-w10-1c/main,cs2103aug2014-w10-1c/main
ce8c68c164436fbd394bac5c2287cfebe06e8f7c
example-AllComponentsGui/src/ofApp.h
example-AllComponentsGui/src/ofApp.h
#pragma once #include "ofMain.h" #include "ofxDatGui.h" class ofApp : public ofBaseApp{ public: void setup(); void draw(); void update(); ofxDatGui* gui; bool mFullscreen; void refreshWindow(); void toggleFullscreen(); void keyPressed(int key); void onButtonEvent(ofxDatGuiButtonEvent e); void onSliderEvent(ofxDatGuiSliderEvent e); void onTextInputEvent(ofxDatGuiTextInputEvent e); void on2dPadEvent(ofxDatGui2dPadEvent e); void onDropdownEvent(ofxDatGuiDropdownEvent e); void onColorPickerEvent(ofxDatGuiColorPickerEvent e); void onMatrixEvent(ofxDatGuiMatrixEvent e); uint tIndex; vector<ofxDatGuiTheme*> themes; };
#pragma once #include "ofMain.h" #include "ofxDatGui.h" class ofApp : public ofBaseApp{ public: void setup(); void draw(); void update(); ofxDatGui* gui; bool mFullscreen; void refreshWindow(); void toggleFullscreen(); void keyPressed(int key); void onButtonEvent(ofxDatGuiButtonEvent e); void onSliderEvent(ofxDatGuiSliderEvent e); void onTextInputEvent(ofxDatGuiTextInputEvent e); void on2dPadEvent(ofxDatGui2dPadEvent e); void onDropdownEvent(ofxDatGuiDropdownEvent e); void onColorPickerEvent(ofxDatGuiColorPickerEvent e); void onMatrixEvent(ofxDatGuiMatrixEvent e); unsigned int tIndex; vector<ofxDatGuiTheme*> themes; };
Fix for AllComponentsGui example under Visual Studio
Fix for AllComponentsGui example under Visual Studio
C
mit
mrbichel/ofxDatGui
730835bec1656c455fb759ebb4d22dcfc595f933
LCDManager.h
LCDManager.h
#ifndef LCDManager_h #define LCDManager_h #include "Arduino.h" #include <LiquidCrystalSPI.h> class LCDManager{ public : LCDManager(int line, int cols, int pin); LiquidCrystalSPI screen(); void clearLine(int line); void backlight(bool status); void setBacklightPin(int pin); void message(String message); void refreshDisplay(); private : void displayMessage(); String messageBuffer; LiquidCrystalSPI theScreen; int lines; int cols; int currentTextScrollPosition; int currentTextChar; bool hasDisplayFirstLoop; int pinBacklight; long lastTimer; int timeBetweenRefresh; }; #endif
#ifndef LCDManager_h #define LCDManager_h #include "Arduino.h" #include <LiquidCrystalSPI.h> #include <SPI.h> class LCDManager{ public : LCDManager(int line, int cols, int pin); LiquidCrystalSPI screen(); void clearLine(int line); void backlight(bool status); void setBacklightPin(int pin); void message(String message); void refreshDisplay(); private : void displayMessage(); String messageBuffer; LiquidCrystalSPI theScreen; int lines; int cols; int currentTextScrollPosition; int currentTextChar; bool hasDisplayFirstLoop; int pinBacklight; long lastTimer; int timeBetweenRefresh; }; #endif
Add the import for SPI in the library directly
Add the import for SPI in the library directly
C
apache-2.0
thibautrey/ArduinoScreenMessage
9a909d3e6778fd655397f304bf42cdce163e43a0
php_phpiredis.h
php_phpiredis.h
#ifndef PHP_PHPIREDIS_H #define PHP_PHPIREDIS_H 1 #define PHP_PHPIREDIS_VERSION "1.0" #define PHP_PHPIREDIS_EXTNAME "phpiredis" PHP_MINIT_FUNCTION(phpiredis); PHP_FUNCTION(phpiredis_connect); PHP_FUNCTION(phpiredis_pconnect); PHP_FUNCTION(phpiredis_disconnect); PHP_FUNCTION(phpiredis_command_bs); PHP_FUNCTION(phpiredis_command); PHP_FUNCTION(phpiredis_multi_command); PHP_FUNCTION(phpiredis_multi_command_bs); PHP_FUNCTION(phpiredis_format_command); PHP_FUNCTION(phpiredis_reader_create); PHP_FUNCTION(phpiredis_reader_reset); PHP_FUNCTION(phpiredis_reader_feed); PHP_FUNCTION(phpiredis_reader_get_state); PHP_FUNCTION(phpiredis_reader_get_error); PHP_FUNCTION(phpiredis_reader_get_reply); PHP_FUNCTION(phpiredis_reader_destroy); PHP_FUNCTION(phpiredis_reader_set_error_handler); PHP_FUNCTION(phpiredis_reader_set_status_handler); extern zend_module_entry phpiredis_module_entry; #define phpext_phpiredis_ptr &phpiredis_module_entry #endif
#ifndef PHP_PHPIREDIS_H #define PHP_PHPIREDIS_H 1 #define PHP_PHPIREDIS_VERSION "1.0.0" #define PHP_PHPIREDIS_EXTNAME "phpiredis" PHP_MINIT_FUNCTION(phpiredis); PHP_FUNCTION(phpiredis_connect); PHP_FUNCTION(phpiredis_pconnect); PHP_FUNCTION(phpiredis_disconnect); PHP_FUNCTION(phpiredis_command_bs); PHP_FUNCTION(phpiredis_command); PHP_FUNCTION(phpiredis_multi_command); PHP_FUNCTION(phpiredis_multi_command_bs); PHP_FUNCTION(phpiredis_format_command); PHP_FUNCTION(phpiredis_reader_create); PHP_FUNCTION(phpiredis_reader_reset); PHP_FUNCTION(phpiredis_reader_feed); PHP_FUNCTION(phpiredis_reader_get_state); PHP_FUNCTION(phpiredis_reader_get_error); PHP_FUNCTION(phpiredis_reader_get_reply); PHP_FUNCTION(phpiredis_reader_destroy); PHP_FUNCTION(phpiredis_reader_set_error_handler); PHP_FUNCTION(phpiredis_reader_set_status_handler); extern zend_module_entry phpiredis_module_entry; #define phpext_phpiredis_ptr &phpiredis_module_entry #endif
Add patch release in PHP_PHPIREDIS_VERSION.
Add patch release in PHP_PHPIREDIS_VERSION.
C
bsd-2-clause
jymsy/phpiredis,nrk/phpiredis,RustJason/phpiredis,Danack/phpiredis,RustJason/phpiredis,Danack/phpiredis,jymsy/phpiredis,RustJason/phpiredis,nrk/phpiredis,Danack/phpiredis,nrk/phpiredis
ae193c0aadeaa9be7e65afa87268436ee582fdb3
src/thsh.c
src/thsh.c
/* ============================================================================ Name : thsh.c Authors : Collin Kruger, Denton Underwood, John Christensen, Jon Stacey Version : Copyright : Copyright 2009 Jon Stacey. All rights reserved. Description : Hello World in C, Ansi-style ============================================================================ */ #include <stdio.h> #include <stdlib.h> int main(void) { puts("!!!Hello World!!!"); /* prints !!!Hello World!!! */ return EXIT_SUCCESS; }
/* ============================================================================ Name : thsh.c Authors : Collin Kruger, Denton Underwood, John Christensen, Jon Stacey Version : Copyright : Copyright 2009 Jon Stacey. All rights reserved. Description : Hello World in C, Ansi-style ============================================================================ */ #include <stdio.h> #include <stdlib.h> int main(void) { setvbuf(stdout, NULL, _IONBF, 0); // Disable buffering in accordance to http://homepages.tesco.net/J.deBoynePollard/FGA/capture-console-win32.html puts("!!!Hello World!!!"); /* prints !!!Hello World!!! */ return EXIT_SUCCESS; }
Disable buffering to overcome apparent Eclipse bug
Disable buffering to overcome apparent Eclipse bug
C
mit
jmstacey/thsh
13b3021a24f7801a340a4974da3a79cfca95efb8
common/common.h
common/common.h
#ifndef PS2AUTOTESTS_COMMON_H #define PS2AUTOTESTS_COMMON_H #include <stdio.h> #include <tamtypes.h> // Defines for MSVC highlighting. Not intended to actually compile with msc. #ifdef _MSC_VER void printf(const char *s, ...); #define __attribute__(x) #endif #endif
#ifndef PS2AUTOTESTS_COMMON_H #define PS2AUTOTESTS_COMMON_H // Defines for MSVC highlighting. Not intended to actually compile with msc. #ifdef _MSC_VER #define __STDC__ #define _EE #define __attribute__(x) #endif #include <stdio.h> #include <tamtypes.h> #endif
Adjust MSVC highlighting defines a bit.
Adjust MSVC highlighting defines a bit.
C
isc
jpd002/ps2autotests,jpd002/ps2autotests,unknownbrackets/ps2autotests,unknownbrackets/ps2autotests,unknownbrackets/ps2autotests,jpd002/ps2autotests
66dc55d4af2bb508965b87745fa1201298105650
gui/profiledialog.h
gui/profiledialog.h
#ifndef PROFILEDIALOG_H #define PROFILEDIALOG_H #include "ui_profiledialog.h" #include <QDialog> namespace trace { class Profile; } class ProfileDialog : public QDialog, public Ui_ProfileDialog { Q_OBJECT public: ProfileDialog(QWidget *parent = 0); ~ProfileDialog(); void setProfile(trace::Profile* profile); public slots: void setVerticalScrollMax(int max); void setHorizontalScrollMax(int max); void tableDoubleClicked(const QModelIndex& index); void selectionChanged(int64_t start, int64_t end); signals: void jumpToCall(int call); private: trace::Profile *m_profile; }; #endif
#ifndef PROFILEDIALOG_H #define PROFILEDIALOG_H #include "ui_profiledialog.h" #include <QDialog> namespace trace { struct Profile; } class ProfileDialog : public QDialog, public Ui_ProfileDialog { Q_OBJECT public: ProfileDialog(QWidget *parent = 0); ~ProfileDialog(); void setProfile(trace::Profile* profile); public slots: void setVerticalScrollMax(int max); void setHorizontalScrollMax(int max); void tableDoubleClicked(const QModelIndex& index); void selectionChanged(int64_t start, int64_t end); signals: void jumpToCall(int call); private: trace::Profile *m_profile; }; #endif
Fix erroneous class Profile forward declaration to struct Profile.
Fix erroneous class Profile forward declaration to struct Profile.
C
mit
joshua5201/apitrace,apitrace/apitrace,swq0553/apitrace,tuanthng/apitrace,apitrace/apitrace,EoD/apitrace,surround-io/apitrace,joshua5201/apitrace,surround-io/apitrace,PeterLValve/apitrace,surround-io/apitrace,joshua5201/apitrace,apitrace/apitrace,trtt/apitrace,EoD/apitrace,EoD/apitrace,trtt/apitrace,surround-io/apitrace,schulmar/apitrace,EoD/apitrace,schulmar/apitrace,PeterLValve/apitrace,PeterLValve/apitrace,trtt/apitrace,swq0553/apitrace,swq0553/apitrace,tuanthng/apitrace,swq0553/apitrace,swq0553/apitrace,EoD/apitrace,trtt/apitrace,schulmar/apitrace,trtt/apitrace,tuanthng/apitrace,schulmar/apitrace,tuanthng/apitrace,apitrace/apitrace,schulmar/apitrace,joshua5201/apitrace,surround-io/apitrace,tuanthng/apitrace,joshua5201/apitrace,PeterLValve/apitrace
6054ffdeccfc50bfe49f83c60b8a2a7fb35ee10d
control.c
control.c
#include "hardware/packet.h" #include "serial.h" void btoa(int num, char *buf, int digits) { int shift = digits - 1; int current = pow(2, shift); char digit[2]; while (current > 0) { sprintf(digit, "%d", ((num & current) >> shift) & 1); strncat(buf, digit, 1); shift--; current /= 2; } strcat(buf, "\0"); } int main(int argc, char *argv[]) { // 0: device // 1: group // 2: plug // 3: status char device[] = "\\\\.\\\\COM5"; if (serial_connect(device) == SERIAL_ERROR) { printf("Failed to connect to serial device \"%s\"\n", device); return 1; } struct Packet packet = { 1, 0, 3 }; if (serial_transmit(packet) == SERIAL_ERROR) { printf("Failed to send data to serial device \"%s\"\n", device); return 1; } serial_close(); return 0; }
#include "hardware/packet.h" #include "serial.h" void btoa(int num, char *buf, int digits) { int shift = digits - 1; int current = pow(2, shift); char digit[2]; while (current > 0) { sprintf(digit, "%d", ((num & current) >> shift) & 1); strncat(buf, digit, 1); shift--; current /= 2; } strcat(buf, "\0"); } int getvalue(char *text, char *name, int min, int max) { char *end; long result = strtol(text, &end, 10); if (*end != '\0' || result < min || result > max) { fprintf(stderr, "Invalid value for %s.\n", name); return -1; } return result; } int main(int argc, char *argv[]) { // 0: device // 1: group // 2: plug // 3: status char device[] = "\\\\.\\\\COM5"; if (serial_connect(device) == SERIAL_ERROR) { printf("Failed to connect to serial device \"%s\"\n", device); return 1; } struct Packet packet = { 1, 0, 3 }; if (serial_transmit(packet) == SERIAL_ERROR) { printf("Failed to send data to serial device \"%s\"\n", device); return 1; } serial_close(); return 0; }
Add function to convert a string to an integer
Add function to convert a string to an integer
C
agpl-3.0
jackwilsdon/lightcontrol,jackwilsdon/lightcontrol
6f791eabab8ee5bfa1567e87cb9dd851e6d99c71
include/ola/math/Random.h
include/ola/math/Random.h
/* * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * * Random.h * A simple random number generator. * Copyright (C) 2012 Simon Newton */ #ifndef INCLUDE_OLA_MATH_RANDOM_H_ #define INCLUDE_OLA_MATH_RANDOM_H_ namespace ola { namespace math { /** * @brief Seed the random number generator */ void InitRandom(); /** * @brief Return a random number between lower and upper, inclusive. i.e. * [lower, upper] * @param lower the lower bound of the range the random number should be within * @return the random number */ int Random(int lower, int upper); } // namespace math } // namespace ola #endif // INCLUDE_OLA_MATH_RANDOM_H_
/* * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * * Random.h * A simple random number generator. * Copyright (C) 2012 Simon Newton */ #ifndef INCLUDE_OLA_MATH_RANDOM_H_ #define INCLUDE_OLA_MATH_RANDOM_H_ namespace ola { namespace math { /** * @brief Seed the random number generator */ void InitRandom(); /** * @brief Return a random number between lower and upper, inclusive. i.e. * [lower, upper] * @param lower the lower bound of the range the random number should be within * @param upper the upper bound of the range the random number should be within * @return the random number */ int Random(int lower, int upper); } // namespace math } // namespace ola #endif // INCLUDE_OLA_MATH_RANDOM_H_
Fix the deliberate error, Travis should go green now
Fix the deliberate error, Travis should go green now
C
lgpl-2.1
nightrune/ola,nightrune/ola,ld3300/ola,nightrune/ola,ld3300/ola,ld3300/ola,ld3300/ola,nightrune/ola,nightrune/ola,ld3300/ola,nightrune/ola,ld3300/ola,nightrune/ola,ld3300/ola
a356bd07150e558e19cead5eaa9d11e78b7842cb
test/ClangModules/Inputs/resolve-cross-language/BaseUser.framework/Headers/BaseUser.h
test/ClangModules/Inputs/resolve-cross-language/BaseUser.framework/Headers/BaseUser.h
@import Base; @import ObjectiveC; BaseClass *getBaseClassObjC(); void useBaseClassObjC(BaseClass *); @interface UserClass : NSObject <BaseProto> @end id <BaseProto> getBaseProtoObjC(); void useBaseProtoObjC(id <BaseProto>);
@import Base; @import ObjectiveC; BaseClass *getBaseClassObjC(); void useBaseClassObjC(BaseClass *); @interface UserClass : NSObject <BaseProto> @end id <BaseProto> getBaseProtoObjC(); void useBaseProtoObjC(id <BaseProto>); @interface BaseClass (ObjCExtensions) - (void)categoryMethod; @end
Add a test for ObjC categories on Swift classes.
[ClangImporter] Add a test for ObjC categories on Swift classes. ...that get unified by the importer. Swift SVN r15083
C
apache-2.0
ken0nek/swift,JGiola/swift,deyton/swift,austinzheng/swift,bitjammer/swift,stephentyrone/swift,airspeedswift/swift,bitjammer/swift,JGiola/swift,glessard/swift,therealbnut/swift,ahoppen/swift,mightydeveloper/swift,allevato/swift,sdulal/swift,ben-ng/swift,codestergit/swift,mightydeveloper/swift,calebd/swift,nathawes/swift,hughbe/swift,MukeshKumarS/Swift,natecook1000/swift,frootloops/swift,uasys/swift,brentdax/swift,gottesmm/swift,swiftix/swift.old,calebd/swift,calebd/swift,SwiftAndroid/swift,ben-ng/swift,tinysun212/swift-windows,swiftix/swift.old,ahoppen/swift,alblue/swift,benlangmuir/swift,IngmarStein/swift,CodaFi/swift,emilstahl/swift,djwbrown/swift,cbrentharris/swift,adrfer/swift,JGiola/swift,OscarSwanros/swift,swiftix/swift.old,ken0nek/swift,atrick/swift,austinzheng/swift,sschiau/swift,russbishop/swift,aschwaighofer/swift,swiftix/swift,parkera/swift,cbrentharris/swift,xedin/swift,karwa/swift,kentya6/swift,KrishMunot/swift,xedin/swift,codestergit/swift,LeoShimonaka/swift,uasys/swift,return/swift,deyton/swift,benlangmuir/swift,austinzheng/swift,adrfer/swift,swiftix/swift.old,adrfer/swift,danielmartin/swift,glessard/swift,bitjammer/swift,ken0nek/swift,rudkx/swift,parkera/swift,uasys/swift,huonw/swift,kentya6/swift,johnno1962d/swift,airspeedswift/swift,nathawes/swift,tinysun212/swift-windows,huonw/swift,tkremenek/swift,swiftix/swift,danielmartin/swift,jopamer/swift,alblue/swift,sdulal/swift,alblue/swift,brentdax/swift,kusl/swift,jopamer/swift,return/swift,MukeshKumarS/Swift,cbrentharris/swift,cbrentharris/swift,jtbandes/swift,shahmishal/swift,sschiau/swift,kperryua/swift,milseman/swift,xwu/swift,JaSpa/swift,Jnosh/swift,tkremenek/swift,parkera/swift,manavgabhawala/swift,tjw/swift,practicalswift/swift,brentdax/swift,khizkhiz/swift,frootloops/swift,kperryua/swift,jtbandes/swift,lorentey/swift,ben-ng/swift,Jnosh/swift,rudkx/swift,bitjammer/swift,kusl/swift,tjw/swift,deyton/swift,hughbe/swift,Ivacker/swift,alblue/swift,stephentyrone/swift,JaSpa/swift,emilstahl/swift,modocache/swift,return/swift,kperryua/swift,brentdax/swift,brentdax/swift,allevato/swift,hooman/swift,emilstahl/swift,huonw/swift,kstaring/swift,hughbe/swift,therealbnut/swift,harlanhaskins/swift,JaSpa/swift,nathawes/swift,jmgc/swift,kperryua/swift,stephentyrone/swift,aschwaighofer/swift,ben-ng/swift,airspeedswift/swift,deyton/swift,MukeshKumarS/Swift,alblue/swift,shahmishal/swift,tkremenek/swift,dduan/swift,LeoShimonaka/swift,therealbnut/swift,tardieu/swift,MukeshKumarS/Swift,milseman/swift,MukeshKumarS/Swift,jtbandes/swift,johnno1962d/swift,kstaring/swift,apple/swift,apple/swift,allevato/swift,kusl/swift,JGiola/swift,shajrawi/swift,danielmartin/swift,slavapestov/swift,hooman/swift,kusl/swift,rudkx/swift,dreamsxin/swift,cbrentharris/swift,return/swift,IngmarStein/swift,khizkhiz/swift,kusl/swift,swiftix/swift.old,gottesmm/swift,felix91gr/swift,therealbnut/swift,gregomni/swift,kusl/swift,SwiftAndroid/swift,karwa/swift,OscarSwanros/swift,kusl/swift,austinzheng/swift,Ivacker/swift,amraboelela/swift,tardieu/swift,ben-ng/swift,arvedviehweger/swift,shahmishal/swift,natecook1000/swift,gregomni/swift,swiftix/swift.old,gribozavr/swift,LeoShimonaka/swift,jmgc/swift,arvedviehweger/swift,aschwaighofer/swift,karwa/swift,JaSpa/swift,gribozavr/swift,jmgc/swift,zisko/swift,deyton/swift,practicalswift/swift,ahoppen/swift,jmgc/swift,benlangmuir/swift,sschiau/swift,sschiau/swift,allevato/swift,CodaFi/swift,xwu/swift,mightydeveloper/swift,natecook1000/swift,LeoShimonaka/swift,tardieu/swift,uasys/swift,kentya6/swift,CodaFi/swift,karwa/swift,jtbandes/swift,shajrawi/swift,harlanhaskins/swift,Jnosh/swift,jckarter/swift,aschwaighofer/swift,benlangmuir/swift,hooman/swift,swiftix/swift.old,jopamer/swift,harlanhaskins/swift,tkremenek/swift,kstaring/swift,harlanhaskins/swift,tkremenek/swift,roambotics/swift,dduan/swift,adrfer/swift,roambotics/swift,felix91gr/swift,milseman/swift,swiftix/swift,CodaFi/swift,manavgabhawala/swift,felix91gr/swift,jopamer/swift,jckarter/swift,russbishop/swift,djwbrown/swift,tjw/swift,dduan/swift,swiftix/swift,apple/swift,johnno1962d/swift,ben-ng/swift,OscarSwanros/swift,parkera/swift,kentya6/swift,frootloops/swift,KrishMunot/swift,glessard/swift,jckarter/swift,aschwaighofer/swift,swiftix/swift,KrishMunot/swift,kstaring/swift,kperryua/swift,devincoughlin/swift,tardieu/swift,cbrentharris/swift,frootloops/swift,roambotics/swift,emilstahl/swift,dduan/swift,karwa/swift,aschwaighofer/swift,zisko/swift,danielmartin/swift,lorentey/swift,OscarSwanros/swift,adrfer/swift,OscarSwanros/swift,nathawes/swift,IngmarStein/swift,shahmishal/swift,johnno1962d/swift,xedin/swift,bitjammer/swift,roambotics/swift,stephentyrone/swift,shajrawi/swift,russbishop/swift,gmilos/swift,practicalswift/swift,LeoShimonaka/swift,apple/swift,karwa/swift,SwiftAndroid/swift,sdulal/swift,karwa/swift,glessard/swift,SwiftAndroid/swift,JaSpa/swift,ken0nek/swift,parkera/swift,airspeedswift/swift,practicalswift/swift,jopamer/swift,dduan/swift,practicalswift/swift,huonw/swift,modocache/swift,austinzheng/swift,swiftix/swift,manavgabhawala/swift,uasys/swift,slavapestov/swift,xwu/swift,djwbrown/swift,johnno1962d/swift,MukeshKumarS/Swift,cbrentharris/swift,gottesmm/swift,IngmarStein/swift,lorentey/swift,devincoughlin/swift,khizkhiz/swift,parkera/swift,therealbnut/swift,modocache/swift,gmilos/swift,gribozavr/swift,ben-ng/swift,kstaring/swift,gottesmm/swift,shajrawi/swift,shahmishal/swift,Jnosh/swift,IngmarStein/swift,jckarter/swift,shajrawi/swift,sdulal/swift,devincoughlin/swift,parkera/swift,jtbandes/swift,slavapestov/swift,codestergit/swift,mightydeveloper/swift,gregomni/swift,natecook1000/swift,allevato/swift,stephentyrone/swift,bitjammer/swift,jckarter/swift,gregomni/swift,shajrawi/swift,JaSpa/swift,sschiau/swift,emilstahl/swift,dduan/swift,natecook1000/swift,airspeedswift/swift,sschiau/swift,lorentey/swift,zisko/swift,hooman/swift,sdulal/swift,nathawes/swift,tardieu/swift,tinysun212/swift-windows,LeoShimonaka/swift,jmgc/swift,djwbrown/swift,hooman/swift,milseman/swift,jckarter/swift,ahoppen/swift,atrick/swift,harlanhaskins/swift,russbishop/swift,sdulal/swift,amraboelela/swift,Ivacker/swift,shajrawi/swift,brentdax/swift,tardieu/swift,glessard/swift,benlangmuir/swift,modocache/swift,xedin/swift,allevato/swift,modocache/swift,tinysun212/swift-windows,return/swift,tkremenek/swift,amraboelela/swift,shajrawi/swift,khizkhiz/swift,jmgc/swift,apple/swift,huonw/swift,devincoughlin/swift,nathawes/swift,frootloops/swift,tardieu/swift,devincoughlin/swift,johnno1962d/swift,ken0nek/swift,ahoppen/swift,lorentey/swift,atrick/swift,danielmartin/swift,deyton/swift,return/swift,arvedviehweger/swift,calebd/swift,practicalswift/swift,calebd/swift,emilstahl/swift,cbrentharris/swift,gottesmm/swift,russbishop/swift,mightydeveloper/swift,huonw/swift,adrfer/swift,calebd/swift,devincoughlin/swift,slavapestov/swift,xwu/swift,kentya6/swift,kperryua/swift,russbishop/swift,LeoShimonaka/swift,Ivacker/swift,devincoughlin/swift,amraboelela/swift,kusl/swift,JGiola/swift,xedin/swift,felix91gr/swift,codestergit/swift,hughbe/swift,xedin/swift,felix91gr/swift,gmilos/swift,khizkhiz/swift,huonw/swift,deyton/swift,shahmishal/swift,codestergit/swift,Ivacker/swift,LeoShimonaka/swift,natecook1000/swift,gribozavr/swift,djwbrown/swift,KrishMunot/swift,parkera/swift,Ivacker/swift,khizkhiz/swift,tjw/swift,glessard/swift,mightydeveloper/swift,apple/swift,KrishMunot/swift,sdulal/swift,tinysun212/swift-windows,devincoughlin/swift,gmilos/swift,danielmartin/swift,stephentyrone/swift,kstaring/swift,therealbnut/swift,alblue/swift,tjw/swift,JGiola/swift,dduan/swift,arvedviehweger/swift,modocache/swift,slavapestov/swift,zisko/swift,kentya6/swift,gmilos/swift,manavgabhawala/swift,uasys/swift,Jnosh/swift,practicalswift/swift,KrishMunot/swift,xedin/swift,milseman/swift,brentdax/swift,jtbandes/swift,jtbandes/swift,airspeedswift/swift,swiftix/swift.old,tjw/swift,ken0nek/swift,modocache/swift,mightydeveloper/swift,arvedviehweger/swift,rudkx/swift,Jnosh/swift,airspeedswift/swift,bitjammer/swift,xwu/swift,atrick/swift,aschwaighofer/swift,djwbrown/swift,karwa/swift,gribozavr/swift,JaSpa/swift,rudkx/swift,nathawes/swift,sschiau/swift,shahmishal/swift,gmilos/swift,SwiftAndroid/swift,IngmarStein/swift,hughbe/swift,frootloops/swift,dreamsxin/swift,stephentyrone/swift,gregomni/swift,tjw/swift,harlanhaskins/swift,felix91gr/swift,amraboelela/swift,gottesmm/swift,johnno1962d/swift,ahoppen/swift,kentya6/swift,russbishop/swift,frootloops/swift,hooman/swift,tkremenek/swift,SwiftAndroid/swift,danielmartin/swift,swiftix/swift,amraboelela/swift,jopamer/swift,arvedviehweger/swift,zisko/swift,harlanhaskins/swift,jckarter/swift,kperryua/swift,emilstahl/swift,roambotics/swift,natecook1000/swift,atrick/swift,practicalswift/swift,slavapestov/swift,ken0nek/swift,amraboelela/swift,return/swift,alblue/swift,xedin/swift,zisko/swift,gribozavr/swift,hooman/swift,CodaFi/swift,jmgc/swift,Jnosh/swift,austinzheng/swift,slavapestov/swift,arvedviehweger/swift,Ivacker/swift,SwiftAndroid/swift,OscarSwanros/swift,hughbe/swift,mightydeveloper/swift,roambotics/swift,gmilos/swift,felix91gr/swift,uasys/swift,zisko/swift,kstaring/swift,IngmarStein/swift,CodaFi/swift,allevato/swift,gregomni/swift,MukeshKumarS/Swift,hughbe/swift,khizkhiz/swift,manavgabhawala/swift,manavgabhawala/swift,sdulal/swift,adrfer/swift,codestergit/swift,shahmishal/swift,atrick/swift,OscarSwanros/swift,calebd/swift,KrishMunot/swift,gribozavr/swift,milseman/swift,emilstahl/swift,lorentey/swift,lorentey/swift,tinysun212/swift-windows,sschiau/swift,kentya6/swift,xwu/swift,benlangmuir/swift,therealbnut/swift,jopamer/swift,CodaFi/swift,rudkx/swift,manavgabhawala/swift,gottesmm/swift,tinysun212/swift-windows,xwu/swift,Ivacker/swift,austinzheng/swift,lorentey/swift,gribozavr/swift,codestergit/swift,djwbrown/swift,milseman/swift
15b9e2c5ff7ba51288932b095f3f9949104143d6
src/interfaces/ecpg/pgtypeslib/common.c
src/interfaces/ecpg/pgtypeslib/common.c
#include <errno.h> #include "extern.h" char * pgtypes_alloc(long size) { char *new = (char *) calloc(1L, size); if (!new) { errno = ENOMEM; return NULL; } memset(new, '\0', size); return (new); } char * pgtypes_strdup(char *str) { char *new = (char *) strdup(str); if (!new) errno = ENOMEM; return (new); }
#include <errno.h> #include <stdlib.h> #include "extern.h" char * pgtypes_alloc(long size) { char *new = (char *) calloc(1L, size); if (!new) { errno = ENOMEM; return NULL; } memset(new, '\0', size); return (new); } char * pgtypes_strdup(char *str) { char *new = (char *) strdup(str); if (!new) errno = ENOMEM; return (new); }
Add <stdlib> to add calloc() prototype.
Add <stdlib> to add calloc() prototype.
C
apache-2.0
kaknikhil/gpdb,lisakowen/gpdb,yuanzhao/gpdb,cjcjameson/gpdb,yazun/postgres-xl,chrishajas/gpdb,tangp3/gpdb,janebeckman/gpdb,edespino/gpdb,zaksoup/gpdb,arcivanov/postgres-xl,adam8157/gpdb,50wu/gpdb,ovr/postgres-xl,tpostgres-projects/tPostgres,greenplum-db/gpdb,zaksoup/gpdb,oberstet/postgres-xl,adam8157/gpdb,atris/gpdb,tangp3/gpdb,techdragon/Postgres-XL,rubikloud/gpdb,postmind-net/postgres-xl,techdragon/Postgres-XL,jmcatamney/gpdb,xuegang/gpdb,tpostgres-projects/tPostgres,zaksoup/gpdb,xuegang/gpdb,xinzweb/gpdb,xuegang/gpdb,lintzc/gpdb,lintzc/gpdb,0x0FFF/gpdb,lintzc/gpdb,xinzweb/gpdb,50wu/gpdb,randomtask1155/gpdb,foyzur/gpdb,lpetrov-pivotal/gpdb,yuanzhao/gpdb,chrishajas/gpdb,ahachete/gpdb,oberstet/postgres-xl,greenplum-db/gpdb,atris/gpdb,xuegang/gpdb,royc1/gpdb,yuanzhao/gpdb,cjcjameson/gpdb,Quikling/gpdb,pavanvd/postgres-xl,Postgres-XL/Postgres-XL,rvs/gpdb,ovr/postgres-xl,tpostgres-projects/tPostgres,snaga/postgres-xl,ovr/postgres-xl,kaknikhil/gpdb,yazun/postgres-xl,jmcatamney/gpdb,edespino/gpdb,zeroae/postgres-xl,snaga/postgres-xl,CraigHarris/gpdb,lintzc/gpdb,rvs/gpdb,techdragon/Postgres-XL,ahachete/gpdb,yazun/postgres-xl,cjcjameson/gpdb,royc1/gpdb,oberstet/postgres-xl,edespino/gpdb,pavanvd/postgres-xl,0x0FFF/gpdb,rubikloud/gpdb,lintzc/gpdb,cjcjameson/gpdb,kaknikhil/gpdb,lisakowen/gpdb,janebeckman/gpdb,janebeckman/gpdb,yazun/postgres-xl,ashwinstar/gpdb,xuegang/gpdb,ovr/postgres-xl,tpostgres-projects/tPostgres,CraigHarris/gpdb,rubikloud/gpdb,rvs/gpdb,janebeckman/gpdb,kaknikhil/gpdb,zeroae/postgres-xl,janebeckman/gpdb,lisakowen/gpdb,janebeckman/gpdb,yuanzhao/gpdb,arcivanov/postgres-xl,xinzweb/gpdb,postmind-net/postgres-xl,rubikloud/gpdb,Quikling/gpdb,randomtask1155/gpdb,foyzur/gpdb,ashwinstar/gpdb,adam8157/gpdb,foyzur/gpdb,xinzweb/gpdb,rvs/gpdb,chrishajas/gpdb,adam8157/gpdb,atris/gpdb,yuanzhao/gpdb,randomtask1155/gpdb,zaksoup/gpdb,randomtask1155/gpdb,lpetrov-pivotal/gpdb,tangp3/gpdb,ahachete/gpdb,adam8157/gpdb,rubikloud/gpdb,royc1/gpdb,Quikling/gpdb,royc1/gpdb,janebeckman/gpdb,chrishajas/gpdb,50wu/gpdb,50wu/gpdb,pavanvd/postgres-xl,50wu/gpdb,janebeckman/gpdb,arcivanov/postgres-xl,yuanzhao/gpdb,cjcjameson/gpdb,randomtask1155/gpdb,kmjungersen/PostgresXL,kmjungersen/PostgresXL,Quikling/gpdb,CraigHarris/gpdb,kaknikhil/gpdb,lpetrov-pivotal/gpdb,Chibin/gpdb,arcivanov/postgres-xl,greenplum-db/gpdb,xinzweb/gpdb,zaksoup/gpdb,janebeckman/gpdb,greenplum-db/gpdb,zeroae/postgres-xl,0x0FFF/gpdb,50wu/gpdb,rvs/gpdb,Postgres-XL/Postgres-XL,yuanzhao/gpdb,edespino/gpdb,jmcatamney/gpdb,rvs/gpdb,tangp3/gpdb,jmcatamney/gpdb,Chibin/gpdb,cjcjameson/gpdb,tangp3/gpdb,xinzweb/gpdb,pavanvd/postgres-xl,Quikling/gpdb,chrishajas/gpdb,kaknikhil/gpdb,Chibin/gpdb,0x0FFF/gpdb,Chibin/gpdb,edespino/gpdb,Chibin/gpdb,zaksoup/gpdb,randomtask1155/gpdb,lisakowen/gpdb,ashwinstar/gpdb,ahachete/gpdb,zeroae/postgres-xl,royc1/gpdb,lpetrov-pivotal/gpdb,adam8157/gpdb,royc1/gpdb,chrishajas/gpdb,postmind-net/postgres-xl,Quikling/gpdb,edespino/gpdb,oberstet/postgres-xl,Quikling/gpdb,xuegang/gpdb,rubikloud/gpdb,rvs/gpdb,lintzc/gpdb,Postgres-XL/Postgres-XL,Postgres-XL/Postgres-XL,foyzur/gpdb,lpetrov-pivotal/gpdb,cjcjameson/gpdb,0x0FFF/gpdb,jmcatamney/gpdb,Chibin/gpdb,techdragon/Postgres-XL,postmind-net/postgres-xl,ahachete/gpdb,rvs/gpdb,zaksoup/gpdb,yuanzhao/gpdb,tangp3/gpdb,atris/gpdb,atris/gpdb,ashwinstar/gpdb,atris/gpdb,snaga/postgres-xl,adam8157/gpdb,lintzc/gpdb,CraigHarris/gpdb,cjcjameson/gpdb,jmcatamney/gpdb,edespino/gpdb,50wu/gpdb,foyzur/gpdb,ashwinstar/gpdb,kmjungersen/PostgresXL,Chibin/gpdb,kaknikhil/gpdb,foyzur/gpdb,ahachete/gpdb,rubikloud/gpdb,ashwinstar/gpdb,lpetrov-pivotal/gpdb,CraigHarris/gpdb,xinzweb/gpdb,kmjungersen/PostgresXL,lintzc/gpdb,royc1/gpdb,adam8157/gpdb,ashwinstar/gpdb,foyzur/gpdb,CraigHarris/gpdb,tangp3/gpdb,zaksoup/gpdb,kaknikhil/gpdb,Quikling/gpdb,snaga/postgres-xl,lisakowen/gpdb,Quikling/gpdb,rvs/gpdb,randomtask1155/gpdb,jmcatamney/gpdb,ahachete/gpdb,lisakowen/gpdb,0x0FFF/gpdb,chrishajas/gpdb,greenplum-db/gpdb,lisakowen/gpdb,CraigHarris/gpdb,0x0FFF/gpdb,xuegang/gpdb,greenplum-db/gpdb,chrishajas/gpdb,ovr/postgres-xl,ashwinstar/gpdb,edespino/gpdb,kaknikhil/gpdb,greenplum-db/gpdb,kmjungersen/PostgresXL,lintzc/gpdb,yuanzhao/gpdb,lpetrov-pivotal/gpdb,techdragon/Postgres-XL,oberstet/postgres-xl,50wu/gpdb,lpetrov-pivotal/gpdb,greenplum-db/gpdb,rubikloud/gpdb,zeroae/postgres-xl,rvs/gpdb,xuegang/gpdb,jmcatamney/gpdb,xinzweb/gpdb,edespino/gpdb,yuanzhao/gpdb,yazun/postgres-xl,xuegang/gpdb,arcivanov/postgres-xl,CraigHarris/gpdb,Postgres-XL/Postgres-XL,randomtask1155/gpdb,0x0FFF/gpdb,cjcjameson/gpdb,royc1/gpdb,lisakowen/gpdb,edespino/gpdb,arcivanov/postgres-xl,ahachete/gpdb,cjcjameson/gpdb,postmind-net/postgres-xl,atris/gpdb,atris/gpdb,Chibin/gpdb,snaga/postgres-xl,tpostgres-projects/tPostgres,Chibin/gpdb,pavanvd/postgres-xl,foyzur/gpdb,tangp3/gpdb,janebeckman/gpdb,kaknikhil/gpdb,Chibin/gpdb,CraigHarris/gpdb,Quikling/gpdb
97a660828160b390186d06e607eeb9d0c1af8bc1
MBContactPicker/MBContactModel.h
MBContactPicker/MBContactModel.h
// // MBContactModel.h // MBContactPicker // // Created by Matt Bowman on 12/13/13. // Copyright (c) 2013 Citrrus, LLC. All rights reserved. // #import <Foundation/Foundation.h> @protocol MBContactPickerModelProtocol <NSObject> @required @property (nonatomic, copy) NSString *contactTitle; @optional @property (nonatomic, copy) NSString *contactSubtitle; @property (nonatomic) UIImage *contactImage; @end @interface MBContactModel : NSObject <MBContactPickerModelProtocol> @property (nonatomic, copy) NSString *contactTitle; @property (nonatomic, copy) NSString *contactSubtitle; @property (nonatomic) UIImage *contactImage; @end
// // MBContactModel.h // MBContactPicker // // Created by Matt Bowman on 12/13/13. // Copyright (c) 2013 Citrrus, LLC. All rights reserved. // #import <Foundation/Foundation.h> @protocol MBContactPickerModelProtocol <NSObject> @required @property (readonly, nonatomic, copy) NSString *contactTitle; @optional @property (readonly, nonatomic, copy) NSString *contactSubtitle; @property (readonly, nonatomic) UIImage *contactImage; @end @interface MBContactModel : NSObject <MBContactPickerModelProtocol> @property (nonatomic, copy) NSString *contactTitle; @property (nonatomic, copy) NSString *contactSubtitle; @property (nonatomic) UIImage *contactImage; @end
Make MBContactPickerModelProtocol properties read-only, since that is all that the picker implementation requires, and avoids implementors having to either provide setters, or ignore the Xcode warnings about them not being auto-generated.
Make MBContactPickerModelProtocol properties read-only, since that is all that the picker implementation requires, and avoids implementors having to either provide setters, or ignore the Xcode warnings about them not being auto-generated.
C
mit
Citrrus/MBContactPicker,xuzhiming/MBContactPicker,octanner/MBContactPicker
c6aa7012fa24998872f6350a32ff8b3a13add21a
lepton/renderer.h
lepton/renderer.h
/**************************************************************************** * * Copyright (c) 2008 by Casey Duncan and contributors * All Rights Reserved. * * This software is subject to the provisions of the MIT License * A copy of the license should accompany this distribution. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * ****************************************************************************/ /* Renderer shared code * * $Id$ */ #ifndef _RENDERER_H_ #define _RENDERER_H_ typedef struct { PyObject_HEAD Py_ssize_t size; float *data; } FloatArrayObject; /* Return true if o is a bon-a-fide FloatArrayObject */ int FloatArrayObject_Check(FloatArrayObject *o); FloatArrayObject * FloatArray_new(Py_ssize_t size); FloatArrayObject * generate_default_2D_tex_coords(GroupObject *pgroup); /* Initialize the glew OpenGL extension manager If glew has already been initialized, do nothing */ int glew_initialize(void); #endif
/**************************************************************************** * * Copyright (c) 2008 by Casey Duncan and contributors * All Rights Reserved. * * This software is subject to the provisions of the MIT License * A copy of the license should accompany this distribution. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * ****************************************************************************/ /* Renderer shared code * * $Id$ */ #ifndef _RENDERER_H_ #define _RENDERER_H_ typedef struct { PyObject_HEAD Py_ssize_t size; float *data; } FloatArrayObject; /* Return true if o is a bon-a-fide FloatArrayObject */ int FloatArrayObject_Check(FloatArrayObject *o); FloatArrayObject * FloatArray_new(Py_ssize_t size); FloatArrayObject * generate_default_2D_tex_coords(GroupObject *pgroup); /* Initialize the glew OpenGL extension manager If glew has already been initialized, do nothing */ int glew_initialize(void); #endif // Windows lacks fminf #ifndef fminf #define fminf(x, y) (((x) < (y)) ? (x) : (y)) #endif
Define fminf for platforms that lack it
Define fminf for platforms that lack it
C
mit
Alwnikrotikz/py-lepton,jmichelsen/py-lepton,tectronics/py-lepton,AlanZatarain/py-lepton,tectronics/py-lepton,AlanZatarain/py-lepton,jmichelsen/py-lepton,Alwnikrotikz/py-lepton
436c216d0e372f08a8a0a1eab84fb569001c42fa
libsel4/include/sel4/macros.h
libsel4/include/sel4/macros.h
/* * Copyright 2014, NICTA * * This software may be distributed and modified according to the terms of * the BSD 2-Clause license. Note that NO WARRANTY is provided. * See "LICENSE_BSD2.txt" for details. * * @TAG(NICTA_BSD) */ #ifndef __LIBSEL4_MACROS_H #define __LIBSEL4_MACROS_H /* * Some compilers attempt to pack enums into the smallest possible type. * For ABI compatability with the kernel, we need to ensure they remain * the same size as an 'int'. */ #define SEL4_FORCE_LONG_ENUM(type) \ _enum_pad_ ## type = (1U << ((sizeof(int)*8) - 1)) #ifndef CONST #define CONST __attribute__((__const__)) #endif #ifndef PURE #define PURE __attribute__((__pure__)) #endif #endif
/* * Copyright 2014, NICTA * * This software may be distributed and modified according to the terms of * the BSD 2-Clause license. Note that NO WARRANTY is provided. * See "LICENSE_BSD2.txt" for details. * * @TAG(NICTA_BSD) */ #ifndef __LIBSEL4_MACROS_H #define __LIBSEL4_MACROS_H /* * Some compilers attempt to pack enums into the smallest possible type. * For ABI compatability with the kernel, we need to ensure they remain * the same size as an 'int'. */ #define SEL4_FORCE_LONG_ENUM(type) \ _enum_pad_ ## type = (1U << ((sizeof(int)*8) - 1)) - 1 #ifndef CONST #define CONST __attribute__((__const__)) #endif #ifndef PURE #define PURE __attribute__((__pure__)) #endif #endif
Make enum padding types one less in value so that they are INT_MAX
libsel4: Make enum padding types one less in value so that they are INT_MAX Having the padding types as INT_MAX + 1 means C++ compilers will end up using a signed 64 bit integer, as that is the only type that can have a value that large, as well as the negative values our enums typically contain
C
bsd-2-clause
DavidVorick/seL4,lukw00/seL4,lukw00/seL4,rzhw/seL4,rzhw/seL4,sutt0n/seL4,sigma-random/seL4,DavidVorick/seL4,codeneomatrix/seL4,CarterTsai/seL4,haitao52198/seL4,rzhw/seL4,gpbonillas/seL4,sutt0n/seL4,gpbonillas/seL4,dailypips/seL4,rzhw/seL4,dailypips/seL4,zhicheng/seL4,watbe/seL4,CarterTsai/seL4,sutt0n/seL4,CarterTsai/seL4,winksaville/seL4,watbe/seL4,gpbonillas/seL4,CarterTsai/seL4,DavidVorick/seL4,sigma-random/seL4,gpbonillas/seL4,sigma-random/seL4,codeneomatrix/seL4,haitao52198/seL4,lukw00/seL4,sigma-random/seL4,codeneomatrix/seL4,cmr/seL4,winksaville/seL4,winksaville/seL4,dailypips/seL4,haitao52198/seL4,cmr/seL4,zhicheng/seL4,sutt0n/seL4,codeneomatrix/seL4,sigma-random/seL4,winksaville/seL4,haitao52198/seL4,zhicheng/seL4,DavidVorick/seL4,lukw00/seL4,cmr/seL4,dailypips/seL4,watbe/seL4,watbe/seL4
31d22c03b365cd06de6b040deb8ca49d30202205
Demo/Shared/MASPreferencesWindowController.h
Demo/Shared/MASPreferencesWindowController.h
// // Created by Vadim Shpakovski on 4/22/11. // Copyright 2011 Shpakovski. All rights reserved. // extern NSString *const kMASPreferencesWindowControllerDidChangeViewNotification; @interface MASPreferencesWindowController : NSWindowController <NSToolbarDelegate, NSWindowDelegate> { @private NSArray *_viewControllers; NSString *_title; id _lastSelectedController; } @property (nonatomic, readonly) NSArray *viewControllers; @property (nonatomic, readonly) NSUInteger indexOfSelectedController; @property (nonatomic, readonly) NSViewController *selectedViewController; @property (nonatomic, readonly) NSString *title; - (id)initWithViewControllers:(NSArray *)viewControllers; - (id)initWithViewControllers:(NSArray *)viewControllers title:(NSString *)title; - (void)selectControllerAtIndex:(NSUInteger)controllerIndex withAnimation:(BOOL)animate; - (IBAction)goNextTab:(id)sender; - (IBAction)goPreviousTab:(id)sender; - (void)resetFirstResponderInView:(NSView *)view; @end
// // Created by Vadim Shpakovski on 4/22/11. // Copyright 2011 Shpakovski. All rights reserved. // extern NSString *const kMASPreferencesWindowControllerDidChangeViewNotification; #if MAC_OS_X_VERSION_MAX_ALLOWED > MAC_OS_X_VERSION_10_5 @interface MASPreferencesWindowController : NSWindowController <NSToolbarDelegate, NSWindowDelegate> #else @interface MASPreferencesWindowController : NSWindowController #endif { @private NSArray *_viewControllers; NSString *_title; id _lastSelectedController; } @property (nonatomic, readonly) NSArray *viewControllers; @property (nonatomic, readonly) NSUInteger indexOfSelectedController; @property (nonatomic, readonly) NSViewController *selectedViewController; @property (nonatomic, readonly) NSString *title; - (id)initWithViewControllers:(NSArray *)viewControllers; - (id)initWithViewControllers:(NSArray *)viewControllers title:(NSString *)title; - (void)selectControllerAtIndex:(NSUInteger)controllerIndex withAnimation:(BOOL)animate; - (IBAction)goNextTab:(id)sender; - (IBAction)goPreviousTab:(id)sender; - (void)resetFirstResponderInView:(NSView *)view; @end
Allow building with the 10.5 SDK.
Allow building with the 10.5 SDK.
C
bsd-2-clause
robrix/MASPreferences,konstantinpavlikhin/MASPreferences
8797e7b4b961988983c92666dc6321a55a737e43
ktexteditor/ktexteditor_export.h
ktexteditor/ktexteditor_export.h
/* This file is part of the KDE project Copyright (C) 2007 David Faure <faure@kde.org> This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef KTEXTEDITOR_EXPORT_H #define KTEXTEDITOR_EXPORT_H /* needed for KDE_EXPORT and KDE_IMPORT macros */ #include <kdemacros.h> /* We use _WIN32/_WIN64 instead of Q_OS_WIN so that this header can be used from C files too */ #if defined _WIN32 || defined _WIN64 #ifndef KTEXTEDITOR_EXPORT # if defined(MAKE_KTEXTEDITOR_LIB) /* We are building this library */ # define KTEXTEDITOR_EXPORT KDE_EXPORT # else /* We are using this library */ # define KTEXTEDITOR_EXPORT KDE_IMPORT # endif #endif #else /* UNIX */ #define KTEXTEDITOR_EXPORT KDE_EXPORT #endif #endif
/* This file is part of the KDE project Copyright (C) 2007 David Faure <faure@kde.org> This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef KTEXTEDITOR_EXPORT_H #define KTEXTEDITOR_EXPORT_H /* needed for KDE_EXPORT and KDE_IMPORT macros */ #include <kdemacros.h> #ifndef KTEXTEDITOR_EXPORT # if defined(MAKE_KTEXTEDITOR_LIB) /* We are building this library */ # define KTEXTEDITOR_EXPORT KDE_EXPORT # else /* We are using this library */ # define KTEXTEDITOR_EXPORT KDE_IMPORT # endif #endif #endif
Fix up the FOO_EXPORT stuff, per our discussion on k-c-d. CCMAIL: Ch.Ehrlicher@gmx.de,thiago@kde.org
Fix up the FOO_EXPORT stuff, per our discussion on k-c-d. CCMAIL: Ch.Ehrlicher@gmx.de,thiago@kde.org (fingers crossed) svn path=/trunk/KDE/kdelibs/interfaces/ktexteditor/; revision=662070
C
lgpl-2.1
DickJ/kate,cmacq2/kate,hlamer/kate,jfmcarreira/kate,hlamer/kate,sandsmark/kate,hlamer/kate,jfmcarreira/kate,cmacq2/kate,hlamer/kate,DickJ/kate,DickJ/kate,sandsmark/kate,hlamer/kate,hlamer/kate,sandsmark/kate,hlamer/kate,sandsmark/kate,hlamer/kate,cmacq2/kate,hlamer/kate,hlamer/kate,DickJ/kate,jfmcarreira/kate
6bcbbabb47dd982641859a3b98905f5bda671ded
src/pic32/power.c
src/pic32/power.c
#include "power.h" #define SLEEP_MODE_ENABLE_BIT 4 void initializePower() { } void updatePower() { } void enterLowPowerMode() { // When WAIT instruction is executed, go into SLEEP mode OSCCONSET = (1 << SLEEP_MODE_ENABLE_BIT); asm("wait"); // TODO if we wake up, do we resume with the PC right here? there's an RCON // register with bits to indicate if we woke up from sleep. we'll need to // re-run setup, potentially. //C1CONSET / C1CONbits.x }
#include "power.h" void initializePower() { } void updatePower() { } void enterLowPowerMode() { }
Remove "in progress" sleep mode code for PIC32 for now.
Remove "in progress" sleep mode code for PIC32 for now.
C
bsd-3-clause
openxc/vi-firmware,ene-ilies/vi-firmware,openxc/vi-firmware,ene-ilies/vi-firmware,mgiannikouris/vi-firmware,mgiannikouris/vi-firmware,mgiannikouris/vi-firmware,ene-ilies/vi-firmware,openxc/vi-firmware,openxc/vi-firmware,mgiannikouris/vi-firmware,ene-ilies/vi-firmware
e9144ad771ae3bae8672c4d5492e3901b68a13cf
features/mbedtls/platform/inc/platform_mbed.h
features/mbedtls/platform/inc/platform_mbed.h
/** * Copyright (C) 2006-2016, ARM Limited, All Rights Reserved * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); you may * not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * * This file is part of mbed TLS (https://tls.mbed.org) */ #if defined(DEVICE_TRNG) #define MBEDTLS_ENTROPY_HARDWARE_ALT #endif #if defined(MBEDTLS_HW_SUPPORT) #include "mbedtls_device.h" #endif
/** * Copyright (C) 2006-2016, ARM Limited, All Rights Reserved * SPDX-License-Identifier: Apache-2.0 * * Licensed under the Apache License, Version 2.0 (the "License"); you may * not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * * This file is part of mbed TLS (https://tls.mbed.org) */ #if defined(DEVICE_TRNG) #define MBEDTLS_ENTROPY_HARDWARE_ALT #endif #if defined(MBEDTLS_CONFIG_HW_SUPPORT) #include "mbedtls_device.h" #endif
Apply new naming convention to mbed TLS macros
Apply new naming convention to mbed TLS macros
C
apache-2.0
nRFMesh/mbed-os,netzimme/mbed-os,YarivCol/mbed-os,arostm/mbed-os,infinnovation/mbed-os,nRFMesh/mbed-os,pradeep-gr/mbed-os5-onsemi,adustm/mbed,bcostm/mbed-os,catiedev/mbed-os,fanghuaqi/mbed,maximmbed/mbed,c1728p9/mbed-os,pradeep-gr/mbed-os5-onsemi,CalSol/mbed,netzimme/mbed-os,kjbracey-arm/mbed,mbedmicro/mbed,adustm/mbed,adustm/mbed,bulislaw/mbed-os,mbedmicro/mbed,kl-cruz/mbed-os,andcor02/mbed-os,arostm/mbed-os,radhika-raghavendran/mbed-os5.1-onsemi,nvlsianpu/mbed,mmorenobarm/mbed-os,j-greffe/mbed-os,fanghuaqi/mbed,bulislaw/mbed-os,kjbracey-arm/mbed,Archcady/mbed-os,YarivCol/mbed-os,mikaleppanen/mbed-os,kl-cruz/mbed-os,betzw/mbed-os,betzw/mbed-os,radhika-raghavendran/mbed-os5.1-onsemi,andcor02/mbed-os,bulislaw/mbed-os,maximmbed/mbed,infinnovation/mbed-os,HeadsUpDisplayInc/mbed,HeadsUpDisplayInc/mbed,infinnovation/mbed-os,nvlsianpu/mbed,svogl/mbed-os,adamgreen/mbed,svogl/mbed-os,NXPmicro/mbed,betzw/mbed-os,c1728p9/mbed-os,mazimkhan/mbed-os,cvtsi2sd/mbed-os,fahhem/mbed-os,adustm/mbed,fahhem/mbed-os,kjbracey-arm/mbed,ryankurte/mbed-os,Archcady/mbed-os,infinnovation/mbed-os,HeadsUpDisplayInc/mbed,screamerbg/mbed,ryankurte/mbed-os,infinnovation/mbed-os,monkiineko/mbed-os,screamerbg/mbed,mbedmicro/mbed,RonEld/mbed,YarivCol/mbed-os,arostm/mbed-os,mazimkhan/mbed-os,nRFMesh/mbed-os,karsev/mbed-os,karsev/mbed-os,c1728p9/mbed-os,betzw/mbed-os,catiedev/mbed-os,maximmbed/mbed,theotherjimmy/mbed,pradeep-gr/mbed-os5-onsemi,nRFMesh/mbed-os,screamerbg/mbed,fahhem/mbed-os,bcostm/mbed-os,cvtsi2sd/mbed-os,mbedmicro/mbed,NXPmicro/mbed,cvtsi2sd/mbed-os,HeadsUpDisplayInc/mbed,YarivCol/mbed-os,mmorenobarm/mbed-os,nRFMesh/mbed-os,netzimme/mbed-os,mmorenobarm/mbed-os,svogl/mbed-os,nvlsianpu/mbed,catiedev/mbed-os,c1728p9/mbed-os,mazimkhan/mbed-os,NXPmicro/mbed,fanghuaqi/mbed,monkiineko/mbed-os,karsev/mbed-os,bulislaw/mbed-os,maximmbed/mbed,Archcady/mbed-os,andcor02/mbed-os,netzimme/mbed-os,c1728p9/mbed-os,bcostm/mbed-os,radhika-raghavendran/mbed-os5.1-onsemi,nvlsianpu/mbed,mazimkhan/mbed-os,fanghuaqi/mbed,mikaleppanen/mbed-os,mmorenobarm/mbed-os,CalSol/mbed,fahhem/mbed-os,c1728p9/mbed-os,ryankurte/mbed-os,nvlsianpu/mbed,theotherjimmy/mbed,RonEld/mbed,NXPmicro/mbed,mazimkhan/mbed-os,pradeep-gr/mbed-os5-onsemi,maximmbed/mbed,karsev/mbed-os,karsev/mbed-os,HeadsUpDisplayInc/mbed,RonEld/mbed,fahhem/mbed-os,catiedev/mbed-os,fahhem/mbed-os,radhika-raghavendran/mbed-os5.1-onsemi,CalSol/mbed,NXPmicro/mbed,nRFMesh/mbed-os,YarivCol/mbed-os,kl-cruz/mbed-os,CalSol/mbed,pradeep-gr/mbed-os5-onsemi,netzimme/mbed-os,infinnovation/mbed-os,theotherjimmy/mbed,betzw/mbed-os,monkiineko/mbed-os,mmorenobarm/mbed-os,adamgreen/mbed,screamerbg/mbed,kl-cruz/mbed-os,radhika-raghavendran/mbed-os5.1-onsemi,adustm/mbed,NXPmicro/mbed,bulislaw/mbed-os,monkiineko/mbed-os,YarivCol/mbed-os,mikaleppanen/mbed-os,svogl/mbed-os,cvtsi2sd/mbed-os,mazimkhan/mbed-os,theotherjimmy/mbed,bulislaw/mbed-os,screamerbg/mbed,karsev/mbed-os,adustm/mbed,RonEld/mbed,ryankurte/mbed-os,mmorenobarm/mbed-os,monkiineko/mbed-os,mbedmicro/mbed,bcostm/mbed-os,theotherjimmy/mbed,pradeep-gr/mbed-os5-onsemi,CalSol/mbed,kl-cruz/mbed-os,j-greffe/mbed-os,bcostm/mbed-os,kl-cruz/mbed-os,netzimme/mbed-os,fanghuaqi/mbed,screamerbg/mbed,ryankurte/mbed-os,adamgreen/mbed,arostm/mbed-os,mikaleppanen/mbed-os,adamgreen/mbed,adamgreen/mbed,catiedev/mbed-os,j-greffe/mbed-os,HeadsUpDisplayInc/mbed,arostm/mbed-os,adamgreen/mbed,andcor02/mbed-os,svogl/mbed-os,bcostm/mbed-os,radhika-raghavendran/mbed-os5.1-onsemi,j-greffe/mbed-os,mikaleppanen/mbed-os,mikaleppanen/mbed-os,Archcady/mbed-os,maximmbed/mbed,j-greffe/mbed-os,CalSol/mbed,RonEld/mbed,Archcady/mbed-os,nvlsianpu/mbed,RonEld/mbed,cvtsi2sd/mbed-os,andcor02/mbed-os,ryankurte/mbed-os,monkiineko/mbed-os,svogl/mbed-os,betzw/mbed-os,cvtsi2sd/mbed-os,Archcady/mbed-os,andcor02/mbed-os,arostm/mbed-os,theotherjimmy/mbed,kjbracey-arm/mbed,j-greffe/mbed-os,catiedev/mbed-os
70917a464535e3a559f6256c721c8ab7626b67e3
vm/include/capi/ruby/defines.h
vm/include/capi/ruby/defines.h
#ifndef RBX_CAPI_RUBY_DEFINES_H #define RBX_CAPI_RUBY_DEFINES_H /* Stub file provided for C extensions that expect it. All regular * defines and prototypes are in ruby.h */ #define RUBY 1 #define RUBINIUS 1 #define HAVE_STDARG_PROTOTYPES 1 /* These are defines directly related to MRI C-API symbols that the * mkmf.rb discovery code (e.g. have_func("rb_str_set_len")) would * attempt to find by linking against libruby. Rubinius does not * have an appropriate lib to link against, so we are adding these * explicit defines for now. */ #define HAVE_RB_STR_SET_LEN 1 #define HAVE_RB_STR_NEW5 1 #define HAVE_RB_STR_NEW_WITH_CLASS 1 #define HAVE_RB_DEFINE_ALLOC_FUNC 1 #define HAVE_RB_HASH_FOREACH 1 #define HAVE_RB_HASH_ASET 1 #define HAVE_RUBY_ENCODING_H 1 #define HAVE_RB_ENCDB_ALIAS 1 #endif
#ifndef RBX_CAPI_RUBY_DEFINES_H #define RBX_CAPI_RUBY_DEFINES_H /* Stub file provided for C extensions that expect it. All regular * defines and prototypes are in ruby.h */ #define RUBY 1 #define RUBINIUS 1 #define HAVE_STDARG_PROTOTYPES 1 /* These are defines directly related to MRI C-API symbols that the * mkmf.rb discovery code (e.g. have_func("rb_str_set_len")) would * attempt to find by linking against libruby. Rubinius does not * have an appropriate lib to link against, so we are adding these * explicit defines for now. */ #define HAVE_RB_STR_SET_LEN 1 #define HAVE_RB_STR_NEW5 1 #define HAVE_RB_STR_NEW_WITH_CLASS 1 #define HAVE_RB_DEFINE_ALLOC_FUNC 1 #define HAVE_RB_HASH_FOREACH 1 #define HAVE_RB_HASH_ASET 1 #define HAVE_RUBY_ENCODING_H 1 #define HAVE_RB_ENCDB_ALIAS 1 #define HAVE_RB_ARY_SUBSEQ 1 #endif
Add explicit define for rb_ary_subseq
Add explicit define for rb_ary_subseq
C
mpl-2.0
mlarraz/rubinius,jemc/rubinius,kachick/rubinius,heftig/rubinius,kachick/rubinius,Azizou/rubinius,jsyeo/rubinius,digitalextremist/rubinius,heftig/rubinius,kachick/rubinius,digitalextremist/rubinius,jemc/rubinius,dblock/rubinius,benlovell/rubinius,ngpestelos/rubinius,ruipserra/rubinius,jemc/rubinius,jsyeo/rubinius,sferik/rubinius,Wirachmat/rubinius,Wirachmat/rubinius,jsyeo/rubinius,dblock/rubinius,Azizou/rubinius,jsyeo/rubinius,kachick/rubinius,benlovell/rubinius,digitalextremist/rubinius,mlarraz/rubinius,sferik/rubinius,ngpestelos/rubinius,mlarraz/rubinius,jsyeo/rubinius,ngpestelos/rubinius,dblock/rubinius,benlovell/rubinius,benlovell/rubinius,digitalextremist/rubinius,kachick/rubinius,ngpestelos/rubinius,ruipserra/rubinius,Wirachmat/rubinius,jemc/rubinius,sferik/rubinius,ngpestelos/rubinius,Wirachmat/rubinius,Azizou/rubinius,kachick/rubinius,heftig/rubinius,ngpestelos/rubinius,ruipserra/rubinius,mlarraz/rubinius,jemc/rubinius,benlovell/rubinius,Wirachmat/rubinius,dblock/rubinius,mlarraz/rubinius,digitalextremist/rubinius,benlovell/rubinius,kachick/rubinius,mlarraz/rubinius,jsyeo/rubinius,Azizou/rubinius,benlovell/rubinius,ruipserra/rubinius,mlarraz/rubinius,dblock/rubinius,ruipserra/rubinius,heftig/rubinius,ngpestelos/rubinius,digitalextremist/rubinius,pH14/rubinius,sferik/rubinius,heftig/rubinius,Azizou/rubinius,sferik/rubinius,jsyeo/rubinius,jemc/rubinius,pH14/rubinius,Wirachmat/rubinius,ruipserra/rubinius,digitalextremist/rubinius,dblock/rubinius,sferik/rubinius,heftig/rubinius,Wirachmat/rubinius,pH14/rubinius,ruipserra/rubinius,jemc/rubinius,pH14/rubinius,kachick/rubinius,heftig/rubinius,dblock/rubinius,pH14/rubinius,pH14/rubinius,Azizou/rubinius,Azizou/rubinius,pH14/rubinius,sferik/rubinius
ff102fa64bffe1a7facad5256cb474329c931acc
support/hololens/ServoApp/DefaultUrl.h
support/hololens/ServoApp/DefaultUrl.h
#pragma once #define DEFAULT_URL L"http://paulrouget.com/test/bbjs/basic/";
#pragma once #define DEFAULT_URL L"https://servo.org/hl-home/";
Load hololens demo page by default
Load hololens demo page by default
C
mpl-2.0
splav/servo,KiChjang/servo,splav/servo,KiChjang/servo,splav/servo,splav/servo,KiChjang/servo,saneyuki/servo,saneyuki/servo,KiChjang/servo,DominoTree/servo,splav/servo,saneyuki/servo,splav/servo,KiChjang/servo,saneyuki/servo,DominoTree/servo,splav/servo,DominoTree/servo,KiChjang/servo,DominoTree/servo,splav/servo,saneyuki/servo,KiChjang/servo,saneyuki/servo,KiChjang/servo,saneyuki/servo,DominoTree/servo,splav/servo,DominoTree/servo,KiChjang/servo,DominoTree/servo,saneyuki/servo,DominoTree/servo,saneyuki/servo,saneyuki/servo,KiChjang/servo,splav/servo,DominoTree/servo,DominoTree/servo
406ba05b707496dd83beba008385596df6a094e4
base/inc/TVersionCheck.h
base/inc/TVersionCheck.h
// @(#)root/base:$Name: $:$Id: TVersionCheck.h,v 1.2 2007/05/10 16:04:32 rdm Exp $ // Author: Fons Rademakers 9/5/2007 /************************************************************************* * Copyright (C) 1995-2007, Rene Brun and Fons Rademakers. * * All rights reserved. * * * * For the licensing terms see $ROOTSYS/LICENSE. * * For the list of contributors see $ROOTSYS/README/CREDITS. * *************************************************************************/ #ifndef ROOT_TVersionCheck #define ROOT_TVersionCheck ////////////////////////////////////////////////////////////////////////// // // // TVersionCheck // // // // Used to check if the shared library or plugin is compatible with // // the current version of ROOT. // // // ////////////////////////////////////////////////////////////////////////// #ifndef ROOT_RVersion #include "RVersion.h" #endif class TVersionCheck { public: TVersionCheck(int versionCode); // implemented in TSystem.cxx }; static TVersionCheck gVersionCheck(ROOT_VERSION_CODE); #endif
// @(#)root/base:$Name: $:$Id: TVersionCheck.h,v 1.3 2007/05/10 18:16:58 rdm Exp $ // Author: Fons Rademakers 9/5/2007 /************************************************************************* * Copyright (C) 1995-2007, Rene Brun and Fons Rademakers. * * All rights reserved. * * * * For the licensing terms see $ROOTSYS/LICENSE. * * For the list of contributors see $ROOTSYS/README/CREDITS. * *************************************************************************/ #ifndef ROOT_TVersionCheck #define ROOT_TVersionCheck ////////////////////////////////////////////////////////////////////////// // // // TVersionCheck // // // // Used to check if the shared library or plugin is compatible with // // the current version of ROOT. // // // ////////////////////////////////////////////////////////////////////////// #ifndef ROOT_RVersion #include "RVersion.h" #endif class TVersionCheck { public: TVersionCheck(int versionCode); // implemented in TSystem.cxx }; #ifndef __CINT__ static TVersionCheck gVersionCheck(ROOT_VERSION_CODE); #endif #endif
Hide a static function to CINT. With this fix g4root compiles OK.
Hide a static function to CINT. With this fix g4root compiles OK. git-svn-id: ecbadac9c76e8cf640a0bca86f6bd796c98521e3@18737 27541ba8-7e3a-0410-8455-c3a389f83636
C
lgpl-2.1
dawehner/root,dawehner/root,bbannier/ROOT,bbannier/ROOT,dawehner/root,dawehner/root,bbannier/ROOT,dawehner/root,bbannier/ROOT,dawehner/root,dawehner/root,dawehner/root,bbannier/ROOT,bbannier/ROOT,bbannier/ROOT
2b34779ae26edabbb46f4cdaa32375b6166ced66
src/clientversion.h
src/clientversion.h
#ifndef CLIENTVERSION_H #define CLIENTVERSION_H // // client versioning // // These need to be macros, as version.cpp's and bitcoin-qt.rc's voodoo requires it #define CLIENT_VERSION_MAJOR 0 #define CLIENT_VERSION_MINOR 8 #define CLIENT_VERSION_REVISION 0 #define CLIENT_VERSION_BUILD 0 // Set to true for release, false for prerelease or test build #define CLIENT_VERSION_IS_RELEASE true // Converts the parameter X to a string after macro replacement on X has been performed. // Don't merge these into one macro! #define STRINGIZE(X) DO_STRINGIZE(X) #define DO_STRINGIZE(X) #X #endif // CLIENTVERSION_H
#ifndef CLIENTVERSION_H #define CLIENTVERSION_H // // client versioning // // These need to be macros, as version.cpp's and bitcoin-qt.rc's voodoo requires it #define CLIENT_VERSION_MAJOR 0 #define CLIENT_VERSION_MINOR 8 #define CLIENT_VERSION_REVISION 1 #define CLIENT_VERSION_BUILD 99 // Set to true for release, false for prerelease or test build #define CLIENT_VERSION_IS_RELEASE false // Converts the parameter X to a string after macro replacement on X has been performed. // Don't merge these into one macro! #define STRINGIZE(X) DO_STRINGIZE(X) #define DO_STRINGIZE(X) #X #endif // CLIENTVERSION_H
Switch version numbers to 0.8.1.99
Switch version numbers to 0.8.1.99
C
mit
prark/bitcoinxt,Friedbaumer/litecoin,torresalyssa/bitcoin,pinkevich/dash,magacoin/magacoin,bitbrazilcoin-project/bitbrazilcoin,bcpki/nonce2,phelix/namecore,magacoin/magacoin,rsdevgun16e/energi,emc2foundation/einsteinium,irvingruan/bitcoin,webdesignll/coin,elliotolds/bitcoin,simonmulser/bitcoin,5mil/Tradecoin,ZiftrCOIN/ziftrcoin,haraldh/bitcoin,sbaks0820/bitcoin,zenywallet/bitzeny,UASF/bitcoin,GlobalBoost/GlobalBoost,cddjr/BitcoinUnlimited,cinnamoncoin/groupcoin-1,blocktrail/bitcoin,NateBrune/bitcoin-nate,okinc/litecoin,shouhuas/bitcoin,vbernabe/freicoin,cryptcoins/cryptcoin,applecoin-official/applecoin,particl/particl-core,ixcoinofficialpage/master,isocolsky/bitcoinxt,itmanagerro/tresting,bdelzell/creditcoin-org-creditcoin,Alonzo-Coeus/bitcoin,Xekyo/bitcoin,sifcoin/sifcoin,dan-mi-sun/bitcoin,Rav3nPL/PLNcoin,coinkeeper/2015-06-22_19-00_ziftrcoin,WorldLeadCurrency/WLC,BTCfork/hardfork_prototype_1_mvf-bu,Metronotes/bitcoin,se3000/bitcoin,ClusterCoin/ClusterCoin,meighti/bitcoin,markf78/dollarcoin,FeatherCoin/Feathercoin,applecoin-official/fellatio,Horrorcoin/horrorcoin,domob1812/i0coin,sugruedes/bitcoin,inkvisit/sarmacoins,paveljanik/bitcoin,shapiroisme/datadollar,maaku/bitcoin,Enticed87/Decipher,ohac/sakuracoin,botland/bitcoin,bcpki/nonce2testblocks,florincoin/florincoin,Anoncoin/anoncoin,coinkeeper/2015-06-22_19-13_florincoin,nathaniel-mahieu/bitcoin,bitcoinknots/bitcoin,jambolo/bitcoin,hasanatkazmi/bitcoin,bdelzell/creditcoin-org-creditcoin,digibyte/digibyte,ingresscoin/ingresscoin,benma/bitcoin,EthanHeilman/bitcoin,Rav3nPL/doubloons-08,arruah/ensocoin,dashpay/dash,cinnamoncoin/Feathercoin,h4x3rotab/BTCGPU,dobbscoin/dobbscoin-source,crowning-/dash,reddcoin-project/reddcoin,jl2012/litecoin,deadalnix/bitcoin,awemany/BitcoinUnlimited,coinkeeper/2015-06-22_18-52_viacoin,collapsedev/circlecash,jgarzik/bitcoin,faircoin/faircoin2,KaSt/ekwicoin,irvingruan/bitcoin,xuyangcn/opalcoin,RongxinZhang/bitcoinxt,ftrader-bitcoinabc/bitcoin-abc,metrocoins/metrocoin,cannabiscoindev/cannabiscoin420,zzkt/solarcoin,mikehearn/bitcoinxt,XX-net/twister-core,NateBrune/bitcoin-fio,digibyte/digibyte,jmgilbert2/energi,micryon/GPUcoin,bittylicious/bitcoin,apoelstra/elements,Theshadow4all/ShadowCoin,dgarage/bc3,DMDcoin/Diamond,schinzelh/dash,cryptcoins/cryptcoin,braydonf/bitcoin,wangxinxi/litecoin,wellenreiter01/Feathercoin,particl/particl-core,ShwoognationHQ/bitcoin,Friedbaumer/litecoin,aburan28/elements,okinc/bitcoin,ripper234/bitcoin,simdeveloper/bitcoin,pouta/bitcoin,MazaCoin/mazacoin-new,syscoin/syscoin,gjhiggins/fuguecoin,pinheadmz/bitcoin,pataquets/namecoin-core,dexX7/mastercore,h4x3rotab/BTCGPU,guncoin/guncoin,nigeriacoin/nigeriacoin,presstab/PIVX,CrimeaCoin/crimeacoin,ryanofsky/bitcoin,phplaboratory/psiacoin,BitzenyCoreDevelopers/bitzeny,memorycoin/memorycoin,prark/bitcoinxt,ArgonToken/ArgonToken,and2099/twister-core,BitcoinUnlimited/BitcoinUnlimited,thrasher-/litecoin,kryptokredyt/ProjektZespolowyCoin,qreatora/worldcoin-v0.8,m0gliE/fastcoin-cli,ticclassic/ic,GroestlCoin/bitcoin,degenorate/Deftcoin,vertcoin/eyeglass,united-scrypt-coin-project/unitedscryptcoin,ctwiz/stardust,funkshelper/woodcore,antcheck/antcoin,mastercoin-MSC/mastercore,ekankyesme/bitcoinxt,meighti/bitcoin,axelxod/braincoin,jeromewu/bitcoin-opennet,mycointest/owncoin,vcoin-project/vcoin0.8zeta-dev,jimmysong/bitcoin,brishtiteveja/truthcoin-cpp,ronpaulcoin/ronpaulcoin,arruah/ensocoin,goldcoin/Goldcoin-GLD,aspirecoin/aspire,rat4/bitcoin,truthcoin/blocksize-market,hyperwang/bitcoin,funkshelper/woodcore,benzmuircroft/REWIRE.io,peerdb/cors,awemany/BitcoinUnlimited,shaolinfry/litecoin,inkvisit/sarmacoins,hsavit1/bitcoin,coinkeeper/2015-06-22_18-39_feathercoin,llluiop/bitcoin,oleganza/bitcoin-duo,bcpki/nonce2testblocks,mb300sd/bitcoin,ahmedbodi/vertcoin,segwit/atbcoin-insight,particl/particl-core,GwangJin/gwangmoney-core,shaolinfry/litecoin,rat4/bitcoin,bdelzell/creditcoin-org-creditcoin,shelvenzhou/BTCGPU,Rav3nPL/bitcoin,DogTagRecon/Still-Leraning,Dinarcoin/dinarcoin,nbenoit/bitcoin,dobbscoin/dobbscoin-source,cmgustavo/bitcoin,cryptohelper/premine,goldcoin/goldcoin,cdecker/bitcoin,vmp32k/litecoin,petertodd/bitcoin,pelorusjack/BlockDX,MazaCoin/mazacoin-new,LIMXTEC/DMDv3,bitcoin/bitcoin,wbchen99/bitcoin-hnote0,droark/elements,digibyte/digibyte,stevemyers/bitcoinxt,Mrs-X/Darknet,stevemyers/bitcoinxt,misdess/bitcoin,cqtenq/Feathercoin,andres-root/bitcoinxt,nlgcoin/guldencoin-official,dogecoin/dogecoin,namecoin/namecoin-core,coinkeeper/2015-06-22_18-31_bitcoin,zander/bitcoinclassic,npccoin/npccoin,DigitalPandacoin/pandacoin,XertroV/bitcoin-nulldata,jmgilbert2/energi,coinkeeper/2015-04-19_21-20_litecoindark,odemolliens/bitcoinxt,cannabiscoindev/cannabiscoin420,bittylicious/bitcoin,haisee/dogecoin,gavinandresen/bitcoin-git,axelxod/braincoin,SartoNess/BitcoinUnlimited,marlengit/BitcoinUnlimited,monacoinproject/monacoin,skaht/bitcoin,arnuschky/bitcoin,kevcooper/bitcoin,cyrixhero/bitcoin,mobicoins/mobicoin-core,iQcoin/iQcoin,GroestlCoin/GroestlCoin,JeremyRand/namecore,gjhiggins/vcoin09,kirkalx/bitcoin,marlengit/hardfork_prototype_1_mvf-bu,bitcoinxt/bitcoinxt,janko33bd/bitcoin,andres-root/bitcoinxt,pascalguru/florincoin,marlengit/BitcoinUnlimited,Kenwhite23/litecoin,octocoin-project/octocoin,theuni/bitcoin,Bushstar/UFO-Project,supcoin/supcoin,alexandrcoin/vertcoin,BitcoinHardfork/bitcoin,scippio/bitcoin,XertroV/bitcoin-nulldata,renatolage/wallets-BRCoin,UASF/bitcoin,markf78/dollarcoin,NateBrune/bitcoin-nate,tensaix2j/bananacoin,Chancoin-core/CHANCOIN,DogTagRecon/Still-Leraning,droark/bitcoin,nvmd/bitcoin,nsacoin/nsacoin,willwray/dash,dgarage/bc3,vmp32k/litecoin,dgarage/bc3,raasakh/bardcoin,digideskio/namecoin,rsdevgun16e/energi,jameshilliard/bitcoin,likecoin-dev/bitcoin,qtumproject/qtum,willwray/dash,pascalguru/florincoin,coinkeeper/2015-06-22_18-51_vertcoin,richo/dongcoin,namecoin/namecoin-core,nlgcoin/guldencoin-official,jonasschnelli/bitcoin,fanquake/bitcoin,laudaa/bitcoin,ionux/freicoin,Bushstar/UFO-Project,GroundRod/anoncoin,cinnamoncoin/groupcoin-1,wbchen99/bitcoin-hnote0,litecoin-project/litecore-litecoin,Jcing95/iop-hd,achow101/bitcoin,icook/vertcoin,llamasoft/ProtoShares_Cycle,SocialCryptoCoin/SocialCoin,okinc/bitcoin,BTCfork/hardfork_prototype_1_mvf-core,madman5844/poundkoin,majestrate/twister-core,2XL/bitcoin,vmp32k/litecoin,ghostlander/Feathercoin,Czarcoin/czarcoin,syscoin/syscoin2,dcousens/bitcoin,bitcoinsSG/zcash,scippio/bitcoin,TripleSpeeder/bitcoin,2XL/bitcoin,Kenwhite23/litecoin,koharjidan/litecoin,coinkeeper/2015-04-19_21-20_litecoindark,Jcing95/iop-hd,benzmuircroft/REWIRE.io,Rav3nPL/PLNcoin,r8921039/bitcoin,rdqw/sscoin,core-bitcoin/bitcoin,senadmd/coinmarketwatch,FarhanHaque/bitcoin,inutoshi/inutoshi,RongxinZhang/bitcoinxt,uphold/bitcoin,Czarcoin/czarcoin,ccoin-project/ccoin,lateminer/bitcoin,jimblasko/2015_UNB_Wallets,oklink-dev/bitcoin_block,CoinProjects/AmsterdamCoin-v4,FinalHashLLC/namecore,upgradeadvice/MUE-Src,puticcoin/putic,Cocosoft/bitcoin,psionin/smartcoin,hyperwang/bitcoin,slingcoin/sling-market,imharrywu/fastcoin,SocialCryptoCoin/SocialCoin,haisee/dogecoin,zander/bitcoinclassic,ElementsProject/elements,thrasher-/litecoin,shapiroisme/datadollar,butterflypay/bitcoin,phelix/namecore,rromanchuk/bitcoinxt,tjth/lotterycoin,collapsedev/cashwatt,bitcoinxt/bitcoinxt,XX-net/twister-core,bickojima/bitzeny,ticclassic/ic,gzuser01/zetacoin-bitcoin,JeremyRand/bitcoin,Mrs-X/Darknet,Domer85/dogecoin,diggcoin/diggcoin,maaku/bitcoin,plncoin/PLNcoin_Core,gandrewstone/BitcoinUnlimited,coinkeeper/anoncoin_20150330_fixes,21E14/bitcoin,dmrtsvetkov/flowercoin,OstlerDev/florincoin,nomnombtc/bitcoin,torresalyssa/bitcoin,joshrabinowitz/bitcoin,vertcoin/vertcoin,goldcoin/goldcoin,rjshaver/bitcoin,jonasschnelli/bitcoin,gjhiggins/vcoin09,kallewoof/bitcoin,metacoin/florincoin,memorycoin/memorycoin,koharjidan/bitcoin,bcpki/testblocks,cryptodev35/icash,misdess/bitcoin,gjhiggins/vcoincore,greencoin-dev/digitalcoin,globaltoken/globaltoken,wtogami/bitcoin,gwillen/elements,dgarage/bc2,Cancercoin/Cancercoin,DGCDev/argentum,unsystemizer/bitcoin,sstone/bitcoin,pinkevich/dash,martindale/elements,practicalswift/bitcoin,marscoin/marscoin,jameshilliard/bitcoin,greencoin-dev/greencoin-dev,marscoin/marscoin,keisercoin-official/keisercoin,putinclassic/putic,willwray/dash,plncoin/PLNcoin_Core,ColossusCoinXT/ColossusCoinXT,stamhe/bitcoin,EthanHeilman/bitcoin,shapiroisme/datadollar,tjps/bitcoin,lakepay/lake,imharrywu/fastcoin,tensaix2j/bananacoin,kaostao/bitcoin,mrtexaznl/mediterraneancoin,fullcoins/fullcoin,brishtiteveja/sherlockcoin,capitalDIGI/litecoin,WorldLeadCurrency/WLC,ingresscoin/ingresscoin,ppcoin/ppcoin,coinkeeper/2015-06-22_18-56_megacoin,LIMXTEC/DMDv3,jeromewu/bitcoin-opennet,saydulk/Feathercoin,shelvenzhou/BTCGPU,gazbert/bitcoin,litecoin-project/litecoin,rnicoll/bitcoin,welshjf/bitcoin,tecnovert/particl-core,nailtaras/nailcoin,Chancoin-core/CHANCOIN,xawksow/GroestlCoin,wtogami/bitcoin,cannabiscoindev/cannabiscoin420,AkioNak/bitcoin,Enticed87/Decipher,lbrtcoin/albertcoin,TripleSpeeder/bitcoin,KibiCoin/kibicoin,cybermatatu/bitcoin,fedoracoin-dev/fedoracoin,npccoin/npccoin,Exgibichi/statusquo,vertcoin/vertcoin,ericshawlinux/bitcoin,MikeAmy/bitcoin,knolza/gamblr,oklink-dev/bitcoin_block,Sjors/bitcoin,namecoin/namecoin-core,nmarley/dash,ardsu/bitcoin,untrustbank/litecoin,deadalnix/bitcoin,jl2012/litecoin,FarhanHaque/bitcoin,AdrianaDinca/bitcoin,segsignal/bitcoin,magacoin/magacoin,wiggi/huntercore,btc1/bitcoin,myriadteam/myriadcoin,bickojima/bitzeny,sugruedes/bitcoin,nsacoin/nsacoin,aspirecoin/aspire,Jcing95/iop-hd,bootycoin-project/bootycoin,enlighter/Feathercoin,greencoin-dev/digitalcoin,zixan/bitcoin,Checkcoin/checkcoin,GreenParhelia/bitcoin,freelion93/mtucicoin,Adaryian/E-Currency,manuel-zulian/accumunet,parvez3019/bitcoin,ravenbyron/phtevencoin,tripmode/pxlcoin,mincoin-project/mincoin,Rav3nPL/doubloons-08,bittylicious/bitcoin,PIVX-Project/PIVX,jimblasko/2015_UNB_Wallets,hophacker/bitcoin_malleability,RongxinZhang/bitcoinxt,funkshelper/woodcoin-b,1185/starwels,sirk390/bitcoin,domob1812/huntercore,jonghyeopkim/bitcoinxt,OstlerDev/florincoin,koharjidan/dogecoin,accraze/bitcoin,brishtiteveja/sherlockcoin,daliwangi/bitcoin,xuyangcn/opalcoin,coinkeeper/2015-06-22_19-07_digitalcoin,robvanbentem/bitcoin,nbenoit/bitcoin,millennial83/bitcoin,NateBrune/bitcoin-nate,BigBlueCeiling/augmentacoin,benzmuircroft/REWIRE.io,coinkeeper/2015-06-22_18-41_ixcoin,osuyuushi/laughingmancoin,BitzenyCoreDevelopers/bitzeny,gjhiggins/vcoin0.8zeta-dev,worldbit/worldbit,pstratem/bitcoin,SoreGums/bitcoinxt,simonmulser/bitcoin,bitcoinec/bitcoinec,jimmykiselak/lbrycrd,syscoin/syscoin2,elecoin/elecoin,goldcoin/Goldcoin-GLD,robvanbentem/bitcoin,mooncoin-project/mooncoin-landann,ryanofsky/bitcoin,TGDiamond/Diamond,karek314/bitcoin,dev1972/Satellitecoin,wangxinxi/litecoin,BTCfork/hardfork_prototype_1_mvf-bu,ludbb/bitcoin,dev1972/Satellitecoin,andreaskern/bitcoin,mapineda/litecoin,ftrader-bitcoinunlimited/hardfork_prototype_1_mvf-bu,DGCDev/argentum,qtumproject/qtum,gameunits/gameunits,Climbee/artcoin,aspirecoin/aspire,balajinandhu/bitcoin,knolza/gamblr,Czarcoin/czarcoin,greenaddress/bitcoin,tuaris/bitcoin,gjhiggins/fuguecoin,Bitcoin-ABC/bitcoin-abc,sbellem/bitcoin,habibmasuro/bitcoin,OmniLayer/omnicore,oklink-dev/bitcoin,aburan28/elements,janko33bd/bitcoin,vbernabe/freicoin,joroob/reddcoin,isle2983/bitcoin,40thoughts/Coin-QualCoin,ctwiz/stardust,ddombrowsky/radioshares,n1bor/bitcoin,sebrandon1/bitcoin,jimmykiselak/lbrycrd,vbernabe/freicoin,slingcoin/sling-market,dannyperez/bolivarcoin,ctwiz/stardust,xeddmc/twister-core,parvez3019/bitcoin,schildbach/bitcoin,bitpagar/bitpagar,ctwiz/stardust,pstratem/elements,jnewbery/bitcoin,lbrtcoin/albertcoin,truthcoin/truthcoin-cpp,Friedbaumer/litecoin,StarbuckBG/BTCGPU,ClusterCoin/ClusterCoin,florincoin/florincoin,patricklodder/dogecoin,shaulkf/bitcoin,bitcoinsSG/bitcoin,genavarov/ladacoin,grumpydevelop/singularity,FinalHashLLC/namecore,Bitcoin-ABC/bitcoin-abc,nigeriacoin/nigeriacoin,EntropyFactory/creativechain-core,ryanxcharles/bitcoin,sickpig/BitcoinUnlimited,mikehearn/bitcoinxt,jonasnick/bitcoin,elecoin/elecoin,mapineda/litecoin,Har01d/bitcoin,bitcoinclassic/bitcoinclassic,jarymoth/dogecoin,ptschip/bitcoinxt,benosa/bitcoin,MazaCoin/maza,BTCfork/hardfork_prototype_1_mvf-bu,Bitcoin-com/BUcash,MasterX1582/bitcoin-becoin,Krellan/bitcoin,dgarage/bc2,globaltoken/globaltoken,xawksow/GroestlCoin,pouta/bitcoin,keesdewit82/LasVegasCoin,roques/bitcoin,paveljanik/bitcoin,coinkeeper/2015-06-22_19-19_worldcoin,TierNolan/bitcoin,habibmasuro/bitcoinxt,nmarley/dash,zemrys/vertcoin,pastday/bitcoinproject,haobtc/bitcoin,ohac/sakuracoin,JeremyRand/namecore,BigBlueCeiling/augmentacoin,CoinProjects/AmsterdamCoin-v4,OmniLayer/omnicore,Ziftr/litecoin,phelix/namecore,x-kalux/bitcoin_WiG-B,xeddmc/twister-core,r8921039/bitcoin,daliwangi/bitcoin,BTCDDev/bitcoin,multicoins/marycoin,applecoin-official/fellatio,Erkan-Yilmaz/twister-core,bitcoinsSG/zcash,174high/bitcoin,keesdewit82/LasVegasCoin,putinclassic/putic,dgarage/bc2,razor-coin/razor,simonmulser/bitcoin,PIVX-Project/PIVX,coinkeeper/megacoin_20150410_fixes,sugruedes/bitcoinxt,goldcoin/goldcoin,bitcoinknots/bitcoin,dan-mi-sun/bitcoin,okinc/litecoin,peacedevelop/peacecoin,bitgoldcoin-project/bitgoldcoin,webdesignll/coin,joulecoin/joulecoin,coinkeeper/2015-06-22_18-37_dogecoin,kevcooper/bitcoin,jimmykiselak/lbrycrd,dogecoin/dogecoin,reddink/reddcoin,tmagik/catcoin,Alex-van-der-Peet/bitcoin,enlighter/Feathercoin,ctwiz/stardust,koharjidan/bitcoin,npccoin/npccoin,Cocosoft/bitcoin,yenliangl/bitcoin,marcusdiaz/BitcoinUnlimited,practicalswift/bitcoin,scippio/bitcoin,aburan28/elements,wiggi/huntercore,syscoin/syscoin,jimmysong/bitcoin,habibmasuro/bitcoinxt,paveljanik/bitcoin,dashpay/dash,zenywallet/bitzeny,xeddmc/twister-core,iosdevzone/bitcoin,emc2foundation/einsteinium,ahmedbodi/vertcoin,parvez3019/bitcoin,matlongsi/micropay,borgcoin/Borgcoin.rar,wbchen99/bitcoin-hnote0,ddombrowsky/radioshares,jiffe/cosinecoin,coinkeeper/megacoin_20150410_fixes,CrimeaCoin/crimeacoin,ShwoognationHQ/bitcoin,coinkeeper/2015-06-22_18-36_darkcoin,ericshawlinux/bitcoin,xeddmc/twister-core,ZiftrCOIN/ziftrcoin,arruah/ensocoin,riecoin/riecoin,kallewoof/bitcoin,starwels/starwels,shomeser/bitcoin,ryanofsky/bitcoin,TripleSpeeder/bitcoin,zsulocal/bitcoin,KaSt/equikoin,Thracky/monkeycoin,funkshelper/woodcoin-b,freelion93/mtucicoin,franko-org/franko,rawodb/bitcoin,2XL/bitcoin,Erkan-Yilmaz/twister-core,constantine001/bitcoin,TierNolan/bitcoin,robvanbentem/bitcoin,fujicoin/fujicoin,haisee/dogecoin,osuyuushi/laughingmancoin,hg5fm/nexuscoin,RHavar/bitcoin,multicoins/marycoin,xieta/mincoin,CryptArc/bitcoinxt,MikeAmy/bitcoin,mooncoin-project/mooncoin-landann,RongxinZhang/bitcoinxt,Krellan/bitcoin,neuroidss/bitcoin,CryptArc/bitcoinxt,rawodb/bitcoin,bespike/litecoin,Har01d/bitcoin,randy-waterhouse/bitcoin,dan-mi-sun/bitcoin,RazorLove/cloaked-octo-spice,MazaCoin/maza,xurantju/bitcoin,cheehieu/bitcoin,Lucky7Studio/bitcoin,Justaphf/BitcoinUnlimited,ajweiss/bitcoin,coinkeeper/2015-06-22_18-56_megacoin,szlaozhu/twister-core,richo/dongcoin,jimblasko/UnbreakableCoin-master,blocktrail/bitcoin,drwasho/bitcoinxt,welshjf/bitcoin,iosdevzone/bitcoin,jrick/bitcoin,funkshelper/woodcoin-b,TBoehm/greedynode,randy-waterhouse/bitcoin,nsacoin/nsacoin,andres-root/bitcoinxt,paveljanik/bitcoin,sbaks0820/bitcoin,zetacoin/zetacoin,tropa/axecoin,Carrsy/PoundCoin,razor-coin/razor,brishtiteveja/truthcoin-cpp,awemany/BitcoinUnlimited,dannyperez/bolivarcoin,sbaks0820/bitcoin,vlajos/bitcoin,Coinfigli/coinfigli,themusicgod1/bitcoin,totallylegitbiz/totallylegitcoin,blocktrail/bitcoin,welshjf/bitcoin,bitgoldcoin-project/bitgoldcoin,inutoshi/inutoshi,GIJensen/bitcoin,Kore-Core/kore,ShadowMyst/creativechain-core,Litecoindark/LTCD,REAP720801/bitcoin,worldbit/worldbit,kfitzgerald/titcoin,florincoin/florincoin,koharjidan/litecoin,jonasschnelli/bitcoin,Horrorcoin/horrorcoin,apoelstra/elements,nikkitan/bitcoin,MazaCoin/mazacoin-new,DrCrypto/darkcoin,presstab/PIVX,PIVX-Project/PIVX,MazaCoin/mazacoin-new,GroestlCoin/bitcoin,ElementsProject/elements,puticcoin/putic,NicolasDorier/bitcoin,HashUnlimited/Einsteinium-Unlimited,bitgoldcoin-project/bitgoldcoin,brishtiteveja/sherlockholmescoin,digibyte/digibyte,ftrader-bitcoinabc/bitcoin-abc,maraoz/proofcoin,stevemyers/bitcoinxt,masterbraz/dg,ptschip/bitcoinxt,dmrtsvetkov/flowercoin,keesdewit82/LasVegasCoin,SoreGums/bitcoinxt,gjhiggins/vcoin0.8zeta-dev,zottejos/merelcoin,sbellem/bitcoin,tropa/axecoin,coinkeeper/2015-06-22_18-41_ixcoin,czr5014iph/bitcoin4e,collapsedev/cashwatt,Flurbos/Flurbo,likecoin-dev/bitcoin,atgreen/bitcoin,taenaive/zetacoin,credits-currency/credits,tuaris/bitcoin,bitcoinxt/bitcoinxt,Tetcoin/tetcoin,MitchellMintCoins/AutoCoin,imharrywu/fastcoin,faircoin/faircoin2,ediston/energi,genavarov/lamacoin,ahmedbodi/temp_vert,tuaris/bitcoin,RazorLove/cloaked-octo-spice,wangliu/bitcoin,schildbach/bitcoin,Anfauglith/iop-hd,coinkeeper/2015-06-22_18-37_dogecoin,ericshawlinux/bitcoin,midnight-miner/LasVegasCoin,TrainMAnB/vcoincore,lateminer/bitcoin,borgcoin/Borgcoin.rar,Christewart/bitcoin,Bloom-Project/Bloom,ardsu/bitcoin,puticcoin/putic,amaivsimau/bitcoin,pinkevich/dash,Bitcoin-ABC/bitcoin-abc,themusicgod1/bitcoin,zemrys/vertcoin,BitcoinUnlimited/BitcoinUnlimited,RazorLove/cloaked-octo-spice,mincoin-project/mincoin,franko-org/franko,viacoin/viacoin,coinkeeper/2015-06-22_18-30_anoncoin,coinkeeper/anoncoin_20150330_fixes,degenorate/Deftcoin,torresalyssa/bitcoin,jonasnick/bitcoin,tensaix2j/bananacoin,omefire/bitcoin,markf78/dollarcoin,error10/bitcoin,borgcoin/Borgcoin1,axelxod/braincoin,sugruedes/bitcoin,CTRoundTable/Encrypted.Cash,bitcoinclassic/bitcoinclassic,NunoEdgarGub1/elements,tjth/lotterycoin,leofidus/glowing-octo-ironman,Kixunil/keynescoin,ediston/energi,borgcoin/Borgcoin.rar,ryanxcharles/bitcoin,111t8e/bitcoin,Darknet-Crypto/Darknet,Chancoin-core/CHANCOIN,scmorse/bitcoin,coinkeeper/2015-04-19_21-20_litecoindark,earthcoinproject/earthcoin,coinkeeper/2015-06-22_18-52_viacoin,scippio/bitcoin,jimblasko/UnbreakableCoin-master,hsavit1/bitcoin,brettwittam/geocoin,ivansib/sib16,Litecoindark/LTCD,qreatora/worldcoin-v0.8,pdrobek/Polcoin-1-3,roques/bitcoin,deuscoin/deuscoin,zotherstupidguy/bitcoin,dmrtsvetkov/flowercoin,cinnamoncoin/Feathercoin,zebrains/Blotter,bitpay/bitcoin,TrainMAnB/vcoincore,rnicoll/dogecoin,globaltoken/globaltoken,jlopp/statoshi,vertcoin/eyeglass,collapsedev/cashwatt,kazcw/bitcoin,ronpaulcoin/ronpaulcoin,stamhe/bitcoin,GroestlCoin/GroestlCoin,PRabahy/bitcoin,coinkeeper/2015-06-22_19-07_digitalcoin,Vector2000/bitcoin,sugruedes/bitcoin,funbucks/notbitcoinxt,shea256/bitcoin,cannabiscoindev/cannabiscoin420,truthcoin/blocksize-market,bitbrazilcoin-project/bitbrazilcoin,KillerByte/memorypool,48thct2jtnf/P,sarielsaz/sarielsaz,MeshCollider/bitcoin,argentumproject/argentum,bankonmecoin/bitcoin,jimmysong/bitcoin,habibmasuro/bitcoin,jtimon/bitcoin,petertodd/bitcoin,sbellem/bitcoin,viacoin/viacoin,donaloconnor/bitcoin,syscoin/syscoin2,gwangjin2/gwangcoin-core,joroob/reddcoin,BitcoinUnlimited/BitcoinUnlimited,mastercoin-MSC/mastercore,shurcoin/shurcoin,bickojima/bitzeny,collapsedev/circlecash,SartoNess/BitcoinUnlimited,myriadteam/myriadcoin,osuyuushi/laughingmancoin,bitshares/bitshares-pts,ionomy/ion,apoelstra/elements,Bloom-Project/Bloom,tripmode/pxlcoin,simonmulser/bitcoin,DGCDev/digitalcoin,pinkevich/dash,scamcoinz/scamcoin,koharjidan/bitcoin,MasterX1582/bitcoin-becoin,dexX7/bitcoin,coinkeeper/2015-06-22_19-13_florincoin,gzuser01/zetacoin-bitcoin,jnewbery/bitcoin,zcoinofficial/zcoin,deeponion/deeponion,safecoin/safecoin,kryptokredyt/ProjektZespolowyCoin,coinkeeper/2015-06-22_18-39_feathercoin,emc2foundation/einsteinium,destenson/bitcoin--bitcoin,earthcoinproject/earthcoin,blood2/bloodcoin-0.9,MazaCoin/mazacoin-new,gameunits/gameunits,phelix/bitcoin,namecoin/namecoin-core,vcoin-project/vcoin0.8zeta-dev,cmgustavo/bitcoin,rustyrussell/bitcoin,funbucks/notbitcoinxt,Cloudsy/bitcoin,vtafaucet/virtacoin,cculianu/bitcoin-abc,jambolo/bitcoin,qubitcoin-project/QubitCoinQ2C,HashUnlimited/Einsteinium-Unlimited,Mirobit/bitcoin,jiangyonghang/bitcoin,zottejos/merelcoin,florincoin/florincoin,theuni/bitcoin,gameunits/gameunits,Bushstar/UFO-Project,GIJensen/bitcoin,jtimon/elements,dgarage/bc2,GlobalBoost/GlobalBoost,masterbraz/dg,gandrewstone/bitcoinxt,multicoins/marycoin,segsignal/bitcoin,bickojima/bitzeny,Kixunil/keynescoin,xuyangcn/opalcoin,memorycoin/memorycoin,1185/starwels,zcoinofficial/zcoin,CTRoundTable/Encrypted.Cash,Vsync-project/Vsync,zcoinofficial/zcoin,Ziftr/litecoin,martindale/elements,theuni/bitcoin,Diapolo/bitcoin,DynamicCoinOrg/DMC,pelorusjack/BlockDX,likecoin-dev/bitcoin,dev1972/Satellitecoin,cmgustavo/bitcoin,morcos/bitcoin,romanornr/viacoin,jamesob/bitcoin,apoelstra/bitcoin,okinc/bitcoin,shelvenzhou/BTCGPU,schinzelh/dash,reddcoin-project/reddcoin,themusicgod1/bitcoin,superjudge/bitcoin,fsb4000/bitcoin,marscoin/marscoin,oklink-dev/litecoin_block,adpg211/bitcoin-master,sickpig/BitcoinUnlimited,uphold/bitcoin,rebroad/bitcoin,majestrate/twister-core,Flowdalic/bitcoin,benma/bitcoin,nlgcoin/guldencoin-official,mycointest/owncoin,bitcoinec/bitcoinec,ShwoognationHQ/bitcoin,shea256/bitcoin,dcousens/bitcoin,denverl/bitcoin,coinkeeper/2015-06-22_18-37_dogecoin,dperel/bitcoin,anditto/bitcoin,bitpay/bitcoin,OfficialTitcoin/titcoin-wallet,instagibbs/bitcoin,nmarley/dash,tmagik/catcoin,FinalHashLLC/namecore,gravio-net/graviocoin,laudaa/bitcoin,NateBrune/bitcoin-fio,MitchellMintCoins/AutoCoin,genavarov/ladacoin,aspanta/bitcoin,PandaPayProject/PandaPay,joshrabinowitz/bitcoin,mockcoin/mockcoin,loxal/zcash,btcdrak/bitcoin,ionux/freicoin,111t8e/bitcoin,keesdewit82/LasVegasCoin,willwray/dash,millennial83/bitcoin,habibmasuro/bitcoinxt,ionomy/ion,Sjors/bitcoin,grumpydevelop/singularity,rnicoll/dogecoin,sipa/elements,dashpay/dash,marklai9999/Taiwancoin,basicincome/unpcoin-core,PIVX-Project/PIVX,zemrys/vertcoin,wtogami/bitcoin,ahmedbodi/terracoin,rawodb/bitcoin,GroundRod/anoncoin,xuyangcn/opalcoin,jtimon/elements,practicalswift/bitcoin,domob1812/namecore,instagibbs/bitcoin,TGDiamond/Diamond,gjhiggins/fuguecoin,tedlz123/Bitcoin,denverl/bitcoin,dexX7/mastercore,florincoin/florincoin,m0gliE/fastcoin-cli,NunoEdgarGub1/elements,netswift/vertcoin,nbenoit/bitcoin,brightcoin/brightcoin,funkshelper/woodcoin-b,joulecoin/joulecoin,basicincome/unpcoin-core,domob1812/huntercore,reddcoin-project/reddcoin,Dinarcoin/dinarcoin,bitpagar/bitpagar,bitreserve/bitcoin,wederw/bitcoin,coinkeeper/2015-06-22_18-41_ixcoin,mb300sd/bitcoin,jlopp/statoshi,dscotese/bitcoin,laudaa/bitcoin,Bitcoin-ABC/bitcoin-abc,saydulk/Feathercoin,se3000/bitcoin,robvanbentem/bitcoin,keo/bitcoin,Kogser/bitcoin,markf78/dollarcoin,jonasschnelli/bitcoin,ludbb/bitcoin,andres-root/bitcoinxt,jimblasko/2015_UNB_Wallets,tropa/axecoin,mooncoin-project/mooncoin-landann,kleetus/bitcoinxt,xieta/mincoin,pinkevich/dash,Kenwhite23/litecoin,xuyangcn/opalcoin,Justaphf/BitcoinUnlimited,brishtiteveja/sherlockholmescoin,nathan-at-least/zcash,ravenbyron/phtevencoin,cerebrus29301/crowncoin,Krellan/bitcoin,litecoin-project/bitcoinomg,litecoin-project/litecore-litecoin,JeremyRand/namecore,destenson/bitcoin--bitcoin,KaSt/equikoin,brightcoin/brightcoin,DrCrypto/darkcoin,segwit/atbcoin-insight,kevin-cantwell/crunchcoin,mincoin-project/mincoin,andreaskern/bitcoin,coinkeeper/2015-06-22_18-31_bitcoin,jn2840/bitcoin,kirkalx/bitcoin,aspanta/bitcoin,worldcoinproject/worldcoin-v0.8,dperel/bitcoin,argentumproject/argentum,rjshaver/bitcoin,ahmedbodi/terracoin,JeremyRand/bitcoin,DogTagRecon/Still-Leraning,Kore-Core/kore,cyrixhero/bitcoin,riecoin/riecoin,coinkeeper/2015-06-22_18-46_razor,Rav3nPL/PLNcoin,JeremyRand/namecore,hophacker/bitcoin_malleability,zotherstupidguy/bitcoin,anditto/bitcoin,jakeva/bitcoin-pwcheck,ccoin-project/ccoin,rromanchuk/bitcoinxt,thormuller/yescoin2,ajtowns/bitcoin,JeremyRubin/bitcoin,jrmithdobbs/bitcoin,collapsedev/circlecash,Justaphf/BitcoinUnlimited,TheBlueMatt/bitcoin,neutrinofoundation/neutrino-digital-currency,butterflypay/bitcoin,5mil/Tradecoin,JeremyRand/bitcoin,ColossusCoinXT/ColossusCoinXT,Checkcoin/checkcoin,RyanLucchese/energi,CarpeDiemCoin/CarpeDiemLaunch,scamcoinz/scamcoin,Bloom-Project/Bloom,Kenwhite23/litecoin,micryon/GPUcoin,HeliumGas/helium,XX-net/twister-core,cdecker/bitcoin,xeddmc/twister-core,pinheadmz/bitcoin,JeremyRubin/bitcoin,dexX7/bitcoin,BTCfork/hardfork_prototype_1_mvf-core,dgarage/bc2,IlfirinCano/shavercoin,zebrains/Blotter,OfficialTitcoin/titcoin-wallet,starwels/starwels,pinheadmz/bitcoin,practicalswift/bitcoin,phelixbtc/bitcoin,habibmasuro/bitcoinxt,PIVX-Project/PIVX,PRabahy/bitcoin,ArgonToken/ArgonToken,martindale/elements,5mil/Tradecoin,denverl/bitcoin,nightlydash/darkcoin,MeshCollider/bitcoin,tuaris/bitcoin,ppcoin/ppcoin,GroestlCoin/GroestlCoin,leofidus/glowing-octo-ironman,joshrabinowitz/bitcoin,wellenreiter01/Feathercoin,hophacker/bitcoin_malleability,Exceltior/dogecoin,habibmasuro/bitcoin,janko33bd/bitcoin,keisercoin-official/keisercoin,cmgustavo/bitcoin,midnightmagic/bitcoin,Kogser/bitcoin,patricklodder/dogecoin,Rav3nPL/doubloons-0.10,slingcoin/sling-market,syscoin/syscoin2,bitcoinsSG/zcash,myriadcoin/myriadcoin,ShadowMyst/creativechain-core,jambolo/bitcoin,elliotolds/bitcoin,WorldcoinGlobal/WorldcoinLegacy,jeromewu/bitcoin-opennet,scmorse/bitcoin,accraze/bitcoin,capitalDIGI/DIGI-v-0-10-4,nightlydash/darkcoin,coinkeeper/anoncoin_20150330_fixes,Checkcoin/checkcoin,goldcoin/Goldcoin-GLD,qreatora/worldcoin-v0.8,bdelzell/creditcoin-org-creditcoin,peercoin/peercoin,senadmd/coinmarketwatch,dperel/bitcoin,laudaa/bitcoin,bitcoinplusorg/xbcwalletsource,vlajos/bitcoin,peerdb/cors,fujicoin/fujicoin,oklink-dev/litecoin_block,kirkalx/bitcoin,goldcoin/Goldcoin-GLD,raasakh/bardcoin,imton/bitcoin,pelorusjack/BlockDX,iQcoin/iQcoin,shomeser/bitcoin,jaromil/faircoin2,gapcoin/gapcoin,anditto/bitcoin,RibbitFROG/ribbitcoin,kevin-cantwell/crunchcoin,phplaboratory/psiacoin,Gazer022/bitcoin,AdrianaDinca/bitcoin,XertroV/bitcoin-nulldata,jaromil/faircoin2,shouhuas/bitcoin,prusnak/bitcoin,phelixbtc/bitcoin,BitcoinUnlimited/BitcoinUnlimited,manuel-zulian/CoMoNet,bootycoin-project/bootycoin,skaht/bitcoin,oleganza/bitcoin-duo,okinc/litecoin,sifcoin/sifcoin,maaku/bitcoin,wekuiz/wekoin,greencoin-dev/digitalcoin,DrCrypto/darkcoin,wtogami/bitcoin,mrtexaznl/mediterraneancoin,ingresscoin/ingresscoin,wangliu/bitcoin,sifcoin/sifcoin,fullcoins/fullcoin,vmp32k/litecoin,manuel-zulian/CoMoNet,ajtowns/bitcoin,applecoin-official/fellatio,thormuller/yescoin2,ahmedbodi/temp_vert,bcpki/nonce2,m0gliE/fastcoin-cli,mikehearn/bitcoinxt,united-scrypt-coin-project/unitedscryptcoin,ticclassic/ic,bitbrazilcoin-project/bitbrazilcoin,m0gliE/fastcoin-cli,isghe/bitcoinxt,likecoin-dev/bitcoin,fujicoin/fujicoin,apoelstra/elements,WorldcoinGlobal/WorldcoinLegacy,deeponion/deeponion,daliwangi/bitcoin,wellenreiter01/Feathercoin,marcusdiaz/BitcoinUnlimited,ahmedbodi/temp_vert,plncoin/PLNcoin_Core,ixcoinofficialpage/master,zotherstupidguy/bitcoin,deuscoin/deuscoin,Exceltior/dogecoin,Alex-van-der-Peet/bitcoin,EthanHeilman/bitcoin,llluiop/bitcoin,digideskio/namecoin,marlengit/hardfork_prototype_1_mvf-bu,raasakh/bardcoin,mikehearn/bitcoinxt,steakknife/bitcoin-qt,pascalguru/florincoin,DMDcoin/Diamond,memorycoin/memorycoin,cryptocoins4all/zcoin,ahmedbodi/terracoin,spiritlinxl/BTCGPU,CryptArc/bitcoin,dagurval/bitcoinxt,KillerByte/memorypool,koharjidan/litecoin,OstlerDev/florincoin,acid1789/bitcoin,bitcoinplusorg/xbcwalletsource,ludbb/bitcoin,keo/bitcoin,thesoftwarejedi/bitcoin,AllanDoensen/BitcoinUnlimited,gwillen/elements,applecoin-official/applecoin,NunoEdgarGub1/elements,rromanchuk/bitcoinxt,gcc64/bitcoin,rawodb/bitcoin,alejandromgk/Lunar,JeremyRand/bitcoin,CarpeDiemCoin/CarpeDiemLaunch,bitpay/bitcoin,CrimeaCoin/crimeacoin,BTCGPU/BTCGPU,mammix2/ccoin-dev,kaostao/bitcoin,coinkeeper/2015-06-22_18-52_viacoin,EthanHeilman/bitcoin,acid1789/bitcoin,Christewart/bitcoin,peerdb/cors,ahmedbodi/test2,XertroV/bitcoin-nulldata,mapineda/litecoin,marlengit/BitcoinUnlimited,marscoin/marscoin,haraldh/bitcoin,madman5844/poundkoin,bespike/litecoin,wcwu/bitcoin,KaSt/ekwicoin,czr5014iph/bitcoin4e,maraoz/proofcoin,elliotolds/bitcoin,bitcoinknots/bitcoin,benma/bitcoin,EntropyFactory/creativechain-core,cculianu/bitcoin-abc,ajweiss/bitcoin,Anfauglith/iop-hd,novaexchange/EAC,achow101/bitcoin,tecnovert/particl-core,sipa/bitcoin,therealaltcoin/altcoin,coinkeeper/2015-06-22_18-36_darkcoin,xurantju/bitcoin,schinzelh/dash,magacoin/magacoin,antonio-fr/bitcoin,lbrtcoin/albertcoin,worldbit/worldbit,phplaboratory/psiacoin,ludbb/bitcoin,koharjidan/dogecoin,guncoin/guncoin,dcousens/bitcoin,kallewoof/elements,vcoin-project/vcoin0.8zeta-dev,pataquets/namecoin-core,wangliu/bitcoin,greencoin-dev/greencoin-dev,bitreserve/bitcoin,marlengit/hardfork_prototype_1_mvf-bu,mammix2/ccoin-dev,ashleyholman/bitcoin,pelorusjack/BlockDX,FeatherCoin/Feathercoin,lclc/bitcoin,REAP720801/bitcoin,lbrtcoin/albertcoin,crowning-/dash,presstab/PIVX,sickpig/BitcoinUnlimited,cddjr/BitcoinUnlimited,irvingruan/bitcoin,mikehearn/bitcoin,syscoin/syscoin,Carrsy/PoundCoin,argentumproject/argentum,gjhiggins/vcoincore,reorder/viacoin,Christewart/bitcoin,capitalDIGI/litecoin,tdudz/elements,MikeAmy/bitcoin,gmaxwell/bitcoin,domob1812/huntercore,ingresscoin/ingresscoin,rsdevgun16e/energi,manuel-zulian/CoMoNet,morcos/bitcoin,masterbraz/dg,madman5844/poundkoin,thesoftwarejedi/bitcoin,cryptoprojects/ultimateonlinecash,Kogser/bitcoin,coinkeeper/2015-06-22_18-37_dogecoin,funbucks/notbitcoinxt,roques/bitcoin,BitcoinHardfork/bitcoin,aniemerg/zcash,jarymoth/dogecoin,antonio-fr/bitcoin,romanornr/viacoin,cmgustavo/bitcoin,howardrya/AcademicCoin,oklink-dev/bitcoin_block,safecoin/safecoin,BitzenyCoreDevelopers/bitzeny,Tetpay/bitcoin,vertcoin/eyeglass,sarielsaz/sarielsaz,cainca/liliucoin,Cloudsy/bitcoin,compasscoin/compasscoin,Ziftr/litecoin,fujicoin/fujicoin,shaulkf/bitcoin,hophacker/bitcoin_malleability,Climbee/artcoin,chrisfranko/aiden,nathaniel-mahieu/bitcoin,josephbisch/namecoin-core,renatolage/wallets-BRCoin,cerebrus29301/crowncoin,kfitzgerald/titcoin,putinclassic/putic,se3000/bitcoin,langerhans/dogecoin,gcc64/bitcoin,ftrader-bitcoinabc/bitcoin-abc,Litecoindark/LTCD,AllanDoensen/BitcoinUnlimited,monacoinproject/monacoin,superjudge/bitcoin,shelvenzhou/BTCGPU,dcousens/bitcoin,multicoins/marycoin,sbellem/bitcoin,rnicoll/bitcoin,ivansib/sibcoin,namecoin/namecore,Carrsy/PoundCoin,IlfirinIlfirin/shavercoin,zotherstupidguy/bitcoin,KaSt/equikoin,phplaboratory/psiacoin,gazbert/bitcoin,kallewoof/bitcoin,scippio/bitcoin,parvez3019/bitcoin,genavarov/lamacoin,Kcoin-project/kcoin,applecoin-official/fellatio,nlgcoin/guldencoin-official,cmgustavo/bitcoin,metrocoins/metrocoin,jgarzik/bitcoin,shomeser/bitcoin,shaolinfry/litecoin,Tetpay/bitcoin,cryptodev35/icash,bitcoinplusorg/xbcwalletsource,bitjson/hivemind,jmgilbert2/energi,kevcooper/bitcoin,Ziftr/bitcoin,donaloconnor/bitcoin,coinkeeper/2015-06-22_19-19_worldcoin,gandrewstone/BitcoinUnlimited,dogecoin/dogecoin,syscoin/syscoin,DrCrypto/darkcoin,blocktrail/bitcoin,NunoEdgarGub1/elements,LIMXTEC/DMDv3,jrmithdobbs/bitcoin,gjhiggins/vcoin0.8zeta-dev,jamesob/bitcoin,magacoin/magacoin,nvmd/bitcoin,Thracky/monkeycoin,Ziftr/litecoin,coinkeeper/megacoin_20150410_fixes,Czarcoin/czarcoin,gmaxwell/bitcoin,brettwittam/geocoin,gameunits/gameunits,totallylegitbiz/totallylegitcoin,czr5014iph/bitcoin4e,phelix/namecore,stamhe/bitcoin,MitchellMintCoins/MortgageCoin,deuscoin/deuscoin,terracoin/terracoin,diggcoin/diggcoin,taenaive/zetacoin,raasakh/bardcoin,GreenParhelia/bitcoin,therealaltcoin/altcoin,robvanbentem/bitcoin,megacoin/megacoin,vertcoin/vertcoin,TheBlueMatt/bitcoin,nanocoins/mycoin,apoelstra/bitcoin,StarbuckBG/BTCGPU,dan-mi-sun/bitcoin,mikehearn/bitcoin,WorldcoinGlobal/WorldcoinLegacy,sipsorcery/bitcoin,nvmd/bitcoin,BenjaminsCrypto/Benjamins-1,Jcing95/iop-hd,isle2983/bitcoin,gjhiggins/fuguecoin,EntropyFactory/creativechain-core,instagibbs/bitcoin,ludbb/bitcoin,Flurbos/Flurbo,jarymoth/dogecoin,isghe/bitcoinxt,zenywallet/bitzeny,CarpeDiemCoin/CarpeDiemLaunch,cannabiscoindev/cannabiscoin420,kazcw/bitcoin,balajinandhu/bitcoin,bootycoin-project/bootycoin,gmaxwell/bitcoin,vericoin/vericoin-core,patricklodder/dogecoin,KnCMiner/bitcoin,dexX7/bitcoin,dgenr8/bitcoinxt,Mrs-X/PIVX,kirkalx/bitcoin,earthcoinproject/earthcoin,Xekyo/bitcoin,llamasoft/ProtoShares_Cycle,qubitcoin-project/QubitCoinQ2C,ericshawlinux/bitcoin,GwangJin/gwangmoney-core,jonghyeopkim/bitcoinxt,franko-org/franko,nailtaras/nailcoin,rustyrussell/bitcoin,Dajackal/Ronpaulcoin,droark/bitcoin,putinclassic/putic,mitchellcash/bitcoin,Megacoin2/Megacoin,schildbach/bitcoin,tuaris/bitcoin,chaincoin/chaincoin,TBoehm/greedynode,rnicoll/bitcoin,puticcoin/putic,miguelfreitas/twister-core,Petr-Economissa/gvidon,zixan/bitcoin,peercoin/peercoin,Tetcoin/tetcoin,brishtiteveja/sherlockholmescoin,ashleyholman/bitcoin,mastercoin-MSC/mastercore,BitzenyCoreDevelopers/bitzeny,franko-org/franko,cryptodev35/icash,kevcooper/bitcoin,joroob/reddcoin,fanquake/bitcoin,shaolinfry/litecoin,Theshadow4all/ShadowCoin,cinnamoncoin/Feathercoin,ravenbyron/phtevencoin,schinzelh/dash,chrisfranko/aiden,Kogser/bitcoin,Bitcoinsulting/bitcoinxt,shadowoneau/ozcoin,wederw/bitcoin,misdess/bitcoin,erqan/twister-core,KibiCoin/kibicoin,coinkeeper/2015-06-22_19-13_florincoin,cqtenq/Feathercoin,starwalkerz/fincoin-fork,BitzenyCoreDevelopers/bitzeny,phelix/bitcoin,knolza/gamblr,Vsync-project/Vsync,RHavar/bitcoin,and2099/twister-core,viacoin/viacoin,ticclassic/ic,haobtc/bitcoin,jgarzik/bitcoin,jtimon/bitcoin,CoinProjects/AmsterdamCoin-v4,zcoinofficial/zcoin,fussl/elements,imton/bitcoin,cryptodev35/icash,llluiop/bitcoin,jambolo/bitcoin,shapiroisme/datadollar,jaromil/faircoin2,BigBlueCeiling/augmentacoin,dexX7/mastercore,safecoin/safecoin,cinnamoncoin/groupcoin-1,aciddude/Feathercoin,xawksow/GroestlCoin,experiencecoin/experiencecoin,rnicoll/bitcoin,superjudge/bitcoin,CodeShark/bitcoin,JeremyRand/bitcoin,peacedevelop/peacecoin,domob1812/bitcoin,langerhans/dogecoin,cybermatatu/bitcoin,DogTagRecon/Still-Leraning,droark/elements,phelix/namecore,11755033isaprimenumber/Feathercoin,ANCompany/birdcoin-dev,bcpki/nonce2,jnewbery/bitcoin,DMDcoin/Diamond,adpg211/bitcoin-master,Gazer022/bitcoin,MeshCollider/bitcoin,faircoin/faircoin2,GlobalBoost/GlobalBoost,taenaive/zetacoin,sugruedes/bitcoin,jakeva/bitcoin-pwcheck,DGCDev/digitalcoin,Domer85/dogecoin,sipa/elements,AkioNak/bitcoin,sbellem/bitcoin,scmorse/bitcoin,vericoin/vericoin-core,NateBrune/bitcoin-nate,shea256/bitcoin,cinnamoncoin/Feathercoin,alejandromgk/Lunar,odemolliens/bitcoinxt,simdeveloper/bitcoin,madman5844/poundkoin,vericoin/vericoin-core,raasakh/bardcoin.exe,namecoin/namecore,111t8e/bitcoin,saydulk/Feathercoin,vcoin-project/vcoincore,lakepay/lake,putinclassic/putic,JeremyRand/namecoin-core,nailtaras/nailcoin,nlgcoin/guldencoin-official,goku1997/bitcoin,BTCDDev/bitcoin,ronpaulcoin/ronpaulcoin,Friedbaumer/litecoin,szlaozhu/twister-core,gjhiggins/vcoincore,kaostao/bitcoin,ericshawlinux/bitcoin,mrtexaznl/mediterraneancoin,Coinfigli/coinfigli,aspirecoin/aspire,projectinterzone/ITZ,ahmedbodi/vertcoin,qtumproject/qtum,gmaxwell/bitcoin,phelixbtc/bitcoin,jarymoth/dogecoin,qreatora/worldcoin-v0.8,BTCDDev/bitcoin,wcwu/bitcoin,btc1/bitcoin,masterbraz/dg,welshjf/bitcoin,cerebrus29301/crowncoin,Coinfigli/coinfigli,StarbuckBG/BTCGPU,faircoin/faircoin,goldmidas/goldmidas,nomnombtc/bitcoin,maraoz/proofcoin,imharrywu/fastcoin,bdelzell/creditcoin-org-creditcoin,deeponion/deeponion,bitcoinsSG/bitcoin,namecoin/namecore,Bitcoin-ABC/bitcoin-abc,bitreserve/bitcoin,Cancercoin/Cancercoin,Dajackal/Ronpaulcoin,sipsorcery/bitcoin,stamhe/bitcoin,MarcoFalke/bitcoin,aburan28/elements,loxal/zcash,koharjidan/dogecoin,supcoin/supcoin,TrainMAnB/vcoincore,romanornr/viacoin,dagurval/bitcoinxt,neuroidss/bitcoin,PandaPayProject/PandaPay,jonghyeopkim/bitcoinxt,psionin/smartcoin,TierNolan/bitcoin,MasterX1582/bitcoin-becoin,petertodd/bitcoin,braydonf/bitcoin,theuni/bitcoin,collapsedev/cashwatt,svost/bitcoin,ajweiss/bitcoin,kryptokredyt/ProjektZespolowyCoin,sdaftuar/bitcoin,Cloudsy/bitcoin,litecoin-project/bitcoinomg,Enticed87/Decipher,themusicgod1/bitcoin,jaromil/faircoin2,Bitcoin-com/BUcash,Cloudsy/bitcoin,DigitalPandacoin/pandacoin,wangxinxi/litecoin,worldbit/worldbit,goku1997/bitcoin,keo/bitcoin,sarielsaz/sarielsaz,gwillen/elements,MonetaryUnit/MUE-Src,svost/bitcoin,Erkan-Yilmaz/twister-core,alexandrcoin/vertcoin,dev1972/Satellitecoin,borgcoin/Borgcoin1,TeamBitBean/bitcoin-core,earthcoinproject/earthcoin,MonetaryUnit/MUE-Src,Anoncoin/anoncoin,achow101/bitcoin,neuroidss/bitcoin,Earlz/dobbscoin-source,TGDiamond/Diamond,benosa/bitcoin,privatecoin/privatecoin,jtimon/bitcoin,wiggi/huntercore,blocktrail/bitcoin,lbryio/lbrycrd,kazcw/bitcoin,iosdevzone/bitcoin,pstratem/elements,wtogami/bitcoin,n1bor/bitcoin,xieta/mincoin,richo/dongcoin,united-scrypt-coin-project/unitedscryptcoin,bittylicious/bitcoin,Kogser/bitcoin,MikeAmy/bitcoin,segwit/atbcoin-insight,starwels/starwels,jrick/bitcoin,wekuiz/wekoin,FinalHashLLC/namecore,mockcoin/mockcoin,phelix/namecore,bankonmecoin/bitcoin,m0gliE/fastcoin-cli,SartoNess/BitcoinUnlimited,benzmuircroft/REWIRE.io,jamesob/bitcoin,enlighter/Feathercoin,wbchen99/bitcoin-hnote0,okinc/litecoin,litecoin-project/litecoin,zsulocal/bitcoin,yenliangl/bitcoin,Cocosoft/bitcoin,genavarov/ladacoin,Mrs-X/PIVX,inkvisit/sarmacoins,jlopp/statoshi,knolza/gamblr,ajweiss/bitcoin,Har01d/bitcoin,marscoin/marscoin,cinnamoncoin/groupcoin-1,RibbitFROG/ribbitcoin,ivansib/sib16,ionux/freicoin,gwangjin2/gwangcoin-core,coinkeeper/2015-06-22_19-13_florincoin,gandrewstone/bitcoinxt,crowning-/dash,Bitcoin-com/BUcash,174high/bitcoin,butterflypay/bitcoin,sipa/elements,rebroad/bitcoin,zzkt/solarcoin,kallewoof/elements,Climbee/artcoin,cainca/liliucoin,balajinandhu/bitcoin,haobtc/bitcoin,wellenreiter01/Feathercoin,isle2983/bitcoin,cqtenq/feathercoin_core,pelorusjack/BlockDX,RHavar/bitcoin,syscoin/syscoin,meighti/bitcoin,bitcoin-hivemind/hivemind,21E14/bitcoin,Darknet-Crypto/Darknet,Kcoin-project/kcoin,Anoncoin/anoncoin,hsavit1/bitcoin,tjth/lotterycoin,21E14/bitcoin,upgradeadvice/MUE-Src,aniemerg/zcash,haraldh/bitcoin,dgarage/bc3,daliwangi/bitcoin,droark/elements,manuel-zulian/accumunet,HashUnlimited/Einsteinium-Unlimited,bittylicious/bitcoin,reorder/viacoin,bitreserve/bitcoin,ftrader-bitcoinunlimited/hardfork_prototype_1_mvf-bu,pdrobek/Polcoin-1-3,lbryio/lbrycrd,StarbuckBG/BTCGPU,ShwoognationHQ/bitcoin,CryptArc/bitcoin,Vector2000/bitcoin,KnCMiner/bitcoin,steakknife/bitcoin-qt,alecalve/bitcoin,megacoin/megacoin,Flowdalic/bitcoin,IlfirinIlfirin/shavercoin,matlongsi/micropay,barcoin-project/nothingcoin,ajweiss/bitcoin,thelazier/dash,bittylicious/bitcoin,antcheck/antcoin,grumpydevelop/singularity,kevcooper/bitcoin,prark/bitcoinxt,habibmasuro/bitcoin,Richcoin-Project/RichCoin,kleetus/bitcoinxt,qubitcoin-project/QubitCoinQ2C,jn2840/bitcoin,Bitcoin-ABC/bitcoin-abc,BTCTaras/bitcoin,domob1812/bitcoin,bitbrazilcoin-project/bitbrazilcoin,deadalnix/bitcoin,afk11/bitcoin,GroestlCoin/GroestlCoin,webdesignll/coin,coinkeeper/2015-06-22_18-56_megacoin,vtafaucet/virtacoin,schildbach/bitcoin,PandaPayProject/PandaPay,mrbandrews/bitcoin,GIJensen/bitcoin,cannabiscoindev/cannabiscoin420,litecoin-project/litecore-litecoin,TrainMAnB/vcoincore,PIVX-Project/PIVX,rat4/bitcoin,Flurbos/Flurbo,11755033isaprimenumber/Feathercoin,ionomy/ion,DMDcoin/Diamond,octocoin-project/octocoin,jmgilbert2/energi,CryptArc/bitcoinxt,vertcoin/vertcoin,keisercoin-official/keisercoin,janko33bd/bitcoin,droark/elements,rdqw/sscoin,cddjr/BitcoinUnlimited,48thct2jtnf/P,phelix/bitcoin,odemolliens/bitcoinxt,chrisfranko/aiden,FeatherCoin/Feathercoin,peacedevelop/peacecoin,vcoin-project/vcoin0.8zeta-dev,coinkeeper/2015-06-22_19-00_ziftrcoin,kbccoin/kbc,mrbandrews/bitcoin,ftrader-bitcoinabc/bitcoin-abc,RongxinZhang/bitcoinxt,cerebrus29301/crowncoin,enlighter/Feathercoin,coinkeeper/2015-06-22_19-07_digitalcoin,tedlz123/Bitcoin,nikkitan/bitcoin,fedoracoin-dev/fedoracoin,coinkeeper/2015-06-22_18-56_megacoin,royosherove/bitcoinxt,renatolage/wallets-BRCoin,bitcoin/bitcoin,psionin/smartcoin,coinkeeper/2015-06-22_18-41_ixcoin,SocialCryptoCoin/SocialCoin,okinc/litecoin,rawodb/bitcoin,sugruedes/bitcoin,supcoin/supcoin,Har01d/bitcoin,thormuller/yescoin2,bitbrazilcoin-project/bitbrazilcoin,ticclassic/ic,zander/bitcoinclassic,patricklodder/dogecoin,slingcoin/sling-market,simdeveloper/bitcoin,alecalve/bitcoin,joulecoin/joulecoin,fullcoins/fullcoin,dogecoin/dogecoin,cyrixhero/bitcoin,OstlerDev/florincoin,globaltoken/globaltoken,btc1/bitcoin,domob1812/namecore,memorycoin/memorycoin,ShwoognationHQ/bitcoin,ionux/freicoin,ravenbyron/phtevencoin,hasanatkazmi/bitcoin,BTCfork/hardfork_prototype_1_mvf-bu,kazcw/bitcoin,afk11/bitcoin,inkvisit/sarmacoins,initaldk/bitcoin,mikehearn/bitcoinxt,jgarzik/bitcoin,ColossusCoinXT/ColossusCoinXT,PandaPayProject/PandaPay,koharjidan/dogecoin,ftrader-bitcoinabc/bitcoin-abc,projectinterzone/ITZ,nathan-at-least/zcash,hsavit1/bitcoin,NateBrune/bitcoin-nate,faircoin/faircoin2,braydonf/bitcoin,novaexchange/EAC,my-first/octocoin,rebroad/bitcoin,coinerd/krugercoin,BenjaminsCrypto/Benjamins-1,sebrandon1/bitcoin,hg5fm/nexuscoin,ohac/sha1coin,ahmedbodi/test2,apoelstra/elements,uphold/bitcoin,amaivsimau/bitcoin,koharjidan/bitcoin,marscoin/marscoin,Electronic-Gulden-Foundation/egulden,21E14/bitcoin,yenliangl/bitcoin,reddcoin-project/reddcoin,deuscoin/deuscoin,MasterX1582/bitcoin-becoin,Ziftr/bitcoin,initaldk/bitcoin,rjshaver/bitcoin,WorldLeadCurrency/WLC,IlfirinIlfirin/shavercoin,IlfirinIlfirin/shavercoin,Bitcoin-com/BUcash,KaSt/ekwicoin,zebrains/Blotter,Cloudsy/bitcoin,appop/bitcoin,GroundRod/anoncoin,florincoin/florincoin,manuel-zulian/CoMoNet,karek314/bitcoin,kseistrup/twister-core,Bloom-Project/Bloom,coinkeeper/2015-06-22_18-36_darkcoin,Horrorcoin/horrorcoin,gjhiggins/vcoincore,MeshCollider/bitcoin,Xekyo/bitcoin,aciddude/Feathercoin,romanornr/viacoin,icook/vertcoin,nsacoin/nsacoin,jlopp/statoshi,ohac/sakuracoin,nikkitan/bitcoin,gwangjin2/gwangcoin-core,jiangyonghang/bitcoin,h4x3rotab/BTCGPU,dgarage/bc3,plncoin/PLNcoin_Core,BitcoinHardfork/bitcoin,Earlz/dobbscoin-source,MasterX1582/bitcoin-becoin,droark/bitcoin,Darknet-Crypto/Darknet,jl2012/litecoin,nathan-at-least/zcash,initaldk/bitcoin,particl/particl-core,Diapolo/bitcoin,crowning-/dash,micryon/GPUcoin,LIMXTEC/DMDv3,cinnamoncoin/groupcoin-1,gavinandresen/bitcoin-git,tjps/bitcoin,bitcoin/bitcoin,Bloom-Project/Bloom,krzysztofwos/BitcoinUnlimited,krzysztofwos/BitcoinUnlimited,jaromil/faircoin2,odemolliens/bitcoinxt,genavarov/brcoin,therealaltcoin/altcoin,AkioNak/bitcoin,and2099/twister-core,putinclassic/putic,174high/bitcoin,destenson/bitcoin--bitcoin,48thct2jtnf/P,sipsorcery/bitcoin,dgenr8/bitcoin,SartoNess/BitcoinUnlimited,manuel-zulian/CoMoNet,FarhanHaque/bitcoin,nikkitan/bitcoin,gmaxwell/bitcoin,tropa/axecoin,axelxod/braincoin,plncoin/PLNcoin_Core,MonetaryUnit/MUE-Src,goldmidas/goldmidas,zottejos/merelcoin,bankonmecoin/bitcoin,Coinfigli/coinfigli,zixan/bitcoin,EthanHeilman/bitcoin,dcousens/bitcoin,iosdevzone/bitcoin,josephbisch/namecoin-core,wellenreiter01/Feathercoin,ripper234/bitcoin,Earlz/dobbscoin-source,anditto/bitcoin,ahmedbodi/test2,shadowoneau/ozcoin,paveljanik/bitcoin,MazaCoin/mazacoin-new,Bitcoinsulting/bitcoinxt,marklai9999/Taiwancoin,domob1812/i0coin,ahmedbodi/temp_vert,diggcoin/diggcoin,iosdevzone/bitcoin,sdaftuar/bitcoin,hg5fm/nexuscoin,coinkeeper/2015-06-22_18-41_ixcoin,SocialCryptoCoin/SocialCoin,kallewoof/elements,BlockchainTechLLC/3dcoin,novaexchange/EAC,lbrtcoin/albertcoin,jmgilbert2/energi,EntropyFactory/creativechain-core,razor-coin/razor,ingresscoin/ingresscoin,wbchen99/bitcoin-hnote0,core-bitcoin/bitcoin,scamcoinz/scamcoin,chaincoin/chaincoin,jameshilliard/bitcoin,CodeShark/bitcoin,practicalswift/bitcoin,mooncoin-project/mooncoin-landann,Rav3nPL/polcoin,domob1812/bitcoin,sebrandon1/bitcoin,Cocosoft/bitcoin,TheBlueMatt/bitcoin,dev1972/Satellitecoin,freelion93/mtucicoin,shaulkf/bitcoin,MeshCollider/bitcoin,namecoin/namecore,Electronic-Gulden-Foundation/egulden,Alonzo-Coeus/bitcoin,ludbb/bitcoin,core-bitcoin/bitcoin,awemany/BitcoinUnlimited,ptschip/bitcoinxt,dgenr8/bitcoinxt,bitcoin/bitcoin,TheBlueMatt/bitcoin,Tetpay/bitcoin,Rav3nPL/PLNcoin,ixcoinofficialpage/master,cybermatatu/bitcoin,error10/bitcoin,mitchellcash/bitcoin,capitalDIGI/DIGI-v-0-10-4,TripleSpeeder/bitcoin,GroundRod/anoncoin,zcoinofficial/zcoin,jameshilliard/bitcoin,benzmuircroft/REWIRE.io,torresalyssa/bitcoin,coinerd/krugercoin,p2peace/oliver-twister-core,hyperwang/bitcoin,Coinfigli/coinfigli,Kangmo/bitcoin,genavarov/brcoin,scmorse/bitcoin,bitcoinxt/bitcoinxt,ShadowMyst/creativechain-core,bmp02050/ReddcoinUpdates,itmanagerro/tresting,sifcoin/sifcoin,deadalnix/bitcoin,apoelstra/bitcoin,Kore-Core/kore,shaulkf/bitcoin,Kore-Core/kore,netswift/vertcoin,arnuschky/bitcoin,gzuser01/zetacoin-bitcoin,jlopp/statoshi,coinkeeper/2015-06-22_19-00_ziftrcoin,degenorate/Deftcoin,rnicoll/dogecoin,Gazer022/bitcoin,PIVX-Project/PIVX,Krellan/bitcoin,peercoin/peercoin,genavarov/lamacoin,nigeriacoin/nigeriacoin,Flurbos/Flurbo,Mrs-X/Darknet,manuel-zulian/CoMoNet,SoreGums/bitcoinxt,alejandromgk/Lunar,Earlz/renamedcoin,syscoin/syscoin,afk11/bitcoin,chaincoin/chaincoin,BlockchainTechLLC/3dcoin,21E14/bitcoin,lclc/bitcoin,x-kalux/bitcoin_WiG-B,mobicoins/mobicoin-core,patricklodder/dogecoin,gzuser01/zetacoin-bitcoin,IlfirinCano/shavercoin,irvingruan/bitcoin,josephbisch/namecoin-core,OmniLayer/omnicore,coinkeeper/anoncoin_20150330_fixes,coinkeeper/2015-06-22_18-52_viacoin,ediston/energi,pouta/bitcoin,compasscoin/compasscoin,bitjson/hivemind,JeremyRubin/bitcoin,mitchellcash/bitcoin,lakepay/lake,randy-waterhouse/bitcoin,constantine001/bitcoin,royosherove/bitcoinxt,wangxinxi/litecoin,alecalve/bitcoin,bcpki/nonce2testblocks,szlaozhu/twister-core,bespike/litecoin,howardrya/AcademicCoin,ShwoognationHQ/bitcoin,CoinProjects/AmsterdamCoin-v4,tmagik/catcoin,practicalswift/bitcoin,gwillen/elements,174high/bitcoin,EntropyFactory/creativechain-core,plankton12345/litecoin,Jeff88Ho/bitcoin,SartoNess/BitcoinUnlimited,cryptohelper/premine,glv2/peerunity,Friedbaumer/litecoin,odemolliens/bitcoinxt,sirk390/bitcoin,matlongsi/micropay,aniemerg/zcash,omefire/bitcoin,hsavit1/bitcoin,knolza/gamblr,cotner/bitcoin,credits-currency/credits,PRabahy/bitcoin,Mrs-X/Darknet,thrasher-/litecoin,ivansib/sib16,simdeveloper/bitcoin,cyrixhero/bitcoin,trippysalmon/bitcoin,totallylegitbiz/totallylegitcoin,mb300sd/bitcoin,Domer85/dogecoin,zenywallet/bitzeny,DigiByte-Team/digibyte,Horrorcoin/horrorcoin,irvingruan/bitcoin,ArgonToken/ArgonToken,taenaive/zetacoin,Kenwhite23/litecoin,metrocoins/metrocoin,slingcoin/sling-market,jgarzik/bitcoin,trippysalmon/bitcoin,CTRoundTable/Encrypted.Cash,lbryio/lbrycrd,kirkalx/bitcoin,JeremyRand/bitcoin,Exgibichi/statusquo,zcoinofficial/zcoin,Rav3nPL/doubloons-0.10,Anfauglith/iop-hd,bootycoin-project/bootycoin,truthcoin/truthcoin-cpp,rustyrussell/bitcoin,vcoin-project/vcoincore,GwangJin/gwangmoney-core,isocolsky/bitcoinxt,whatrye/twister-core,jonghyeopkim/bitcoinxt,mm-s/bitcoin,iQcoin/iQcoin,KibiCoin/kibicoin,bmp02050/ReddcoinUpdates,UdjinM6/dash,Rav3nPL/bitcoin,dperel/bitcoin,sipa/elements,tecnovert/particl-core,zander/bitcoinclassic,mincoin-project/mincoin,BitcoinPOW/BitcoinPOW,yenliangl/bitcoin,simonmulser/bitcoin,cheehieu/bitcoin,ppcoin/ppcoin,domob1812/huntercore,sipa/bitcoin,erqan/twister-core,Mirobit/bitcoin,my-first/octocoin,botland/bitcoin,cculianu/bitcoin-abc,erqan/twister-core,GreenParhelia/bitcoin,BitcoinHardfork/bitcoin,SoreGums/bitcoinxt,imton/bitcoin,Earlz/renamedcoin,vtafaucet/virtacoin,aniemerg/zcash,mrtexaznl/mediterraneancoin,my-first/octocoin,kaostao/bitcoin,koharjidan/dogecoin,cddjr/BitcoinUnlimited,stevemyers/bitcoinxt,ryanxcharles/bitcoin,segsignal/bitcoin,gmaxwell/bitcoin,dmrtsvetkov/flowercoin,Mrs-X/PIVX,isocolsky/bitcoinxt,ryanofsky/bitcoin,coinkeeper/2015-06-22_18-46_razor,DigiByte-Team/digibyte,jmcorgan/bitcoin,vmp32k/litecoin,ftrader-bitcoinabc/bitcoin-abc,worldcoinproject/worldcoin-v0.8,kallewoof/bitcoin,crowning-/dash,n1bor/bitcoin,zcoinofficial/zcoin,BTCfork/hardfork_prototype_1_mvf-core,meighti/bitcoin,isocolsky/bitcoinxt,oklink-dev/bitcoin,TeamBitBean/bitcoin-core,mammix2/ccoin-dev,gavinandresen/bitcoin-git,Anoncoin/anoncoin,ekankyesme/bitcoinxt,DGCDev/argentum,andres-root/bitcoinxt,bitreserve/bitcoin,and2099/twister-core,bitcoinsSG/zcash,stamhe/litecoin,sipa/elements,Rav3nPL/polcoin,taenaive/zetacoin,globaltoken/globaltoken,BlockchainTechLLC/3dcoin,2XL/bitcoin,ghostlander/Feathercoin,aciddude/Feathercoin,kleetus/bitcoinxt,lbrtcoin/albertcoin,cybermatatu/bitcoin,jameshilliard/bitcoin,haobtc/bitcoin,coinkeeper/megacoin_20150410_fixes,Kcoin-project/kcoin,p2peace/oliver-twister-core,dpayne9000/Rubixz-Coin,lateminer/bitcoin,unsystemizer/bitcoin,Vsync-project/Vsync,bitcoinec/bitcoinec,kleetus/bitcoin,JeremyRand/namecore,applecoin-official/applecoin,sbellem/bitcoin,erqan/twister-core,BTCTaras/bitcoin,langerhans/dogecoin,coinkeeper/2015-06-22_18-31_bitcoin,novaexchange/EAC,Lucky7Studio/bitcoin,Sjors/bitcoin,ftrader-bitcoinabc/bitcoin-abc,174high/bitcoin,itmanagerro/tresting,credits-currency/credits,nanocoins/mycoin,puticcoin/putic,ajtowns/bitcoin,brishtiteveja/sherlockcoin,daveperkins-github/bitcoin-dev,rdqw/sscoin,manuel-zulian/accumunet,dakk/soundcoin,mikehearn/bitcoin,jn2840/bitcoin,antonio-fr/bitcoin,faircoin/faircoin2,Petr-Economissa/gvidon,BigBlueCeiling/augmentacoin,skaht/bitcoin,lbrtcoin/albertcoin,blood2/bloodcoin-0.9,CrimeaCoin/crimeacoin,keo/bitcoin,xieta/mincoin,fullcoins/fullcoin,Flowdalic/bitcoin,yenliangl/bitcoin,Exceltior/dogecoin,wederw/bitcoin,rromanchuk/bitcoinxt,cryptodev35/icash,x-kalux/bitcoin_WiG-B,imton/bitcoin,meighti/bitcoin,nanocoins/mycoin,gravio-net/graviocoin,nmarley/dash,domob1812/i0coin,npccoin/npccoin,JeremyRand/namecoin-core,nathaniel-mahieu/bitcoin,ohac/sha1coin,joshrabinowitz/bitcoin,genavarov/lamacoin,ArgonToken/ArgonToken,greenaddress/bitcoin,Chancoin-core/CHANCOIN,zestcoin/ZESTCOIN,llamasoft/ProtoShares_Cycle,XX-net/twister-core,Megacoin2/Megacoin,r8921039/bitcoin,gazbert/bitcoin,gzuser01/zetacoin-bitcoin,bitcoin/bitcoin,presstab/PIVX,gravio-net/graviocoin,Dinarcoin/dinarcoin,kfitzgerald/titcoin,greencoin-dev/greencoin-dev,haraldh/bitcoin,cotner/bitcoin,mruddy/bitcoin,vlajos/bitcoin,Dinarcoin/dinarcoin,world-bank/unpay-core,kseistrup/twister-core,benosa/bitcoin,rdqw/sscoin,Michagogo/bitcoin,keisercoin-official/keisercoin,atgreen/bitcoin,UFOCoins/ufo,Alonzo-Coeus/bitcoin,royosherove/bitcoinxt,dpayne9000/Rubixz-Coin,basicincome/unpcoin-core,reddcoin-project/reddcoin,droark/elements,pouta/bitcoin,sstone/bitcoin,Kangmo/bitcoin,ivansib/sib16,lbrtcoin/albertcoin,OmniLayer/omnicore,gcc64/bitcoin,plankton12345/litecoin,lbryio/lbrycrd,zsulocal/bitcoin,gapcoin/gapcoin,Flurbos/Flurbo,appop/bitcoin,martindale/elements,kazcw/bitcoin,jrmithdobbs/bitcoin,dpayne9000/Rubixz-Coin,dannyperez/bolivarcoin,denverl/bitcoin,bankonmecoin/bitcoin,GroestlCoin/GroestlCoin,jtimon/elements,world-bank/unpay-core,BTCTaras/bitcoin,botland/bitcoin,DigiByte-Team/digibyte,MazaCoin/maza,Justaphf/BitcoinUnlimited,zcoinofficial/zcoin,brishtiteveja/sherlockholmescoin,grumpydevelop/singularity,gravio-net/graviocoin,Bushstar/UFO-Project,svost/bitcoin,digideskio/namecoin,dperel/bitcoin,gcc64/bitcoin,mruddy/bitcoin,coinkeeper/2015-06-22_18-39_feathercoin,jimmysong/bitcoin,cinnamoncoin/groupcoin-1,AllanDoensen/BitcoinUnlimited,pataquets/namecoin-core,ClusterCoin/ClusterCoin,ionomy/ion,tripmode/pxlcoin,Xekyo/bitcoin,WorldLeadCurrency/WLC,tropa/axecoin,cainca/liliucoin,RyanLucchese/energi,cddjr/BitcoinUnlimited,cdecker/bitcoin,cainca/liliucoin,btcdrak/bitcoin,domob1812/namecore,truthcoin/truthcoin-cpp,IlfirinCano/shavercoin,zemrys/vertcoin,LIMXTEC/DMDv3,MarcoFalke/bitcoin,hg5fm/nexuscoin,laudaa/bitcoin,wangliu/bitcoin,Bushstar/UFO-Project,kleetus/bitcoin,zcoinofficial/zcoin,kleetus/bitcoinxt,lbryio/lbrycrd,gzuser01/zetacoin-bitcoin,40thoughts/Coin-QualCoin,Kcoin-project/kcoin,glv2/peerunity,sbaks0820/bitcoin,coinkeeper/2015-06-22_18-51_vertcoin,jn2840/bitcoin,40thoughts/Coin-QualCoin,shea256/bitcoin,Carrsy/PoundCoin,krzysztofwos/BitcoinUnlimited,p2peace/oliver-twister-core,SoreGums/bitcoinxt,gwangjin2/gwangcoin-core,AdrianaDinca/bitcoin,destenson/bitcoin--bitcoin,KibiCoin/kibicoin,thormuller/yescoin2,capitalDIGI/DIGI-v-0-10-4,romanornr/viacoin,basicincome/unpcoin-core,ptschip/bitcoinxt,drwasho/bitcoinxt,GIJensen/bitcoin,Alonzo-Coeus/bitcoin,cddjr/BitcoinUnlimited,KnCMiner/bitcoin,jiffe/cosinecoin,alexandrcoin/vertcoin,donaloconnor/bitcoin,midnightmagic/bitcoin,ajweiss/bitcoin,tmagik/catcoin,experiencecoin/experiencecoin,PRabahy/bitcoin,arnuschky/bitcoin,kallewoof/elements,icook/vertcoin,zander/bitcoinclassic,likecoin-dev/bitcoin,ashleyholman/bitcoin,fussl/elements,tensaix2j/bananacoin,AdrianaDinca/bitcoin,tedlz123/Bitcoin,truthcoin/blocksize-market,bitshares/bitshares-pts,kirkalx/bitcoin,jonasnick/bitcoin,my-first/octocoin,Earlz/renamedcoin,nomnombtc/bitcoin,biblepay/biblepay,Kogser/bitcoin,Rav3nPL/PLNcoin,mm-s/bitcoin,Mirobit/bitcoin,guncoin/guncoin,tmagik/catcoin,ptschip/bitcoinxt,koharjidan/litecoin,saydulk/Feathercoin,MarcoFalke/bitcoin,bitgoldcoin-project/bitgoldcoin,coinerd/krugercoin,ftrader-bitcoinabc/bitcoin-abc,unsystemizer/bitcoin,raasakh/bardcoin.exe,raasakh/bardcoin.exe,novaexchange/EAC,brandonrobertz/namecoin-core,5mil/Tradecoin,Tetpay/bitcoin,fujicoin/fujicoin,Tetcoin/tetcoin,jakeva/bitcoin-pwcheck,Bitcoin-ABC/bitcoin-abc,sstone/bitcoin,deuscoin/deuscoin,earonesty/bitcoin,aniemerg/zcash,Friedbaumer/litecoin,ddombrowsky/radioshares,gavinandresen/bitcoin-git,cryptoprojects/ultimateonlinecash,simonmulser/bitcoin,isocolsky/bitcoinxt,rjshaver/bitcoin,bitcoinsSG/bitcoin,thesoftwarejedi/bitcoin,upgradeadvice/MUE-Src,goldmidas/goldmidas,isghe/bitcoinxt,sipsorcery/bitcoin,bitcoinclassic/bitcoinclassic,pastday/bitcoinproject,and2099/twister-core,gravio-net/graviocoin,Xekyo/bitcoin,NicolasDorier/bitcoin,KaSt/ekwicoin,brishtiteveja/sherlockholmescoin,ahmedbodi/vertcoin,atgreen/bitcoin,Kenwhite23/litecoin,multicoins/marycoin,bcpki/nonce2testblocks,sbaks0820/bitcoin,rustyrussell/bitcoin,peacedevelop/peacecoin,Vsync-project/Vsync,adpg211/bitcoin-master,ekankyesme/bitcoinxt,Krellan/bitcoin,Kangmo/bitcoin,mapineda/litecoin,initaldk/bitcoin,UFOCoins/ufo,krzysztofwos/BitcoinUnlimited,spiritlinxl/BTCGPU,midnightmagic/bitcoin,goldcoin/Goldcoin-GLD,dagurval/bitcoinxt,slingcoin/sling-market,peerdb/cors,ixcoinofficialpage/master,bcpki/nonce2,sipa/bitcoin,DMDcoin/Diamond,x-kalux/bitcoin_WiG-B,crowning2/dash,funkshelper/woodcoin-b,Bluejudy/worldcoin,btc1/bitcoin,inutoshi/inutoshi,joshrabinowitz/bitcoin,Domer85/dogecoin,haisee/dogecoin,genavarov/lamacoin,ptschip/bitcoin,coinkeeper/2015-06-22_18-37_dogecoin,ediston/energi,safecoin/safecoin,prark/bitcoinxt,jrick/bitcoin,stamhe/litecoin,oleganza/bitcoin-duo,Metronotes/bitcoin,prark/bitcoinxt,ahmedbodi/temp_vert,HashUnlimited/Einsteinium-Unlimited,iQcoin/iQcoin,zebrains/Blotter,balajinandhu/bitcoin,cainca/liliucoin,osuyuushi/laughingmancoin,domob1812/namecore,crowning2/dash,bitcoinclassic/bitcoinclassic,coinkeeper/2015-06-22_18-30_anoncoin,llluiop/bitcoin,biblepay/biblepay,BTCDDev/bitcoin,r8921039/bitcoin,balajinandhu/bitcoin,Michagogo/bitcoin,DGCDev/digitalcoin,CryptArc/bitcoin,rawodb/bitcoin,NateBrune/bitcoin-fio,SoreGums/bitcoinxt,litecoin-project/litecoin,rnicoll/bitcoin,domob1812/huntercore,WorldLeadCurrency/WLC,vlajos/bitcoin,h4x3rotab/BTCGPU,TierNolan/bitcoin,Jcing95/iop-hd,ohac/sha1coin,appop/bitcoin,magacoin/magacoin,world-bank/unpay-core,BigBlueCeiling/augmentacoin,NicolasDorier/bitcoin,mincoin-project/mincoin,shea256/bitcoin,AdrianaDinca/bitcoin,metrocoins/metrocoin,domob1812/i0coin,peacedevelop/peacecoin,bitcoinclassic/bitcoinclassic,ptschip/bitcoin,goldcoin/goldcoin,2XL/bitcoin,spiritlinxl/BTCGPU,fsb4000/bitcoin,daveperkins-github/bitcoin-dev,Rav3nPL/bitcoin,Cancercoin/Cancercoin,ixcoinofficialpage/master,Diapolo/bitcoin,jl2012/litecoin,icook/vertcoin,bitjson/hivemind,fsb4000/bitcoin,krzysztofwos/BitcoinUnlimited,unsystemizer/bitcoin,cqtenq/Feathercoin,vbernabe/freicoin,fussl/elements,mitchellcash/bitcoin,Rav3nPL/doubloons-0.10,miguelfreitas/twister-core,octocoin-project/octocoin,UdjinM6/dash,ddombrowsky/radioshares,ryanofsky/bitcoin,mm-s/bitcoin,andres-root/bitcoinxt,Adaryian/E-Currency,netswift/vertcoin,manuel-zulian/accumunet,ElementsProject/elements,crowning2/dash,Anfauglith/iop-hd,zottejos/merelcoin,instagibbs/bitcoin,dgenr8/bitcoinxt,cqtenq/feathercoin_core,KillerByte/memorypool,atgreen/bitcoin,antonio-fr/bitcoin,segsignal/bitcoin,Cancercoin/Cancercoin,mruddy/bitcoin,Rav3nPL/doubloons-08,Czarcoin/czarcoin,sebrandon1/bitcoin,jakeva/bitcoin-pwcheck,jtimon/elements,privatecoin/privatecoin,jiffe/cosinecoin,GreenParhelia/bitcoin,plncoin/PLNcoin_Core,NicolasDorier/bitcoin,langerhans/dogecoin,coinkeeper/2015-06-22_19-07_digitalcoin,sstone/bitcoin,xeddmc/twister-core,djpnewton/bitcoin,oleganza/bitcoin-duo,freelion93/mtucicoin,accraze/bitcoin,BitcoinUnlimited/BitcoinUnlimited,szlaozhu/twister-core,neuroidss/bitcoin,globaltoken/globaltoken,bickojima/bitzeny,karek314/bitcoin,Rav3nPL/doubloons-0.10,loxal/zcash,brightcoin/brightcoin,keo/bitcoin,benzmuircroft/REWIRE.io,djpnewton/bitcoin,biblepay/biblepay,jtimon/bitcoin,40thoughts/Coin-QualCoin,andreaskern/bitcoin,AkioNak/bitcoin,dogecoin/dogecoin,pdrobek/Polcoin-1-3,HeliumGas/helium,chaincoin/chaincoin,supcoin/supcoin,ekankyesme/bitcoinxt,bitgoldcoin-project/bitgoldcoin,misdess/bitcoin,appop/bitcoin,shadowoneau/ozcoin,Kogser/bitcoin,riecoin/riecoin,Darknet-Crypto/Darknet,kevin-cantwell/crunchcoin,ptschip/bitcoin,antcheck/antcoin,r8921039/bitcoin,leofidus/glowing-octo-ironman,mitchellcash/bitcoin,raasakh/bardcoin,XX-net/twister-core,se3000/bitcoin,tdudz/elements,Gazer022/bitcoin,markf78/dollarcoin,bcpki/testblocks,mobicoins/mobicoin-core,EthanHeilman/bitcoin,fedoracoin-dev/fedoracoin,vertcoin/eyeglass,kseistrup/twister-core,ccoin-project/ccoin,kallewoof/elements,razor-coin/razor,alejandromgk/Lunar,jtimon/bitcoin,ashleyholman/bitcoin,bitreserve/bitcoin,MarcoFalke/bitcoin,cryptoprojects/ultimateonlinecash,capitalDIGI/litecoin,RyanLucchese/energi,riecoin/riecoin,CarpeDiemCoin/CarpeDiemLaunch,marcusdiaz/BitcoinUnlimited,worldcoinproject/worldcoin-v0.8,atgreen/bitcoin,brandonrobertz/namecoin-core,jn2840/bitcoin,thormuller/yescoin2,HeliumGas/helium,Climbee/artcoin,shadowoneau/ozcoin,memorycoin/memorycoin,drwasho/bitcoinxt,mycointest/owncoin,aspirecoin/aspire,cryptoprojects/ultimateonlinecash,174high/bitcoin,funbucks/notbitcoinxt,litecoin-project/litecore-litecoin,dakk/soundcoin,sarielsaz/sarielsaz,Cloudsy/bitcoin,ElementsProject/elements,schinzelh/dash,ftrader-bitcoinunlimited/hardfork_prototype_1_mvf-bu,cculianu/bitcoin-abc,nathan-at-least/zcash,1185/starwels,coinkeeper/2015-06-22_18-31_bitcoin,Michagogo/bitcoin,goldmidas/goldmidas,collapsedev/circlecash,Kangmo/bitcoin,jambolo/bitcoin,phelix/bitcoin,Electronic-Gulden-Foundation/egulden,myriadteam/myriadcoin,genavarov/brcoin,jakeva/bitcoin-pwcheck,cybermatatu/bitcoin,ColossusCoinXT/ColossusCoinXT,vertcoin/vertcoin,isghe/bitcoinxt,vericoin/vericoin-core,Electronic-Gulden-Foundation/egulden,starwels/starwels,XX-net/twister-core,KibiCoin/kibicoin,brandonrobertz/namecoin-core,ahmedbodi/test2,greencoin-dev/digitalcoin,Justaphf/BitcoinUnlimited,nightlydash/darkcoin,nomnombtc/bitcoin,antcheck/antcoin,biblepay/biblepay,kleetus/bitcoinxt,ardsu/bitcoin,WorldLeadCurrency/WLC,nmarley/dash,untrustbank/litecoin,scamcoinz/scamcoin,tecnovert/particl-core,GIJensen/bitcoin,mobicoins/mobicoin-core,FinalHashLLC/namecore,aburan28/elements,tjth/lotterycoin,matlongsi/micropay,dgenr8/bitcoin,mb300sd/bitcoin,MitchellMintCoins/MortgageCoin,amaivsimau/bitcoin,domob1812/namecore,bitpagar/bitpagar,Tetpay/bitcoin,ctwiz/stardust,pouta/bitcoin,andreaskern/bitcoin,xurantju/bitcoin,jonasschnelli/bitcoin,zzkt/solarcoin,apoelstra/bitcoin,itmanagerro/tresting,grumpydevelop/singularity,s-matthew-english/bitcoin,UASF/bitcoin,fussl/elements,pdrobek/Polcoin-1-3,dgarage/bc3,iosdevzone/bitcoin,manuel-zulian/CoMoNet,zemrys/vertcoin,aspanta/bitcoin,kleetus/bitcoin,leofidus/glowing-octo-ironman,paveljanik/bitcoin,szlaozhu/twister-core,BTCGPU/BTCGPU,scmorse/bitcoin,jimblasko/UnbreakableCoin-master,Har01d/bitcoin,midnight-miner/LasVegasCoin,inutoshi/inutoshi,joroob/reddcoin,MitchellMintCoins/AutoCoin,pinheadmz/bitcoin,howardrya/AcademicCoin,FrictionlessCoin/iXcoin,drwasho/bitcoinxt,inkvisit/sarmacoins,psionin/smartcoin,marcusdiaz/BitcoinUnlimited,alecalve/bitcoin,raasakh/bardcoin,HashUnlimited/Einsteinium-Unlimited,koharjidan/bitcoin,shouhuas/bitcoin,funkshelper/woodcore,litecoin-project/litecoin,Bloom-Project/Bloom,octocoin-project/octocoin,nathaniel-mahieu/bitcoin,upgradeadvice/MUE-Src,coinkeeper/2015-06-22_19-07_digitalcoin,TrainMAnB/vcoincore,mapineda/litecoin,shurcoin/shurcoin,wederw/bitcoin,jn2840/bitcoin,terracoin/terracoin,maraoz/proofcoin,guncoin/guncoin,RHavar/bitcoin,itmanagerro/tresting,nathan-at-least/zcash,experiencecoin/experiencecoin,ryanofsky/bitcoin,tjps/bitcoin,koharjidan/bitcoin,shadowoneau/ozcoin,GroestlCoin/bitcoin,coinkeeper/2015-06-22_18-30_anoncoin,experiencecoin/experiencecoin,initaldk/bitcoin,czr5014iph/bitcoin4e,CryptArc/bitcoinxt,wbchen99/bitcoin-hnote0,shurcoin/shurcoin,deeponion/deeponion,CryptArc/bitcoin,degenorate/Deftcoin,blood2/bloodcoin-0.9,manuel-zulian/accumunet,gavinandresen/bitcoin-git,kaostao/bitcoin,vcoin-project/vcoincore,omefire/bitcoin,keesdewit82/LasVegasCoin,rsdevgun16e/energi,imton/bitcoin,sebrandon1/bitcoin,pascalguru/florincoin,nbenoit/bitcoin,razor-coin/razor,ZiftrCOIN/ziftrcoin,DGCDev/digitalcoin,NunoEdgarGub1/elements,zenywallet/bitzeny,credits-currency/credits,nomnombtc/bitcoin,ANCompany/birdcoin-dev,nathan-at-least/zcash,senadmd/coinmarketwatch,Bitcoinsulting/bitcoinxt,BlockchainTechLLC/3dcoin,mockcoin/mockcoin,Exceltior/dogecoin,ajtowns/bitcoin,bitcoin-hivemind/hivemind,lbryio/lbrycrd,ClusterCoin/ClusterCoin,Lucky7Studio/bitcoin,sugruedes/bitcoinxt,UASF/bitcoin,cotner/bitcoin,Vector2000/bitcoin,ronpaulcoin/ronpaulcoin,lclc/bitcoin,drwasho/bitcoinxt,TeamBitBean/bitcoin-core,s-matthew-english/bitcoin,acid1789/bitcoin,p2peace/oliver-twister-core,coinkeeper/2015-04-19_21-20_litecoindark,skaht/bitcoin,glv2/peerunity,fussl/elements,mrbandrews/bitcoin,Ziftr/bitcoin,pascalguru/florincoin,cqtenq/feathercoin_core,Rav3nPL/doubloons-0.10,sugruedes/bitcoinxt,rat4/bitcoin,randy-waterhouse/bitcoin,world-bank/unpay-core,TGDiamond/Diamond,oklink-dev/bitcoin,bmp02050/ReddcoinUpdates,2XL/bitcoin,AllanDoensen/BitcoinUnlimited,BitcoinPOW/BitcoinPOW,presstab/PIVX,BigBlueCeiling/augmentacoin,antonio-fr/bitcoin,btc1/bitcoin,111t8e/bitcoin,DigiByte-Team/digibyte,cqtenq/feathercoin_core,ccoin-project/ccoin,ivansib/sibcoin,pstratem/bitcoin,vbernabe/freicoin,lateminer/bitcoin,s-matthew-english/bitcoin,UdjinM6/dash,AllanDoensen/BitcoinUnlimited,Theshadow4all/ShadowCoin,Litecoindark/LTCD,ANCompany/birdcoin-dev,szlaozhu/twister-core,elliotolds/bitcoin,CryptArc/bitcoin,elecoin/elecoin,ElementsProject/elements,axelxod/braincoin,BTCfork/hardfork_prototype_1_mvf-bu,brettwittam/geocoin,adpg211/bitcoin-master,OstlerDev/florincoin,maaku/bitcoin,bitcoin/bitcoin,metacoin/florincoin,Kogser/bitcoin,Kcoin-project/kcoin,mockcoin/mockcoin,shelvenzhou/BTCGPU,rsdevgun16e/energi,DynamicCoinOrg/DMC,Kangmo/bitcoin,zzkt/solarcoin,roques/bitcoin,oklink-dev/litecoin_block,Sjors/bitcoin,ryanxcharles/bitcoin,tjth/lotterycoin,sickpig/BitcoinUnlimited,coinerd/krugercoin,MonetaryUnit/MUE-Src,nvmd/bitcoin,deadalnix/bitcoin,DigitalPandacoin/pandacoin,psionin/smartcoin,KaSt/ekwicoin,coinwarp/dogecoin,XertroV/bitcoin-nulldata,gwillen/elements,coinkeeper/2015-06-22_18-39_feathercoin,haisee/dogecoin,zestcoin/ZESTCOIN,sirk390/bitcoin,qtumproject/qtum,Anfauglith/iop-hd,bitcoinxt/bitcoinxt,brishtiteveja/truthcoin-cpp,nikkitan/bitcoin,upgradeadvice/MUE-Src,ahmedbodi/test2,and2099/twister-core,aciddude/Feathercoin,coinkeeper/2015-04-19_21-20_litecoindark,wcwu/bitcoin,OmniLayer/omnicore,zebrains/Blotter,Adaryian/E-Currency,ShadowMyst/creativechain-core,TierNolan/bitcoin,PandaPayProject/PandaPay,brandonrobertz/namecoin-core,coinwarp/dogecoin,brettwittam/geocoin,Richcoin-Project/RichCoin,midnight-miner/LasVegasCoin,rustyrussell/bitcoin,midnight-miner/LasVegasCoin,wangxinxi/litecoin,ekankyesme/bitcoinxt,mruddy/bitcoin,imharrywu/fastcoin,Earlz/dobbscoin-source,CoinProjects/AmsterdamCoin-v4,UASF/bitcoin,vcoin-project/vcoincore,Electronic-Gulden-Foundation/egulden,btcdrak/bitcoin,rdqw/sscoin,habibmasuro/bitcoin,vericoin/vericoin-core,borgcoin/Borgcoin.rar,cryptocoins4all/zcoin,loxal/zcash,oklink-dev/bitcoin,bootycoin-project/bootycoin,loxal/zcash,capitalDIGI/DIGI-v-0-10-4,Earlz/dobbscoin-source,totallylegitbiz/totallylegitcoin,xawksow/GroestlCoin,oleganza/bitcoin-duo,djpnewton/bitcoin,jonghyeopkim/bitcoinxt,brishtiteveja/truthcoin-cpp,sdaftuar/bitcoin,BTCfork/hardfork_prototype_1_mvf-core,arruah/ensocoin,llluiop/bitcoin,nailtaras/nailcoin,Erkan-Yilmaz/twister-core,pstratem/bitcoin,UFOCoins/ufo,mb300sd/bitcoin,basicincome/unpcoin-core,netswift/vertcoin,ANCompany/birdcoin-dev,CTRoundTable/Encrypted.Cash,Richcoin-Project/RichCoin,ZiftrCOIN/ziftrcoin,myriadcoin/myriadcoin,mockcoin/mockcoin,ahmedbodi/test2,48thct2jtnf/P,metacoin/florincoin,phplaboratory/psiacoin,kryptokredyt/ProjektZespolowyCoin,robvanbentem/bitcoin,fanquake/bitcoin,sdaftuar/bitcoin,n1bor/bitcoin,ArgonToken/ArgonToken,my-first/octocoin,m0gliE/fastcoin-cli,wiggi/huntercore,Diapolo/bitcoin,jmgilbert2/energi,kfitzgerald/titcoin,zestcoin/ZESTCOIN,dakk/soundcoin,odemolliens/bitcoinxt,myriadcoin/myriadcoin,Jeff88Ho/bitcoin,BenjaminsCrypto/Benjamins-1,initaldk/bitcoin,botland/bitcoin,Alex-van-der-Peet/bitcoin,jmcorgan/bitcoin,DigitalPandacoin/pandacoin,bitcoinplusorg/xbcwalletsource,greenaddress/bitcoin,vcoin-project/vcoincore,zotherstupidguy/bitcoin,fedoracoin-dev/fedoracoin,bmp02050/ReddcoinUpdates,pstratem/bitcoin,rebroad/bitcoin,jakeva/bitcoin-pwcheck,kseistrup/twister-core,destenson/bitcoin--bitcoin,BTCTaras/bitcoin,roques/bitcoin,masterbraz/dg,genavarov/brcoin,coinkeeper/2015-06-22_18-51_vertcoin,litecoin-project/litecoin,whatrye/twister-core,Earlz/renamedcoin,x-kalux/bitcoin_WiG-B,MazaCoin/maza,psionin/smartcoin,hg5fm/nexuscoin,MikeAmy/bitcoin,SartoNess/BitcoinUnlimited,pastday/bitcoinproject,freelion93/mtucicoin,CTRoundTable/Encrypted.Cash,howardrya/AcademicCoin,jamesob/bitcoin,privatecoin/privatecoin,pataquets/namecoin-core,droark/bitcoin,Mrs-X/PIVX,trippysalmon/bitcoin,myriadcoin/myriadcoin,upgradeadvice/MUE-Src,RibbitFROG/ribbitcoin,nvmd/bitcoin,Mirobit/bitcoin,coinkeeper/2015-06-22_18-36_darkcoin,sstone/bitcoin,martindale/elements,zixan/bitcoin,coinkeeper/2015-06-22_18-56_megacoin,kleetus/bitcoin,mastercoin-MSC/mastercore,gapcoin/gapcoin,jimmysong/bitcoin,jimmykiselak/lbrycrd,langerhans/dogecoin,rat4/bitcoin,pinheadmz/bitcoin,nailtaras/nailcoin,freelion93/mtucicoin,error10/bitcoin,joroob/reddcoin,scamcoinz/scamcoin,nathaniel-mahieu/bitcoin,FrictionlessCoin/iXcoin,ptschip/bitcoin,earthcoinproject/earthcoin,tdudz/elements,jmcorgan/bitcoin,dmrtsvetkov/flowercoin,fsb4000/bitcoin,bitpay/bitcoin,mrbandrews/bitcoin,shurcoin/shurcoin,coinkeeper/megacoin_20150410_fixes,UdjinM6/dash,Anoncoin/anoncoin,domob1812/bitcoin,FrictionlessCoin/iXcoin,Gazer022/bitcoin,Kore-Core/kore,Thracky/monkeycoin,applecoin-official/fellatio,BTCGPU/BTCGPU,misdess/bitcoin,fanquake/bitcoin,JeremyRand/namecoin-core,raasakh/bardcoin.exe,ColossusCoinXT/ColossusCoinXT,pstratem/bitcoin,butterflypay/bitcoin,kseistrup/twister-core,gapcoin/gapcoin,daveperkins-github/bitcoin-dev,bitcoin-hivemind/hivemind,GroestlCoin/GroestlCoin,phelixbtc/bitcoin,svost/bitcoin,crowning2/dash,gjhiggins/vcoincore,goldcoin/goldcoin,viacoin/viacoin,BitcoinHardfork/bitcoin,faircoin/faircoin,dgenr8/bitcoin,andreaskern/bitcoin,donaloconnor/bitcoin,xurantju/bitcoin,segsignal/bitcoin,n1bor/bitcoin,nanocoins/mycoin,REAP720801/bitcoin,oklink-dev/bitcoin_block,bitcoinsSG/bitcoin,JeremyRand/namecoin-core,Kangmo/bitcoin,kevin-cantwell/crunchcoin,welshjf/bitcoin,webdesignll/coin,mruddy/bitcoin,wangxinxi/litecoin,Ziftr/bitcoin,terracoin/terracoin,randy-waterhouse/bitcoin,sdaftuar/bitcoin,midnight-miner/LasVegasCoin,pinheadmz/bitcoin,alejandromgk/Lunar,Alex-van-der-Peet/bitcoin,oklink-dev/litecoin_block,Checkcoin/checkcoin,Earlz/renamedcoin,ghostlander/Feathercoin,DGCDev/argentum,dagurval/bitcoinxt,marklai9999/Taiwancoin,Litecoindark/LTCD,truthcoin/truthcoin-cpp,ardsu/bitcoin,BitcoinPOW/BitcoinPOW,mrbandrews/bitcoin,DynamicCoinOrg/DMC,Mirobit/bitcoin,zzkt/solarcoin,dcousens/bitcoin,alecalve/bitcoin,Metronotes/bitcoin,Vector2000/bitcoin,fanquake/bitcoin,Mrs-X/Darknet,wellenreiter01/Feathercoin,bitcoinec/bitcoinec,Rav3nPL/doubloons-08,thrasher-/litecoin,bitcoinplusorg/xbcwalletsource,aspanta/bitcoin,greencoin-dev/digitalcoin,cryptohelper/premine,DSPay/DSPay,Dajackal/Ronpaulcoin,brishtiteveja/truthcoin-cpp,greenaddress/bitcoin,cqtenq/feathercoin_core,zetacoin/zetacoin,thesoftwarejedi/bitcoin,ivansib/sib16,joshrabinowitz/bitcoin,sugruedes/bitcoinxt,jimmykiselak/lbrycrd,gandrewstone/bitcoinxt,lakepay/lake,Mirobit/bitcoin,biblepay/biblepay,raasakh/bardcoin.exe,argentumproject/argentum,Richcoin-Project/RichCoin,Bitcoin-ABC/bitcoin-abc,welshjf/bitcoin,ahmedbodi/vertcoin,zsulocal/bitcoin,romanornr/viacoin,barcoin-project/nothingcoin,majestrate/twister-core,krzysztofwos/BitcoinUnlimited,dobbscoin/dobbscoin-source,Climbee/artcoin,rat4/bitcoin,emc2foundation/einsteinium,reddink/reddcoin,DMDcoin/Diamond,starwels/starwels,kbccoin/kbc,emc2foundation/einsteinium,CTRoundTable/Encrypted.Cash,namecoin/namecoin-core,genavarov/lamacoin,coinkeeper/2015-06-22_18-52_viacoin,tjps/bitcoin,ahmedbodi/terracoin,lclc/bitcoin,benma/bitcoin,rdqw/sscoin,fullcoins/fullcoin,thelazier/dash,dakk/soundcoin,amaivsimau/bitcoin,GlobalBoost/GlobalBoost,Jeff88Ho/bitcoin,joulecoin/joulecoin,maraoz/proofcoin,nbenoit/bitcoin,ivansib/sibcoin,jiangyonghang/bitcoin,OfficialTitcoin/titcoin-wallet,RibbitFROG/ribbitcoin,chrisfranko/aiden,ravenbyron/phtevencoin,spiritlinxl/BTCGPU,pouta/bitcoin,core-bitcoin/bitcoin,Flurbos/Flurbo,fullcoins/fullcoin,ArgonToken/ArgonToken,MazaCoin/maza,coinkeeper/2015-06-22_18-31_bitcoin,funbucks/notbitcoinxt,svost/bitcoin,ripper234/bitcoin,gjhiggins/fuguecoin,TBoehm/greedynode,BTCDDev/bitcoin,nigeriacoin/nigeriacoin,phelixbtc/bitcoin,braydonf/bitcoin,ppcoin/ppcoin,aspanta/bitcoin,stevemyers/bitcoinxt,acid1789/bitcoin,majestrate/twister-core,truthcoin/blocksize-market,Rav3nPL/PLNcoin,millennial83/bitcoin,tedlz123/Bitcoin,IlfirinIlfirin/shavercoin,JeremyRubin/bitcoin,zetacoin/zetacoin,lateminer/bitcoin,kryptokredyt/ProjektZespolowyCoin,Justaphf/BitcoinUnlimited,amaivsimau/bitcoin,ohac/sakuracoin,PRabahy/bitcoin,neuroidss/bitcoin,Megacoin2/Megacoin,kbccoin/kbc,BlockchainTechLLC/3dcoin,ionomy/ion,Michagogo/bitcoin,karek314/bitcoin,Bitcoinsulting/bitcoinxt,braydonf/bitcoin,pstratem/elements,peercoin/peercoin,instagibbs/bitcoin,phplaboratory/psiacoin,appop/bitcoin,Diapolo/bitcoin,aspanta/bitcoin,coinkeeper/2015-06-22_18-46_razor,daveperkins-github/bitcoin-dev,deadalnix/bitcoin,pstratem/elements,compasscoin/compasscoin,awemany/BitcoinUnlimited,mm-s/bitcoin,degenorate/Deftcoin,prusnak/bitcoin,BitzenyCoreDevelopers/bitzeny,omefire/bitcoin,ColossusCoinXT/ColossusCoinXT,terracoin/terracoin,truthcoin/blocksize-market,marlengit/hardfork_prototype_1_mvf-bu,thesoftwarejedi/bitcoin,botland/bitcoin,llluiop/bitcoin,collapsedev/circlecash,hyperwang/bitcoin,miguelfreitas/twister-core,monacoinproject/monacoin,sirk390/bitcoin,Rav3nPL/polcoin,habibmasuro/bitcoinxt,fsb4000/bitcoin,syscoin/syscoin2,Erkan-Yilmaz/twister-core,morcos/bitcoin,jmcorgan/bitcoin,BTCfork/hardfork_prototype_1_mvf-core,jeromewu/bitcoin-opennet,truthcoin/truthcoin-cpp,pelorusjack/BlockDX,myriadteam/myriadcoin,ptschip/bitcoinxt,gavinandresen/bitcoin-git,bankonmecoin/bitcoin,zestcoin/ZESTCOIN,koharjidan/litecoin,rebroad/bitcoin,Kogser/bitcoin,RHavar/bitcoin,plankton12345/litecoin,rjshaver/bitcoin,coinkeeper/2015-06-22_18-52_viacoin,coinkeeper/2015-06-22_18-51_vertcoin,Rav3nPL/bitcoin,tdudz/elements,dscotese/bitcoin,constantine001/bitcoin,TGDiamond/Diamond,shaulkf/bitcoin,czr5014iph/bitcoin4e,torresalyssa/bitcoin,FarhanHaque/bitcoin,UFOCoins/ufo,litecoin-project/bitcoinomg,coinwarp/dogecoin,genavarov/brcoin,bitjson/hivemind,CrimeaCoin/crimeacoin,kleetus/bitcoin,segwit/atbcoin-insight,benma/bitcoin,WorldcoinGlobal/WorldcoinLegacy,antonio-fr/bitcoin,llamasoft/ProtoShares_Cycle,vlajos/bitcoin,earonesty/bitcoin,amaivsimau/bitcoin,metacoin/florincoin,credits-currency/credits,scmorse/bitcoin,Jeff88Ho/bitcoin,21E14/bitcoin,privatecoin/privatecoin,Kixunil/keynescoin,jtimon/bitcoin,okinc/bitcoin,mooncoin-project/mooncoin-landann,bitcoinknots/bitcoin,starwalkerz/fincoin-fork,Bushstar/UFO-Project,40thoughts/Coin-QualCoin,Kixunil/keynescoin,coinwarp/dogecoin,monacoinproject/monacoin,sarielsaz/sarielsaz,s-matthew-english/bitcoin,Michagogo/bitcoin,senadmd/coinmarketwatch,borgcoin/Borgcoin1,domob1812/bitcoin,FrictionlessCoin/iXcoin,lateminer/bitcoin,dpayne9000/Rubixz-Coin,gazbert/bitcoin,sdaftuar/bitcoin,millennial83/bitcoin,GlobalBoost/GlobalBoost,Dajackal/Ronpaulcoin,tensaix2j/bananacoin,capitalDIGI/litecoin,howardrya/AcademicCoin,HeliumGas/helium,KillerByte/memorypool,Bitcoin-ABC/bitcoin-abc,coinkeeper/2015-06-22_18-46_razor,coinkeeper/2015-06-22_18-36_darkcoin,REAP720801/bitcoin,dobbscoin/dobbscoin-source,Rav3nPL/doubloons-0.10,dev1972/Satellitecoin,andreaskern/bitcoin,faircoin/faircoin,itmanagerro/tresting,Cancercoin/Cancercoin,syscoin/syscoin,qtumproject/qtum,vtafaucet/virtacoin,megacoin/megacoin,blocktrail/bitcoin,sipa/bitcoin,mikehearn/bitcoinxt,enlighter/Feathercoin,brishtiteveja/sherlockcoin,bitshares/bitshares-pts,segwit/atbcoin-insight,brishtiteveja/sherlockcoin,RyanLucchese/energi,CodeShark/bitcoin,micryon/GPUcoin,erqan/twister-core,martindale/elements,truthcoin/blocksize-market,pastday/bitcoinproject,keisercoin-official/keisercoin,greencoin-dev/greencoin-dev,nanocoins/mycoin,projectinterzone/ITZ,MarcoFalke/bitcoin,netswift/vertcoin,DigitalPandacoin/pandacoin,kallewoof/elements,okinc/bitcoin,DigitalPandacoin/pandacoin,wcwu/bitcoin,reddink/reddcoin,benosa/bitcoin,plankton12345/litecoin,ajtowns/bitcoin,UdjinM6/dash,Richcoin-Project/RichCoin,OfficialTitcoin/titcoin-wallet,DynamicCoinOrg/DMC,Megacoin2/Megacoin,wederw/bitcoin,inkvisit/sarmacoins,myriadteam/myriadcoin,kbccoin/kbc,Bluejudy/worldcoin,riecoin/riecoin,xieta/mincoin,FarhanHaque/bitcoin,gjhiggins/vcoincore,zottejos/merelcoin,Vsync-project/Vsync,reddink/reddcoin,bcpki/nonce2testblocks,misdess/bitcoin,lbrtcoin/albertcoin,acid1789/bitcoin,segsignal/bitcoin,Mrs-X/PIVX,NunoEdgarGub1/elements,elliotolds/bitcoin,richo/dongcoin,shapiroisme/datadollar,Mrs-X/PIVX,domob1812/i0coin,biblepay/biblepay,marlengit/hardfork_prototype_1_mvf-bu,bitcoin-hivemind/hivemind,pastday/bitcoinproject,benosa/bitcoin,franko-org/franko,vericoin/vericoin-core,braydonf/bitcoin,tripmode/pxlcoin,DGCDev/argentum,accraze/bitcoin,bespike/litecoin,senadmd/coinmarketwatch,fsb4000/bitcoin,unsystemizer/bitcoin,knolza/gamblr,Exgibichi/statusquo,nigeriacoin/nigeriacoin,CoinProjects/AmsterdamCoin-v4,awemany/BitcoinUnlimited,royosherove/bitcoinxt,mm-s/bitcoin,AdrianaDinca/bitcoin,bitcoinclassic/bitcoinclassic,reddink/reddcoin,gwillen/elements,accraze/bitcoin,omefire/bitcoin,jtimon/elements,icook/vertcoin,diggcoin/diggcoin,applecoin-official/applecoin,daliwangi/bitcoin,mruddy/bitcoin,CarpeDiemCoin/CarpeDiemLaunch,ashleyholman/bitcoin,jimblasko/UnbreakableCoin-master,coinkeeper/2015-06-22_19-19_worldcoin,FarhanHaque/bitcoin,nbenoit/bitcoin,roques/bitcoin,segwit/atbcoin-insight,ryanxcharles/bitcoin,EntropyFactory/creativechain-core,fussl/elements,donaloconnor/bitcoin,npccoin/npccoin,elecoin/elecoin,GreenParhelia/bitcoin,gjhiggins/vcoin09,langerhans/dogecoin,tjps/bitcoin,laudaa/bitcoin,REAP720801/bitcoin,faircoin/faircoin,maaku/bitcoin,peercoin/peercoin,cyrixhero/bitcoin,iQcoin/iQcoin,jimblasko/2015_UNB_Wallets,kfitzgerald/titcoin,dscotese/bitcoin,MitchellMintCoins/MortgageCoin,fedoracoin-dev/fedoracoin,argentumproject/argentum,shouhuas/bitcoin,BTCTaras/bitcoin,bmp02050/ReddcoinUpdates,brandonrobertz/namecoin-core,cryptcoins/cryptcoin,UFOCoins/ufo,sipsorcery/bitcoin,prusnak/bitcoin,KnCMiner/bitcoin,CodeShark/bitcoin,mycointest/owncoin,ardsu/bitcoin,btcdrak/bitcoin,ShadowMyst/creativechain-core,collapsedev/cashwatt,projectinterzone/ITZ,jlopp/statoshi,qreatora/worldcoin-v0.8,marcusdiaz/BitcoinUnlimited,Theshadow4all/ShadowCoin,apoelstra/bitcoin,cheehieu/bitcoin,borgcoin/Borgcoin1,oklink-dev/bitcoin,cryptocoins4all/zcoin,cdecker/bitcoin,untrustbank/litecoin,genavarov/ladacoin,richo/dongcoin,Bitcoin-com/BUcash,BitcoinPOW/BitcoinPOW,cryptoprojects/ultimateonlinecash,Bitcoin-com/BUcash,kbccoin/kbc,gandrewstone/bitcoinxt,OfficialTitcoin/titcoin-wallet,zander/bitcoinclassic,webdesignll/coin,viacoin/viacoin,royosherove/bitcoinxt,Adaryian/E-Currency,ivansib/sibcoin,npccoin/npccoin,acid1789/bitcoin,zemrys/vertcoin,r8921039/bitcoin,tdudz/elements,themusicgod1/bitcoin,cculianu/bitcoin-abc,arnuschky/bitcoin,simdeveloper/bitcoin,pascalguru/florincoin,sebrandon1/bitcoin,digibyte/digibyte,stamhe/litecoin,Chancoin-core/CHANCOIN,tecnovert/particl-core,lbryio/lbrycrd,torresalyssa/bitcoin,mincoin-project/mincoin,tecnovert/particl-core,gandrewstone/bitcoinxt,dobbscoin/dobbscoin-source,earonesty/bitcoin,ShadowMyst/creativechain-core,pataquets/namecoin-core,ftrader-bitcoinunlimited/hardfork_prototype_1_mvf-bu,hsavit1/bitcoin,zotherstupidguy/bitcoin,RibbitFROG/ribbitcoin,rebroad/bitcoin,coinkeeper/2015-06-22_18-30_anoncoin,x-kalux/bitcoin_WiG-B,jameshilliard/bitcoin,isle2983/bitcoin,myriadcoin/myriadcoin,StarbuckBG/BTCGPU,DSPay/DSPay,wekuiz/wekoin,josephbisch/namecoin-core,oklink-dev/bitcoin_block,bitcoinknots/bitcoin,cryptoprojects/ultimateonlinecash,RyanLucchese/energi,lbrtcoin/albertcoin,schinzelh/dash,Bitcoin-ABC/bitcoin-abc,thelazier/dash,nailtaras/nailcoin,therealaltcoin/altcoin,ajtowns/bitcoin,Jeff88Ho/bitcoin,wangliu/bitcoin,cculianu/bitcoin-abc,GwangJin/gwangmoney-core,goldmidas/goldmidas,XertroV/bitcoin-nulldata,error10/bitcoin,BitcoinUnlimited/BitcoinUnlimited,GlobalBoost/GlobalBoost,MonetaryUnit/MUE-Src,dexX7/bitcoin,wcwu/bitcoin,achow101/bitcoin,BlockchainTechLLC/3dcoin,bcpki/testblocks,whatrye/twister-core,coinwarp/dogecoin,dashpay/dash,Vsync-project/Vsync,sipa/bitcoin,petertodd/bitcoin,UASF/bitcoin,gandrewstone/BitcoinUnlimited,capitalDIGI/DIGI-v-0-10-4,willwray/dash,hasanatkazmi/bitcoin,cotner/bitcoin,Cocosoft/bitcoin,aniemerg/zcash,Ziftr/bitcoin,FeatherCoin/Feathercoin,cryptocoins4all/zcoin,worldcoinproject/worldcoin-v0.8,reorder/viacoin,brettwittam/geocoin,wederw/bitcoin,prusnak/bitcoin,dannyperez/bolivarcoin,Kixunil/keynescoin,rsdevgun16e/energi,aspirecoin/aspire,MikeAmy/bitcoin,Petr-Economissa/gvidon,micryon/GPUcoin,GroestlCoin/bitcoin,AkioNak/bitcoin,capitalDIGI/litecoin,mb300sd/bitcoin,koharjidan/litecoin,habibmasuro/bitcoin,adpg211/bitcoin-master,IlfirinCano/shavercoin,superjudge/bitcoin,cryptcoins/cryptcoin,jonasnick/bitcoin,FeatherCoin/Feathercoin,RibbitFROG/ribbitcoin,gjhiggins/vcoin0.8zeta-dev,cryptcoins/cryptcoin,Flowdalic/bitcoin,afk11/bitcoin,fanquake/bitcoin,okinc/bitcoin,habibmasuro/bitcoinxt,gjhiggins/vcoin0.8zeta-dev,janko33bd/bitcoin,nmarley/dash,zetacoin/zetacoin,lclc/bitcoin,coinkeeper/2015-06-22_18-31_bitcoin,megacoin/megacoin,thesoftwarejedi/bitcoin,Bluejudy/worldcoin,bdelzell/creditcoin-org-creditcoin,nikkitan/bitcoin,mammix2/ccoin-dev,mrtexaznl/mediterraneancoin,ClusterCoin/ClusterCoin,brishtiteveja/truthcoin-cpp,isghe/bitcoinxt,mockcoin/mockcoin,MonetaryUnit/MUE-Src,111t8e/bitcoin,josephbisch/namecoin-core,world-bank/unpay-core,svost/bitcoin,Kcoin-project/kcoin,gwangjin2/gwangcoin-core,Xekyo/bitcoin,barcoin-project/nothingcoin,h4x3rotab/BTCGPU,mycointest/owncoin,shouhuas/bitcoin,namecoin/namecore,genavarov/ladacoin,antcheck/antcoin,peerdb/cors,bitjson/hivemind,pstratem/elements,Vector2000/bitcoin,Kogser/bitcoin,ardsu/bitcoin,irvingruan/bitcoin,parvez3019/bitcoin,prark/bitcoinxt,reorder/viacoin,Rav3nPL/polcoin,ediston/energi,argentumproject/argentum,jrmithdobbs/bitcoin,manuel-zulian/accumunet,coinkeeper/2015-06-22_18-39_feathercoin,Theshadow4all/ShadowCoin,saydulk/Feathercoin,cybermatatu/bitcoin,constantine001/bitcoin,chaincoin/chaincoin,qubitcoin-project/QubitCoinQ2C,botland/bitcoin,core-bitcoin/bitcoin,cheehieu/bitcoin,renatolage/wallets-BRCoin,CryptArc/bitcoinxt,josephbisch/namecoin-core,ftrader-bitcoinunlimited/hardfork_prototype_1_mvf-bu,s-matthew-english/bitcoin,error10/bitcoin,reorder/viacoin,daveperkins-github/bitcoin-dev,dagurval/bitcoinxt,applecoin-official/applecoin,ripper234/bitcoin,ediston/energi,jmcorgan/bitcoin,ivansib/sibcoin,karek314/bitcoin,metacoin/florincoin,worldcoinproject/worldcoin-v0.8,oleganza/bitcoin-duo,AllanDoensen/BitcoinUnlimited,bitcoin-hivemind/hivemind,TrainMAnB/vcoincore,greencoin-dev/greencoin-dev,daveperkins-github/bitcoin-dev,shurcoin/shurcoin,diggcoin/diggcoin,GIJensen/bitcoin,myriadteam/myriadcoin,domob1812/bitcoin,ravenbyron/phtevencoin,bespike/litecoin,ElementsProject/elements,zcoinofficial/zcoin,kevcooper/bitcoin,ptschip/bitcoin,gameunits/gameunits,gjhiggins/vcoin09,pstratem/elements,jiffe/cosinecoin,arruah/ensocoin,mikehearn/bitcoin,djpnewton/bitcoin,untrustbank/litecoin,GlobalBoost/GlobalBoost,ashleyholman/bitcoin,zixan/bitcoin,projectinterzone/ITZ,keesdewit82/LasVegasCoin,vertcoin/vertcoin,KaSt/equikoin,denverl/bitcoin,BTCGPU/BTCGPU,BitcoinHardfork/bitcoin,tdudz/elements,HashUnlimited/Einsteinium-Unlimited,dan-mi-sun/bitcoin,domob1812/huntercore,xuyangcn/opalcoin,droark/bitcoin,stevemyers/bitcoinxt,cotner/bitcoin,Thracky/monkeycoin,theuni/bitcoin,kallewoof/bitcoin,1185/starwels,octocoin-project/octocoin,gandrewstone/BitcoinUnlimited,bitcoinsSG/bitcoin,pataquets/namecoin-core,barcoin-project/nothingcoin,bitcoinsSG/bitcoin,ZiftrCOIN/ziftrcoin,donaloconnor/bitcoin,digideskio/namecoin,p2peace/oliver-twister-core,xawksow/GroestlCoin,brandonrobertz/namecoin-core,dgenr8/bitcoinxt,karek314/bitcoin,oklink-dev/bitcoin,sarielsaz/sarielsaz,skaht/bitcoin,dscotese/bitcoin,MarcoFalke/bitcoin,stamhe/litecoin,faircoin/faircoin,achow101/bitcoin,bitpay/bitcoin,puticcoin/putic,dexX7/bitcoin,Kogser/bitcoin,cryptocoins4all/zcoin,chrisfranko/aiden,drwasho/bitcoinxt,jiangyonghang/bitcoin,cryptohelper/premine,droark/bitcoin,monacoinproject/monacoin,yenliangl/bitcoin,Adaryian/E-Currency,ftrader-bitcoinabc/bitcoin-abc,btc1/bitcoin,PRabahy/bitcoin,jtimon/elements,terracoin/terracoin,thelazier/dash,tuaris/bitcoin,petertodd/bitcoin,xurantju/bitcoin,mitchellcash/bitcoin,Diapolo/bitcoin,p2peace/oliver-twister-core,jonghyeopkim/bitcoinxt,untrustbank/litecoin,isle2983/bitcoin,morcos/bitcoin,Ziftr/litecoin,faircoin/faircoin2,sbaks0820/bitcoin,CodeShark/bitcoin,achow101/bitcoin,marlengit/BitcoinUnlimited,Jcing95/iop-hd,steakknife/bitcoin-qt,Rav3nPL/bitcoin,domob1812/namecore,czr5014iph/bitcoin4e,osuyuushi/laughingmancoin,jiangyonghang/bitcoin,bitjson/hivemind,ionux/freicoin,netswift/vertcoin,Enticed87/Decipher,mobicoins/mobicoin-core,supcoin/supcoin,bcpki/testblocks,afk11/bitcoin,wekuiz/wekoin,ingresscoin/ingresscoin,brightcoin/brightcoin,arnuschky/bitcoin,bitcoinplusorg/xbcwalletsource,djpnewton/bitcoin,atgreen/bitcoin,majestrate/twister-core,vcoin-project/vcoincore,Rav3nPL/polcoin,namecoin/namecoin-core,coinkeeper/2015-06-22_19-19_worldcoin,BTCGPU/BTCGPU,nvmd/bitcoin,Alex-van-der-Peet/bitcoin,Flowdalic/bitcoin,ptschip/bitcoin,MazaCoin/maza,Darknet-Crypto/Darknet,bitpay/bitcoin,lakepay/lake,schildbach/bitcoin,crowning2/dash,SocialCryptoCoin/SocialCoin,anditto/bitcoin,digideskio/namecoin,oklink-dev/bitcoin_block,peercoin/peercoin,isle2983/bitcoin,goku1997/bitcoin,deeponion/deeponion,shaulkf/bitcoin,zetacoin/zetacoin,RazorLove/cloaked-octo-spice,ericshawlinux/bitcoin,hyperwang/bitcoin,butterflypay/bitcoin,bitjson/hivemind,jrick/bitcoin,vtafaucet/virtacoin,AkioNak/bitcoin,cdecker/bitcoin,sifcoin/sifcoin,MeshCollider/bitcoin,compasscoin/compasscoin,GroestlCoin/bitcoin,majestrate/twister-core,my-first/octocoin,ionomy/ion,bespike/litecoin,shaolinfry/litecoin,Carrsy/PoundCoin,Kogser/bitcoin,tjps/bitcoin,11755033isaprimenumber/Feathercoin,morcos/bitcoin,mapineda/litecoin,Petr-Economissa/gvidon,Lucky7Studio/bitcoin,diggcoin/diggcoin,butterflypay/bitcoin,40thoughts/Coin-QualCoin,sipsorcery/bitcoin,morcos/bitcoin,kevin-cantwell/crunchcoin,bitshares/bitshares-pts,MasterX1582/bitcoin-becoin,chaincoin/chaincoin,Metronotes/bitcoin,worldbit/worldbit,erqan/twister-core,greenaddress/bitcoin,earonesty/bitcoin,arnuschky/bitcoin,Vector2000/bitcoin,BTCGPU/BTCGPU,metrocoins/metrocoin,goldcoin/goldcoin,dscotese/bitcoin,guncoin/guncoin,keo/bitcoin,Rav3nPL/polcoin,loxal/zcash,sirk390/bitcoin,tedlz123/Bitcoin,denverl/bitcoin,LIMXTEC/DMDv3,Petr-Economissa/gvidon,Exceltior/dogecoin,coinkeeper/2015-06-22_19-00_ziftrcoin,hasanatkazmi/bitcoin,peerdb/cors,coinkeeper/2015-06-22_19-13_florincoin,qubitcoin-project/QubitCoinQ2C,BTCfork/hardfork_prototype_1_mvf-core,funkshelper/woodcore,metacoin/florincoin,bitbrazilcoin-project/bitbrazilcoin,rnicoll/dogecoin,stamhe/bitcoin,monacoinproject/monacoin,prusnak/bitcoin,phelix/bitcoin,octocoin-project/octocoin,48thct2jtnf/P,destenson/bitcoin--bitcoin,DSPay/DSPay,gcc64/bitcoin,h4x3rotab/BTCGPU,Christewart/bitcoin,tjth/lotterycoin,experiencecoin/experiencecoin,djpnewton/bitcoin,ticclassic/ic,aciddude/Feathercoin,untrustbank/litecoin,48thct2jtnf/P,superjudge/bitcoin,BitcoinPOW/BitcoinPOW,dgarage/bc2,jamesob/bitcoin,jl2012/litecoin,BTCDDev/bitcoin,litecoin-project/litecore-litecoin,elecoin/elecoin,balajinandhu/bitcoin,vmp32k/litecoin,ohac/sakuracoin,GreenParhelia/bitcoin,Jeff88Ho/bitcoin,whatrye/twister-core,Mrs-X/Darknet,ghostlander/Feathercoin,steakknife/bitcoin-qt,tripmode/pxlcoin,senadmd/coinmarketwatch,Electronic-Gulden-Foundation/egulden,ionux/freicoin,jamesob/bitcoin,Alonzo-Coeus/bitcoin,dobbscoin/dobbscoin-source,nmarley/dash,ekankyesme/bitcoinxt,apoelstra/elements,alexandrcoin/vertcoin,nathaniel-mahieu/bitcoin,SartoNess/BitcoinUnlimited,coinkeeper/anoncoin_20150330_fixes,jimblasko/2015_UNB_Wallets,apoelstra/bitcoin,goldcoin/Goldcoin-GLD,JeremyRubin/bitcoin,RyanLucchese/energi,mycointest/owncoin,DynamicCoinOrg/DMC,truthcoin/truthcoin-cpp,gandrewstone/BitcoinUnlimited,axelxod/braincoin,ohac/sha1coin,TheBlueMatt/bitcoin,joulecoin/joulecoin,kleetus/bitcoin,particl/particl-core,marlengit/BitcoinUnlimited,gazbert/bitcoin,NateBrune/bitcoin-fio,rnicoll/bitcoin,bitcoinec/bitcoinec,parvez3019/bitcoin,wiggi/huntercore,bitcoinsSG/zcash,shomeser/bitcoin,pstratem/bitcoin,Alonzo-Coeus/bitcoin,Enticed87/Decipher,MitchellMintCoins/AutoCoin,KibiCoin/kibicoin,ixcoinofficialpage/master,ripper234/bitcoin,gazbert/bitcoin,safecoin/safecoin,capitalDIGI/litecoin,scippio/bitcoin,KnCMiner/bitcoin,guncoin/guncoin,Tetcoin/tetcoin,hasanatkazmi/bitcoin,nomnombtc/bitcoin,accraze/bitcoin,dpayne9000/Rubixz-Coin,neutrinofoundation/neutrino-digital-currency,faircoin/faircoin,StarbuckBG/BTCGPU,nightlydash/darkcoin,ohac/sha1coin,brightcoin/brightcoin,ANCompany/birdcoin-dev,funbucks/notbitcoinxt,particl/particl-core,litecoin-project/litecoin,kleetus/bitcoinxt,rnicoll/dogecoin,trippysalmon/bitcoin,HeliumGas/helium,shomeser/bitcoin,DSPay/DSPay,dgenr8/bitcoin,randy-waterhouse/bitcoin,united-scrypt-coin-project/unitedscryptcoin,MitchellMintCoins/MortgageCoin,Dinarcoin/dinarcoin,mikehearn/bitcoin,pinkevich/dash,jimblasko/UnbreakableCoin-master,WorldcoinGlobal/WorldcoinLegacy,BTCfork/hardfork_prototype_1_mvf-bu,KnCMiner/bitcoin,wcwu/bitcoin,alecalve/bitcoin,GroundRod/anoncoin,trippysalmon/bitcoin,Tetcoin/tetcoin,Theshadow4all/ShadowCoin,RHavar/bitcoin,maaku/bitcoin,haobtc/bitcoin,HeliumGas/helium,vcoin-project/vcoin0.8zeta-dev,s-matthew-english/bitcoin,whatrye/twister-core,FrictionlessCoin/iXcoin,TeamBitBean/bitcoin-core,dan-mi-sun/bitcoin,jnewbery/bitcoin,earonesty/bitcoin,jl2012/litecoin,starwels/starwels,ronpaulcoin/ronpaulcoin,hophacker/bitcoin_malleability,PIVX-Project/PIVX,mrbandrews/bitcoin,ftrader-bitcoinunlimited/hardfork_prototype_1_mvf-bu,megacoin/megacoin,viacoin/viacoin,prusnak/bitcoin,BitcoinPOW/BitcoinPOW,argentumproject/argentum,lakepay/lake,coinkeeper/2015-06-22_19-19_worldcoin,pdrobek/Polcoin-1-3,dscotese/bitcoin,jrick/bitcoin,mammix2/ccoin-dev,reorder/viacoin,TierNolan/bitcoin,franko-org/franko,borgcoin/Borgcoin.rar,compasscoin/compasscoin,ivansib/sibcoin,worldbit/worldbit,Exgibichi/statusquo,cyrixhero/bitcoin,JeremyRand/namecoin-core,error10/bitcoin,blood2/bloodcoin-0.9,vtafaucet/virtacoin,Sjors/bitcoin,wiggi/huntercore,jrmithdobbs/bitcoin,TeamBitBean/bitcoin-core,dagurval/bitcoinxt,coinkeeper/2015-06-22_18-46_razor,syscoin/syscoin2,Erkan-Yilmaz/twister-core,xawksow/GroestlCoin,Dajackal/Ronpaulcoin,spiritlinxl/BTCGPU,xurantju/bitcoin,NateBrune/bitcoin-fio,isghe/bitcoinxt,bitcoinec/bitcoinec,FeatherCoin/Feathercoin,Alex-van-der-Peet/bitcoin,sickpig/BitcoinUnlimited,elliotolds/bitcoin,alejandromgk/Lunar,haobtc/bitcoin,midnight-miner/LasVegasCoin,cqtenq/Feathercoin,kazcw/bitcoin,Christewart/bitcoin,DSPay/DSPay,NicolasDorier/bitcoin,coinkeeper/2015-06-22_18-30_anoncoin,kseistrup/twister-core,cheehieu/bitcoin,namecoin/namecore,dperel/bitcoin,RazorLove/cloaked-octo-spice,111t8e/bitcoin,marcusdiaz/BitcoinUnlimited,Bitcoin-ABC/bitcoin-abc,11755033isaprimenumber/Feathercoin,phelix/bitcoin,se3000/bitcoin,Metronotes/bitcoin,dpayne9000/Rubixz-Coin,Bluejudy/worldcoin,superjudge/bitcoin,MitchellMintCoins/MortgageCoin,Thracky/monkeycoin,n1bor/bitcoin,genavarov/brcoin,Earlz/dobbscoin-source,btcdrak/bitcoin,barcoin-project/nothingcoin,zottejos/merelcoin,constantine001/bitcoin,marklai9999/Taiwancoin,Bitcoinsulting/bitcoinxt,PIVX-Project/PIVX,Bluejudy/worldcoin,appop/bitcoin,multicoins/marycoin,hyperwang/bitcoin,Exgibichi/statusquo,united-scrypt-coin-project/unitedscryptcoin,aburan28/elements,marlengit/BitcoinUnlimited,miguelfreitas/twister-core,steakknife/bitcoin-qt,lclc/bitcoin,Michagogo/bitcoin,Bitcoinsulting/bitcoinxt,constantine001/bitcoin,deeponion/deeponion,pastday/bitcoinproject,ftrader-bitcoinabc/bitcoin-abc,hasanatkazmi/bitcoin,Megacoin2/Megacoin,nsacoin/nsacoin,Horrorcoin/horrorcoin,DigiByte-Team/digibyte,OstlerDev/florincoin,zsulocal/bitcoin,TripleSpeeder/bitcoin,thrasher-/litecoin,leofidus/glowing-octo-ironman,jmcorgan/bitcoin,jimmykiselak/lbrycrd,arruah/ensocoin,whatrye/twister-core,cerebrus29301/crowncoin,jarymoth/dogecoin,Checkcoin/checkcoin,oklink-dev/litecoin_block,sugruedes/bitcoinxt,Rav3nPL/bitcoin,1185/starwels,gandrewstone/bitcoinxt,ahmedbodi/vertcoin,dakk/soundcoin,tropa/axecoin,NicolasDorier/bitcoin,Bitcoin-ABC/bitcoin-abc,dexX7/bitcoin,REAP720801/bitcoin,stamhe/bitcoin,ahmedbodi/temp_vert,dgenr8/bitcoin,unsystemizer/bitcoin,Cocosoft/bitcoin,millennial83/bitcoin,CodeShark/bitcoin,vbernabe/freicoin,earonesty/bitcoin,DGCDev/digitalcoin,uphold/bitcoin,droark/elements,rromanchuk/bitcoinxt,goku1997/bitcoin,bcpki/testblocks,Rav3nPL/doubloons-08,capitalDIGI/DIGI-v-0-10-4,1185/starwels,sstone/bitcoin,supcoin/supcoin,zixan/bitcoin,ddombrowsky/radioshares,IlfirinCano/shavercoin,mastercoin-MSC/mastercore,CryptArc/bitcoin,jaromil/faircoin2,blood2/bloodcoin-0.9,litecoin-project/litecore-litecoin,royosherove/bitcoinxt,willwray/dash,trippysalmon/bitcoin,sipa/elements,bitcoin-hivemind/hivemind,cheehieu/bitcoin,starwalkerz/fincoin-fork,rromanchuk/bitcoinxt,Anfauglith/iop-hd,funkshelper/woodcore,rustyrussell/bitcoin,coinkeeper/2015-06-22_18-51_vertcoin,glv2/peerunity,imharrywu/fastcoin,PandaPayProject/PandaPay,biblepay/biblepay,therealaltcoin/altcoin,afk11/bitcoin,miguelfreitas/twister-core,goku1997/bitcoin,marlengit/hardfork_prototype_1_mvf-bu,haraldh/bitcoin,adpg211/bitcoin-master,dexX7/bitcoin,jrick/bitcoin,experiencecoin/experiencecoin,RongxinZhang/bitcoinxt,fujicoin/fujicoin,core-bitcoin/bitcoin,Gazer022/bitcoin,5mil/Tradecoin,genavarov/ladacoin,sickpig/BitcoinUnlimited,terracoin/terracoin,renatolage/wallets-BRCoin,wekuiz/wekoin,sugruedes/bitcoinxt,grumpydevelop/singularity,Bitcoin-ABC/bitcoin-abc,privatecoin/privatecoin,instagibbs/bitcoin,Christewart/bitcoin,jimmysong/bitcoin,reddcoin-project/reddcoin,bitpagar/bitpagar,presstab/PIVX,btcdrak/bitcoin,janko33bd/bitcoin,myriadcoin/myriadcoin,nightlydash/darkcoin,crowning-/dash,jrmithdobbs/bitcoin,BTCTaras/bitcoin,rjshaver/bitcoin,jonasnick/bitcoin,ryanxcharles/bitcoin,gravio-net/graviocoin,midnightmagic/bitcoin,se3000/bitcoin,Petr-Economissa/gvidon,ghostlander/Feathercoin,qtumproject/qtum,mm-s/bitcoin,fedoracoin-dev/fedoracoin,biblepay/biblepay,TheBlueMatt/bitcoin,cerebrus29301/crowncoin,shouhuas/bitcoin,uphold/bitcoin,nlgcoin/guldencoin-official,cculianu/bitcoin-abc,litecoin-project/bitcoinomg,11755033isaprimenumber/Feathercoin,neutrinofoundation/neutrino-digital-currency,Thracky/monkeycoin,emc2foundation/einsteinium,TBoehm/greedynode,matlongsi/micropay,dannyperez/bolivarcoin,qtumproject/qtum,dannyperez/bolivarcoin,TeamBitBean/bitcoin-core,meighti/bitcoin,coinkeeper/2015-06-22_19-00_ziftrcoin,zestcoin/ZESTCOIN,UFOCoins/ufo,vlajos/bitcoin,zsulocal/bitcoin,neutrinofoundation/neutrino-digital-currency,Erkan-Yilmaz/twister-core,matlongsi/micropay,daliwangi/bitcoin,cculianu/bitcoin-abc,gandrewstone/BitcoinUnlimited,OmniLayer/omnicore,joulecoin/joulecoin,Krellan/bitcoin,Chancoin-core/CHANCOIN,raasakh/bardcoin.exe,omefire/bitcoin,dexX7/mastercore,koharjidan/dogecoin,totallylegitbiz/totallylegitcoin,Darknet-Crypto/Darknet,spiritlinxl/BTCGPU,Lucky7Studio/bitcoin,elecoin/elecoin,DogTagRecon/Still-Leraning,JeremyRubin/bitcoin,Lucky7Studio/bitcoin,starwalkerz/fincoin-fork,neuroidss/bitcoin,jeromewu/bitcoin-opennet,bitcoin-hivemind/hivemind,gameunits/gameunits,majestrate/twister-core,xieta/mincoin,DigiByte-Team/digibyte,Exgibichi/statusquo,GroestlCoin/bitcoin,ahmedbodi/terracoin,dogecoin/dogecoin,midnightmagic/bitcoin,ivansib/sib16,jiangyonghang/bitcoin,bitshares/bitshares-pts,shelvenzhou/BTCGPU,domob1812/i0coin,jambolo/bitcoin,lbrtcoin/albertcoin,dmrtsvetkov/flowercoin,Har01d/bitcoin,CryptArc/bitcoinxt,manuel-zulian/accumunet,NateBrune/bitcoin-nate,uphold/bitcoin,zetacoin/zetacoin,NateBrune/bitcoin-fio,jnewbery/bitcoin,lbrtcoin/albertcoin,KillerByte/memorypool,goku1997/bitcoin,cinnamoncoin/Feathercoin,digibyte/digibyte,simdeveloper/bitcoin,theuni/bitcoin,cdecker/bitcoin,ahmedbodi/terracoin,haraldh/bitcoin,gjhiggins/vcoin09,Kore-Core/kore,dashpay/dash,millennial83/bitcoin,kallewoof/bitcoin,Flowdalic/bitcoin,BenjaminsCrypto/Benjamins-1,anditto/bitcoin,cryptohelper/premine,thelazier/dash,MitchellMintCoins/AutoCoin,cqtenq/Feathercoin,midnightmagic/bitcoin,bankonmecoin/bitcoin,plankton12345/litecoin,KaSt/equikoin,syscoin/syscoin,DynamicCoinOrg/DMC,antcheck/antcoin,isocolsky/bitcoinxt,bitcoinxt/bitcoinxt,thrasher-/litecoin,shaolinfry/litecoin,bitcoinsSG/zcash,borgcoin/Borgcoin1,vertcoin/eyeglass,bcpki/nonce2
0687192cb8e4a5e89cddc0c8c7c49acf6d604cf7
UsbDk/RedirectorStrategy.h
UsbDk/RedirectorStrategy.h
#pragma once #include "FilterStrategy.h" class CUsbDkRedirectorStrategy : public CUsbDkFilterStrategy { public: virtual NTSTATUS Create(CUsbDkFilterDevice *Owner) override { return CUsbDkFilterStrategy::Create(Owner); } virtual void Delete() override {} virtual NTSTATUS MakeAvailable() override; virtual NTSTATUS PNPPreProcess(PIRP Irp) override; private: static void PatchDeviceID(PIRP Irp); };
#pragma once #include "FilterStrategy.h" class CUsbDkRedirectorStrategy : public CUsbDkFilterStrategy { public: virtual NTSTATUS MakeAvailable() override; virtual NTSTATUS PNPPreProcess(PIRP Irp) override; private: static void PatchDeviceID(PIRP Irp); };
Drop uneeded members of redirector strategy
UsbDk: Drop uneeded members of redirector strategy Signed-off-by: Pavel Gurvich <2375fa63e2908bb2df59f606483a3aa92321db7a@daynix.com> Signed-off-by: Dmitry Fleytman <f50f56ffad4b379c2a89812e98b14900ef87e9ea@redhat.com>
C
apache-2.0
SPICE/win32-usbdk,freedesktop-unofficial-mirror/spice__win32__usbdk,daynix/UsbDk,freedesktop-unofficial-mirror/spice__win32__usbdk,daynix/UsbDk,freedesktop-unofficial-mirror/spice__win32__usbdk,SPICE/win32-usbdk
41de829555f2a17fddd0acae5307bb169be40897
test/ClangModules/MixedSource/Inputs/mixed-framework/Mixed.framework/Headers/Mixed.h
test/ClangModules/MixedSource/Inputs/mixed-framework/Mixed.framework/Headers/Mixed.h
struct PureClangType { int x; int y; }; #ifndef SWIFT_CLASS_EXTRA # define SWIFT_CLASS_EXTRA #endif #ifndef SWIFT_CLASS(SWIFT_NAME) # define SWIFT_CLASS(SWIFT_NAME) SWIFT_CLASS_EXTRA #endif SWIFT_CLASS("SwiftClass") __attribute__((objc_root_class)) @interface SwiftClass @end @interface SwiftClass (Category) - (void)categoryMethod:(struct PureClangType)arg; @end SWIFT_CLASS("BOGUS") @interface BogusClass @end
struct PureClangType { int x; int y; }; #ifndef SWIFT_CLASS_EXTRA # define SWIFT_CLASS_EXTRA #endif #ifndef SWIFT_CLASS # define SWIFT_CLASS(SWIFT_NAME) SWIFT_CLASS_EXTRA #endif SWIFT_CLASS("SwiftClass") __attribute__((objc_root_class)) @interface SwiftClass @end @interface SwiftClass (Category) - (void)categoryMethod:(struct PureClangType)arg; @end SWIFT_CLASS("BOGUS") @interface BogusClass @end
Remove useless tokens at the end of a preprocessor directive
Remove useless tokens at the end of a preprocessor directive Swift SVN r24386
C
apache-2.0
austinzheng/swift,slavapestov/swift,devincoughlin/swift,khizkhiz/swift,parkera/swift,Ivacker/swift,huonw/swift,JGiola/swift,khizkhiz/swift,dduan/swift,brentdax/swift,kperryua/swift,harlanhaskins/swift,emilstahl/swift,hughbe/swift,uasys/swift,codestergit/swift,felix91gr/swift,huonw/swift,adrfer/swift,shajrawi/swift,KrishMunot/swift,tardieu/swift,tardieu/swift,russbishop/swift,parkera/swift,dduan/swift,danielmartin/swift,rudkx/swift,nathawes/swift,airspeedswift/swift,sschiau/swift,frootloops/swift,JaSpa/swift,swiftix/swift.old,alblue/swift,sdulal/swift,apple/swift,calebd/swift,jopamer/swift,therealbnut/swift,shajrawi/swift,sdulal/swift,SwiftAndroid/swift,ken0nek/swift,ken0nek/swift,ahoppen/swift,gribozavr/swift,apple/swift,lorentey/swift,KrishMunot/swift,johnno1962d/swift,swiftix/swift.old,mightydeveloper/swift,kusl/swift,jopamer/swift,Ivacker/swift,cbrentharris/swift,austinzheng/swift,natecook1000/swift,gottesmm/swift,hooman/swift,brentdax/swift,swiftix/swift,CodaFi/swift,benlangmuir/swift,kentya6/swift,gregomni/swift,deyton/swift,xwu/swift,atrick/swift,jtbandes/swift,harlanhaskins/swift,alblue/swift,Jnosh/swift,deyton/swift,gmilos/swift,arvedviehweger/swift,benlangmuir/swift,zisko/swift,brentdax/swift,xedin/swift,mightydeveloper/swift,practicalswift/swift,arvedviehweger/swift,natecook1000/swift,alblue/swift,jtbandes/swift,emilstahl/swift,djwbrown/swift,practicalswift/swift,huonw/swift,danielmartin/swift,alblue/swift,LeoShimonaka/swift,tjw/swift,adrfer/swift,manavgabhawala/swift,ben-ng/swift,airspeedswift/swift,xedin/swift,lorentey/swift,slavapestov/swift,kentya6/swift,allevato/swift,aschwaighofer/swift,tinysun212/swift-windows,bitjammer/swift,ahoppen/swift,airspeedswift/swift,austinzheng/swift,brentdax/swift,MukeshKumarS/Swift,parkera/swift,Ivacker/swift,gottesmm/swift,glessard/swift,emilstahl/swift,devincoughlin/swift,alblue/swift,mightydeveloper/swift,kentya6/swift,swiftix/swift,tinysun212/swift-windows,hughbe/swift,benlangmuir/swift,LeoShimonaka/swift,johnno1962d/swift,kperryua/swift,adrfer/swift,tinysun212/swift-windows,jckarter/swift,kstaring/swift,kusl/swift,xwu/swift,allevato/swift,practicalswift/swift,dduan/swift,amraboelela/swift,gmilos/swift,shajrawi/swift,natecook1000/swift,zisko/swift,arvedviehweger/swift,gribozavr/swift,gregomni/swift,JGiola/swift,SwiftAndroid/swift,gmilos/swift,LeoShimonaka/swift,roambotics/swift,kperryua/swift,kentya6/swift,jckarter/swift,deyton/swift,manavgabhawala/swift,return/swift,ahoppen/swift,djwbrown/swift,khizkhiz/swift,tardieu/swift,felix91gr/swift,OscarSwanros/swift,rudkx/swift,JaSpa/swift,slavapestov/swift,kusl/swift,kstaring/swift,adrfer/swift,Jnosh/swift,gribozavr/swift,swiftix/swift.old,MukeshKumarS/Swift,kstaring/swift,ben-ng/swift,felix91gr/swift,JGiola/swift,xwu/swift,aschwaighofer/swift,zisko/swift,milseman/swift,alblue/swift,ken0nek/swift,JaSpa/swift,xwu/swift,aschwaighofer/swift,frootloops/swift,sschiau/swift,IngmarStein/swift,airspeedswift/swift,russbishop/swift,slavapestov/swift,JGiola/swift,natecook1000/swift,Ivacker/swift,gregomni/swift,devincoughlin/swift,jtbandes/swift,modocache/swift,danielmartin/swift,xwu/swift,LeoShimonaka/swift,therealbnut/swift,CodaFi/swift,JaSpa/swift,kperryua/swift,slavapestov/swift,danielmartin/swift,MukeshKumarS/Swift,uasys/swift,glessard/swift,allevato/swift,ken0nek/swift,djwbrown/swift,jckarter/swift,cbrentharris/swift,jtbandes/swift,khizkhiz/swift,jopamer/swift,benlangmuir/swift,austinzheng/swift,nathawes/swift,aschwaighofer/swift,hooman/swift,tkremenek/swift,apple/swift,gmilos/swift,kstaring/swift,kperryua/swift,tkremenek/swift,nathawes/swift,johnno1962d/swift,calebd/swift,tjw/swift,roambotics/swift,ahoppen/swift,russbishop/swift,alblue/swift,IngmarStein/swift,KrishMunot/swift,roambotics/swift,stephentyrone/swift,dduan/swift,gottesmm/swift,hooman/swift,xwu/swift,kusl/swift,amraboelela/swift,mightydeveloper/swift,milseman/swift,arvedviehweger/swift,practicalswift/swift,SwiftAndroid/swift,tinysun212/swift-windows,jopamer/swift,ben-ng/swift,zisko/swift,milseman/swift,devincoughlin/swift,modocache/swift,harlanhaskins/swift,kusl/swift,milseman/swift,mightydeveloper/swift,shahmishal/swift,ben-ng/swift,aschwaighofer/swift,khizkhiz/swift,zisko/swift,kperryua/swift,MukeshKumarS/Swift,sdulal/swift,emilstahl/swift,harlanhaskins/swift,parkera/swift,ahoppen/swift,khizkhiz/swift,gregomni/swift,practicalswift/swift,roambotics/swift,cbrentharris/swift,amraboelela/swift,russbishop/swift,tjw/swift,sschiau/swift,hughbe/swift,jmgc/swift,gmilos/swift,swiftix/swift,arvedviehweger/swift,jmgc/swift,emilstahl/swift,roambotics/swift,shahmishal/swift,jmgc/swift,swiftix/swift,Ivacker/swift,Ivacker/swift,lorentey/swift,harlanhaskins/swift,tardieu/swift,apple/swift,shahmishal/swift,emilstahl/swift,practicalswift/swift,lorentey/swift,return/swift,gregomni/swift,bitjammer/swift,atrick/swift,SwiftAndroid/swift,harlanhaskins/swift,KrishMunot/swift,shajrawi/swift,MukeshKumarS/Swift,kentya6/swift,bitjammer/swift,OscarSwanros/swift,gribozavr/swift,atrick/swift,uasys/swift,adrfer/swift,milseman/swift,karwa/swift,nathawes/swift,MukeshKumarS/Swift,stephentyrone/swift,parkera/swift,shajrawi/swift,adrfer/swift,jopamer/swift,Jnosh/swift,tardieu/swift,apple/swift,stephentyrone/swift,therealbnut/swift,gribozavr/swift,nathawes/swift,shahmishal/swift,jckarter/swift,sschiau/swift,kstaring/swift,swiftix/swift,amraboelela/swift,ken0nek/swift,deyton/swift,therealbnut/swift,xwu/swift,hooman/swift,xedin/swift,therealbnut/swift,frootloops/swift,zisko/swift,practicalswift/swift,cbrentharris/swift,LeoShimonaka/swift,lorentey/swift,codestergit/swift,CodaFi/swift,aschwaighofer/swift,deyton/swift,modocache/swift,nathawes/swift,harlanhaskins/swift,modocache/swift,rudkx/swift,tkremenek/swift,tinysun212/swift-windows,ken0nek/swift,hughbe/swift,felix91gr/swift,apple/swift,cbrentharris/swift,deyton/swift,CodaFi/swift,OscarSwanros/swift,OscarSwanros/swift,tkremenek/swift,SwiftAndroid/swift,codestergit/swift,slavapestov/swift,xedin/swift,shahmishal/swift,jmgc/swift,karwa/swift,glessard/swift,jopamer/swift,manavgabhawala/swift,swiftix/swift.old,sdulal/swift,deyton/swift,swiftix/swift.old,sdulal/swift,Jnosh/swift,atrick/swift,dduan/swift,codestergit/swift,tkremenek/swift,hooman/swift,bitjammer/swift,uasys/swift,djwbrown/swift,SwiftAndroid/swift,bitjammer/swift,felix91gr/swift,stephentyrone/swift,tkremenek/swift,gottesmm/swift,jmgc/swift,ben-ng/swift,tinysun212/swift-windows,Jnosh/swift,bitjammer/swift,allevato/swift,dduan/swift,jmgc/swift,CodaFi/swift,austinzheng/swift,return/swift,return/swift,MukeshKumarS/Swift,stephentyrone/swift,OscarSwanros/swift,cbrentharris/swift,calebd/swift,shahmishal/swift,codestergit/swift,ken0nek/swift,hughbe/swift,devincoughlin/swift,roambotics/swift,sschiau/swift,gottesmm/swift,jckarter/swift,karwa/swift,LeoShimonaka/swift,kstaring/swift,djwbrown/swift,KrishMunot/swift,cbrentharris/swift,modocache/swift,airspeedswift/swift,emilstahl/swift,benlangmuir/swift,sschiau/swift,IngmarStein/swift,gottesmm/swift,jtbandes/swift,arvedviehweger/swift,airspeedswift/swift,parkera/swift,sdulal/swift,atrick/swift,swiftix/swift.old,djwbrown/swift,austinzheng/swift,huonw/swift,cbrentharris/swift,kperryua/swift,brentdax/swift,stephentyrone/swift,manavgabhawala/swift,karwa/swift,danielmartin/swift,mightydeveloper/swift,devincoughlin/swift,johnno1962d/swift,milseman/swift,ahoppen/swift,russbishop/swift,glessard/swift,jckarter/swift,stephentyrone/swift,tinysun212/swift-windows,airspeedswift/swift,swiftix/swift,return/swift,JGiola/swift,modocache/swift,jtbandes/swift,IngmarStein/swift,IngmarStein/swift,jckarter/swift,karwa/swift,bitjammer/swift,OscarSwanros/swift,danielmartin/swift,russbishop/swift,hooman/swift,karwa/swift,arvedviehweger/swift,johnno1962d/swift,gottesmm/swift,manavgabhawala/swift,glessard/swift,danielmartin/swift,frootloops/swift,tjw/swift,rudkx/swift,ben-ng/swift,parkera/swift,kusl/swift,frootloops/swift,rudkx/swift,kentya6/swift,allevato/swift,aschwaighofer/swift,codestergit/swift,johnno1962d/swift,SwiftAndroid/swift,karwa/swift,atrick/swift,shahmishal/swift,JaSpa/swift,milseman/swift,frootloops/swift,calebd/swift,kstaring/swift,gmilos/swift,kusl/swift,swiftix/swift.old,austinzheng/swift,uasys/swift,OscarSwanros/swift,xedin/swift,huonw/swift,adrfer/swift,johnno1962d/swift,sschiau/swift,gribozavr/swift,hooman/swift,swiftix/swift,jtbandes/swift,khizkhiz/swift,slavapestov/swift,calebd/swift,IngmarStein/swift,dduan/swift,frootloops/swift,sdulal/swift,djwbrown/swift,russbishop/swift,therealbnut/swift,Jnosh/swift,Jnosh/swift,kentya6/swift,JaSpa/swift,calebd/swift,gregomni/swift,codestergit/swift,devincoughlin/swift,xedin/swift,JaSpa/swift,KrishMunot/swift,shajrawi/swift,dreamsxin/swift,return/swift,shajrawi/swift,tardieu/swift,return/swift,rudkx/swift,swiftix/swift.old,uasys/swift,devincoughlin/swift,kusl/swift,glessard/swift,tardieu/swift,amraboelela/swift,felix91gr/swift,karwa/swift,jmgc/swift,gribozavr/swift,modocache/swift,hughbe/swift,brentdax/swift,sdulal/swift,parkera/swift,lorentey/swift,gribozavr/swift,KrishMunot/swift,natecook1000/swift,tjw/swift,nathawes/swift,huonw/swift,xedin/swift,allevato/swift,Ivacker/swift,shahmishal/swift,JGiola/swift,shajrawi/swift,zisko/swift,gmilos/swift,lorentey/swift,mightydeveloper/swift,uasys/swift,practicalswift/swift,natecook1000/swift,felix91gr/swift,calebd/swift,tjw/swift,hughbe/swift,dreamsxin/swift,allevato/swift,lorentey/swift,manavgabhawala/swift,brentdax/swift,amraboelela/swift,LeoShimonaka/swift,huonw/swift,LeoShimonaka/swift,jopamer/swift,tkremenek/swift,CodaFi/swift,therealbnut/swift,amraboelela/swift,emilstahl/swift,tjw/swift,sschiau/swift,kentya6/swift,CodaFi/swift,benlangmuir/swift,ben-ng/swift,IngmarStein/swift,xedin/swift,natecook1000/swift,mightydeveloper/swift,manavgabhawala/swift,Ivacker/swift
a77891726ba57d03abdc2153d38d4c2f45a0d623
src/tests/log_mock.c
src/tests/log_mock.c
#include "log.h" #include <stdio.h> void debug(const char* format, ...) { #ifdef __DEBUG__ vprintf(format, args); #endif // __DEBUG__ } void initializeLogging() { }
#include "log.h" #include <stdio.h> #include <stdarg.h> void debug(const char* format, ...) { va_list args; va_start(args, format); vprintf(format, args); va_end(args); } void initializeLogging() { }
Enable printf in unit tests regardless of DEBUG flag status.
Enable printf in unit tests regardless of DEBUG flag status.
C
bsd-3-clause
openxc/vi-firmware,mgiannikouris/vi-firmware,ene-ilies/vi-firmware,openxc/vi-firmware,mgiannikouris/vi-firmware,openxc/vi-firmware,ene-ilies/vi-firmware,ene-ilies/vi-firmware,openxc/vi-firmware,mgiannikouris/vi-firmware,mgiannikouris/vi-firmware,ene-ilies/vi-firmware
ca77e66fbcd139c43ee54d371e745bb40b75c095
o1dropbox.h
o1dropbox.h
#ifndef O1DROPBOX_H #define O1DROPBOX_H #include "o1.h" class O1Dropbox: public O1 { Q_OBJECT public: explicit O1Dropbox(QObject *parent = 0): O1(parent) { setRequestTokenUrl(QUrl("https://api.dropbox.com/1/oauth/request_token")); setAuthorizeUrl(QUrl("https://www.dropbox.com/1/oauth/authorize")); setAccessTokenUrl(QUrl("https://api.dropbox.com/1/oauth/access_token")); setLocalPort(1965); } }; #endif // O1DROPBOX_H
#ifndef O1DROPBOX_H #define O1DROPBOX_H #include "o1.h" class O1Dropbox: public O1 { Q_OBJECT public: explicit O1Dropbox(QObject *parent = 0): O1(parent) { setRequestTokenUrl(QUrl("https://api.dropbox.com/1/oauth/request_token")); setAuthorizeUrl(QUrl("https://www.dropbox.com/1/oauth/authorize?display=mobile")); setAccessTokenUrl(QUrl("https://api.dropbox.com/1/oauth/access_token")); setLocalPort(1965); } }; #endif // O1DROPBOX_H
Use the mobile authorization page.
Use the mobile authorization page.
C
bsd-2-clause
pipacs/o2,shimomura1004/o2,shimomura1004/o2,seem-sky/o2,parapente/o2,pipacs/o2,seem-sky/o2,Timac/o2,Timac/o2,parapente/o2
50620bdb6b217d53bcabda32764b7f3e21499bcc
isl_sample.h
isl_sample.h
/* * Copyright 2008-2009 Katholieke Universiteit Leuven * * Use of this software is governed by the MIT license * * Written by Sven Verdoolaege, K.U.Leuven, Departement * Computerwetenschappen, Celestijnenlaan 200A, B-3001 Leuven, Belgium */ #ifndef ISL_SAMPLE_H #define ISL_SAMPLE #include <isl/set.h> #include <isl_tab.h> #if defined(__cplusplus) extern "C" { #endif __isl_give isl_vec *isl_basic_set_sample_vec(__isl_take isl_basic_set *bset); struct isl_vec *isl_basic_set_sample_bounded(struct isl_basic_set *bset); __isl_give isl_vec *isl_basic_set_sample_with_cone( __isl_take isl_basic_set *bset, __isl_take isl_basic_set *cone); __isl_give isl_basic_set *isl_basic_set_from_vec(__isl_take isl_vec *vec); int isl_tab_set_initial_basis_with_cone(struct isl_tab *tab, struct isl_tab *tab_cone); struct isl_vec *isl_tab_sample(struct isl_tab *tab); #if defined(__cplusplus) } #endif #endif
/* * Copyright 2008-2009 Katholieke Universiteit Leuven * * Use of this software is governed by the MIT license * * Written by Sven Verdoolaege, K.U.Leuven, Departement * Computerwetenschappen, Celestijnenlaan 200A, B-3001 Leuven, Belgium */ #ifndef ISL_SAMPLE_H #define ISL_SAMPLE_H #include <isl/set.h> #include <isl_tab.h> #if defined(__cplusplus) extern "C" { #endif __isl_give isl_vec *isl_basic_set_sample_vec(__isl_take isl_basic_set *bset); struct isl_vec *isl_basic_set_sample_bounded(struct isl_basic_set *bset); __isl_give isl_vec *isl_basic_set_sample_with_cone( __isl_take isl_basic_set *bset, __isl_take isl_basic_set *cone); __isl_give isl_basic_set *isl_basic_set_from_vec(__isl_take isl_vec *vec); int isl_tab_set_initial_basis_with_cone(struct isl_tab *tab, struct isl_tab *tab_cone); struct isl_vec *isl_tab_sample(struct isl_tab *tab); #if defined(__cplusplus) } #endif #endif
Fix typo in header guard
Fix typo in header guard Signed-off-by: Tobias Grosser <059b8b880f8441509ec8a65b50b4c6ae74ebea76@grosser.es> Signed-off-by: Sven Verdoolaege <e5350bbed4977f5eb8ae1dc6abd9ae59d21ace75@kotnet.org>
C
mit
cfx-next/toolchain_isl-upstream,cfx-next/toolchain_isl-upstream,nicolasvasilache/isl,Meinersbur/isl,BenzoSM/isl,BobSaget-Mod/libisl,VanirLLVM/toolchain_isl,inducer/isl-mirror,tobig/isl,crossbuild/isl,BobSaget-Mod/libisl,inducer/isl-mirror,tobig/isl,UBERTC/isl,nicolasvasilache/isl,simbuerg/isl,KangDroidSMProject/ISL,KangDroidSMProject/ISL,Distrotech/isl,jleben/isl,KangDroidSMProject/ISL,jleben/isl,PollyLabs/isl,abduld/isl,SaberMod/isl-current,BobSaget-Mod/libisl,evaautomation/isl,BobSaget-Mod/libisl,nicolasvasilache/isl,Distrotech/isl,inducer/isl-mirror,abduld/isl,evaautomation/isl,VanirLLVM/toolchain_isl,PollyLabs/isl,crossbuild/isl,nicolasvasilache/isl,VanirLLVM/toolchain_isl,jleben/isl,nicolasvasilache/isl,SaberMod/isl-current,abduld/isl,BenzoSM/isl,Meinersbur/isl,SaberMod/isl-current,simbuerg/isl,VanirLLVM/toolchain_isl,tobig/isl,cfx-next/toolchain_isl-upstream,BenzoSM/isl,UBERTC/isl,inducer/isl-mirror,inducer/isl-mirror,evaautomation/isl,SaberMod/isl-current,PollyLabs/isl,Distrotech/isl,evaautomation/isl,UBERTC/isl,BobSaget-Mod/libisl,Distrotech/isl,cfx-next/toolchain_isl-upstream,cfx-next/toolchain_isl-upstream,abduld/isl,KangDroidSMProject/ISL,BenzoSM/isl,Meinersbur/isl,jleben/isl,simbuerg/isl,jleben/isl,Meinersbur/isl,simbuerg/isl,VanirLLVM/toolchain_isl,KangDroidSMProject/ISL,PollyLabs/isl,crossbuild/isl,Distrotech/isl,crossbuild/isl,simbuerg/isl,PollyLabs/isl,tobig/isl,BenzoSM/isl,UBERTC/isl
58388a13ea0f47241340a99f45f1e3b0a0f45f04
src/host/os_uuid.c
src/host/os_uuid.c
/** * \file os_uuid.c * \brief Create a new UUID. * \author Copyright (c) 2002-2008 Jason Perkins and the Premake project */ #include "premake.h" #if PLATFORM_WINDOWS #include <Objbase.h> #endif int os_uuid(lua_State* L) { unsigned char bytes[16]; char uuid[38]; #if PLATFORM_WINDOWS CoCreateGuid((char*)bytes); #else int result; /* not sure how to get a UUID here, so I fake it */ FILE* rnd = fopen("/dev/urandom", "rb"); result = fread(bytes, 16, 1, rnd); fclose(rnd); if (!result) return 0; #endif sprintf(uuid, "%02X%02X%02X%02X-%02X%02X-%02X%02X-%02X%02X-%02X%02X%02X%02X%02X%02X", bytes[0], bytes[1], bytes[2], bytes[3], bytes[4], bytes[5], bytes[6], bytes[7], bytes[8], bytes[9], bytes[10], bytes[11], bytes[12], bytes[13], bytes[14], bytes[15]); lua_pushstring(L, uuid); return 1; }
/** * \file os_uuid.c * \brief Create a new UUID. * \author Copyright (c) 2002-2008 Jason Perkins and the Premake project */ #include "premake.h" #if PLATFORM_WINDOWS #include <Objbase.h> #endif int os_uuid(lua_State* L) { unsigned char bytes[16]; char uuid[38]; #if PLATFORM_WINDOWS CoCreateGuid((GUID*)bytes); #else int result; /* not sure how to get a UUID here, so I fake it */ FILE* rnd = fopen("/dev/urandom", "rb"); result = fread(bytes, 16, 1, rnd); fclose(rnd); if (!result) return 0; #endif sprintf(uuid, "%02X%02X%02X%02X-%02X%02X-%02X%02X-%02X%02X-%02X%02X%02X%02X%02X%02X", bytes[0], bytes[1], bytes[2], bytes[3], bytes[4], bytes[5], bytes[6], bytes[7], bytes[8], bytes[9], bytes[10], bytes[11], bytes[12], bytes[13], bytes[14], bytes[15]); lua_pushstring(L, uuid); return 1; }
Fix incompatible types warning from VS 2005 (Oliver Schneider)
Fix incompatible types warning from VS 2005 (Oliver Schneider)
C
bsd-3-clause
premake/premake-4.x,premake/premake-4.x,soundsrc/premake-stable,ryanjmulder/premake-4.x,soundsrc/premake-stable,premake/premake-4.x,lizh06/premake-4.x,ryanjmulder/premake-4.x,ryanjmulder/premake-4.x,lizh06/premake-4.x,ryanjmulder/premake-4.x,soundsrc/premake-stable,soundsrc/premake-stable,premake/premake-4.x,lizh06/premake-4.x,lizh06/premake-4.x
3f9b5373a22df13cb9b449963aff4395493324b3
CDKitt/NSView+CDAutoLayout.h
CDKitt/NSView+CDAutoLayout.h
// // NSView+CDAutoLayout.h // CDKitt // // Created by Aron Cedercrantz on 04-06-2013. // Copyright (c) 2013 Aron Cedercrantz. All rights reserved. // #import <Cocoa/Cocoa.h> @interface NSView (CDAutoLayout) /** * Add the given view to this view as a subview and autoresizes it to fill the * receiving view. */ - (void)cd_addFillingAutoresizedSubview:(NSView *)subview; @end
// // NSView+CDAutoLayout.h // CDKitt // // Created by Aron Cedercrantz on 04-06-2013. // Copyright (c) 2013 Aron Cedercrantz. All rights reserved. // #import <Cocoa/Cocoa.h> @interface NSView (CDAutoLayout) /** * Add the given view to this view as a subview and autoresizes it to fill the * receiving view. * * @param subview The view which should be added as a subview of the reciever. * May be `nil`. */ - (void)cd_addFillingAutoresizedSubview:(NSView *)subview; @end
Improve NSView auto layout category documentation.
Improve NSView auto layout category documentation. Signed-off-by: Aron Cedercrantz <ce30127eefa07a02d568832e3de6952fb491981c@cedercrantz.se>
C
mit
rastersize/CDKitt,rastersize/CDKitt,rastersize/CDKitt,rastersize/CDKitt
febcd73e5ebc12d91f72bd948d8d8abd2043d84d
mudlib/mud/home/Help/initd.c
mudlib/mud/home/Help/initd.c
#include <kotaka/paths.h> inherit LIB_INITD; inherit UTILITY_COMPILE; static void create() { load_dir("obj", 1); load_dir("sys", 1); }
#include <kotaka/paths.h> #include <kotaka/privilege.h> #include <kotaka/bigstruct.h> #include <kotaka/log.h> inherit LIB_INITD; inherit UTILITY_COMPILE; static void create() { load_dir("obj", 1); load_dir("sys", 1); } void full_reset() { object turkeylist; object cursor; object first; object this; ACCESS_CHECK(PRIVILEGED()); turkeylist = new_object(BIGSTRUCT_DEQUE_LWO); this = this_object(); cursor = KERNELD->first_link("Help"); first = cursor; do { LOGD->post_message("help", LOG_DEBUG, "Listing " + object_name(cursor)); turkeylist->push_back(cursor); cursor = KERNELD->next_link(cursor); } while (cursor != first); while (!turkeylist->empty()) { object turkey; turkey = turkeylist->get_front(); turkeylist->pop_front(); if (!turkey || turkey == this) { /* don't self destruct or double destruct */ continue; } destruct_object(turkey); } load_dir("obj", 1); load_dir("sys", 1); }
Allow help module to be rebooted
Allow help module to be rebooted
C
agpl-3.0
shentino/kotaka,shentino/kotaka,shentino/kotaka
47b31c05b71bedd540810d95c10189c4d4580534
src/tag.h
src/tag.h
#ifndef SRC_TAG_H_ #define SRC_TAG_H_ #include <string> #include "readtags.h" class Tag { public: Tag(tagEntry entry) { name = entry.name; file = entry.file; kind = entry.kind != NULL ? entry.kind : ""; if (entry.address.pattern != NULL) pattern = entry.address.pattern; else pattern = ""; } std::string name; std::string file; std::string kind; std::string pattern; }; #endif // SRC_TAG_H_
#ifndef SRC_TAG_H_ #define SRC_TAG_H_ #include <string> #include "readtags.h" class Tag { public: Tag(tagEntry entry) { name = entry.name; file = entry.file; kind = entry.kind != NULL ? entry.kind : ""; pattern = entry.address.pattern != NULL ? entry.address.pattern : ""; } std::string name; std::string file; std::string kind; std::string pattern; }; #endif // SRC_TAG_H_
Switch pattern's check for NULL to ternary operator
Switch pattern's check for NULL to ternary operator (To be consistent with “kind”’s check)
C
mit
zertosh/ctags-prebuilt,zertosh/ctags-prebuilt,atom/node-ctags,zertosh/ctags-prebuilt,atom/node-ctags,yongkangchen/node-ctags,yongkangchen/node-ctags,yongkangchen/node-ctags,zertosh/ctags-prebuilt,atom/node-ctags
a153c929c08c530c81286efbe0ef21ceeeacc0a3
bin/varnishd/storage_malloc.c
bin/varnishd/storage_malloc.c
/* * $Id$ * * Storage method based on malloc(3) */ #include <assert.h> #include <stdlib.h> #include <sys/queue.h> #include <pthread.h> #include "cache.h" struct sma { struct storage s; }; static struct storage * sma_alloc(struct stevedore *st __unused, unsigned size) { struct sma *sma; sma = calloc(sizeof *sma, 1); assert(sma != NULL); sma->s.priv = sma; sma->s.ptr = malloc(size); assert(sma->s.ptr != NULL); sma->s.len = size; sma->s.space = size; return (&sma->s); } static void sma_free(struct storage *s) { struct sma *sma; sma = s->priv; free(sma->s.ptr); free(sma); } struct stevedore sma_stevedore = { "malloc", NULL, /* init */ NULL, /* open */ sma_alloc, NULL, /* trim */ sma_free };
/* * $Id$ * * Storage method based on malloc(3) */ #include <assert.h> #include <stdlib.h> #include <sys/queue.h> #include <pthread.h> #include "cache.h" struct sma { struct storage s; }; static struct storage * sma_alloc(struct stevedore *st, unsigned size) { struct sma *sma; sma = calloc(sizeof *sma, 1); assert(sma != NULL); sma->s.priv = sma; sma->s.ptr = malloc(size); assert(sma->s.ptr != NULL); sma->s.len = size; sma->s.space = size; sma->s.stevedore = st; return (&sma->s); } static void sma_free(struct storage *s) { struct sma *sma; sma = s->priv; free(sma->s.ptr); free(sma); } struct stevedore sma_stevedore = { "malloc", NULL, /* init */ NULL, /* open */ sma_alloc, NULL, /* trim */ sma_free };
Make this work again: record the stevedore in the storage object.
Make this work again: record the stevedore in the storage object. git-svn-id: 7d4b18ab7d176792635d6a7a77dd8cbbea8e8daa@236 d4fa192b-c00b-0410-8231-f00ffab90ce4
C
bsd-2-clause
CartoDB/Varnish-Cache,wikimedia/operations-debs-varnish,wikimedia/operations-debs-varnish,ssm/pkg-varnish,ssm/pkg-varnish,wikimedia/operations-debs-varnish,wikimedia/operations-debs-varnish,wikimedia/operations-debs-varnish,CartoDB/Varnish-Cache,CartoDB/Varnish-Cache,ssm/pkg-varnish,ssm/pkg-varnish,ssm/pkg-varnish
114f74f1f21bd9467d500bae7a3442e5135ce83a
test/benchLinkDef.h
test/benchLinkDef.h
#ifdef __CINT__ #pragma link off all globals; #pragma link off all classes; #pragma link off all functions; #pragma link C++ class THit!+; #pragma link C++ class TObjHit+; #pragma link C++ class TSTLhit; #pragma link C++ class TSTLhitList; #pragma link C++ class TSTLhitDeque; #pragma link C++ class TSTLhitSet; #pragma link C++ class TSTLhitMultiset; #pragma link C++ class TSTLhitMap; #pragma link C++ class TSTLhitMultiMap; //#pragma link C++ class TSTLhitHashSet; //#pragma link C++ class TSTLhitHashMultiset; #pragma link C++ class pair<int,THit>; #pragma link C++ class TSTLhitStar; #pragma link C++ class TSTLhitStarList; #pragma link C++ class TSTLhitStarDeque; #pragma link C++ class TSTLhitStarSet; #pragma link C++ class TSTLhitStarMultiSet; #pragma link C++ class TSTLhitStarMap; #pragma link C++ class TSTLhitStarMultiMap; #pragma link C++ class pair<int,THit*>; #pragma link C++ class TCloneshit+; #endif
#ifdef __CINT__ #pragma link off all globals; #pragma link off all classes; #pragma link off all functions; #pragma link C++ class THit!+; #pragma link C++ class TObjHit+; #pragma link C++ class TSTLhit+; #pragma link C++ class TSTLhitList+; #pragma link C++ class TSTLhitDeque+; #pragma link C++ class TSTLhitSet+; #pragma link C++ class TSTLhitMultiset+; #pragma link C++ class TSTLhitMap+; #pragma link C++ class TSTLhitMultiMap+; //#pragma link C++ class TSTLhitHashSet; //#pragma link C++ class TSTLhitHashMultiset; #pragma link C++ class pair<int,THit>+; #pragma link C++ class TSTLhitStar+; #pragma link C++ class TSTLhitStarList+; #pragma link C++ class TSTLhitStarDeque+; #pragma link C++ class TSTLhitStarSet+; #pragma link C++ class TSTLhitStarMultiSet+; #pragma link C++ class TSTLhitStarMap+; #pragma link C++ class TSTLhitStarMultiMap+; #pragma link C++ class pair<int,THit*>+; #pragma link C++ class TCloneshit+; #endif
Use the option "+" to force the new style Streamer for all classes in bench.
Use the option "+" to force the new style Streamer for all classes in bench. git-svn-id: ecbadac9c76e8cf640a0bca86f6bd796c98521e3@10478 27541ba8-7e3a-0410-8455-c3a389f83636
C
lgpl-2.1
bbannier/ROOT,dawehner/root,bbannier/ROOT,dawehner/root,bbannier/ROOT,dawehner/root,bbannier/ROOT,bbannier/ROOT,dawehner/root,dawehner/root,dawehner/root,dawehner/root,bbannier/ROOT,dawehner/root,bbannier/ROOT
56f42fe127b267e25739a56925d05f7ff70517b1
src/onig-result.h
src/onig-result.h
#ifndef SRC_ONIG_RESULT_H_ #define SRC_ONIG_RESULT_H_ #include "oniguruma.h" class OnigResult { public: explicit OnigResult(OnigRegion* region, int indexInScanner); ~OnigResult(); int Count(); int LocationAt(int index); int LengthAt(int index); int Index() { return indexInScanner; } void SetIndex(int newIndex) { indexInScanner = newIndex; } private: OnigResult(const OnigResult&); // Disallow copying OnigResult &operator=(const OnigResult&); // Disallow copying OnigRegion *region_; int indexInScanner; }; #endif // SRC_ONIG_RESULT_H_
#ifndef SRC_ONIG_RESULT_H_ #define SRC_ONIG_RESULT_H_ #include "nan.h" #include "oniguruma.h" class OnigResult { public: explicit OnigResult(OnigRegion* region, int indexInScanner); ~OnigResult(); int Count(); int LocationAt(int index); int LengthAt(int index); int Index() { return indexInScanner; } void SetIndex(int newIndex) { indexInScanner = newIndex; } private: OnigResult(const OnigResult&); // Disallow copying OnigResult &operator=(const OnigResult&); // Disallow copying OnigRegion *region_; int indexInScanner; }; #endif // SRC_ONIG_RESULT_H_
Fix compilation on win8 : include nan before oniguruma
Fix compilation on win8 : include nan before oniguruma
C
mit
bpasero/node-oniguruma,alexandrudima/node-oniguruma,alexandrudima/node-oniguruma,bpasero/node-oniguruma,atom/node-oniguruma,atom/node-oniguruma,atom/node-oniguruma,bpasero/node-oniguruma,alexandrudima/node-oniguruma
3b59297b36f795e7cdaaab74daefa89cee6dd24d
src/qt/clientmodel.h
src/qt/clientmodel.h
#ifndef CLIENTMODEL_H #define CLIENTMODEL_H #include <QObject> class OptionsModel; class AddressTableModel; class TransactionTableModel; class CWallet; QT_BEGIN_NAMESPACE class QDateTime; QT_END_NAMESPACE // Interface to Bitcoin network client class ClientModel : public QObject { Q_OBJECT public: // The only reason that this constructor takes a wallet is because // the global client settings are stored in the main wallet. explicit ClientModel(OptionsModel *optionsModel, QObject *parent = 0); OptionsModel *getOptionsModel(); int getNumConnections() const; int getNumBlocks() const; QDateTime getLastBlockDate() const; // Return true if client connected to testnet bool isTestNet() const; // Return true if core is doing initial block download bool inInitialBlockDownload() const; // Return conservative estimate of total number of blocks, or 0 if unknown int getTotalBlocksEstimate() const; QString formatFullVersion() const; private: OptionsModel *optionsModel; int cachedNumConnections; int cachedNumBlocks; signals: void numConnectionsChanged(int count); void numBlocksChanged(int count); // Asynchronous error notification void error(const QString &title, const QString &message); public slots: private slots: void update(); }; #endif // CLIENTMODEL_H
#ifndef CLIENTMODEL_H #define CLIENTMODEL_H #include <QObject> class OptionsModel; class AddressTableModel; class TransactionTableModel; class CWallet; QT_BEGIN_NAMESPACE class QDateTime; QT_END_NAMESPACE // Interface to Bitcoin network client class ClientModel : public QObject { Q_OBJECT public: explicit ClientModel(OptionsModel *optionsModel, QObject *parent = 0); OptionsModel *getOptionsModel(); int getNumConnections() const; int getNumBlocks() const; QDateTime getLastBlockDate() const; // Return true if client connected to testnet bool isTestNet() const; // Return true if core is doing initial block download bool inInitialBlockDownload() const; // Return conservative estimate of total number of blocks, or 0 if unknown int getTotalBlocksEstimate() const; QString formatFullVersion() const; private: OptionsModel *optionsModel; int cachedNumConnections; int cachedNumBlocks; signals: void numConnectionsChanged(int count); void numBlocksChanged(int count); // Asynchronous error notification void error(const QString &title, const QString &message); public slots: private slots: void update(); }; #endif // CLIENTMODEL_H
Remove no longer valid comment
Remove no longer valid comment
C
mit
shomeser/bitcoin,48thct2jtnf/P,pataquets/namecoin-core,andres-root/bitcoinxt,Bloom-Project/Bloom,zcoinofficial/zcoin,jashandeep-sohi/ppcoin,ericshawlinux/bitcoin,vlajos/bitcoin,jonghyeopkim/bitcoinxt,randy-waterhouse/bitcoin,ajweiss/bitcoin,lbrtcoin/albertcoin,borgcoin/Borgcoin1,mrbandrews/bitcoin,CrimeaCoin/crimeacoin,megacoin/megacoin,ahmedbodi/vertcoin,bcpki/nonce2testblocks,fujicoin/fujicoin,wangliu/bitcoin,IOCoin/DIONS,zemrys/vertcoin,cyrixhero/bitcoin,xuyangcn/opalcoin,ychaim/smallchange,misdess/bitcoin,SoreGums/bitcoinxt,segsignal/bitcoin,vcoin-project/vcoin0.8zeta-dev,nailtaras/nailcoin,bitcoinxt/bitcoinxt,icook/vertcoin,Rav3nPL/doubloons-0.10,tuaris/bitcoin,penek/novacoin,droark/bitcoin,ahmedbodi/test2,blackcoinhelp/blackcoin,segwit/atbcoin-insight,kirkalx/bitcoin,elecoin/elecoin,cainca/liliucoin,oleganza/bitcoin-duo,mm-s/bitcoin,litecoin-project/litecoin,TripleSpeeder/bitcoin,destenson/bitcoin--bitcoin,dgarage/bc3,applecoin-official/fellatio,knolza/gamblr,LanaCoin/lanacoin,CrimeaCoin/crimeacoin,donaloconnor/bitcoin,presstab/PIVX,cheehieu/bitcoin,Electronic-Gulden-Foundation/egulden,ahmedbodi/test2,elliotolds/bitcoin,effectsToCause/vericoin,CryptArc/bitcoinxt,royosherove/bitcoinxt,valorbit/valorbit-oss,janko33bd/bitcoin,djtms/ltc,TheoremCrypto/TheoremCoin,united-scrypt-coin-project/unitedscryptcoin,bitshares/bitshares-pts,thrasher-/litecoin,jmgilbert2/energi,btc1/bitcoin,ivansib/sib16,ionomy/ion,trippysalmon/bitcoin,jambolo/bitcoin,greencoin-dev/GreenCoinV2,vlajos/bitcoin,gjhiggins/fuguecoin,1185/starwels,BlockchainTechLLC/3dcoin,plncoin/PLNcoin_Core,dannyperez/bolivarcoin,dexX7/bitcoin,Blackcoin/blackcoin,daeMOn63/Peershares,TheOncomingStorm/logincoinadvanced,cyrixhero/bitcoin,Bloom-Project/Bloom,metrocoins/metrocoin,DigiByte-Team/digibyte,pataquets/namecoin-core,jtimon/bitcoin,daveperkins-github/bitcoin-dev,trippysalmon/bitcoin,dpayne9000/Rubixz-Coin,thelazier/dash,CTRoundTable/Encrypted.Cash,oklink-dev/litecoin_block,ryanxcharles/bitcoin,wcwu/bitcoin,thrasher-/litecoin,BigBlueCeiling/augmentacoin,cerebrus29301/crowncoin,zottejos/merelcoin,jamesob/bitcoin,genavarov/lamacoin,Jheguy2/Mercury,111t8e/bitcoin,wellenreiter01/Feathercoin,antcheck/antcoin,memorycoin/memorycoin,xuyangcn/opalcoin,goldmidas/goldmidas,CryptArc/bitcoin,fsb4000/bitcoin,Alex-van-der-Peet/bitcoin,dgarage/bc2,droark/elements,som4paul/BolieC,SmeltFool/Wonker,IOCoin/iocoin,gavinandresen/bitcoin-git,Twyford/Indigo,Krellan/bitcoin,gravio-net/graviocoin,gjhiggins/vcoincore,untrustbank/litecoin,riecoin/riecoin,droark/elements,sdaftuar/bitcoin,Climbee/artcoin,nmarley/dash,pdrobek/Polcoin-1-3,world-bank/unpay-core,alecalve/bitcoin,WorldLeadCurrency/WLC,tdudz/elements,Vsync-project/Vsync,MoMoneyMonetarism/ppcoin,metacoin/florincoin,jlcurby/NobleCoin,jimblasko/UnbreakableCoin-master,NicolasDorier/bitcoin,vcoin-project/vcoincore,Kixunil/keynescoin,joulecoin/joulecoin,AllanDoensen/BitcoinUnlimited,Checkcoin/checkcoin,bitcoinsSG/zcash,marcusdiaz/BitcoinUnlimited,phelix/bitcoin,Vsync-project/Vsync,pinkmagicdev/SwagBucks,bitjson/hivemind,NicolasDorier/bitcoin,coinkeeper/2015-06-22_19-00_ziftrcoin,EntropyFactory/creativechain-core,prodigal-son/blackcoin,Megacoin2/Megacoin,dgenr8/bitcoin,Kore-Core/kore,Magicking/neucoin,TBoehm/greedynode,kallewoof/bitcoin,pinkmagicdev/SwagBucks,BitzenyCoreDevelopers/bitzeny,senadmd/coinmarketwatch,scmorse/bitcoin,fsb4000/novacoin,haisee/dogecoin,lateminer/DopeCoinGold,digibyte/digibyte,Xekyo/bitcoin,bootycoin-project/bootycoin,bitcoinsSG/bitcoin,daliwangi/bitcoin,globaltoken/globaltoken,FrictionlessCoin/iXcoin,cheehieu/bitcoin,welshjf/bitcoin,Justaphf/BitcoinUnlimited,ShadowMyst/creativechain-core,ionomy/ion,lbryio/lbrycrd,jtimon/elements,dmrtsvetkov/flowercoin,BitcoinHardfork/bitcoin,likecoin-dev/bitcoin,ya4-old-c-coder/yacoin,kirkalx/bitcoin,CoinGame/BCEShadowNet,Peerapps/ppcoin,btcdrak/bitcoin,coinkeeper/anoncoin_20150330_fixes,gravio-net/graviocoin,butterflypay/bitcoin,TeamBitBean/bitcoin-core,prark/bitcoinxt,pocopoco/yacoin,wcwu/bitcoin,ColossusCoinXT/ColossusCoinXT,bitcoinsSG/bitcoin,isle2983/bitcoin,koharjidan/litecoin,coinkeeper/2015-04-19_21-20_litecoindark,SocialCryptoCoin/SocialCoin,jlopp/statoshi,dgarage/bc2,Crypto-Currency/BitBar,awemany/BitcoinUnlimited,zander/bitcoinclassic,core-bitcoin/bitcoin,Tetcoin/tetcoin,DSPay/DSPay,slingcoin/sling-market,Bitcoinsulting/bitcoinxt,haobtc/bitcoin,REAP720801/bitcoin,worldbit/worldbit,BlockchainTechLLC/3dcoin,5mil/Tradecoin,domob1812/i0coin,litecoin-project/bitcoinomg,keesdewit82/LasVegasCoin,pstratem/elements,5mil/Bolt,balajinandhu/bitcoin,ahmedbodi/temp_vert,ptschip/bitcoinxt,CoinProjects/AmsterdamCoin-v4,bitjson/hivemind,genavarov/ladacoin,jarymoth/dogecoin,andreaskern/bitcoin,cinnamoncoin/groupcoin-1,Infernoman/crowncoin,lentza/SuperTurboStake,antonio-fr/bitcoin,qtumproject/qtum,mmpool/coiledcoin,ludbb/bitcoin,Erkan-Yilmaz/twister-core,pelorusjack/BlockDX,mitchellcash/bitcoin,bitcoinxt/bitcoinxt,knolza/gamblr,argentumproject/argentum,RibbitFROG/ribbitcoin,shaulkf/bitcoin,ajweiss/bitcoin,slimcoin-project/Slimcoin,Bluejudy/worldcoin,ftrader-bitcoinabc/bitcoin-abc,maraoz/proofcoin,vcoin-project/vcoincore,pinkmagicdev/SwagBucks,jimmysong/bitcoin,mortalvikinglive/bitcoinclassic,reddcoin-project/reddcoin,coinkeeper/terracoin_20150327,jonasnick/bitcoin,BitcoinHardfork/bitcoin,matlongsi/micropay,erqan/twister-core,Anfauglith/iop-hd,superjudge/bitcoin,xawksow/GroestlCoin,droark/elements,franko-org/franko,ddombrowsky/radioshares,bitbrazilcoin-project/bitbrazilcoin,ppcoin/ppcoin,sipa/bitcoin,tjps/bitcoin,BTCTaras/bitcoin,droark/bitcoin,Mrs-X/PIVX,sipsorcery/bitcoin,syscoin/syscoin,rromanchuk/bitcoinxt,Someguy123/novafoil,apoelstra/bitcoin,langerhans/dogecoin,coinwarp/dogecoin,erqan/twister-core,BlockchainTechLLC/3dcoin,kryptokredyt/ProjektZespolowyCoin,cannabiscoindev/cannabiscoin420,greencoin-dev/GreenCoinV2,Earlz/renamedcoin,axelxod/braincoin,gravio-net/graviocoin,tedlz123/Bitcoin,irvingruan/bitcoin,Checkcoin/checkcoin,Chancoin-core/CHANCOIN,Bitcoin-ABC/bitcoin-abc,cryptcoins/cryptcoin,ghostlander/Feathercoin,martindale/elements,dev1972/Satellitecoin,iQcoin/iQcoin,maraoz/proofcoin,TheOncomingStorm/logincoinadvanced,vericoin/vericoin-core,shouhuas/bitcoin,vertcoin/vertcoin,174high/bitcoin,alexandrcoin/vertcoin,Open-Source-Coins/EZ,Anoncoin/anoncoin,GeekBrony/ponycoin-old,franko-org/franko,aspanta/bitcoin,wangliu/bitcoin,BTCDDev/bitcoin,redfish64/nomiccoin,wangliu/bitcoin,botland/bitcoin,gjhiggins/vcoin0.8zeta-dev,roques/bitcoin,bitcoin-hivemind/hivemind,BlockchainTechLLC/3dcoin,ahmedbodi/bytecoin,ftrader-bitcoinabc/bitcoin-abc,crowning-/dash,OfficialTitcoin/titcoin-wallet,Domer85/dogecoin,Kcoin-project/kcoin,acid1789/bitcoin,dpayne9000/Rubixz-Coin,ravenbyron/phtevencoin,gjhiggins/fuguecoin,Rav3nPL/doubloons-0.10,ahmedbodi/Bytecoin-MM,mikehearn/bitcoin,Crowndev/crowncoin,jarymoth/dogecoin,torresalyssa/bitcoin,FuzzyBearBTC/Peershares-1,jaromil/faircoin2,simonmulser/bitcoin,NunoEdgarGub1/elements,Alonzo-Coeus/bitcoin,ftrader-bitcoinunlimited/hardfork_prototype_1_mvf-bu,mycointest/owncoin,jonasnick/bitcoin,Rav3nPL/polcoin,tecnovert/particl-core,okcashpro/okcash,shurcoin/shurcoin,projectinterzone/ITZ,bitcoinxt/bitcoinxt,wiggi/huntercore,GIJensen/bitcoin,Earlz/dobbscoin-source,iadix/iadixcoin,AquariusNetwork/ARCOv2,inutoshi/inutoshi,Dinarcoin/dinarcoin,ArgonToken/ArgonToken,Stakemaker/OMFGcoin,FuzzyBearBTC/Peerunity,psionin/smartcoin,haraldh/bitcoin,borgcoin/Borgcoin.rar,loxal/zcash,elambert2014/cbx2,pstratem/bitcoin,ajweiss/bitcoin,jamesob/bitcoin,gazbert/bitcoin,ryanofsky/bitcoin,RyanLucchese/energi,xuyangcn/opalcoin,kallewoof/bitcoin,emc2foundation/einsteinium,nmarley/dash,oklink-dev/litecoin_block,NateBrune/bitcoin-nate,ohac/sakuracoin,Paymium/bitcoin,misdess/bitcoin,Xekyo/bitcoin,domob1812/i0coin,xieta/mincoin,fsb4000/bitcoin,worldbit/worldbit,mb300sd/bitcoin,AkioNak/bitcoin,accraze/bitcoin,spiritlinxl/BTCGPU,OstlerDev/florincoin,metacoin/florincoin,shouhuas/bitcoin,Sjors/bitcoin,ptschip/bitcoin,coinkeeper/2015-06-22_18-37_dogecoin,akabmikua/flowcoin,BTCfork/hardfork_prototype_1_mvf-core,Bitcoinsulting/bitcoinxt,kirkalx/bitcoin,gandrewstone/bitcoinxt,okcashpro/okcash,coinwarp/dogecoin,xurantju/bitcoin,SocialCryptoCoin/SocialCoin,bitgoldcoin-project/bitgoldcoin,48thct2jtnf/P,world-bank/unpay-core,rsdevgun16e/energi,vtafaucet/virtacoin,FuzzyBearBTC/Peershares,knolza/gamblr,CryptArc/bitcoin,faircoin/faircoin,coinkeeper/2015-04-19_21-20_litecoindark,cinnamoncoin/groupcoin-1,FeatherCoin/Feathercoin,dagurval/bitcoinxt,vtafaucet/virtacoin,sugruedes/bitcoin,Vsync-project/Vsync,ALEXIUMCOIN/alexium,appop/bitcoin,StarbuckBG/BTCGPU,MOIN/moin,funkshelper/woodcoin-b,Darknet-Crypto/Darknet,gandrewstone/bitcoinxt,bitshares/bitshares-pts,itmanagerro/tresting,landcoin-ldc/landcoin,JeremyRubin/bitcoin,TheBlueMatt/bitcoin,kirkalx/bitcoin,willwray/dash,memorycoin/memorycoin,elliotolds/bitcoin,Ziftr/Peerunity,nigeriacoin/nigeriacoin,constantine001/bitcoin,bcpki/nonce2,thesoftwarejedi/bitcoin,inkvisit/sarmacoins,Kogser/bitcoin,landcoin-ldc/landcoin,misdess/bitcoin,ClusterCoin/ClusterCoin,alejandromgk/Lunar,Enticed87/Decipher,kaostao/bitcoin,cheehieu/bitcoin,Anfauglith/iop-hd,tedlz123/Bitcoin,GlobalBoost/GlobalBoost,lordsajan/erupee,faircoin/faircoin,projectinterzone/ITZ,slimcoin-project/Slimcoin,CarpeDiemCoin/CarpeDiemLaunch,bitcoinplusorg/xbcwalletsource,HashUnlimited/Einsteinium-Unlimited,apoelstra/elements,united-scrypt-coin-project/unitedscryptcoin,majestrate/twister-core,BTCGPU/BTCGPU,creath/barcoin,netswift/vertcoin,nanocoins/mycoin,MeshCollider/bitcoin,elambert2014/novacoin,jakeva/bitcoin-pwcheck,Cocosoft/bitcoin,steakknife/bitcoin-qt,slingcoin/sling-market,genavarov/lamacoin,degenorate/Deftcoin,pinheadmz/bitcoin,alexwaters/Bitcoin-Testing,miguelfreitas/twister-core,ronpaulcoin/ronpaulcoin,applecoin-official/applecoin,bitcoinknots/bitcoin,coblee/litecoin-old,zander/bitcoinclassic,GwangJin/gwangmoney-core,Electronic-Gulden-Foundation/egulden,daveperkins-github/bitcoin-dev,gcc64/bitcoin,guncoin/guncoin,coinerd/krugercoin,faircoin/faircoin,crowning2/dash,Alonzo-Coeus/bitcoin,hophacker/bitcoin_malleability,jimblasko/UnbreakableCoin-master,Domer85/dogecoin,Tetcoin/tetcoin,Bloom-Project/Bloom,metrocoins/metrocoin,Justaphf/BitcoinUnlimited,joroob/reddcoin,mruddy/bitcoin,fussl/elements,KibiCoin/kibicoin,marcusdiaz/BitcoinUnlimited,ahmedbodi/vertcoin,Charlesugwu/Vintagecoin,rdqw/sscoin,iQcoin/iQcoin,kleetus/bitcoin,plncoin/PLNcoin_Core,ronpaulcoin/ronpaulcoin,bitcoinknots/bitcoin,alexandrcoin/vertcoin,coinkeeper/2015-06-22_18-41_ixcoin,genavarov/ladacoin,GlobalBoost/GlobalBoost,chrisfranko/aiden,kseistrup/twister-core,antonio-fr/bitcoin,metacoin/florincoin,11755033isaprimenumber/Feathercoin,BTCfork/hardfork_prototype_1_mvf-bu,AsteraCoin/AsteraCoin,wangxinxi/litecoin,phorensic/yacoin,Ziftr/bitcoin,jimmykiselak/lbrycrd,Kenwhite23/litecoin,Cloudsy/bitcoin,mortalvikinglive/bitcoinlight,SoreGums/bitcoinxt,tatafiore/mycoin,ychaim/smallchange,xuyangcn/opalcoin,my-first/octocoin,21E14/bitcoin,bitcoinplusorg/xbcwalletsource,joroob/reddcoin,jimblasko/UnbreakableCoin-master,oklink-dev/bitcoin,dashpay/dash,okinc/litecoin,koharjidan/litecoin,my-first/octocoin,guncoin/guncoin,experiencecoin/experiencecoin,ftrader-bitcoinabc/bitcoin-abc,gjhiggins/vcoin0.8zeta-dev,stronghands/stronghands,digibyte/digibyte,isocolsky/bitcoinxt,hasanatkazmi/bitcoin,cryptodev35/icash,CoinBlack/bitcoin,terracoin/terracoin,acid1789/bitcoin,inutoshi/inutoshi,Kangmo/bitcoin,presstab/PIVX,ahmedbodi/terracoin,BTCDDev/bitcoin,wangxinxi/litecoin,Twyford/Indigo,bitcoinsSG/bitcoin,x-kalux/bitcoin_WiG-B,mikehearn/bitcoinxt,Credit-Currency/CoinTestComp,ashleyholman/bitcoin,theuni/bitcoin,ajtowns/bitcoin,capitalDIGI/DIGI-v-0-10-4,valorbit/valorbit-oss,irvingruan/bitcoin,Horrorcoin/horrorcoin,bitcoinsSG/bitcoin,globaltoken/globaltoken,Peerunity/Peerunity,habibmasuro/bitcoin,iadix/iadixcoin,gorgoy/novacoin,Diapolo/bitcoin,destenson/bitcoin--bitcoin,IOCoin/iocoin,chaincoin/chaincoin,thelazier/dash,cryptocoins4all/zcoin,apoelstra/elements,coinkeeper/2015-06-22_18-31_bitcoin,phelix/namecore,metrocoins/metrocoin,renatolage/wallets-BRCoin,CoinProjects/AmsterdamCoin-v4,nbenoit/bitcoin,gades/novacoin,megacoin/megacoin,reddcoin-project/reddcoin,tecnovert/particl-core,metacoin/florincoin,ionomy/ion,pinkevich/dash,cddjr/BitcoinUnlimited,Kefkius/clams,llamasoft/ProtoShares_Cycle,dgarage/bc2,bitchip/bitchip,tobeyrowe/KitoniaCoin,AquariusNetwork/ARCO,kryptokredyt/ProjektZespolowyCoin,janko33bd/bitcoin,mincoin-project/mincoin,koltcoin/koltcoin,benosa/bitcoin,fsb4000/novacoin,ardsu/bitcoin,btc1/bitcoin,AkioNak/bitcoin,ajtowns/bitcoin,5mil/Tradecoin,1185/starwels,cqtenq/Feathercoin,Anfauglith/iop-hd,particl/particl-core,jnewbery/bitcoin,174high/bitcoin,sickpig/BitcoinUnlimited,Mrs-X/PIVX,Electronic-Gulden-Foundation/egulden,thodg/ppcoin,arnuschky/bitcoin,ptschip/bitcoinxt,coinkeeper/2015-06-22_18-56_megacoin,Metronotes/bitcoin,shaulkf/bitcoin,ppcoin/ppcoin,core-bitcoin/bitcoin,5mil/Tradecoin,wcwu/bitcoin,goldmidas/goldmidas,Theshadow4all/ShadowCoin,thelazier/dash,world-bank/unpay-core,antonio-fr/bitcoin,prodigal-son/blackcoin,deuscoin/deuscoin,anditto/bitcoin,stamhe/novacoin,unsystemizer/bitcoin,BTCfork/hardfork_prototype_1_mvf-core,Rav3nPL/doubloons-08,sbellem/bitcoin,Ziftr/litecoin,IlfirinIlfirin/shavercoin,theuni/bitcoin,novacoin-project/novacoin,ShadowMyst/creativechain-core,SartoNess/BitcoinUnlimited,Tetcoin/tetcoin,ctwiz/stardust,thunderrabbit/clams,micryon/GPUcoin,EntropyFactory/creativechain-core,cddjr/BitcoinUnlimited,cqtenq/feathercoin_core,bdelzell/creditcoin-org-creditcoin,lbrtcoin/albertcoin,Kogser/bitcoin,Jeff88Ho/bitcoin,leofidus/glowing-octo-ironman,ardsu/bitcoin,jmgilbert2/energi,antcheck/antcoin,faircoin/faircoin2,roques/bitcoin,franko-org/franko,kleetus/bitcoin,pinkevich/dash,Rav3nPL/PLNcoin,marscoin/marscoin,oklink-dev/bitcoin_block,collapsedev/circlecash,p2peace/oliver-twister-core,habibmasuro/bitcoinxt,Tetpay/bitcoin,vbernabe/freicoin,thunderrabbit/clams,matlongsi/micropay,tdudz/elements,MikeAmy/bitcoin,nomnombtc/bitcoin,instagibbs/bitcoin,StarbuckBG/BTCGPU,raasakh/bardcoin,TheBlueMatt/bitcoin,brishtiteveja/sherlockholmescoin,Petr-Economissa/gvidon,wtogami/bitcoin,Rimbit/Wallets,Electronic-Gulden-Foundation/egulden,ripper234/bitcoin,dexX7/mastercore,mb300sd/bitcoin,cryptohelper/premine,arnuschky/bitcoin,nailtaras/nailcoin,okinc/bitcoin,coinkeeper/terracoin_20150327,deeponion/deeponion,shouhuas/bitcoin,odemolliens/bitcoinxt,VsyncCrypto/Vsync,FuzzyBearBTC/Peershares,Geekcoin-Project/Geekcoin,SandyCohen/mincoin,mm-s/bitcoin,FuzzyBearBTC/Fuzzyshares,antonio-fr/bitcoin,senadmd/coinmarketwatch,coinkeeper/2015-06-22_19-00_ziftrcoin,coinkeeper/2015-06-22_18-36_darkcoin,ekankyesme/bitcoinxt,xXDavasXx/Davascoin,florincoin/florincoin,truthcoin/truthcoin-cpp,RHavar/bitcoin,jashandeep-sohi/ppcoin,erikYX/yxcoin-FIRST,NeuCoin/neucoin,dogecoin/dogecoin,AquariusNetwork/ARCO,CoinBlack/blackcoin,zotherstupidguy/bitcoin,coinkeeper/2015-06-22_18-39_feathercoin,keisercoin-official/keisercoin,cryptohelper/premine,shouhuas/bitcoin,celebritycoin/investorcoin,habibmasuro/bitcoin,blood2/bloodcoin-0.9,yacoin/yacoin,FuzzyBearBTC/Peershares,coinkeeper/2015-06-22_18-31_bitcoin,blocktrail/bitcoin,Christewart/bitcoin,ElementsProject/elements,BitzenyCoreDevelopers/bitzeny,balajinandhu/bitcoin,mrtexaznl/mediterraneancoin,Richcoin-Project/RichCoin,brandonrobertz/namecoin-core,cotner/bitcoin,brandonrobertz/namecoin-core,cqtenq/feathercoin_core,kallewoof/elements,cannabiscoindev/cannabiscoin420,applecoin-official/fellatio,syscoin/syscoin,kaostao/bitcoin,shomeser/bitcoin,ediston/energi,gcc64/bitcoin,AquariusNetwork/ARCOv2,riecoin/riecoin,AquariusNetwork/ARCO,dexX7/bitcoin,qreatora/worldcoin-v0.8,namecoin/namecoin-core,applecoin-official/fellatio,CryptArc/bitcoinxt,JeremyRand/namecore,VsyncCrypto/Vsync,zestcoin/ZESTCOIN,qubitcoin-project/QubitCoinQ2C,mikehearn/bitcoinxt,prusnak/bitcoin,cddjr/BitcoinUnlimited,coinkeeper/2015-06-22_18-36_darkcoin,tobeyrowe/BitStarCoin,byncoin-project/byncoin,ForceMajeure/BitPenny-Client-0.4.0.1,GreenParhelia/bitcoin,DGCDev/argentum,DigitalPandacoin/pandacoin,odemolliens/bitcoinxt,cqtenq/feathercoin_core,gcc64/bitcoin,fsb4000/bitcoin,joshrabinowitz/bitcoin,oklink-dev/bitcoin,BTCfork/hardfork_prototype_1_mvf-core,butterflypay/bitcoin,MikeAmy/bitcoin,coinkeeper/2015-06-22_18-51_vertcoin,midnight-miner/LasVegasCoin,xurantju/bitcoin,pevernon/picoin,therealaltcoin/altcoin,IlfirinIlfirin/shavercoin,vbernabe/freicoin,Ziftr/bitcoin,parvez3019/bitcoin,nvmd/bitcoin,collapsedev/cashwatt,lentza/SuperTurboStake,djpnewton/bitcoin,EthanHeilman/bitcoin,sigmike/peercoin,cculianu/bitcoin-abc,vlajos/bitcoin,Krellan/bitcoin,therealaltcoin/altcoin,patricklodder/dogecoin,patricklodder/dogecoin,jul2711/jucoin,TeamBitBean/bitcoin-core,bitcoin-hivemind/hivemind,untrustbank/litecoin,CryptArc/bitcoin,simdeveloper/bitcoin,joulecoin/joulecoin,blackcoinhelp/blackcoin,privatecoin/privatecoin,neuroidss/bitcoin,puticcoin/putic,antcheck/antcoin,fanquake/bitcoin,kevin-cantwell/crunchcoin,josephbisch/namecoin-core,leofidus/glowing-octo-ironman,truthcoin/truthcoin-cpp,Friedbaumer/litecoin,coinkeeper/anoncoin_20150330_fixes,Gazer022/bitcoin,jrmithdobbs/bitcoin,gades/novacoin,cannabiscoindev/cannabiscoin420,dmrtsvetkov/flowercoin,21E14/bitcoin,tatafiore/mycoin,nathaniel-mahieu/bitcoin,jarymoth/dogecoin,BitcoinHardfork/bitcoin,kigooz/smalltestnew,erikYX/yxcoin-FIRST,octocoin-project/octocoin,joulecoin/joulecoin,SoreGums/bitcoinxt,bcpki/bitcoin,okinc/litecoin,zixan/bitcoin,irvingruan/bitcoin,gfneto/Peershares,Rav3nPL/bitcoin,cotner/bitcoin,bitpay/bitcoin,cqtenq/Feathercoin,ajweiss/bitcoin,iadix/iadixcoin,bitcoinknots/bitcoin,som4paul/BolieC,effectsToCause/vericoin,truthcoin/truthcoin-cpp,Electronic-Gulden-Foundation/egulden,BeirdoMud/MudCoin,coinwarp/dogecoin,habibmasuro/bitcoinxt,valorbit/valorbit,Christewart/bitcoin,experiencecoin/experiencecoin,ahmedbodi/test2,ya4-old-c-coder/yacoin,truthcoin/truthcoin-cpp,wbchen99/bitcoin-hnote0,borgcoin/Borgcoin.rar,goldcoin/Goldcoin-GLD,metacoin/florincoin,magacoin/magacoin,Matoking/bitcoin,icook/vertcoin,jlcurby/NobleCoin,MOIN/moin,aspirecoin/aspire,unsystemizer/bitcoin,174high/bitcoin,omefire/bitcoin,joroob/reddcoin,KnCMiner/bitcoin,3lambert/Molecular,benma/bitcoin,syscoin/syscoin,Bluejudy/worldcoin,ludbb/bitcoin,practicalswift/bitcoin,plncoin/PLNcoin_Core,XertroV/bitcoin-nulldata,dopecoin-dev/DopeCoinGold,FuzzyBearBTC/Peershares2,putinclassic/putic,Infernoman/crowncoin,megacoin/megacoin,CodeShark/bitcoin,octocoin-project/octocoin,borgcoin/Borgcoin.rar,Crowndev/crowncoin,OfficialTitcoin/titcoin-wallet,nbenoit/bitcoin,wederw/bitcoin,uphold/bitcoin,domob1812/i0coin,Sjors/bitcoin,droark/elements,jn2840/bitcoin,Matoking/bitcoin,Rav3nPL/doubloons-08,TheSeven/ppcoin,cqtenq/Feathercoin,IOCoin/DIONS,TierNolan/bitcoin,UASF/bitcoin,coinkeeper/2015-06-22_19-13_florincoin,nathan-at-least/zcash,bfroemel/smallchange,coinkeeper/2015-06-22_18-30_anoncoin,mortalvikinglive/bitcoinlight,ravenbyron/phtevencoin,marlengit/hardfork_prototype_1_mvf-bu,Stakemaker/OMFGcoin,mockcoin/mockcoin,Peershares/Peershares,faircoin/faircoin2,bitjson/hivemind,Bitcoin-ABC/bitcoin-abc,FarhanHaque/bitcoin,BenjaminsCrypto/Benjamins-1,DrCrypto/darkcoin,bitpagar/bitpagar,ya4-old-c-coder/yacoin,grumpydevelop/singularity,GroestlCoin/GroestlCoin,FeatherCoin/Feathercoin,webdesignll/coin,error10/bitcoin,myriadcoin/myriadcoin,elliotolds/bitcoin,sipa/elements,starwels/starwels,Kogser/bitcoin,fullcoins/fullcoin,brishtiteveja/sherlockcoin,Dinarcoin/dinarcoin,andres-root/bitcoinxt,maaku/bitcoin,thrasher-/litecoin,thunderrabbit/clams,midnightmagic/bitcoin,isle2983/bitcoin,penek/novacoin,uphold/bitcoin,phelix/bitcoin,coinkeeper/2015-06-22_18-45_peercoin,Kenwhite23/litecoin,pouta/bitcoin,bickojima/bitzeny,Har01d/bitcoin,sugruedes/bitcoin,ghostlander/Orbitcoin,rustyrussell/bitcoin,RHavar/bitcoin,qreatora/worldcoin-v0.8,nmarley/dash,novacoin-project/novacoin,bitjson/hivemind,bitgrowchain/bitgrow,bitbrazilcoin-project/bitbrazilcoin,Friedbaumer/litecoin,Krellan/bitcoin,ashleyholman/bitcoin,CarpeDiemCoin/CarpeDiemLaunch,ticclassic/ic,hsavit1/bitcoin,safecoin/safecoin,ptschip/bitcoin,GlobalBoost/GlobalBoost,benma/bitcoin,Adaryian/E-Currency,brishtiteveja/sherlockcoin,coinkeeper/2015-06-22_18-37_dogecoin,reorder/viacoin,AkioNak/bitcoin,puticcoin/putic,lateminer/DopeCoinGold,Bitcoinsulting/bitcoinxt,ychaim/smallchange,LIMXTEC/DMDv3,fedoracoin-dev/fedoracoin,BTCGPU/BTCGPU,arruah/ensocoin,robvanbentem/bitcoin,akabmikua/flowcoin,szlaozhu/twister-core,CodeShark/bitcoin,rnicoll/bitcoin,phelixbtc/bitcoin,xeddmc/twister-core,schildbach/bitcoin,hyperwang/bitcoin,theuni/bitcoin,shomeser/bitcoin,globaltoken/globaltoken,rat4/bitcoin,alecalve/bitcoin,ALEXIUMCOIN/alexium,vertcoin/eyeglass,zestcoin/ZESTCOIN,Flowdalic/bitcoin,elecoin/elecoin,dgenr8/bitcoin,slimcoin-project/Slimcoin,simdeveloper/bitcoin,jmgilbert2/energi,DGCDev/digitalcoin,fsb4000/novacoin,kigooz/smalltestnew,hyperwang/bitcoin,FuzzyBearBTC/peercoin,dgenr8/bitcoin,plankton12345/litecoin,DogTagRecon/Still-Leraning,alexandrcoin/vertcoin,core-bitcoin/bitcoin,xXDavasXx/Davascoin,NeuCoin/neucoin,GroestlCoin/GroestlCoin,Erkan-Yilmaz/twister-core,Kefkius/clams,fedoracoin-dev/fedoracoin,Rav3nPL/bitcoin,CoinGame/NuShadowNet,benosa/bitcoin,Chancoin-core/CHANCOIN,som4paul/BolieC,ohac/sakuracoin,nathaniel-mahieu/bitcoin,aspanta/bitcoin,Kabei/Ippan,nanocoins/mycoin,crowning-/dash,pastday/bitcoinproject,Thracky/monkeycoin,kseistrup/twister-core,mycointest/owncoin,kevin-cantwell/crunchcoin,MazaCoin/mazacoin-new,rromanchuk/bitcoinxt,marlengit/BitcoinUnlimited,sipa/bitcoin,coinkeeper/2015-06-22_18-36_darkcoin,FinalHashLLC/namecore,jmcorgan/bitcoin,nomnombtc/bitcoin,worldcoinproject/worldcoin-v0.8,cryptodev35/icash,starwalkerz/fincoin-fork,bitpay/bitcoin,JeremyRand/bitcoin,CoinBlack/blackcoin,WorldLeadCurrency/WLC,fsb4000/bitcoin,pouta/bitcoin,manuel-zulian/CoMoNet,ANCompany/birdcoin-dev,iadix/iadixcoin,Enticed87/Decipher,lbrtcoin/albertcoin,tedlz123/Bitcoin,RyanLucchese/energi,cinnamoncoin/groupcoin-1,Friedbaumer/litecoin,totallylegitbiz/totallylegitcoin,mitchellcash/bitcoin,rawodb/bitcoin,Erkan-Yilmaz/twister-core,Earlz/renamedcoin,ALEXIUMCOIN/alexium,gfneto/Peershares,etercoin/etercoin,ripper234/bitcoin,coinkeeper/megacoin_20150410_fixes,SocialCryptoCoin/SocialCoin,haisee/dogecoin,vertcoin/vertcoin,mincoin-project/mincoin,webdesignll/coin,jarymoth/dogecoin,droark/bitcoin,sbaks0820/bitcoin,sstone/bitcoin,midnightmagic/bitcoin,penek/novacoin,greencoin-dev/greencoin-dev,itmanagerro/tresting,FeatherCoin/Feathercoin,tensaix2j/bananacoin,EthanHeilman/bitcoin,elliotolds/bitcoin,okinc/litecoin,masterbraz/dg,marlengit/BitcoinUnlimited,genavarov/ladacoin,mastercoin-MSC/mastercore,theuni/bitcoin,pdrobek/Polcoin-1-3,sdaftuar/bitcoin,thunderrabbit/clams,genavarov/lamacoin,Kore-Core/kore,coinkeeper/2015-06-22_19-19_worldcoin,KnCMiner/bitcoin,xieta/mincoin,capitalDIGI/DIGI-v-0-10-4,BenjaminsCrypto/Benjamins-1,mruddy/bitcoin,atgreen/bitcoin,jlay11/sharecoin,Mrs-X/PIVX,thrasher-/litecoin,phplaboratory/psiacoin,jyap808/jumbucks,gravio-net/graviocoin,SartoNess/BitcoinUnlimited,brishtiteveja/truthcoin-cpp,Cocosoft/bitcoin,kallewoof/elements,MitchellMintCoins/AutoCoin,pelorusjack/BlockDX,sigmike/peercoin,haraldh/bitcoin,pevernon/picoin,cinnamoncoin/Feathercoin,Enticed87/Decipher,adpg211/bitcoin-master,benma/bitcoin,cmgustavo/bitcoin,WorldcoinGlobal/WorldcoinLegacy,jtimon/bitcoin,funkshelper/woodcoin-b,capitalDIGI/litecoin,coinkeeper/anoncoin_20150330_fixes,earthcoinproject/earthcoin,coinkeeper/2015-06-22_19-00_ziftrcoin,jimmykiselak/lbrycrd,keo/bitcoin,raasakh/bardcoin.exe,coinkeeper/anoncoin_20150330_fixes,plankton12345/litecoin,ionomy/ion,jameshilliard/bitcoin,11755033isaprimenumber/Feathercoin,coinkeeper/2015-06-22_18-41_ixcoin,wangliu/bitcoin,and2099/twister-core,jashandeep-sohi/ppcoin,keisercoin-official/keisercoin,andreaskern/bitcoin,Ziftr/litecoin,LIMXTEC/DMDv3,gfneto/Peershares,neutrinofoundation/neutrino-digital-currency,odemolliens/bitcoinxt,Peerunity/Peerunity,CryptArc/bitcoinxt,Diapolo/bitcoin,cheehieu/bitcoin,ahmedbodi/bytecoin,Infernoman/crowncoin,emc2foundation/einsteinium,sugruedes/bitcoinxt,funkshelper/woodcore,shelvenzhou/BTCGPU,jimblasko/2015_UNB_Wallets,kbccoin/kbc,vertcoin/eyeglass,vcoin-project/vcoincore,jrick/bitcoin,nikkitan/bitcoin,Xekyo/bitcoin,MasterX1582/bitcoin-becoin,lordsajan/erupee,Rav3nPL/polcoin,keesdewit82/LasVegasCoin,therealaltcoin/altcoin,ericshawlinux/bitcoin,syscoin/syscoin2,KaSt/ekwicoin,world-bank/unpay-core,celebritycoin/CelebrityCoin,shea256/bitcoin,coinkeeper/terracoin_20150327,haobtc/bitcoin,viacoin/viacoin,coinkeeper/2015-04-19_21-20_litecoindark,Flowdalic/bitcoin,phorensic/yacoin,arnuschky/bitcoin,deadalnix/bitcoin,ericshawlinux/bitcoin,TripleSpeeder/bitcoin,jiffe/cosinecoin,reddink/reddcoin,BTCDDev/bitcoin,constantine001/bitcoin,UdjinM6/dash,Vsync-project/Vsync,byncoin-project/byncoin,sbaks0820/bitcoin,fujicoin/fujicoin,crowning-/dash,Infernoman/crowncoin,celebritycoin/CelebrityCoin,spiritlinxl/BTCGPU,cryptoprojects/ultimateonlinecash,XertroV/bitcoin-nulldata,svost/bitcoin,maaku/bitcoin,brandonrobertz/namecoin-core,ColossusCoinXT/ColossusCoinXT,Darknet-Crypto/Darknet,phelix/namecore,iceinsidefire/peershare-edit,Rav3nPL/polcoin,putinclassic/putic,jonasschnelli/bitcoin,SandyCohen/mincoin,puticcoin/putic,DigitalPandacoin/pandacoin,jmcorgan/bitcoin,creath/barcoin,cinnamoncoin/Feathercoin,Exgibichi/statusquo,pinkmagicdev/SwagBucks,CryptArc/bitcoin,FuzzyBearBTC/Peershares-1,dogecoin/dogecoin,cybermatatu/bitcoin,m0gliE/fastcoin-cli,dgarage/bc3,coinkeeper/megacoin_20150410_fixes,Tetcoin/tetcoin,llluiop/bitcoin,jmcorgan/bitcoin,iceinsidefire/peershare-edit,barcoin-project/nothingcoin,stamhe/bitcoin,shaolinfry/litecoin,aspanta/bitcoin,1185/starwels,ANCompany/birdcoin-dev,BTCTaras/bitcoin,omefire/bitcoin,jrick/bitcoin,gazbert/bitcoin,bdelzell/creditcoin-org-creditcoin,xurantju/bitcoin,bitchip/bitchip,ahmedbodi/temp_vert,jtimon/elements,bitjson/hivemind,therealaltcoin/altcoin,GeekBrony/ponycoin-old,pouta/bitcoin,experiencecoin/experiencecoin,skaht/bitcoin,jakeva/bitcoin-pwcheck,Kore-Core/kore,WorldcoinGlobal/WorldcoinLegacy,ingresscoin/ingresscoin,safecoin/safecoin,ptschip/bitcoin,wekuiz/wekoin,plncoin/PLNcoin_Core,p2peace/oliver-twister-core,credits-currency/credits,cdecker/bitcoin,jameshilliard/bitcoin,qtumproject/qtum,bitcoinclassic/bitcoinclassic,nbenoit/bitcoin,domob1812/namecore,zottejos/merelcoin,Peer3/homework,bitcoinxt/bitcoinxt,ShadowMyst/creativechain-core,neureal/noocoin,lordsajan/erupee,Chancoin-core/CHANCOIN,joulecoin/joulecoin,XX-net/twister-core,goldcoin/goldcoin,valorbit/valorbit,Kore-Core/kore,biblepay/biblepay,cryptoprojects/ultimateonlinecash,ForceMajeure/BitPenny-Client-0.4.0.1,totallylegitbiz/totallylegitcoin,greencoin-dev/greencoin-dev,kallewoof/elements,hsavit1/bitcoin,habibmasuro/bitcoin,Magicking/neucoin,majestrate/twister-core,multicoins/marycoin,spiritlinxl/BTCGPU,bcpki/testblocks,Tetpay/bitcoin,Ziftr/litecoin,jeromewu/bitcoin-opennet,ravenbyron/phtevencoin,ivansib/sib16,shaolinfry/litecoin,kirkalx/bitcoin,rnicoll/bitcoin,CoinBlack/bitcoin,palm12341/jnc,spiritlinxl/BTCGPU,xeddmc/twister-core,Bitcoin-com/BUcash,koharjidan/bitcoin,Earlz/dobbscoin-source,domob1812/bitcoin,plncoin/PLNcoin_Core,digideskio/namecoin,goku1997/bitcoin,greencoin-dev/greencoin-dev,neuroidss/bitcoin,mb300sd/bitcoin,cainca/liliucoin,ravenbyron/phtevencoin,TripleSpeeder/bitcoin,mooncoin-project/mooncoin-landann,ftrader-bitcoinunlimited/hardfork_prototype_1_mvf-bu,StarbuckBG/BTCGPU,tecnovert/particl-core,brightcoin/brightcoin,coinkeeper/2015-06-22_18-31_bitcoin,phplaboratory/psiacoin,Bitcoinsulting/bitcoinxt,alecalve/bitcoin,Rimbit/Wallets,manuel-zulian/CoMoNet,misdess/bitcoin,coinkeeper/2015-04-19_21-20_litecoindark,pinheadmz/bitcoin,tecnovert/particl-core,tropa/axecoin,dexX7/mastercore,rnicoll/dogecoin,aciddude/Feathercoin,Christewart/bitcoin,Justaphf/BitcoinUnlimited,erqan/twister-core,killerstorm/bitcoin,bitcoin/bitcoin,cryptoprojects/ultimateonlinecash,SproutsEx/SproutsExtreme,daeMOn63/Peershares,qubitcoin-project/QubitCoinQ2C,ronpaulcoin/ronpaulcoin,FarhanHaque/bitcoin,jiffe/cosinecoin,goldcoin/Goldcoin-GLD,stamhe/bitcoin,mikehearn/bitcoin,dakk/soundcoin,nigeriacoin/nigeriacoin,cryptocoins4all/zcoin,terracoin/terracoin,joshrabinowitz/bitcoin,compasscoin/compasscoin,jnewbery/bitcoin,degenorate/Deftcoin,gjhiggins/vcoin09,marcusdiaz/BitcoinUnlimited,acid1789/bitcoin,ptschip/bitcoin,peercoin/peercoin,okcashpro/okcash,s-matthew-english/bitcoin,cddjr/BitcoinUnlimited,neuroidss/bitcoin,Kefkius/clams,Someguy123/novafoil,sstone/bitcoin,Ziftr/litecoin,itmanagerro/tresting,magacoin/magacoin,cmgustavo/bitcoin,shurcoin/shurcoin,ClusterCoin/ClusterCoin,cculianu/bitcoin-abc,scmorse/bitcoin,AdrianaDinca/bitcoin,mikehearn/bitcoinxt,andreaskern/bitcoin,Cloudsy/bitcoin,pascalguru/florincoin,bitcoin-hivemind/hivemind,metrocoins/metrocoin,TurboStake/TurboStake,cculianu/bitcoin-abc,CoinGame/NuShadowNet,coinkeeper/2015-06-22_19-13_florincoin,Kogser/bitcoin,BlockchainTechLLC/3dcoin,CarpeDiemCoin/CarpeDiemLaunch,rustyrussell/bitcoin,sipsorcery/bitcoin,funbucks/notbitcoinxt,nailtaras/nailcoin,novacoin-project/novacoin,terracoin/terracoin,shea256/bitcoin,royosherove/bitcoinxt,earonesty/bitcoin,coinkeeper/2015-06-22_19-13_florincoin,drwasho/bitcoinxt,TGDiamond/Diamond,Tetcoin/tetcoin,GreenParhelia/bitcoin,zestcoin/ZESTCOIN,shaolinfry/litecoin,cotner/bitcoin,romanornr/viacoin,joroob/reddcoin,okcashpro/okcash,r8921039/bitcoin,truthcoin/blocksize-market,chrisfranko/aiden,syscoin/syscoin2,wellenreiter01/Feathercoin,CoinBlack/bitcoin,ardsu/bitcoin,OstlerDev/florincoin,ticclassic/ic,sstone/bitcoin,ediston/energi,zzkt/solarcoin,jrmithdobbs/bitcoin,ceptacle/libcoinqt,micryon/GPUcoin,greencoin-dev/digitalcoin,jmgilbert2/energi,celebritycoin/investorcoin,bitreserve/bitcoin,gfneto/Peershares,bcpki/testblocks,grumpydevelop/singularity,ryanxcharles/bitcoin,forrestv/bitcoin,GeekBrony/ponycoin-old,novaexchange/EAC,lordsajan/erupee,jrmithdobbs/bitcoin,chaincoin/chaincoin,dev1972/Satellitecoin,ixcoinofficialpage/master,taenaive/zetacoin,ArgonToken/ArgonToken,manuel-zulian/accumunet,koharjidan/bitcoin,likecoin-dev/bitcoin,AsteraCoin/AsteraCoin,peerdb/cors,Kenwhite23/litecoin,Dajackal/Ronpaulcoin,OstlerDev/florincoin,DrCrypto/darkcoin,schinzelh/dash,Kixunil/keynescoin,peercoin/peercoin,sipa/elements,oklink-dev/litecoin_block,OmniLayer/omnicore,bitcoinsSG/bitcoin,particl/particl-core,se3000/bitcoin,IlfirinCano/shavercoin,TheOncomingStorm/logincoinadvanced,and2099/twister-core,pinkevich/dash,biblepay/biblepay,Darknet-Crypto/Darknet,matlongsi/micropay,NateBrune/bitcoin-fio,mycointest/owncoin,jnewbery/bitcoin,wiggi/huntercore,MasterX1582/bitcoin-becoin,syscoin/syscoin,JeremyRand/namecore,misdess/bitcoin,gwillen/elements,dopecoin-dev/DopeCoinGold,domob1812/crowncoin,koltcoin/koltcoin,ArgonToken/ArgonToken,wangxinxi/litecoin,jambolo/bitcoin,kallewoof/bitcoin,josephbisch/namecoin-core,dgarage/bc2,ekankyesme/bitcoinxt,schinzelh/dash,argentumproject/argentum,Darknet-Crypto/Darknet,OmniLayer/omnicore,iosdevzone/bitcoin,cyrixhero/bitcoin,wederw/bitcoin,PRabahy/bitcoin,starwels/starwels,174high/bitcoin,r8921039/bitcoin,OfficialTitcoin/titcoin-wallet,bankonmecoin/bitcoin,paveljanik/bitcoin,jtimon/elements,gandrewstone/BitcoinUnlimited,truthcoin/blocksize-market,haisee/dogecoin,dooglus/clams,freelion93/mtucicoin,SmeltFool/Yippe-Hippe,paveljanik/bitcoin,sugruedes/bitcoin,stronghands/stronghands,Infernoman/crowncoin,riecoin/riecoin,gravio-net/graviocoin,borgcoin/Borgcoin1,pdrobek/Polcoin-1-3,dobbscoin/dobbscoin-source,sifcoin/sifcoin,antonio-fr/bitcoin,mammix2/ccoin-dev,ftrader-bitcoinunlimited/hardfork_prototype_1_mvf-bu,accraze/bitcoin,TheoremCrypto/TheoremCoin,zsulocal/bitcoin,mrtexaznl/mediterraneancoin,coinkeeper/2015-06-22_18-30_anoncoin,rat4/bitcoin,lakepay/lake,2XL/bitcoin,xranby/blackcoin,ShwoognationHQ/bitcoin,afk11/bitcoin,langerhans/dogecoin,xawksow/GroestlCoin,aniemerg/zcash,internaut-me/ppcoin,phplaboratory/psiacoin,KillerByte/memorypool,karek314/bitcoin,GIJensen/bitcoin,jlay11/sharecoin,wbchen99/bitcoin-hnote0,kfitzgerald/titcoin,imton/bitcoin,palm12341/jnc,Blackcoin/blackcoin,collapsedev/cashwatt,okinc/litecoin,ohac/sakuracoin,cerebrus29301/crowncoin,penek/novacoin,peercoin/peercoin,united-scrypt-coin-project/unitedscryptcoin,gavinandresen/bitcoin-git,torresalyssa/bitcoin,zander/bitcoinclassic,BTCfork/hardfork_prototype_1_mvf-bu,untrustbank/litecoin,s-matthew-english/bitcoin,mockcoin/mockcoin,litecoin-project/litecore-litecoin,Christewart/bitcoin,pstratem/bitcoin,habibmasuro/bitcoinxt,gorgoy/novacoin,sbaks0820/bitcoin,shurcoin/shurcoin,lateminer/DopeCoinGold,keo/bitcoin,BTCfork/hardfork_prototype_1_mvf-core,TheSeven/ppcoin,WorldLeadCurrency/WLC,tdudz/elements,dan-mi-sun/bitcoin,CTRoundTable/Encrypted.Cash,elacoin/elacoin,Cocosoft/bitcoin,itmanagerro/tresting,domob1812/crowncoin,UASF/bitcoin,oklink-dev/bitcoin,djpnewton/bitcoin,mruddy/bitcoin,cdecker/bitcoin,bitgoldcoin-project/bitgoldcoin,Har01d/bitcoin,dscotese/bitcoin,vericoin/vericoin-core,ArgonToken/ArgonToken,dooglus/clams,syscoin/syscoin2,mapineda/litecoin,saydulk/Feathercoin,BTCGPU/BTCGPU,dcousens/bitcoin,itmanagerro/tresting,BlueMeanie/PeerShares,ashleyholman/bitcoin,BTCDDev/bitcoin,Litecoindark/LTCD,cinnamoncoin/Feathercoin,karek314/bitcoin,lclc/bitcoin,JeremyRand/namecore,Exgibichi/statusquo,stevemyers/bitcoinxt,deadalnix/bitcoin,dannyperez/bolivarcoin,Dinarcoin/dinarcoin,ohac/sha1coin,viacoin/viacoin,bittylicious/bitcoin,MeshCollider/bitcoin,bankonmecoin/bitcoin,odemolliens/bitcoinxt,hophacker/bitcoin_malleability,rebroad/bitcoin,gmaxwell/bitcoin,jn2840/bitcoin,Checkcoin/checkcoin,Czarcoin/czarcoin,SandyCohen/mincoin,UASF/bitcoin,gzuser01/zetacoin-bitcoin,aspirecoin/aspire,xuyangcn/opalcoin,sickpig/BitcoinUnlimited,therealaltcoin/altcoin,GeopaymeEE/e-goldcoin,bitjson/hivemind,prusnak/bitcoin,compasscoin/compasscoin,czr5014iph/bitcoin4e,goldmidas/goldmidas,coinkeeper/2015-06-22_19-07_digitalcoin,initaldk/bitcoin,KillerByte/memorypool,achow101/bitcoin,jl2012/litecoin,prark/bitcoinxt,coinkeeper/2015-06-22_18-42_litecoin,dperel/bitcoin,coinkeeper/2015-06-22_18-46_razor,spiritlinxl/BTCGPU,reorder/viacoin,jl2012/litecoin,UdjinM6/dash,scippio/bitcoin,myriadcoin/myriadcoin,ivansib/sib16,111t8e/bitcoin,isocolsky/bitcoinxt,applecoin-official/fellatio,totallylegitbiz/totallylegitcoin,domob1812/namecore,KaSt/equikoin,ryanofsky/bitcoin,zzkt/solarcoin,CoinBlack/blackcoin,knolza/gamblr,vmp32k/litecoin,nsacoin/nsacoin,miguelfreitas/twister-core,cmgustavo/bitcoin,Kangmo/bitcoin,elcrypto/Pulse,arruah/ensocoin,bitcoinsSG/bitcoin,rjshaver/bitcoin,sirk390/bitcoin,NateBrune/bitcoin-nate,millennial83/bitcoin,wbchen99/bitcoin-hnote0,earthcoinproject/earthcoin,phelix/namecore,deuscoin/deuscoin,hasanatkazmi/bitcoin,gandrewstone/BitcoinUnlimited,sickpig/BitcoinUnlimited,mycointest/owncoin,MazaCoin/mazacoin-new,llluiop/bitcoin,AquariusNetwork/ARCO,funbucks/notbitcoinxt,prusnak/bitcoin,wbchen99/bitcoin-hnote0,zcoinofficial/zcoin,coinkeeper/2015-06-22_18-52_viacoin,blood2/bloodcoin-0.9,phelix/bitcoin,Theshadow4all/ShadowCoin,Petr-Economissa/gvidon,Geekcoin-Project/Geekcoin,tjth/lotterycoin,REAP720801/bitcoin,bitcoinplusorg/xbcwalletsource,torresalyssa/bitcoin,BTCfork/hardfork_prototype_1_mvf-core,irvingruan/bitcoin,DSPay/DSPay,kallewoof/bitcoin,shapiroisme/datadollar,Climbee/artcoin,Whitecoin-org/Whitecoin,gwangjin2/gwangcoin-core,ANCompany/birdcoin-dev,CoinGame/BCEShadowNet,whatrye/twister-core,compasscoin/compasscoin,kbccoin/kbc,lclc/bitcoin,shadowoneau/ozcoin,AllanDoensen/BitcoinUnlimited,Bluejudy/worldcoin,stevemyers/bitcoinxt,Dajackal/Ronpaulcoin,ericshawlinux/bitcoin,laudaa/bitcoin,kallewoof/elements,Bitcoin-com/BUcash,svost/bitcoin,bitpagar/bitpagar,kbccoin/kbc,dperel/bitcoin,Stakemaker/OMFGcoin,Matoking/bitcoin,ionux/freicoin,dgenr8/bitcoin,DGCDev/argentum,tjth/lotterycoin,ionux/freicoin,Darknet-Crypto/Darknet,ccoin-project/ccoin,brishtiteveja/sherlockholmescoin,KibiCoin/kibicoin,unsystemizer/bitcoin,kigooz/smalltest,MeshCollider/bitcoin,effectsToCause/vericoin,altcoinpro/addacoin,projectinterzone/ITZ,svost/bitcoin,pastday/bitcoinproject,karek314/bitcoin,bespike/litecoin,mb300sd/bitcoin,inutoshi/inutoshi,scamcoinz/scamcoin,donaloconnor/bitcoin,Litecoindark/LTCD,GroestlCoin/GroestlCoin,coinkeeper/2015-06-22_18-51_vertcoin,Flurbos/Flurbo,thesoftwarejedi/bitcoin,palm12341/jnc,Climbee/artcoin,MasterX1582/bitcoin-becoin,TripleSpeeder/bitcoin,dcousens/bitcoin,AllanDoensen/BitcoinUnlimited,Cancercoin/Cancercoin,upgradeadvice/MUE-Src,jn2840/bitcoin,earonesty/bitcoin,aniemerg/zcash,randy-waterhouse/bitcoin,TBoehm/greedynode,etercoin/etercoin,MazaCoin/mazacoin-new,united-scrypt-coin-project/unitedscryptcoin,ohac/sha1coin,neutrinofoundation/neutrino-digital-currency,pinkevich/dash,lbrtcoin/albertcoin,tripmode/pxlcoin,romanornr/viacoin,Theshadow4all/ShadowCoin,haobtc/bitcoin,senadmd/coinmarketwatch,jonasschnelli/bitcoin,UdjinM6/dash,Theshadow4all/ShadowCoin,richo/dongcoin,alexwaters/Bitcoin-Testing,phelixbtc/bitcoin,Michagogo/bitcoin,gorgoy/novacoin,drwasho/bitcoinxt,dooglus/clams,gwillen/elements,sebrandon1/bitcoin,Vsync-project/Vsync,accraze/bitcoin,okcashpro/okcash,ivansib/sib16,HeliumGas/helium,loxal/zcash,Alex-van-der-Peet/bitcoin,jn2840/bitcoin,REAP720801/bitcoin,FuzzyBearBTC/Peerunity,PRabahy/bitcoin,lbryio/lbrycrd,BTCGPU/BTCGPU,DynamicCoinOrg/DMC,rawodb/bitcoin,riecoin/riecoin,nathaniel-mahieu/bitcoin,royosherove/bitcoinxt,gapcoin/gapcoin,RazorLove/cloaked-octo-spice,stamhe/litecoin,senadmd/coinmarketwatch,butterflypay/bitcoin,Kabei/Ippan,dagurval/bitcoinxt,MarcoFalke/bitcoin,myriadteam/myriadcoin,FuzzyBearBTC/Peershares2,tdudz/elements,Sjors/bitcoin,syscoin/syscoin,Cancercoin/Cancercoin,bittylicious/bitcoin,vertcoin/eyeglass,SoreGums/bitcoinxt,robvanbentem/bitcoin,crowning2/dash,zcoinofficial/zcoin,domob1812/i0coin,magacoin/magacoin,BlueMeanie/PeerShares,DGCDev/digitalcoin,RongxinZhang/bitcoinxt,wbchen99/bitcoin-hnote0,r8921039/bitcoin,Open-Source-Coins/EZ,marcusdiaz/BitcoinUnlimited,yacoin/yacoin,GroundRod/anoncoin,CTRoundTable/Encrypted.Cash,LIMXTEC/DMDv3,cybermatatu/bitcoin,pevernon/picoin,plankton12345/litecoin,shadowoneau/ozcoin,btcdrak/bitcoin,Lucky7Studio/bitcoin,practicalswift/bitcoin,Kangmo/bitcoin,micryon/GPUcoin,nigeriacoin/nigeriacoin,biblepay/biblepay,Rav3nPL/polcoin,Rav3nPL/doubloons-08,cmgustavo/bitcoin,djpnewton/bitcoin,svost/bitcoin,Carrsy/PoundCoin,coinkeeper/2015-06-22_18-52_viacoin,Bloom-Project/Bloom,namecoin/namecoin-core,meighti/bitcoin,stamhe/novacoin,BitzenyCoreDevelopers/bitzeny,coinkeeper/2015-06-22_18-56_megacoin,masterbraz/dg,lordsajan/erupee,rromanchuk/bitcoinxt,daliwangi/bitcoin,jambolo/bitcoin,IlfirinCano/shavercoin,fujicoin/fujicoin,bitcoinclassic/bitcoinclassic,Czarcoin/czarcoin,djpnewton/bitcoin,masterbraz/dg,elliotolds/bitcoin,worldcoinproject/worldcoin-v0.8,appop/bitcoin,KaSt/ekwicoin,dooglus/bitcoin,peerdb/cors,royosherove/bitcoinxt,Rav3nPL/PLNcoin,dan-mi-sun/bitcoin,Theshadow4all/ShadowCoin,elcrypto/Pulse,imharrywu/fastcoin,bmp02050/ReddcoinUpdates,Peershares/Peershares,cotner/bitcoin,Kcoin-project/kcoin,jgarzik/bitcoin,btcdrak/bitcoin,alejandromgk/Lunar,yenliangl/bitcoin,joulecoin/joulecoin,mobicoins/mobicoin-core,mruddy/bitcoin,gades/novacoin,BitzenyCoreDevelopers/bitzeny,botland/bitcoin,Kixunil/keynescoin,GreenParhelia/bitcoin,credits-currency/credits,presstab/PIVX,aburan28/elements,BlueMeanie/PeerShares,starwalkerz/fincoin-fork,ivansib/sib16,meighti/bitcoin,haobtc/bitcoin,dmrtsvetkov/flowercoin,phelix/namecore,gades/novacoin,x-kalux/bitcoin_WiG-B,Rimbit/Wallets,dopecoin-dev/DopeCoinGold,dgarage/bc3,jakeva/bitcoin-pwcheck,butterflypay/bitcoin,cryptcoins/cryptcoin,coinkeeper/2015-06-22_18-52_viacoin,terracoin/terracoin,ludbb/bitcoin,PRabahy/bitcoin,Czarcoin/czarcoin,bitpay/bitcoin,gwangjin2/gwangcoin-core,pstratem/elements,domob1812/crowncoin,Exceltior/dogecoin,ghostlander/Orbitcoin,rat4/blackcoin,chrisfranko/aiden,HashUnlimited/Einsteinium-Unlimited,zsulocal/bitcoin,tensaix2j/bananacoin,dpayne9000/Rubixz-Coin,Crowndev/crowncoin,MitchellMintCoins/MortgageCoin,manuel-zulian/accumunet,dgarage/bc3,bitcoin/bitcoin,brightcoin/brightcoin,amaivsimau/bitcoin,borgcoin/Borgcoin1,haisee/dogecoin,Bitcoin-com/BUcash,credits-currency/credits,awemany/BitcoinUnlimited,prodigal-son/blackcoin,neuroidss/bitcoin,domob1812/huntercore,capitalDIGI/DIGI-v-0-10-4,skaht/bitcoin,steakknife/bitcoin-qt,cinnamoncoin/groupcoin-1,JeremyRand/namecore,Vector2000/bitcoin,wederw/bitcoin,CoinBlack/blackcoin,Kixunil/keynescoin,xawksow/GroestlCoin,czr5014iph/bitcoin4e,Action-Committee/Spaceballz,mockcoin/mockcoin,morcos/bitcoin,Krellan/bitcoin,coinkeeper/2015-06-22_18-56_megacoin,riecoin/riecoin,grumpydevelop/singularity,TurboStake/TurboStake,hsavit1/bitcoin,nbenoit/bitcoin,torresalyssa/bitcoin,zcoinofficial/zcoin,braydonf/bitcoin,ingresscoin/ingresscoin,martindale/elements,gavinandresen/bitcoin-git,shapiroisme/datadollar,Cloudsy/bitcoin,HerkCoin/herkcoin,szlaozhu/twister-core,phelix/bitcoin,nikkitan/bitcoin,Michagogo/bitcoin,bitpagar/bitpagar,marklai9999/Taiwancoin,peerdb/cors,qubitcoin-project/QubitCoinQ2C,zsulocal/bitcoin,hg5fm/nexuscoin,antcheck/antcoin,coinkeeper/2015-06-22_18-41_ixcoin,cqtenq/Feathercoin,npccoin/npccoin,ahmedbodi/vertcoin,gjhiggins/vcoin09,jameshilliard/bitcoin,royosherove/bitcoinxt,GeopaymeEE/e-goldcoin,Peershares/Peershares,monacoinproject/monacoin,rustyrussell/bitcoin,freelion93/mtucicoin,razor-coin/razor,scmorse/bitcoin,Kabei/Ippan,ajweiss/bitcoin,iQcoin/iQcoin,privatecoin/privatecoin,AkioNak/bitcoin,CoinBlack/bitcoin,sebrandon1/bitcoin,sirk390/bitcoin,dscotese/bitcoin,CoinProjects/AmsterdamCoin-v4,ashleyholman/bitcoin,particl/particl-core,josephbisch/namecoin-core,CoinProjects/AmsterdamCoin-v4,markf78/dollarcoin,ychaim/smallchange,zenywallet/bitzeny,jamesob/bitcoin,miguelfreitas/twister-core,Thracky/monkeycoin,chaincoin/chaincoin,Twyford/Indigo,deeponion/deeponion,netswift/vertcoin,cyrixhero/bitcoin,3lambert/Molecular,Kixunil/keynescoin,cotner/bitcoin,sproutcoin/sprouts,wiggi/fairbrix-0.6.3,Coinfigli/coinfigli,memorycoin/memorycoin,RibbitFROG/ribbitcoin,MarcoFalke/bitcoin,WorldcoinGlobal/WorldcoinLegacy,coblee/litecoin-old,Dajackal/Ronpaulcoin,CryptArc/bitcoinxt,Gazer022/bitcoin,alejandromgk/Lunar,GwangJin/gwangmoney-core,diggcoin/diggcoin,wiggi/huntercore,marlengit/hardfork_prototype_1_mvf-bu,greencoin-dev/digitalcoin,DynamicCoinOrg/DMC,FinalHashLLC/namecore,elecoin/elecoin,MonetaryUnit/MUE-Src,Peer3/homework,shea256/bitcoin,bitcoin-hivemind/hivemind,goldcoin/Goldcoin-GLD,Coinfigli/coinfigli,aniemerg/zcash,sarielsaz/sarielsaz,bdelzell/creditcoin-org-creditcoin,crowning-/dash,bickojima/bitzeny,dooglus/bitcoin,raasakh/bardcoin,jimblasko/UnbreakableCoin-master,willwray/dash,coinkeeper/2015-06-22_18-30_anoncoin,tobeyrowe/KitoniaCoin,ajtowns/bitcoin,coinkeeper/2015-06-22_18-30_anoncoin,PandaPayProject/PandaPay,daeMOn63/Peershares,tatafiore/mycoin,segwit/atbcoin-insight,Richcoin-Project/RichCoin,CoinGame/BCEShadowNet,FarhanHaque/bitcoin,gandrewstone/bitcoinxt,ddombrowsky/radioshares,Sjors/bitcoin,Gazer022/bitcoin,DigitalPandacoin/pandacoin,namecoin/namecoin-core,schinzelh/dash,joshrabinowitz/bitcoin,Bitcoin-com/BUcash,s-matthew-english/bitcoin,bitchip/bitchip,shaolinfry/litecoin,goldmidas/goldmidas,joshrabinowitz/bitcoin,namecoin/namecoin-core,Mrs-X/Darknet,bfroemel/smallchange,deadalnix/bitcoin,lateminer/bitcoin,segwit/atbcoin-insight,anditto/bitcoin,greencoin-dev/digitalcoin,mm-s/bitcoin,cqtenq/Feathercoin,DGCDev/argentum,gwillen/elements,themusicgod1/bitcoin,SmeltFool/Wonker,bdelzell/creditcoin-org-creditcoin,NateBrune/bitcoin-fio,zebrains/Blotter,jameshilliard/bitcoin,cinnamoncoin/groupcoin-1,TeamBitBean/bitcoin-core,schinzelh/dash,deeponion/deeponion,zcoinofficial/zcoin,practicalswift/bitcoin,KaSt/equikoin,vectorcoindev/Vector,kleetus/bitcoinxt,Bitcoinsulting/bitcoinxt,howardrya/AcademicCoin,coinkeeper/2015-06-22_18-36_darkcoin,pocopoco/yacoin,pelorusjack/BlockDX,FuzzyBearBTC/Peershares2,arnuschky/bitcoin,andres-root/bitcoinxt,aburan28/elements,ghostlander/Feathercoin,tjth/lotterycoin,kevcooper/bitcoin,zetacoin/zetacoin,3lambert/Molecular,bitpay/bitcoin,se3000/bitcoin,peacedevelop/peacecoin,coinerd/krugercoin,BTCfork/hardfork_prototype_1_mvf-bu,lateminer/DopeCoinGold,bitshares/bitshares-pts,MeshCollider/bitcoin,Exgibichi/statusquo,nlgcoin/guldencoin-official,welshjf/bitcoin,byncoin-project/byncoin,goku1997/bitcoin,jonghyeopkim/bitcoinxt,FinalHashLLC/namecore,howardrya/AcademicCoin,Jcing95/iop-hd,GroestlCoin/GroestlCoin,SartoNess/BitcoinUnlimited,uphold/bitcoin,jlcurby/NobleCoin,IlfirinIlfirin/shavercoin,Rav3nPL/bitcoin,qtumproject/qtum,andreaskern/bitcoin,bdelzell/creditcoin-org-creditcoin,dgenr8/bitcoin,jtimon/elements,megacoin/megacoin,cculianu/bitcoin-abc,segsignal/bitcoin,dobbscoin/dobbscoin-source,fsb4000/novacoin,guncoin/guncoin,united-scrypt-coin-project/unitedscryptcoin,fanquake/bitcoin,ahmedbodi/test2,svcop3/svcop3,viacoin/viacoin,ClusterCoin/ClusterCoin,maraoz/proofcoin,IlfirinCano/shavercoin,ahmedbodi/vertcoin,21E14/bitcoin,nightlydash/darkcoin,elacoin/elacoin,HashUnlimited/Einsteinium-Unlimited,sbaks0820/bitcoin,syscoin/syscoin,xieta/mincoin,domob1812/namecore,DynamicCoinOrg/DMC,scamcoinz/scamcoin,wiggi/fairbrix-0.6.3,MazaCoin/mazacoin-new,svost/bitcoin,FrictionlessCoin/iXcoin,bespike/litecoin,GIJensen/bitcoin,robvanbentem/bitcoin,JeremyRand/bitcoin,starwels/starwels,Kogser/bitcoin,goku1997/bitcoin,DSPay/DSPay,sebrandon1/bitcoin,grumpydevelop/singularity,GroestlCoin/bitcoin,internaut-me/ppcoin,theuni/bitcoin,alejandromgk/Lunar,langerhans/dogecoin,Kogser/bitcoin,sirk390/bitcoin,florincoin/florincoin,djpnewton/bitcoin,gazbert/bitcoin,NunoEdgarGub1/elements,litecoin-project/litecoin,mitchellcash/bitcoin,Stakemaker/OMFGcoin,CodeShark/bitcoin,syscoin/syscoin,bitcoin-hivemind/hivemind,stamhe/bitcoin,dperel/bitcoin,bitcoinec/bitcoinec,jaromil/faircoin2,inkvisit/sarmacoins,morcos/bitcoin,DGCDev/digitalcoin,aburan28/elements,Blackcoin/blackcoin,crowning-/dash,daliwangi/bitcoin,zotherstupidguy/bitcoin,40thoughts/Coin-QualCoin,earonesty/bitcoin,shouhuas/bitcoin,fedoracoin-dev/fedoracoin,ccoin-project/ccoin,privatecoin/privatecoin,franko-org/franko,btcdrak/bitcoin,zottejos/merelcoin,PandaPayProject/PandaPay,nathaniel-mahieu/bitcoin,Justaphf/BitcoinUnlimited,litecoin-project/bitcoinomg,Earlz/dobbscoin-source,masterbraz/dg,tripmode/pxlcoin,Alex-van-der-Peet/bitcoin,imharrywu/fastcoin,zenywallet/bitzeny,nsacoin/nsacoin,scamcoinz/scamcoin,inutoshi/inutoshi,Gazer022/bitcoin,daveperkins-github/bitcoin-dev,antcheck/antcoin,jlopp/statoshi,droark/bitcoin,n1bor/bitcoin,ionomy/ion,bittylicious/bitcoin,andreaskern/bitcoin,JeremyRubin/bitcoin,BTCfork/hardfork_prototype_1_mvf-bu,DigiByte-Team/digibyte,TierNolan/bitcoin,Open-Source-Coins/EZ,vertcoin/vertcoin,domob1812/crowncoin,Cloudsy/bitcoin,icook/vertcoin,PIVX-Project/PIVX,stevemyers/bitcoinxt,landcoin-ldc/landcoin,memorycoin/memorycoin,shurcoin/shurcoin,shouhuas/bitcoin,fedoracoin-dev/fedoracoin,funkshelper/woodcoin-b,jlopp/statoshi,digideskio/namecoin,myriadcoin/myriadcoin,meighti/bitcoin,coinkeeper/2015-06-22_19-07_digitalcoin,Horrorcoin/horrorcoin,braydonf/bitcoin,Ziftr/ppcoin,braydonf/bitcoin,NunoEdgarGub1/elements,dgarage/bc2,ahmedbodi/vertcoin,coinkeeper/terracoin_20150327,MitchellMintCoins/MortgageCoin,jyap808/jumbucks,2XL/bitcoin,akabmikua/flowcoin,novacoin-project/novacoin,vizidrixfork/Peershares,janko33bd/bitcoin,mortalvikinglive/bitcoinlight,EthanHeilman/bitcoin,jlopp/statoshi,dakk/soundcoin,xeddmc/twister-core,syscoin/syscoin2,PandaPayProject/PandaPay,tropa/axecoin,daeMOn63/Peershares,litecoin-project/litecore-litecoin,tropa/axecoin,vcoin-project/vcoincore,capitalDIGI/litecoin,fullcoins/fullcoin,ripper234/bitcoin,laudaa/bitcoin,faircoin/faircoin,svost/bitcoin,ShwoognationHQ/bitcoin,core-bitcoin/bitcoin,markf78/dollarcoin,deuscoin/deuscoin,gandrewstone/BitcoinUnlimited,stamhe/ppcoin,ryanxcharles/bitcoin,accraze/bitcoin,Vsync-project/Vsync,lakepay/lake,bcpki/nonce2testblocks,Anoncoin/anoncoin,sstone/bitcoin,mastercoin-MSC/mastercore,shaolinfry/litecoin,litecoin-project/litecore-litecoin,deadalnix/bitcoin,SmeltFool/Wonker,KillerByte/memorypool,1185/starwels,Alonzo-Coeus/bitcoin,sipsorcery/bitcoin,hg5fm/nexuscoin,adpg211/bitcoin-master,ahmedbodi/bytecoin,elambert2014/novacoin,robvanmieghem/clams,simonmulser/bitcoin,myriadcoin/myriadcoin,domob1812/bitcoin,40thoughts/Coin-QualCoin,osuyuushi/laughingmancoin,pascalguru/florincoin,dogecoin/dogecoin,bmp02050/ReddcoinUpdates,initaldk/bitcoin,Diapolo/bitcoin,drwasho/bitcoinxt,gjhiggins/vcoin0.8zeta-dev,stamhe/novacoin,biblepay/biblepay,coinkeeper/2015-06-22_18-37_dogecoin,BitcoinUnlimited/BitcoinUnlimited,Lucky7Studio/bitcoin,gameunits/gameunits,FuzzyBearBTC/Peershares-1,ivansib/sib16,saydulk/Feathercoin,denverl/bitcoin,litecoin-project/bitcoinomg,fujicoin/fujicoin,osuyuushi/laughingmancoin,vericoin/vericoin-core,DynamicCoinOrg/DMC,penek/novacoin,sugruedes/bitcoinxt,bitgrowchain/bitgrow,ForceMajeure/BitPenny-Client-0.4.0.1,awemany/BitcoinUnlimited,pstratem/elements,bcpki/nonce2testblocks,lakepay/lake,mikehearn/bitcoinxt,zemrys/vertcoin,maaku/bitcoin,krzysztofwos/BitcoinUnlimited,LIMXTEC/DMDv3,chaincoin/chaincoin,CoinGame/BCEShadowNet,WorldLeadCurrency/WLC,novaexchange/EAC,greencoin-dev/digitalcoin,thelazier/dash,DigitalPandacoin/pandacoin,5mil/Tradecoin,1185/starwels,coinkeeper/megacoin_20150410_fixes,llluiop/bitcoin,Ziftr/ppcoin,elacoin/elacoin,TrainMAnB/vcoincore,pinheadmz/bitcoin,biblepay/biblepay,MonetaryUnit/MUE-Src,cannabiscoindev/cannabiscoin420,vertcoin/eyeglass,gjhiggins/vcoin09,oklink-dev/bitcoin,ekankyesme/bitcoinxt,neutrinofoundation/neutrino-digital-currency,jrick/bitcoin,monacoinproject/monacoin,javgh/bitcoin,starwels/starwels,CryptArc/bitcoin,MazaCoin/maza,segwit/atbcoin-insight,goldcoin/goldcoin,fussl/elements,lakepay/lake,prark/bitcoinxt,elambert2014/novacoin,gzuser01/zetacoin-bitcoin,NicolasDorier/bitcoin,marklai9999/Taiwancoin,richo/dongcoin,ghostlander/Feathercoin,vericoin/vericoin-core,DigitalPandacoin/pandacoin,Checkcoin/checkcoin,pinheadmz/bitcoin,Kabei/Ippan,shelvenzhou/BTCGPU,jaromil/faircoin2,jimmykiselak/lbrycrd,kevcooper/bitcoin,mruddy/bitcoin,zixan/bitcoin,lateminer/bitcoin,itmanagerro/tresting,Bitcoin-ABC/bitcoin-abc,vcoin-project/vcoin0.8zeta-dev,collapsedev/cashwatt,jgarzik/bitcoin,xurantju/bitcoin,Gazer022/bitcoin,KnCMiner/bitcoin,FrictionlessCoin/iXcoin,coinkeeper/2015-06-22_19-13_florincoin,ohac/sakuracoin,cdecker/bitcoin,JeremyRubin/bitcoin,FuzzyBearBTC/Peershares-1,elambert2014/cbx2,paveljanik/bitcoin,tuaris/bitcoin,PRabahy/bitcoin,madman5844/poundkoin,AquariusNetwork/ARCOv2,zetacoin/zetacoin,zzkt/solarcoin,mikehearn/bitcoinxt,2XL/bitcoin,11755033isaprimenumber/Feathercoin,KillerByte/memorypool,Earlz/renamedcoin,parvez3019/bitcoin,brishtiteveja/sherlockcoin,ticclassic/ic,my-first/octocoin,greencoin-dev/GreenCoinV2,aburan28/elements,BTCTaras/bitcoin,vcoin-project/vcoincore,shadowproject/shadow,kevin-cantwell/crunchcoin,thelazier/dash,dgarage/bc3,Flowdalic/bitcoin,gcc64/bitcoin,oklink-dev/bitcoin_block,bcpki/bitcoin,coinkeeper/2015-06-22_18-51_vertcoin,midnight-miner/LasVegasCoin,jgarzik/bitcoin,balajinandhu/bitcoin,5mil/SuperTurboStake,btcdrak/bitcoin,kevcooper/bitcoin,my-first/octocoin,zcoinofficial/zcoin,daeMOn63/Peershares,achow101/bitcoin,TGDiamond/Diamond,loxal/zcash,markf78/dollarcoin,kleetus/bitcoinxt,Earlz/dobbscoin-source,BigBlueCeiling/augmentacoin,kbccoin/kbc,daveperkins-github/bitcoin-dev,sipsorcery/bitcoin,jn2840/bitcoin,bitbrazilcoin-project/bitbrazilcoin,Mrs-X/Darknet,supcoin/supcoin,domob1812/crowncoin,FrictionlessCoin/iXcoin,nochowderforyou/clams,nathaniel-mahieu/bitcoin,zixan/bitcoin,kryptokredyt/ProjektZespolowyCoin,Kcoin-project/kcoin,bitcoinec/bitcoinec,experiencecoin/experiencecoin,namecoin/namecore,krzysztofwos/BitcoinUnlimited,MasterX1582/bitcoin-becoin,Alex-van-der-Peet/bitcoin,apoelstra/bitcoin,BeirdoMud/MudCoin,Mrs-X/Darknet,basicincome/unpcoin-core,gapcoin/gapcoin,schildbach/bitcoin,llluiop/bitcoin,brettwittam/geocoin,javgh/bitcoin,netswift/vertcoin,nmarley/dash,d5000/ppcoin,GroestlCoin/GroestlCoin,blackcoinhelp/blackcoin,MitchellMintCoins/MortgageCoin,webdesignll/coin,blackcoinhelp/blackcoin,franko-org/franko,namecoin/namecore,dexX7/bitcoin,sebrandon1/bitcoin,mrbandrews/bitcoin,brishtiteveja/truthcoin-cpp,Mirobit/bitcoin,XX-net/twister-core,bcpki/nonce2,mrbandrews/bitcoin,genavarov/brcoin,Diapolo/bitcoin,n1bor/bitcoin,HashUnlimited/Einsteinium-Unlimited,PIVX-Project/PIVX,ediston/energi,jimmysong/bitcoin,ppcoin/ppcoin,RyanLucchese/energi,icook/vertcoin,keesdewit82/LasVegasCoin,djpnewton/bitcoin,mapineda/litecoin,bcpki/nonce2testblocks,npccoin/npccoin,mortalvikinglive/bitcoinclassic,kseistrup/twister-core,dmrtsvetkov/flowercoin,Thracky/monkeycoin,superjudge/bitcoin,gjhiggins/vcoin09,daveperkins-github/bitcoin-dev,funkshelper/woodcore,sugruedes/bitcoin,MoMoneyMonetarism/ppcoin,collapsedev/circlecash,nbenoit/bitcoin,robvanmieghem/clams,pstratem/elements,snakie/ppcoin,coinkeeper/2015-06-22_18-56_megacoin,oleganza/bitcoin-duo,XertroV/bitcoin-nulldata,koharjidan/litecoin,Peer3/homework,npccoin/npccoin,bitpay/bitcoin,Kore-Core/kore,omefire/bitcoin,jimmysong/bitcoin,GeopaymeEE/e-goldcoin,odemolliens/bitcoinxt,denverl/bitcoin,jyap808/jumbucks,gameunits/gameunits,prark/bitcoinxt,chrisfranko/aiden,IOCoin/iocoin,rawodb/bitcoin,wcwu/bitcoin,alecalve/bitcoin,killerstorm/bitcoin,TripleSpeeder/bitcoin,vmp32k/litecoin,segwit/atbcoin-insight,cyrixhero/bitcoin,mortalvikinglive/bitcoinlight,gzuser01/zetacoin-bitcoin,Bluejudy/worldcoin,Jeff88Ho/bitcoin,xieta/mincoin,GroestlCoin/bitcoin,sbaks0820/bitcoin,worldbit/worldbit,FeatherCoin/Feathercoin,my-first/octocoin,TheoremCrypto/TheoremCoin,Mirobit/bitcoin,snakie/ppcoin,instagibbs/bitcoin,TheSeven/ppcoin,knolza/gamblr,PIVX-Project/PIVX,mmpool/coiledcoin,truthcoin/blocksize-market,florincoin/florincoin,practicalswift/bitcoin,Peerapps/ppcoin,rdqw/sscoin,BitcoinHardfork/bitcoin,FuzzyBearBTC/peercoin,MonetaryUnit/MUE-Src,keo/bitcoin,tatafiore/mycoin,qubitcoin-project/QubitCoinQ2C,XX-net/twister-core,RibbitFROG/ribbitcoin,lbrtcoin/albertcoin,dcousens/bitcoin,achow101/bitcoin,Dajackal/Ronpaulcoin,prark/bitcoinxt,GroestlCoin/GroestlCoin,mikehearn/bitcoinxt,sifcoin/sifcoin,wangxinxi/litecoin,particl/particl-core,Climbee/artcoin,mitchellcash/bitcoin,dev1972/Satellitecoin,elambert2014/cbx2,enlighter/Feathercoin,SproutsEx/SproutsExtreme,ingresscoin/ingresscoin,mockcoin/mockcoin,ctwiz/stardust,Kangmo/bitcoin,BitcoinPOW/BitcoinPOW,randy-waterhouse/bitcoin,Domer85/dogecoin,svcop3/svcop3,som4paul/BolieC,m0gliE/fastcoin-cli,xranby/blackcoin,redfish64/nomiccoin,dperel/bitcoin,Geekcoin-Project/Geekcoin,sipsorcery/bitcoin,hasanatkazmi/bitcoin,koltcoin/koltcoin,stamhe/bitcoin,ftrader-bitcoinabc/bitcoin-abc,lbryio/lbrycrd,ixcoinofficialpage/master,sickpig/BitcoinUnlimited,bickojima/bitzeny,krzysztofwos/BitcoinUnlimited,kbccoin/kbc,pastday/bitcoinproject,gazbert/bitcoin,apoelstra/elements,21E14/bitcoin,atgreen/bitcoin,greenaddress/bitcoin,isocolsky/bitcoinxt,amaivsimau/bitcoin,pelorusjack/BlockDX,Crowndev/crowncoin,KnCMiner/bitcoin,botland/bitcoin,redfish64/nomiccoin,bitshares/bitshares-pts,stevemyers/bitcoinxt,UFOCoins/ufo,cryptoprojects/ultimateonlinecash,djtms/ltc,tobeyrowe/smallchange,5mil/SuperTurboStake,scamcoinz/scamcoin,ClusterCoin/ClusterCoin,Rav3nPL/bitcoin,UFOCoins/ufo,sigmike/peercoin,Exceltior/dogecoin,oleganza/bitcoin-duo,cryptcoins/cryptcoin,webdesignll/coin,zebrains/Blotter,steakknife/bitcoin-qt,IOCoin/DIONS,Har01d/bitcoin,schildbach/bitcoin,JeremyRand/namecoin-core,dexX7/mastercore,reddcoin-project/reddcoin,kevcooper/bitcoin,fullcoins/fullcoin,parvez3019/bitcoin,rjshaver/bitcoin,dopecoin-dev/DopeCoinGold,CarpeDiemCoin/CarpeDiemLaunch,rebroad/bitcoin,tecnovert/particl-core,elambert2014/novacoin,ANCompany/birdcoin-dev,xXDavasXx/Davascoin,Bushstar/UFO-Project,celebritycoin/CelebrityCoin,shea256/bitcoin,pastday/bitcoinproject,genavarov/brcoin,iosdevzone/bitcoin,zestcoin/ZESTCOIN,petertodd/bitcoin,SmeltFool/Wonker,vmp32k/litecoin,Earlz/renamedcoin,mobicoins/mobicoin-core,thormuller/yescoin2,CTRoundTable/Encrypted.Cash,neureal/noocoin,HeliumGas/helium,coinkeeper/2015-06-22_18-46_razor,mmpool/coiledcoin,cdecker/bitcoin,ShadowMyst/creativechain-core,marlengit/hardfork_prototype_1_mvf-bu,wtogami/bitcoin,hasanatkazmi/bitcoin,rawodb/bitcoin,janko33bd/bitcoin,OfficialTitcoin/titcoin-wallet,raasakh/bardcoin.exe,nathaniel-mahieu/bitcoin,ctwiz/stardust,mitchellcash/bitcoin,wtogami/bitcoin,ahmedbodi/terracoin,UASF/bitcoin,ptschip/bitcoin,romanornr/viacoin,bittylicious/bitcoin,haobtc/bitcoin,skaht/bitcoin,coinkeeper/2015-04-19_21-20_litecoindark,IOCoin/DIONS,bitcoinplusorg/xbcwalletsource,xurantju/bitcoin,thesoftwarejedi/bitcoin,shadowproject/shadow,viacoin/viacoin,brandonrobertz/namecoin-core,faircoin/faircoin,IOCoin/DIONS,patricklodder/dogecoin,razor-coin/razor,n1bor/bitcoin,dcousens/bitcoin,sdaftuar/bitcoin,tdudz/elements,spiritlinxl/BTCGPU,karek314/bitcoin,capitalDIGI/DIGI-v-0-10-4,manuel-zulian/accumunet,welshjf/bitcoin,nbenoit/bitcoin,BitcoinUnlimited/BitcoinUnlimited,howardrya/AcademicCoin,imton/bitcoin,MoMoneyMonetarism/ppcoin,shadowproject/shadow,arruah/ensocoin,xieta/mincoin,ahmedbodi/temp_vert,zsulocal/bitcoin,peercoin/peercoin,d5000/ppcoin,dcousens/bitcoin,FuzzyBearBTC/Peershares2,langerhans/dogecoin,ionux/freicoin,zotherstupidguy/bitcoin,phelix/namecore,Ziftr/ppcoin,REAP720801/bitcoin,coinkeeper/2015-06-22_18-52_viacoin,roques/bitcoin,Kangmo/bitcoin,saydulk/Feathercoin,ahmedbodi/Bytecoin-MM,yenliangl/bitcoin,afk11/bitcoin,xeddmc/twister-core,ArgonToken/ArgonToken,ElementsProject/elements,degenorate/Deftcoin,nightlydash/darkcoin,JeremyRubin/bitcoin,hg5fm/nexuscoin,DigitalPandacoin/pandacoin,pinheadmz/bitcoin,zcoinofficial/zcoin,dan-mi-sun/bitcoin,dcousens/bitcoin,rsdevgun16e/energi,inkvisit/sarmacoins,Whitecoin-org/Whitecoin,internaut-me/ppcoin,monacoinproject/monacoin,Bushstar/UFO-Project,emc2foundation/einsteinium,dobbscoin/dobbscoin-source,chaincoin/chaincoin,simdeveloper/bitcoin,Lucky7Studio/bitcoin,Whitecoin-org/Whitecoin,TierNolan/bitcoin,isocolsky/bitcoinxt,SmeltFool/Yippe-Hippe,jmgilbert2/energi,111t8e/bitcoin,vtafaucet/virtacoin,svcop3/svcop3,Rav3nPL/doubloons-08,qtumproject/qtum,dobbscoin/dobbscoin-source,Chancoin-core/CHANCOIN,n1bor/bitcoin,and2099/twister-core,MazaCoin/maza,guncoin/guncoin,martindale/elements,Diapolo/bitcoin,BTCfork/hardfork_prototype_1_mvf-core,mrtexaznl/mediterraneancoin,bitcoin/bitcoin,SmeltFool/Yippe-Hippe,elambert2014/novacoin,mrbandrews/bitcoin,balajinandhu/bitcoin,Exgibichi/statusquo,SmeltFool/Yippe-Hippe,celebritycoin/investorcoin,renatolage/wallets-BRCoin,mastercoin-MSC/mastercore,hyperwang/bitcoin,vtafaucet/virtacoin,iosdevzone/bitcoin,nomnombtc/bitcoin,argentumproject/argentum,ftrader-bitcoinabc/bitcoin-abc,truthcoin/truthcoin-cpp,benma/bitcoin,bfroemel/smallchange,phplaboratory/psiacoin,Ziftr/ppcoin,Petr-Economissa/gvidon,cybermatatu/bitcoin,coinwarp/dogecoin,CryptArc/bitcoin,litecoin-project/litecoin,peerdb/cors,gjhiggins/vcoin09,IOCoin/DIONS,cainca/liliucoin,rromanchuk/bitcoinxt,coinkeeper/2015-06-22_18-39_feathercoin,matlongsi/micropay,psionin/smartcoin,javgh/bitcoin,ptschip/bitcoinxt,metacoin/florincoin,terracoin/terracoin,coinkeeper/2015-06-22_18-30_anoncoin,funbucks/notbitcoinxt,vectorcoindev/Vector,valorbit/valorbit-oss,thormuller/yescoin2,bitbrazilcoin-project/bitbrazilcoin,compasscoin/compasscoin,wederw/bitcoin,LanaCoin/lanacoin,Kogser/bitcoin,lbrtcoin/albertcoin,raasakh/bardcoin.exe,Xekyo/bitcoin,ingresscoin/ingresscoin,diggcoin/diggcoin,mapineda/litecoin,ddombrowsky/radioshares,zsulocal/bitcoin,Mrs-X/Darknet,enlighter/Feathercoin,KibiCoin/kibicoin,patricklodder/dogecoin,imharrywu/fastcoin,qtumproject/qtum,bootycoin-project/bootycoin,x-kalux/bitcoin_WiG-B,peercoin/peercoin,razor-coin/razor,Erkan-Yilmaz/twister-core,vbernabe/freicoin,phelix/bitcoin,bitcoinsSG/zcash,patricklodder/dogecoin,NunoEdgarGub1/elements,ahmedbodi/Bytecoin-MM,d5000/ppcoin,anditto/bitcoin,parvez3019/bitcoin,Checkcoin/checkcoin,atgreen/bitcoin,ForceMajeure/BitPenny-Client,MikeAmy/bitcoin,blood2/bloodcoin-0.9,nvmd/bitcoin,razor-coin/razor,braydonf/bitcoin,kallewoof/elements,Mirobit/bitcoin,UdjinM6/dash,snakie/ppcoin,TurboStake/TurboStake,nochowderforyou/clams,oklink-dev/bitcoin,prodigal-son/blackcoin,coblee/litecoin-old,habibmasuro/bitcoinxt,ceptacle/libcoinqt,robvanmieghem/clams,internaut-me/ppcoin,Anfauglith/iop-hd,RHavar/bitcoin,rawodb/bitcoin,trippysalmon/bitcoin,llamasoft/ProtoShares_Cycle,roques/bitcoin,gorgoy/novacoin,genavarov/lamacoin,cculianu/bitcoin-abc,phelixbtc/bitcoin,Cancercoin/Cancercoin,thormuller/yescoin2,cdecker/bitcoin,fussl/elements,petertodd/bitcoin,hophacker/bitcoin_malleability,czr5014iph/bitcoin4e,DogTagRecon/Still-Leraning,SandyCohen/mincoin,experiencecoin/experiencecoin,mortalvikinglive/bitcoinlight,TheBlueMatt/bitcoin,vcoin-project/vcoincore,cannabiscoindev/cannabiscoin420,zemrys/vertcoin,superjudge/bitcoin,paveljanik/bitcoin,NateBrune/bitcoin-fio,jimmykiselak/lbrycrd,upgradeadvice/MUE-Src,zzkt/solarcoin,sbellem/bitcoin,Kogser/bitcoin,isghe/bitcoinxt,glv2/peerunity,osuyuushi/laughingmancoin,balajinandhu/bitcoin,pstratem/bitcoin,shadowproject/shadow,cinnamoncoin/Feathercoin,ForceMajeure/BitPenny-Client,ekankyesme/bitcoinxt,hg5fm/nexuscoin,bitreserve/bitcoin,gwillen/elements,Petr-Economissa/gvidon,ptschip/bitcoinxt,botland/bitcoin,vlajos/bitcoin,valorbit/valorbit-oss,11755033isaprimenumber/Feathercoin,Paymium/bitcoin,jl2012/litecoin,sirk390/bitcoin,sstone/bitcoin,butterflypay/bitcoin,bespike/litecoin,coinkeeper/2015-06-22_18-39_feathercoin,dannyperez/bolivarcoin,gwangjin2/gwangcoin-core,Bushstar/UFO-Project,pdrobek/Polcoin-1-3,llluiop/bitcoin,RibbitFROG/ribbitcoin,okinc/litecoin,GIJensen/bitcoin,diggcoin/diggcoin,gazbert/bitcoin,koharjidan/dogecoin,coinwarp/dogecoin,Megacoin2/Megacoin,npccoin/npccoin,unsystemizer/bitcoin,capitalDIGI/DIGI-v-0-10-4,Dajackal/Ronpaulcoin,jl2012/litecoin,Horrorcoin/horrorcoin,SmeltFool/Wonker,bcpki/nonce2,cryptoprojects/ultimateonlinecash,UFOCoins/ufo,meighti/bitcoin,supcoin/supcoin,48thct2jtnf/P,ardsu/bitcoin,Rav3nPL/bitcoin,zebrains/Blotter,prusnak/bitcoin,kazcw/bitcoin,coinkeeper/2015-06-22_18-45_peercoin,MazaCoin/mazacoin-new,jeromewu/bitcoin-opennet,byncoin-project/byncoin,Ziftr/ppcoin,sdaftuar/bitcoin,maraoz/proofcoin,jmcorgan/bitcoin,gandrewstone/bitcoinxt,tropa/axecoin,benzhi888/renminbi,RazorLove/cloaked-octo-spice,midnight-miner/LasVegasCoin,haraldh/bitcoin,erqan/twister-core,yacoin/yacoin,isle2983/bitcoin,Jheguy2/Mercury,pastday/bitcoinproject,mammix2/ccoin-dev,coinkeeper/2015-06-22_19-19_worldcoin,emc2foundation/einsteinium,Mirobit/bitcoin,manuel-zulian/CoMoNet,gavinandresen/bitcoin-git,czr5014iph/bitcoin4e,jul2711/jucoin,SartoNess/BitcoinUnlimited,Richcoin-Project/RichCoin,hasanatkazmi/bitcoin,40thoughts/Coin-QualCoin,MarcoFalke/bitcoin,pouta/bitcoin,MitchellMintCoins/AutoCoin,supcoin/supcoin,argentumproject/argentum,slingcoin/sling-market,kleetus/bitcoinxt,butterflypay/bitcoin,ediston/energi,okinc/bitcoin,forrestv/bitcoin,bitpay/bitcoin,ivansib/sibcoin,argentumproject/argentum,xieta/mincoin,genavarov/brcoin,nigeriacoin/nigeriacoin,Darknet-Crypto/Darknet,krzysztofwos/BitcoinUnlimited,applecoin-official/applecoin,Bluejudy/worldcoin,supcoin/supcoin,bdelzell/creditcoin-org-creditcoin,kleetus/bitcoinxt,OmniLayer/omnicore,rromanchuk/bitcoinxt,TierNolan/bitcoin,1185/starwels,inkvisit/sarmacoins,dannyperez/bolivarcoin,ftrader-bitcoinabc/bitcoin-abc,netswift/vertcoin,dooglus/bitcoin,ryanofsky/bitcoin,hsavit1/bitcoin,instagibbs/bitcoin,EntropyFactory/creativechain-core,prusnak/bitcoin,TBoehm/greedynode,Har01d/bitcoin,JeremyRand/namecore,slingcoin/sling-market,2XL/bitcoin,MOIN/moin,Someguy123/novafoil,zzkt/solarcoin,mruddy/bitcoin,inkvisit/sarmacoins,cmgustavo/bitcoin,AdrianaDinca/bitcoin,h4x3rotab/BTCGPU,jeromewu/bitcoin-opennet,ftrader-bitcoinunlimited/hardfork_prototype_1_mvf-bu,FeatherCoin/Feathercoin,majestrate/twister-core,jonasschnelli/bitcoin,novacoin-project/novacoin,REAP720801/bitcoin,m0gliE/fastcoin-cli,PIVX-Project/PIVX,btc1/bitcoin,ryanofsky/bitcoin,MonetaryUnit/MUE-Src,dooglus/bitcoin,ShadowMyst/creativechain-core,rdqw/sscoin,achow101/bitcoin,world-bank/unpay-core,denverl/bitcoin,Czarcoin/czarcoin,slimcoin-project/Slimcoin,zotherstupidguy/bitcoin,lateminer/bitcoin,celebritycoin/investorcoin,ryanxcharles/bitcoin,aciddude/Feathercoin,iadix/iadixcoin,Rav3nPL/PLNcoin,goku1997/bitcoin,dan-mi-sun/bitcoin,tjth/lotterycoin,greenaddress/bitcoin,jambolo/bitcoin,erikYX/yxcoin-FIRST,dscotese/bitcoin,howardrya/AcademicCoin,Coinfigli/coinfigli,coinkeeper/2015-06-22_18-46_razor,CryptArc/bitcoinxt,taenaive/zetacoin,Kabei/Ippan,leofidus/glowing-octo-ironman,benma/bitcoin,p2peace/oliver-twister-core,5mil/Bolt,cheehieu/bitcoin,coinkeeper/2015-06-22_18-52_viacoin,ftrader-bitcoinunlimited/hardfork_prototype_1_mvf-bu,LanaCoin/lanacoin,aspirecoin/aspire,coinkeeper/2015-06-22_18-31_bitcoin,anditto/bitcoin,MoMoneyMonetarism/ppcoin,palm12341/jnc,Kogser/bitcoin,gmaxwell/bitcoin,Rav3nPL/doubloons-08,reorder/viacoin,pastday/bitcoinproject,thesoftwarejedi/bitcoin,Carrsy/PoundCoin,bitcoin-hivemind/hivemind,drwasho/bitcoinxt,okinc/bitcoin,coinkeeper/2015-06-22_18-39_feathercoin,knolza/gamblr,supcoin/supcoin,richo/dongcoin,BigBlueCeiling/augmentacoin,jimblasko/2015_UNB_Wallets,dakk/soundcoin,BTCfork/hardfork_prototype_1_mvf-bu,psionin/smartcoin,lbrtcoin/albertcoin,cannabiscoindev/cannabiscoin420,elcrypto/Pulse,IlfirinCano/shavercoin,genavarov/ladacoin,manuel-zulian/CoMoNet,petertodd/bitcoin,rat4/blackcoin,marcusdiaz/BitcoinUnlimited,coinkeeper/2015-06-22_19-00_ziftrcoin,javgh/bitcoin,fullcoins/fullcoin,ronpaulcoin/ronpaulcoin,greencoin-dev/GreenCoinV2,coinkeeper/2015-06-22_18-31_bitcoin,btc1/bitcoin,djtms/ltc,dashpay/dash,drwasho/bitcoinxt,millennial83/bitcoin,IOCoin/DIONS,brishtiteveja/sherlockholmescoin,projectinterzone/ITZ,shapiroisme/datadollar,rat4/blackcoin,gjhiggins/vcoincore,myriadteam/myriadcoin,globaltoken/globaltoken,Electronic-Gulden-Foundation/egulden,TheSeven/ppcoin,ghostlander/Orbitcoin,ALEXIUMCOIN/alexium,Charlesugwu/Vintagecoin,Mrs-X/PIVX,FrictionlessCoin/iXcoin,MitchellMintCoins/AutoCoin,worldcoinproject/worldcoin-v0.8,Exceltior/dogecoin,senadj/yacoin,zemrys/vertcoin,Crypto-Currency/BitBar,marscoin/marscoin,mortalvikinglive/bitcoinclassic,Rav3nPL/PLNcoin,vcoin-project/vcoin0.8zeta-dev,jmcorgan/bitcoin,rebroad/bitcoin,brightcoin/brightcoin,instagibbs/bitcoin,domob1812/namecore,koharjidan/dogecoin,bitcoinclassic/bitcoinclassic,ericshawlinux/bitcoin,ShadowMyst/creativechain-core,laanwj/bitcoin-qt,Horrorcoin/horrorcoin,yacoin/yacoin,Cancercoin/Cancercoin,BTCDDev/bitcoin,pinkevich/dash,deuscoin/deuscoin,hg5fm/nexuscoin,marlengit/BitcoinUnlimited,altcoinpro/addacoin,coinkeeper/megacoin_20150410_fixes,Flurbos/Flurbo,bcpki/nonce2,jlay11/sharecoin,rnicoll/dogecoin,paveljanik/bitcoin,thrasher-/litecoin,bcpki/bitcoin,nathan-at-least/zcash,m0gliE/fastcoin-cli,Rav3nPL/doubloons-0.10,40thoughts/Coin-QualCoin,Exceltior/dogecoin,brishtiteveja/truthcoin-cpp,Flowdalic/bitcoin,cryptcoins/cryptcoin,benosa/bitcoin,djtms/ltc,appop/bitcoin,h4x3rotab/BTCGPU,zetacoin/zetacoin,Chancoin-core/CHANCOIN,PIVX-Project/PIVX,earthcoinproject/earthcoin,denverl/bitcoin,bfroemel/smallchange,bickojima/bitzeny,krzysztofwos/BitcoinUnlimited,elecoin/elecoin,coinkeeper/2015-06-22_19-19_worldcoin,x-kalux/bitcoin_WiG-B,ghostlander/Testcoin,kleetus/bitcoinxt,ShwoognationHQ/bitcoin,meighti/bitcoin,EntropyFactory/creativechain-core,arnuschky/bitcoin,gjhiggins/vcoincore,Adaryian/E-Currency,hyperwang/bitcoin,fanquake/bitcoin,privatecoin/privatecoin,terracoin/terracoin,aspirecoin/aspire,rdqw/sscoin,gmaxwell/bitcoin,lateminer/bitcoin,ryanxcharles/bitcoin,sproutcoin/sprouts,keo/bitcoin,jaromil/faircoin2,GroestlCoin/bitcoin,imton/bitcoin,CoinGame/BCEShadow,vectorcoindev/Vector,goldcoin/goldcoin,keesdewit82/LasVegasCoin,Earlz/dobbscoin-source,omefire/bitcoin,KaSt/ekwicoin,bitcoinplusorg/xbcwalletsource,tjps/bitcoin,novaexchange/EAC,stevemyers/bitcoinxt,acid1789/bitcoin,franko-org/franko,MasterX1582/bitcoin-becoin,xurantju/bitcoin,bitcoinplusorg/xbcwalletsource,celebritycoin/CelebrityCoin,madman5844/poundkoin,Kcoin-project/kcoin,greencoin-dev/greencoin-dev,shelvenzhou/BTCGPU,Horrorcoin/horrorcoin,bankonmecoin/bitcoin,XertroV/bitcoin-nulldata,coinkeeper/2015-06-22_18-46_razor,wederw/bitcoin,miguelfreitas/twister-core,Erkan-Yilmaz/twister-core,jonghyeopkim/bitcoinxt,appop/bitcoin,earonesty/bitcoin,namecoin/namecore,Mrs-X/Darknet,forrestv/bitcoin,joshrabinowitz/bitcoin,scippio/bitcoin,dgenr8/bitcoinxt,lbryio/lbrycrd,aniemerg/zcash,FuzzyBearBTC/Peershares,cybermatatu/bitcoin,sifcoin/sifcoin,Charlesugwu/Vintagecoin,ForceMajeure/BitPenny-Client-0.4.0.1,cddjr/BitcoinUnlimited,ArgonToken/ArgonToken,laanwj/bitcoin-qt,pevernon/picoin,ahmedbodi/Bytecoin-MM,bitcoinsSG/zcash,deeponion/deeponion,tuaris/bitcoin,likecoin-dev/bitcoin,rnicoll/bitcoin,gwangjin2/gwangcoin-core,nanocoins/mycoin,dev1972/Satellitecoin,joulecoin/joulecoin,Kefkius/clams,okinc/bitcoin,pinkmagicdev/SwagBucks,AquariusNetwork/ARCO,creath/barcoin,capitalDIGI/litecoin,awemany/BitcoinUnlimited,litecoin-project/litecore-litecoin,killerstorm/bitcoin,etercoin/etercoin,pstratem/bitcoin,jameshilliard/bitcoin,Bitcoin-ABC/bitcoin-abc,ftrader-bitcoinabc/bitcoin-abc,pstratem/elements,cyrixhero/bitcoin,initaldk/bitcoin,stamhe/litecoin,fsb4000/bitcoin,nochowderforyou/clams,ftrader-bitcoinabc/bitcoin-abc,Flurbos/Flurbo,nightlydash/darkcoin,stamhe/bitcoin,gmaxwell/bitcoin,btc1/bitcoin,koharjidan/litecoin,marlengit/hardfork_prototype_1_mvf-bu,WorldLeadCurrency/WLC,nailtaras/nailcoin,jiangyonghang/bitcoin,pinheadmz/bitcoin,funkshelper/woodcore,ElementsProject/elements,trippysalmon/bitcoin,Adaryian/E-Currency,coinkeeper/2015-06-22_19-07_digitalcoin,lclc/bitcoin,bmp02050/ReddcoinUpdates,dashpay/dash,48thct2jtnf/P,greencoin-dev/digitalcoin,cheehieu/bitcoin,nlgcoin/guldencoin-official,nigeriacoin/nigeriacoin,reddink/reddcoin,slimcoin-project/Slimcoin,vcoin-project/vcoin0.8zeta-dev,ohac/sha1coin,haraldh/bitcoin,benzmuircroft/REWIRE.io,core-bitcoin/bitcoin,martindale/elements,schinzelh/dash,koharjidan/bitcoin,mockcoin/mockcoin,majestrate/twister-core,morcos/bitcoin,SartoNess/BitcoinUnlimited,fanquake/bitcoin,slingcoin/sling-market,dashpay/dash,Adaryian/E-Currency,mrtexaznl/mediterraneancoin,GIJensen/bitcoin,jrick/bitcoin,killerstorm/bitcoin,BitcoinUnlimited/BitcoinUnlimited,jonasnick/bitcoin,zander/bitcoinclassic,jtimon/bitcoin,dev1972/Satellitecoin,thodg/ppcoin,totallylegitbiz/totallylegitcoin,benzhi888/renminbi,BitcoinPOW/BitcoinPOW,anditto/bitcoin,segwit/atbcoin-insight,aniemerg/zcash,nanocoins/mycoin,leofidus/glowing-octo-ironman,psionin/smartcoin,droark/bitcoin,btcdrak/bitcoin,tjps/bitcoin,OmniLayer/omnicore,Vector2000/bitcoin,Jcing95/iop-hd,capitalDIGI/litecoin,digibyte/digibyte,bitbrazilcoin-project/bitbrazilcoin,KibiCoin/kibicoin,TBoehm/greedynode,BTCTaras/bitcoin,coinkeeper/2015-06-22_19-19_worldcoin,loxal/zcash,benzmuircroft/REWIRE.io,bitcoinsSG/zcash,kleetus/bitcoin,raasakh/bardcoin.exe,faircoin/faircoin2,martindale/elements,Cocosoft/bitcoin,jamesob/bitcoin,fanquake/bitcoin,2XL/bitcoin,atgreen/bitcoin,nvmd/bitcoin,jiangyonghang/bitcoin,Kenwhite23/litecoin,vmp32k/litecoin,collapsedev/cashwatt,tuaris/bitcoin,Tetpay/bitcoin,vlajos/bitcoin,genavarov/ladacoin,Chancoin-core/CHANCOIN,mastercoin-MSC/mastercore,cinnamoncoin/Feathercoin,ludbb/bitcoin,dexX7/bitcoin,tripmode/pxlcoin,worldcoinproject/worldcoin-v0.8,aburan28/elements,botland/bitcoin,erqan/twister-core,Credit-Currency/CoinTestComp,pouta/bitcoin,simdeveloper/bitcoin,Dinarcoin/dinarcoin,koltcoin/koltcoin,scippio/bitcoin,bfroemel/smallchange,Earlz/renamedcoin,themusicgod1/bitcoin,jmgilbert2/energi,jrmithdobbs/bitcoin,renatolage/wallets-BRCoin,Rav3nPL/PLNcoin,coinkeeper/2015-06-22_18-37_dogecoin,Alonzo-Coeus/bitcoin,ColossusCoinXT/ColossusCoinXT,okinc/bitcoin,Har01d/bitcoin,mapineda/litecoin,CarpeDiemCoin/CarpeDiemLaunch,reddcoin-project/reddcoin,themusicgod1/bitcoin,bitgrowchain/bitgrow,SocialCryptoCoin/SocialCoin,Jheguy2/Mercury,collapsedev/circlecash,keisercoin-official/keisercoin,elcrypto/Pulse,tuaris/bitcoin,iadix/iadixcoin,rdqw/sscoin,GroestlCoin/bitcoin,ixcoinofficialpage/master,axelxod/braincoin,omefire/bitcoin,anditto/bitcoin,robvanmieghem/clams,jiangyonghang/bitcoin,freelion93/mtucicoin,altcoinpro/addacoin,GroundRod/anoncoin,FarhanHaque/bitcoin,Cloudsy/bitcoin,Peerapps/ppcoin,oleganza/bitcoin-duo,Xekyo/bitcoin,apoelstra/elements,sproutcoin/sprouts,mincoin-project/mincoin,vizidrixfork/Peershares,reorder/viacoin,CrimeaCoin/crimeacoin,jonasnick/bitcoin,iadix/iadixcoin,shaulkf/bitcoin,Christewart/bitcoin,Anfauglith/iop-hd,jimmykiselak/lbrycrd,multicoins/marycoin,dogecoin/dogecoin,ahmedbodi/bytecoin,marlengit/BitcoinUnlimited,RazorLove/cloaked-octo-spice,putinclassic/putic,Kenwhite23/litecoin,starwels/starwels,MeshCollider/bitcoin,kfitzgerald/titcoin,tatafiore/mycoin,BTCGPU/BTCGPU,Whitecoin-org/Whitecoin,mm-s/bitcoin,projectinterzone/ITZ,MazaCoin/maza,brishtiteveja/truthcoin-cpp,litecoin-project/litecoin,deadalnix/bitcoin,rnicoll/bitcoin,habibmasuro/bitcoinxt,marklai9999/Taiwancoin,celebritycoin/CelebrityCoin,40thoughts/Coin-QualCoin,Sjors/bitcoin,ixcoinofficialpage/master,cdecker/bitcoin,CoinGame/BCEShadow,oklink-dev/bitcoin_block,raasakh/bardcoin,domob1812/bitcoin,redfish64/nomiccoin,safecoin/safecoin,Michagogo/bitcoin,upgradeadvice/MUE-Src,sebrandon1/bitcoin,adpg211/bitcoin-master,Jheguy2/Mercury,RibbitFROG/ribbitcoin,alexwaters/Bitcoin-Testing,haraldh/bitcoin,FuzzyBearBTC/Peerunity,ZiftrCOIN/ziftrcoin,fedoracoin-dev/fedoracoin,mooncoin-project/mooncoin-landann,Action-Committee/Spaceballz,thunderrabbit/clams,funbucks/notbitcoinxt,manuel-zulian/CoMoNet,Ziftr/Peerunity,matlongsi/micropay,shaulkf/bitcoin,tropa/axecoin,BenjaminsCrypto/Benjamins-1,effectsToCause/vericoin,MazaCoin/maza,krzysztofwos/BitcoinUnlimited,joshrabinowitz/bitcoin,greencoin-dev/GreenCoinV2,neureal/noocoin,nathan-at-least/zcash,pataquets/namecoin-core,phorensic/yacoin,worldcoinproject/worldcoin-v0.8,mmpool/coiledcoin,KibiCoin/kibicoin,bitcoinknots/bitcoin,zottejos/merelcoin,CodeShark/bitcoin,bespike/litecoin,bcpki/nonce2,coinkeeper/2015-06-22_19-00_ziftrcoin,hsavit1/bitcoin,nmarley/dash,rsdevgun16e/energi,Crowndev/crowncoin,vericoin/vericoin-core,jakeva/bitcoin-pwcheck,pstratem/bitcoin,GreenParhelia/bitcoin,cerebrus29301/crowncoin,iosdevzone/bitcoin,shapiroisme/datadollar,DMDcoin/Diamond,randy-waterhouse/bitcoin,rat4/bitcoin,globaltoken/globaltoken,Coinfigli/coinfigli,ivansib/sibcoin,manuel-zulian/accumunet,FarhanHaque/bitcoin,neuroidss/bitcoin,FuzzyBearBTC/peercoin,coinkeeper/2015-06-22_18-36_darkcoin,brishtiteveja/truthcoin-cpp,REAP720801/bitcoin,pelorusjack/BlockDX,kfitzgerald/titcoin,tobeyrowe/KitoniaCoin,KaSt/equikoin,simonmulser/bitcoin,sifcoin/sifcoin,themusicgod1/bitcoin,experiencecoin/experiencecoin,cmgustavo/bitcoin,TGDiamond/Diamond,gjhiggins/vcoin0.8zeta-dev,morcos/bitcoin,SoreGums/bitcoinxt,ediston/energi,jakeva/bitcoin-pwcheck,ahmedbodi/temp_vert,ZiftrCOIN/ziftrcoin,morcos/bitcoin,gmaxwell/bitcoin,AllanDoensen/BitcoinUnlimited,BigBlueCeiling/augmentacoin,gandrewstone/BitcoinUnlimited,174high/bitcoin,lakepay/lake,apoelstra/bitcoin,ghostlander/Orbitcoin,bcpki/bitcoin,manuel-zulian/CoMoNet,gandrewstone/bitcoinxt,GroestlCoin/bitcoin,DMDcoin/Diamond,Jheguy2/Mercury,VsyncCrypto/Vsync,3lambert/Molecular,NunoEdgarGub1/elements,digibyte/digibyte,wiggi/fairbrix-0.6.3,reddink/reddcoin,Crowndev/crowncoin,ALEXIUMCOIN/alexium,grumpydevelop/singularity,goldcoin/Goldcoin-GLD,Bitcoin-com/BUcash,droark/elements,zebrains/Blotter,bickojima/bitzeny,tensaix2j/bananacoin,RongxinZhang/bitcoinxt,shaulkf/bitcoin,bitchip/bitchip,osuyuushi/laughingmancoin,DGCDev/argentum,cinnamoncoin/groupcoin-1,gandrewstone/bitcoinxt,droark/elements,s-matthew-english/bitcoin,Theshadow4all/ShadowCoin,Flurbos/Flurbo,domob1812/huntercore,Megacoin2/Megacoin,benzmuircroft/REWIRE.io,Rimbit/Wallets,instagibbs/bitcoin,coinkeeper/2015-06-22_18-56_megacoin,litecoin-project/bitcoinomg,taenaive/zetacoin,shadowproject/shadow,CrimeaCoin/crimeacoin,21E14/bitcoin,EntropyFactory/creativechain-core,aciddude/Feathercoin,RHavar/bitcoin,SproutsEx/SproutsExtreme,Credit-Currency/CoinTestComp,trippysalmon/bitcoin,nomnombtc/bitcoin,NicolasDorier/bitcoin,dannyperez/bolivarcoin,rustyrussell/bitcoin,stamhe/novacoin,ClusterCoin/ClusterCoin,Kcoin-project/kcoin,MarcoFalke/bitcoin,HashUnlimited/Einsteinium-Unlimited,gandrewstone/BitcoinUnlimited,vizidrixfork/Peershares,RyanLucchese/energi,borgcoin/Borgcoin1,dagurval/bitcoinxt,Lucky7Studio/bitcoin,bitcoinsSG/zcash,sipa/bitcoin,parvez3019/bitcoin,fussl/elements,amaivsimau/bitcoin,metrocoins/metrocoin,manuel-zulian/accumunet,particl/particl-core,stamhe/ppcoin,ElementsProject/elements,pstratem/elements,welshjf/bitcoin,OstlerDev/florincoin,untrustbank/litecoin,Mirobit/bitcoin,tobeyrowe/BitStarCoin,BitcoinUnlimited/BitcoinUnlimited,keesdewit82/LasVegasCoin,appop/bitcoin,OstlerDev/florincoin,multicoins/marycoin,coblee/litecoin-old,funbucks/notbitcoinxt,ticclassic/ic,midnight-miner/LasVegasCoin,tmagik/catcoin,Mrs-X/PIVX,genavarov/brcoin,sipa/elements,sipa/bitcoin,dpayne9000/Rubixz-Coin,odemolliens/bitcoinxt,jambolo/bitcoin,haraldh/bitcoin,phelixbtc/bitcoin,prodigal-son/blackcoin,pouta/bitcoin,basicincome/unpcoin-core,Lucky7Studio/bitcoin,meighti/bitcoin,dooglus/bitcoin,StarbuckBG/BTCGPU,Bitcoin-ABC/bitcoin-abc,jaromil/faircoin2,safecoin/safecoin,millennial83/bitcoin,gorgoy/novacoin,ardsu/bitcoin,p2peace/oliver-twister-core,zetacoin/zetacoin,multicoins/marycoin,RongxinZhang/bitcoinxt,maaku/bitcoin,RazorLove/cloaked-octo-spice,nightlydash/darkcoin,adpg211/bitcoin-master,rsdevgun16e/energi,MikeAmy/bitcoin,5mil/SuperTurboStake,cryptoprojects/ultimateonlinecash,rat4/bitcoin,senadj/yacoin,credits-currency/credits,myriadteam/myriadcoin,koharjidan/dogecoin,r8921039/bitcoin,litecoin-project/litecoin,Charlesugwu/Vintagecoin,domob1812/huntercore,oklink-dev/litecoin_block,2XL/bitcoin,sstone/bitcoin,madman5844/poundkoin,bitcoin/bitcoin,rnicoll/dogecoin,rromanchuk/bitcoinxt,bespike/litecoin,schildbach/bitcoin,vbernabe/freicoin,Tetpay/bitcoin,Action-Committee/Spaceballz,marlengit/BitcoinUnlimited,tmagik/catcoin,simonmulser/bitcoin,d5000/ppcoin,raasakh/bardcoin.exe,megacoin/megacoin,reorder/viacoin,ivansib/sibcoin,hophacker/bitcoin_malleability,lbryio/lbrycrd,cybermatatu/bitcoin,koharjidan/bitcoin,Erkan-Yilmaz/twister-core,scippio/bitcoin,Metronotes/bitcoin,bmp02050/ReddcoinUpdates,bcpki/testblocks,RazorLove/cloaked-octo-spice,coinkeeper/2015-06-22_18-51_vertcoin,MitchellMintCoins/MortgageCoin,etercoin/etercoin,putinclassic/putic,namecoin/namecore,ionux/freicoin,destenson/bitcoin--bitcoin,DMDcoin/Diamond,gandrewstone/BitcoinUnlimited,jiffe/cosinecoin,Ziftr/Peerunity,pevernon/picoin,brandonrobertz/namecoin-core,dooglus/clams,ahmedbodi/terracoin,Bitcoin-ABC/bitcoin-abc,Blackcoin/blackcoin,stamhe/litecoin,Cloudsy/bitcoin,gjhiggins/vcoincore,nochowderforyou/clams,ccoin-project/ccoin,dooglus/clams,midnight-miner/LasVegasCoin,EntropyFactory/creativechain-core,mooncoin-project/mooncoin-landann,acid1789/bitcoin,wangliu/bitcoin,fedoracoin-dev/fedoracoin,alexwaters/Bitcoin-Testing,rawodb/bitcoin,IOCoin/iocoin,torresalyssa/bitcoin,tripmode/pxlcoin,inkvisit/sarmacoins,myriadteam/myriadcoin,Kenwhite23/litecoin,isghe/bitcoinxt,stamhe/litecoin,n1bor/bitcoin,zetacoin/zetacoin,keisercoin-official/keisercoin,KibiCoin/kibicoin,bitcoinknots/bitcoin,constantine001/bitcoin,oklink-dev/bitcoin_block,ceptacle/libcoinqt,Dinarcoin/dinarcoin,haobtc/bitcoin,Domer85/dogecoin,dakk/soundcoin,josephbisch/namecoin-core,marscoin/marscoin,gapcoin/gapcoin,nlgcoin/guldencoin-official,dogecoin/dogecoin,ahmedbodi/terracoin,thodg/ppcoin,JeremyRand/namecoin-core,NateBrune/bitcoin-nate,achow101/bitcoin,Rav3nPL/polcoin,mincoin-project/mincoin,jiangyonghang/bitcoin,DogTagRecon/Still-Leraning,Rav3nPL/PLNcoin,jul2711/jucoin,apoelstra/elements,coinkeeper/2015-06-22_18-42_litecoin,czr5014iph/bitcoin4e,phelix/bitcoin,marklai9999/Taiwancoin,rjshaver/bitcoin,KillerByte/memorypool,szlaozhu/twister-core,jonasschnelli/bitcoin,GroundRod/anoncoin,wiggi/fairbrix-0.6.3,ivansib/sibcoin,tjps/bitcoin,h4x3rotab/BTCGPU,CoinBlack/bitcoin,JeremyRand/namecoin-core,brettwittam/geocoin,Richcoin-Project/RichCoin,brishtiteveja/sherlockcoin,TeamBitBean/bitcoin-core,IOCoin/DIONS,bitcoin-hivemind/hivemind,domob1812/huntercore,s-matthew-english/bitcoin,instagibbs/bitcoin,kevcooper/bitcoin,dan-mi-sun/bitcoin,Kogser/bitcoin,bitbrazilcoin-project/bitbrazilcoin,tmagik/catcoin,BTCDDev/bitcoin,ColossusCoinXT/ColossusCoinXT,litecoin-project/litecore-litecoin,ahmedbodi/bytecoin,Vector2000/bitcoin,donaloconnor/bitcoin,ohac/sakuracoin,ionux/freicoin,thodg/ppcoin,Flurbos/Flurbo,sbellem/bitcoin,WorldLeadCurrency/WLC,ajtowns/bitcoin,biblepay/biblepay,lateminer/DopeCoinGold,whatrye/twister-core,TeamBitBean/bitcoin-core,Carrsy/PoundCoin,loxal/zcash,blackcoinhelp/blackcoin,Kogser/bitcoin,tjth/lotterycoin,UFOCoins/ufo,BTCfork/hardfork_prototype_1_mvf-bu,digideskio/namecoin,xawksow/GroestlCoin,zotherstupidguy/bitcoin,rustyrussell/bitcoin,cryptodev35/icash,raasakh/bardcoin,zander/bitcoinclassic,rebroad/bitcoin,ghostlander/Feathercoin,CTRoundTable/Encrypted.Cash,jaromil/faircoin2,taenaive/zetacoin,loxal/zcash,p2peace/oliver-twister-core,yenliangl/bitcoin,CodeShark/bitcoin,NateBrune/bitcoin-fio,phplaboratory/psiacoin,goldcoin/goldcoin,jonasschnelli/bitcoin,senadj/yacoin,MikeAmy/bitcoin,starwalkerz/fincoin-fork,MOIN/moin,marlengit/BitcoinUnlimited,enlighter/Feathercoin,coinkeeper/2015-06-22_19-07_digitalcoin,gjhiggins/vcoincore,error10/bitcoin,PRabahy/bitcoin,Flowdalic/bitcoin,5mil/SuperTurboStake,neutrinofoundation/neutrino-digital-currency,jeromewu/bitcoin-opennet,zotherstupidguy/bitcoin,kigooz/smalltest,jnewbery/bitcoin,BitcoinPOW/BitcoinPOW,SoreGums/bitcoinxt,Rav3nPL/bitcoin,goku1997/bitcoin,namecoin/namecore,bootycoin-project/bootycoin,irvingruan/bitcoin,nathan-at-least/zcash,Bushstar/UFO-Project,ccoin-project/ccoin,isle2983/bitcoin,yenliangl/bitcoin,AllanDoensen/BitcoinUnlimited,neureal/noocoin,alecalve/bitcoin,DMDcoin/Diamond,worldbit/worldbit,ptschip/bitcoinxt,barcoin-project/nothingcoin,ctwiz/stardust,nomnombtc/bitcoin,Bitcoin-ABC/bitcoin-abc,x-kalux/bitcoin_WiG-B,TierNolan/bitcoin,royosherove/bitcoinxt,DigiByte-Team/digibyte,JeremyRand/bitcoin,cainca/liliucoin,thormuller/yescoin2,crowning-/dash,xranby/blackcoin,brishtiteveja/truthcoin-cpp,lordsajan/erupee,Cocosoft/bitcoin,PRabahy/bitcoin,mikehearn/bitcoin,marlengit/hardfork_prototype_1_mvf-bu,applecoin-official/applecoin,initaldk/bitcoin,wekuiz/wekoin,octocoin-project/octocoin,acid1789/bitcoin,initaldk/bitcoin,ctwiz/stardust,wekuiz/wekoin,ahmedbodi/Bytecoin-MM,szlaozhu/twister-core,GIJensen/bitcoin,Infernoman/crowncoin,chrisfranko/aiden,puticcoin/putic,kleetus/bitcoin,coinkeeper/2015-06-22_18-46_razor,tmagik/catcoin,hasanatkazmi/bitcoin,laudaa/bitcoin,laanwj/bitcoin-qt,jlcurby/NobleCoin,ticclassic/ic,ddombrowsky/radioshares,daliwangi/bitcoin,dagurval/bitcoinxt,PIVX-Project/PIVX,JeremyRand/bitcoin,shadowoneau/ozcoin,LanaCoin/lanacoin,zestcoin/ZESTCOIN,HeliumGas/helium,rat4/bitcoin,kleetus/bitcoin,robvanbentem/bitcoin,simdeveloper/bitcoin,npccoin/npccoin,bitcoinec/bitcoinec,majestrate/twister-core,kleetus/bitcoin,m0gliE/fastcoin-cli,ekankyesme/bitcoinxt,DogTagRecon/Still-Leraning,raasakh/bardcoin.exe,sebrandon1/bitcoin,dev1972/Satellitecoin,jamesob/bitcoin,amaivsimau/bitcoin,KnCMiner/bitcoin,truthcoin/blocksize-market,5mil/Tradecoin,5mil/Bolt,GlobalBoost/GlobalBoost,cerebrus29301/crowncoin,Metronotes/bitcoin,wbchen99/bitcoin-hnote0,micryon/GPUcoin,gzuser01/zetacoin-bitcoin,BTCGPU/BTCGPU,TheoremCrypto/TheoremCoin,cryptodev35/icash,bitgoldcoin-project/bitgoldcoin,brandonrobertz/namecoin-core,wcwu/bitcoin,blocktrail/bitcoin,JeremyRand/bitcoin,jlcurby/NobleCoin,lbrtcoin/albertcoin,manuel-zulian/accumunet,vertcoin/vertcoin,yenliangl/bitcoin,pataquets/namecoin-core,AdrianaDinca/bitcoin,czr5014iph/bitcoin4e,practicalswift/bitcoin,h4x3rotab/BTCGPU,jtimon/bitcoin,jrmithdobbs/bitcoin,vertcoin/vertcoin,senadj/yacoin,DigiByte-Team/digibyte,jiangyonghang/bitcoin,tjps/bitcoin,langerhans/dogecoin,AsteraCoin/AsteraCoin,kazcw/bitcoin,ixcoinofficialpage/master,wekuiz/wekoin,marlengit/hardfork_prototype_1_mvf-bu,MoMoneyMonetarism/ppcoin,wangxinxi/litecoin,sdaftuar/bitcoin,coinerd/krugercoin,Har01d/bitcoin,RongxinZhang/bitcoinxt,mikehearn/bitcoin,sigmike/peercoin,Michagogo/bitcoin,peacedevelop/peacecoin,gavinandresen/bitcoin-git,blocktrail/bitcoin,kfitzgerald/titcoin,basicincome/unpcoin-core,sigmike/peercoin,FinalHashLLC/namecore,lbrtcoin/albertcoin,ionux/freicoin,kirkalx/bitcoin,coinkeeper/2015-06-22_18-51_vertcoin,SproutsEx/SproutsExtreme,NunoEdgarGub1/elements,m0gliE/fastcoin-cli,Diapolo/bitcoin,DGCDev/digitalcoin,BTCTaras/bitcoin,Mrs-X/PIVX,apoelstra/bitcoin,SartoNess/BitcoinUnlimited,shelvenzhou/BTCGPU,AdrianaDinca/bitcoin,EthanHeilman/bitcoin,ryanxcharles/bitcoin,bitcoinsSG/zcash,cryptohelper/premine,Czarcoin/czarcoin,uphold/bitcoin,cybermatatu/bitcoin,multicoins/marycoin,Bitcoin-ABC/bitcoin-abc,RibbitFROG/ribbitcoin,totallylegitbiz/totallylegitcoin,initaldk/bitcoin,genavarov/lamacoin,xranby/blackcoin,robvanbentem/bitcoin,cryptocoins4all/zcoin,marscoin/marscoin,keisercoin-official/keisercoin,NicolasDorier/bitcoin,steakknife/bitcoin-qt,palm12341/jnc,jtimon/elements,wellenreiter01/Feathercoin,romanornr/viacoin,senadmd/coinmarketwatch,donaloconnor/bitcoin,jn2840/bitcoin,bitcoinxt/bitcoinxt,raasakh/bardcoin,petertodd/bitcoin,sarielsaz/sarielsaz,argentumproject/argentum,Enticed87/Decipher,kryptokredyt/ProjektZespolowyCoin,sugruedes/bitcoinxt,joroob/reddcoin,ftrader-bitcoinunlimited/hardfork_prototype_1_mvf-bu,zixan/bitcoin,credits-currency/credits,dperel/bitcoin,coinkeeper/2015-06-22_18-42_litecoin,CoinBlack/bitcoin,simonmulser/bitcoin,worldbit/worldbit,goldcoin/goldcoin,mapineda/litecoin,landcoin-ldc/landcoin,NateBrune/bitcoin-fio,midnightmagic/bitcoin,bespike/litecoin,miguelfreitas/twister-core,ohac/sha1coin,achow101/bitcoin,GlobalBoost/GlobalBoost,MasterX1582/bitcoin-becoin,segsignal/bitcoin,ddombrowsky/radioshares,jmcorgan/bitcoin,lclc/bitcoin,deeponion/deeponion,my-first/octocoin,AquariusNetwork/ARCOv2,nikkitan/bitcoin,afk11/bitcoin,CoinGame/BCEShadow,sarielsaz/sarielsaz,genavarov/ladacoin,lbrtcoin/albertcoin,MikeAmy/bitcoin,jimblasko/2015_UNB_Wallets,funbucks/notbitcoinxt,n1bor/bitcoin,millennial83/bitcoin,ekankyesme/bitcoinxt,stamhe/novacoin,qreatora/worldcoin-v0.8,DrCrypto/darkcoin,freelion93/mtucicoin,TrainMAnB/vcoincore,sipsorcery/bitcoin,manuel-zulian/CoMoNet,accraze/bitcoin,cryptocoins4all/zcoin,themusicgod1/bitcoin,h4x3rotab/BTCGPU,jl2012/litecoin,tobeyrowe/BitStarCoin,DynamicCoinOrg/DMC,TheBlueMatt/bitcoin,coinkeeper/2015-06-22_18-37_dogecoin,111t8e/bitcoin,xeddmc/twister-core,xeddmc/twister-core,jimblasko/2015_UNB_Wallets,Bitcoin-ABC/bitcoin-abc,BitcoinHardfork/bitcoin,Vector2000/bitcoin,Vector2000/bitcoin,digibyte/digibyte,ptschip/bitcoinxt,scamcoinz/scamcoin,Anoncoin/anoncoin,DGCDev/argentum,faircoin/faircoin,benzhi888/renminbi,arruah/ensocoin,Krellan/bitcoin,braydonf/bitcoin,OmniLayer/omnicore,vmp32k/litecoin,sbellem/bitcoin,awemany/BitcoinUnlimited,bitgoldcoin-project/bitgoldcoin,UASF/bitcoin,vbernabe/freicoin,sifcoin/sifcoin,ryanofsky/bitcoin,llluiop/bitcoin,TheBlueMatt/bitcoin,WorldcoinGlobal/WorldcoinLegacy,MazaCoin/maza,blocktrail/bitcoin,fujicoin/fujicoin,leofidus/glowing-octo-ironman,SmeltFool/Yippe-Hippe,koharjidan/litecoin,axelxod/braincoin,Ziftr/bitcoin,greenaddress/bitcoin,domob1812/crowncoin,Alonzo-Coeus/bitcoin,h4x3rotab/BTCGPU,zenywallet/bitzeny,llamasoft/ProtoShares_Cycle,Adaryian/E-Currency,kazcw/bitcoin,yenliangl/bitcoin,awemany/BitcoinUnlimited,kleetus/bitcoinxt,jtimon/elements,wtogami/bitcoin,randy-waterhouse/bitcoin,ashleyholman/bitcoin,coblee/litecoin-old,PandaPayProject/PandaPay,Kangmo/bitcoin,TurboStake/TurboStake,pocopoco/yacoin,nlgcoin/guldencoin-official,coinkeeper/2015-06-22_18-42_litecoin,rdqw/sscoin,wangxinxi/litecoin,genavarov/brcoin,benosa/bitcoin,Jcing95/iop-hd,presstab/PIVX,UASF/bitcoin,GwangJin/gwangmoney-core,Open-Source-Coins/EZ,kigooz/smalltest,denverl/bitcoin,coinkeeper/2015-06-22_18-45_peercoin,landcoin-ldc/landcoin,scmorse/bitcoin,elambert2014/cbx2,TGDiamond/Diamond,gades/novacoin,cainca/liliucoin,nvmd/bitcoin,crowning2/dash,aniemerg/zcash,howardrya/AcademicCoin,nsacoin/nsacoin,namecoin/namecoin-core,earonesty/bitcoin,peacedevelop/peacecoin,slimcoin-project/Slimcoin,coinkeeper/2015-06-22_18-31_bitcoin,CoinGame/BCEShadow,PandaPayProject/PandaPay,Rav3nPL/polcoin,supcoin/supcoin,zenywallet/bitzeny,error10/bitcoin,laudaa/bitcoin,bitgoldcoin-project/bitgoldcoin,upgradeadvice/MUE-Src,glv2/peerunity,UFOCoins/ufo,ftrader-bitcoinabc/bitcoin-abc,elecoin/elecoin,Climbee/artcoin,scippio/bitcoin,CTRoundTable/Encrypted.Cash,grumpydevelop/singularity,Peerapps/ppcoin,Geekcoin-Project/Geekcoin,presstab/PIVX,ashleyholman/bitcoin,jambolo/bitcoin,roques/bitcoin,chaincoin/chaincoin,CodeShark/bitcoin,ya4-old-c-coder/yacoin,brishtiteveja/sherlockcoin,ravenbyron/phtevencoin,koharjidan/bitcoin,funkshelper/woodcoin-b,TierNolan/bitcoin,tjps/bitcoin,VsyncCrypto/Vsync,randy-waterhouse/bitcoin,bitshares/bitshares-pts,wiggi/huntercore,LIMXTEC/DMDv3,pocopoco/yacoin,ixcoinofficialpage/master,benzmuircroft/REWIRE.io,valorbit/valorbit,lclc/bitcoin,goldcoin/Goldcoin-GLD,ajweiss/bitcoin,axelxod/braincoin,ctwiz/stardust,domob1812/namecore,BigBlueCeiling/augmentacoin,ripper234/bitcoin,matlongsi/micropay,btc1/bitcoin,kallewoof/bitcoin,dgenr8/bitcoinxt,jrmithdobbs/bitcoin,tdudz/elements,FuzzyBearBTC/Fuzzyshares,zottejos/merelcoin,Bitcoin-ABC/bitcoin-abc,IlfirinIlfirin/shavercoin,DGCDev/digitalcoin,coinkeeper/anoncoin_20150330_fixes,ahmedbodi/temp_vert,Megacoin2/Megacoin,markf78/dollarcoin,petertodd/bitcoin,hophacker/bitcoin_malleability,botland/bitcoin,monacoinproject/monacoin,FuzzyBearBTC/Fuzzyshares,zemrys/vertcoin,kaostao/bitcoin,Someguy123/novafoil,Erkan-Yilmaz/twister-core,mycointest/owncoin,bcpki/bitcoin,diggcoin/diggcoin,GreenParhelia/bitcoin,jlay11/sharecoin,isle2983/bitcoin,BitcoinPOW/BitcoinPOW,appop/bitcoin,segsignal/bitcoin,millennial83/bitcoin,NateBrune/bitcoin-fio,StarbuckBG/BTCGPU,vericoin/vericoin-core,greencoin-dev/greencoin-dev,tobeyrowe/KitoniaCoin,DynamicCoinOrg/DMC,coinkeeper/megacoin_20150410_fixes,collapsedev/circlecash,novaexchange/EAC,ya4-old-c-coder/yacoin,Kore-Core/kore,richo/dongcoin,likecoin-dev/bitcoin,renatolage/wallets-BRCoin,unsystemizer/bitcoin,peacedevelop/peacecoin,welshjf/bitcoin,ticclassic/ic,isghe/bitcoinxt,penek/novacoin,rnicoll/bitcoin,oleganza/bitcoin-duo,ZiftrCOIN/ziftrcoin,AkioNak/bitcoin,mycointest/owncoin,bootycoin-project/bootycoin,DrCrypto/darkcoin,faircoin/faircoin2,Thracky/monkeycoin,plankton12345/litecoin,maaku/bitcoin,donaloconnor/bitcoin,Paymium/bitcoin,domob1812/bitcoin,jonasnick/bitcoin,myriadcoin/myriadcoin,bitpagar/bitpagar,Metronotes/bitcoin,ahmedbodi/vertcoin,aspanta/bitcoin,shapiroisme/datadollar,namecoin/namecore,etercoin/etercoin,KaSt/equikoin,daliwangi/bitcoin,adpg211/bitcoin-master,Bloom-Project/Bloom,Michagogo/bitcoin,EthanHeilman/bitcoin,bitcoinclassic/bitcoinclassic,Krellan/bitcoin,shurcoin/shurcoin,barcoin-project/nothingcoin,afk11/bitcoin,marscoin/marscoin,kaostao/bitcoin,HeliumGas/helium,iceinsidefire/peershare-edit,48thct2jtnf/P,111t8e/bitcoin,rustyrussell/bitcoin,reddcoin-project/reddcoin,whatrye/twister-core,Friedbaumer/litecoin,koharjidan/dogecoin,bittylicious/bitcoin,plankton12345/litecoin,Whitecoin-org/Whitecoin,BlueMeanie/PeerShares,aburan28/elements,ShwoognationHQ/bitcoin,GlobalBoost/GlobalBoost,novaexchange/EAC,namecoin/namecoin-core,GroundRod/anoncoin,hyperwang/bitcoin,lbryio/lbrycrd,marcusdiaz/BitcoinUnlimited,stamhe/ppcoin,dopecoin-dev/DopeCoinGold,kevin-cantwell/crunchcoin,fsb4000/novacoin,rat4/blackcoin,iadix/iadixcoin,nomnombtc/bitcoin,nlgcoin/guldencoin-official,raasakh/bardcoin,MOIN/moin,tjth/lotterycoin,guncoin/guncoin,jnewbery/bitcoin,sbellem/bitcoin,tmagik/catcoin,ludbb/bitcoin,Anoncoin/anoncoin,FuzzyBearBTC/Peershares2,laudaa/bitcoin,Friedbaumer/litecoin,mapineda/litecoin,uphold/bitcoin,accraze/bitcoin,skaht/bitcoin,ghostlander/Testcoin,Carrsy/PoundCoin,enlighter/Feathercoin,simdeveloper/bitcoin,barcoin-project/nothingcoin,lakepay/lake,Kcoin-project/kcoin,dscotese/bitcoin,borgcoin/Borgcoin1,florincoin/florincoin,atgreen/bitcoin,MazaCoin/mazacoin-new,sbellem/bitcoin,error10/bitcoin,ivansib/sibcoin,diggcoin/diggcoin,domob1812/i0coin,som4paul/BolieC,sipa/elements,dexX7/bitcoin,fanquake/bitcoin,elambert2014/cbx2,tensaix2j/bananacoin,AquariusNetwork/ARCOv2,Petr-Economissa/gvidon,webdesignll/coin,NicolasDorier/bitcoin,emc2foundation/einsteinium,LanaCoin/lanacoin,pascalguru/florincoin,denverl/bitcoin,se3000/bitcoin,earonesty/bitcoin,SandyCohen/mincoin,keo/bitcoin,FinalHashLLC/namecore,Justaphf/BitcoinUnlimited,mrbandrews/bitcoin,jonghyeopkim/bitcoinxt,morcos/bitcoin,rat4/blackcoin,gravio-net/graviocoin,saydulk/Feathercoin,coinkeeper/2015-06-22_18-52_viacoin,jyap808/jumbucks,NeuCoin/neucoin,zebrains/Blotter,jimmykiselak/lbrycrd,oklink-dev/bitcoin_block,domob1812/namecore,florincoin/florincoin,jrick/bitcoin,superjudge/bitcoin,akabmikua/flowcoin,mortalvikinglive/bitcoinclassic,wiggi/fairbrix-0.6.3,MitchellMintCoins/AutoCoin,isocolsky/bitcoinxt,ForceMajeure/BitPenny-Client,ludbb/bitcoin,lordsajan/erupee,Jcing95/iop-hd,constantine001/bitcoin,kaostao/bitcoin,upgradeadvice/MUE-Src,dperel/bitcoin,sarielsaz/sarielsaz,senadj/yacoin,FuzzyBearBTC/Peershares,trippysalmon/bitcoin,octocoin-project/octocoin,karek314/bitcoin,BlockchainTechLLC/3dcoin,s-matthew-english/bitcoin,basicincome/unpcoin-core,PIVX-Project/PIVX,earthcoinproject/earthcoin,particl/particl-core,shaulkf/bitcoin,rsdevgun16e/energi,erqan/twister-core,tedlz123/Bitcoin,Bitcoin-ABC/bitcoin-abc,ardsu/bitcoin,ShwoognationHQ/bitcoin,mincoin-project/mincoin,compasscoin/compasscoin,Tetpay/bitcoin,Mirobit/bitcoin,Peer3/homework,zixan/bitcoin,welshjf/bitcoin,tobeyrowe/smallchange,digideskio/namecoin,ppcoin/ppcoin,borgcoin/Borgcoin.rar,bcpki/testblocks,deuscoin/deuscoin,ivansib/sibcoin,CoinProjects/AmsterdamCoin-v4,emc2foundation/einsteinium,midnight-miner/LasVegasCoin,bitcoinec/bitcoinec,qtumproject/qtum,GlobalBoost/GlobalBoost,ahmedbodi/test2,ShwoognationHQ/bitcoin,jgarzik/bitcoin,dagurval/bitcoinxt,AsteraCoin/AsteraCoin,digibyte/digibyte,neuroidss/bitcoin,wekuiz/wekoin,celebritycoin/investorcoin,psionin/smartcoin,BeirdoMud/MudCoin,shadowoneau/ozcoin,Anoncoin/anoncoin,bitcoin/bitcoin,OstlerDev/florincoin,ZiftrCOIN/ziftrcoin,gameunits/gameunits,domob1812/bitcoin,Bushstar/UFO-Project,KaSt/ekwicoin,andres-root/bitcoinxt,dogecoin/dogecoin,bitcoinec/bitcoinec,destenson/bitcoin--bitcoin,omefire/bitcoin,kazcw/bitcoin,dscotese/bitcoin,bitreserve/bitcoin,TheOncomingStorm/logincoinadvanced,Jeff88Ho/bitcoin,se3000/bitcoin,dexX7/bitcoin,TheoremCrypto/TheoremCoin,fsb4000/bitcoin,sickpig/BitcoinUnlimited,roques/bitcoin,mobicoins/mobicoin-core,presstab/PIVX,lbrtcoin/albertcoin,applecoin-official/fellatio,magacoin/magacoin,rnicoll/dogecoin,nlgcoin/guldencoin-official,Rav3nPL/doubloons-0.10,ForceMajeure/BitPenny-Client,cculianu/bitcoin-abc,nikkitan/bitcoin,romanornr/viacoin,CoinGame/BCEShadow,antcheck/antcoin,thrasher-/litecoin,bitcoinec/bitcoinec,superjudge/bitcoin,mm-s/bitcoin,keo/bitcoin,se3000/bitcoin,BitzenyCoreDevelopers/bitzeny,domob1812/huntercore,dexX7/bitcoin,vmp32k/litecoin,redfish64/nomiccoin,DMDcoin/Diamond,zcoinofficial/zcoin,ripper234/bitcoin,habibmasuro/bitcoin,kazcw/bitcoin,jarymoth/dogecoin,plncoin/PLNcoin_Core,BenjaminsCrypto/Benjamins-1,putinclassic/putic,RongxinZhang/bitcoinxt,Jcing95/iop-hd,peacedevelop/peacecoin,nvmd/bitcoin,Bitcoin-ABC/bitcoin-abc,dashpay/dash,ElementsProject/elements,tecnovert/particl-core,adpg211/bitcoin-master,nanocoins/mycoin,whatrye/twister-core,RyanLucchese/energi,vbernabe/freicoin,uphold/bitcoin,CoinProjects/AmsterdamCoin-v4,collapsedev/circlecash,Cancercoin/Cancercoin,truthcoin/blocksize-market,Crypto-Currency/BitBar,midnightmagic/bitcoin,cryptocoins4all/zcoin,mammix2/ccoin-dev,gameunits/gameunits,MitchellMintCoins/MortgageCoin,coinkeeper/2015-06-22_18-39_feathercoin,valorbit/valorbit-oss,benzmuircroft/REWIRE.io,npccoin/npccoin,Jeff88Ho/bitcoin,daveperkins-github/bitcoin-dev,gmaxwell/bitcoin,jashandeep-sohi/ppcoin,Coinfigli/coinfigli,viacoin/viacoin,CoinGame/BCEShadowNet,Friedbaumer/litecoin,jimmysong/bitcoin,kevcooper/bitcoin,ahmedbodi/temp_vert,vertcoin/eyeglass,majestrate/twister-core,21E14/bitcoin,Peerunity/Peerunity,NateBrune/bitcoin-nate,forrestv/bitcoin,gades/novacoin,deeponion/deeponion,altcoinpro/addacoin,iosdevzone/bitcoin,stevemyers/bitcoinxt,oklink-dev/bitcoin,martindale/elements,kigooz/smalltestnew,CoinBlack/blackcoin,DogTagRecon/Still-Leraning,funkshelper/woodcore,midnightmagic/bitcoin,DSPay/DSPay,capitalDIGI/litecoin,wederw/bitcoin,bitreserve/bitcoin,Carrsy/PoundCoin,FeatherCoin/Feathercoin,pataquets/namecoin-core,rnicoll/bitcoin,WorldcoinGlobal/WorldcoinLegacy,ForceMajeure/BitPenny-Client-0.4.0.1,aspanta/bitcoin,elacoin/elacoin,torresalyssa/bitcoin,HeliumGas/helium,parvez3019/bitcoin,shelvenzhou/BTCGPU,Credit-Currency/CoinTestComp,diggcoin/diggcoin,wiggi/huntercore,Litecoindark/LTCD,BitcoinHardfork/bitcoin,sipa/elements,JeremyRand/bitcoin,XX-net/twister-core,syscoin/syscoin2,Ziftr/litecoin,GeopaymeEE/e-goldcoin,kseistrup/twister-core,jimmysong/bitcoin,ahmedbodi/test2,safecoin/safecoin,Earlz/dobbscoin-source,cculianu/bitcoin-abc,habibmasuro/bitcoinxt,Alonzo-Coeus/bitcoin,goku1997/bitcoin,jlopp/statoshi,tobeyrowe/smallchange,MitchellMintCoins/AutoCoin,goldcoin/goldcoin,iadix/iadixcoin,domob1812/huntercore,pelorusjack/BlockDX,icook/vertcoin,Flowdalic/bitcoin,dgarage/bc2,oleganza/bitcoin-duo,tuaris/bitcoin,valorbit/valorbit,jl2012/litecoin,masterbraz/dg,174high/bitcoin,fsb4000/novacoin,Exceltior/dogecoin,keesdewit82/LasVegasCoin,thodg/ppcoin,Petr-Economissa/gvidon,donaloconnor/bitcoin,romanornr/viacoin,bitcoinclassic/bitcoinclassic,shomeser/bitcoin,ftrader-bitcoinabc/bitcoin-abc,Kogser/bitcoin,dscotese/bitcoin,jameshilliard/bitcoin,hyperwang/bitcoin,bitjson/hivemind,Ziftr/Peerunity,lateminer/bitcoin,BitzenyCoreDevelopers/bitzeny,degenorate/Deftcoin,taenaive/zetacoin,prark/bitcoinxt,faircoin/faircoin2,Cocosoft/bitcoin,willwray/dash,multicoins/marycoin,coinkeeper/2015-06-22_18-41_ixcoin,ghostlander/Orbitcoin,markf78/dollarcoin,stronghands/stronghands,SartoNess/BitcoinUnlimited,nightlydash/darkcoin,ingresscoin/ingresscoin,brettwittam/geocoin,nathan-at-least/zcash,fujicoin/fujicoin,josephbisch/namecoin-core,applecoin-official/applecoin,ZiftrCOIN/ziftrcoin,JeremyRand/namecoin-core,LIMXTEC/DMDv3,11755033isaprimenumber/Feathercoin,dpayne9000/Rubixz-Coin,bitgrowchain/bitgrow,koharjidan/dogecoin,ediston/energi,collapsedev/cashwatt,gcc64/bitcoin,Michagogo/bitcoin,qreatora/worldcoin-v0.8,ahmedbodi/terracoin,Litecoindark/LTCD,elambert2014/novacoin,cqtenq/feathercoin_core,brishtiteveja/sherlockholmescoin,razor-coin/razor,afk11/bitcoin,pinkevich/dash,lentza/SuperTurboStake,effectsToCause/vericoin,Ziftr/bitcoin,bankonmecoin/bitcoin,Gazer022/bitcoin,dgarage/bc3,gjhiggins/vcoin0.8zeta-dev,rebroad/bitcoin,habibmasuro/bitcoin,yacoin/yacoin,BitcoinUnlimited/BitcoinUnlimited,valorbit/valorbit,faircoin/faircoin2,Thracky/monkeycoin,lentza/SuperTurboStake,karek314/bitcoin,netswift/vertcoin,cerebrus29301/crowncoin,cqtenq/feathercoin_core,untrustbank/litecoin,nvmd/bitcoin,FuzzyBearBTC/Peershares-1,brightcoin/brightcoin,PIVX-Project/PIVX,cculianu/bitcoin-abc,BitcoinUnlimited/BitcoinUnlimited,dgenr8/bitcoinxt,unsystemizer/bitcoin,forrestv/bitcoin,genavarov/brcoin,bitcoinclassic/bitcoinclassic,ptschip/bitcoin,peerdb/cors,zcoinofficial/zcoin,renatolage/wallets-BRCoin,midnightmagic/bitcoin,sugruedes/bitcoin,Bitcoin-com/BUcash,48thct2jtnf/P,amaivsimau/bitcoin,schinzelh/dash,bcpki/nonce2testblocks,nikkitan/bitcoin,AdrianaDinca/bitcoin,ElementsProject/elements,bcpki/testblocks,StarbuckBG/BTCGPU,octocoin-project/octocoin,pocopoco/yacoin,Peer3/homework,basicincome/unpcoin-core,isghe/bitcoinxt,wellenreiter01/Feathercoin,XX-net/twister-core,JeremyRubin/bitcoin,shea256/bitcoin,domob1812/i0coin,tedlz123/Bitcoin,kryptokredyt/ProjektZespolowyCoin,Lucky7Studio/bitcoin,MonetaryUnit/MUE-Src,Credit-Currency/CoinTestComp,theuni/bitcoin,myriadcoin/myriadcoin,Magicking/neucoin,mb300sd/bitcoin,micryon/GPUcoin,mrbandrews/bitcoin,MeshCollider/bitcoin,KaSt/ekwicoin,pataquets/namecoin-core,gwillen/elements,bitreserve/bitcoin,zsulocal/bitcoin,lordsajan/erupee,Twyford/Indigo,ionomy/ion,puticcoin/putic,HerkCoin/herkcoin,shaolinfry/litecoin,kseistrup/twister-core,segsignal/bitcoin,error10/bitcoin,nsacoin/nsacoin,millennial83/bitcoin,funkshelper/woodcoin-b,peerdb/cors,mammix2/ccoin-dev,magacoin/magacoin,mortalvikinglive/bitcoinclassic,vectorcoindev/Vector,djtms/ltc,Alex-van-der-Peet/bitcoin,NeuCoin/neucoin,TrainMAnB/vcoincore,Exgibichi/statusquo,braydonf/bitcoin,saydulk/Feathercoin,ghostlander/Testcoin,jiffe/cosinecoin,thormuller/yescoin2,SocialCryptoCoin/SocialCoin,bitreserve/bitcoin,RyanLucchese/energi,monacoinproject/monacoin,bootycoin-project/bootycoin,jlopp/statoshi,willwray/dash,tensaix2j/bananacoin,thesoftwarejedi/bitcoin,thesoftwarejedi/bitcoin,zetacoin/zetacoin,mitchellcash/bitcoin,kigooz/smalltestnew,XX-net/twister-core,ryanofsky/bitcoin,zixan/bitcoin,CryptArc/bitcoinxt,andres-root/bitcoinxt,MarcoFalke/bitcoin,brightcoin/brightcoin,Enticed87/Decipher,gameunits/gameunits,se3000/bitcoin,mooncoin-project/mooncoin-landann,pdrobek/Polcoin-1-3,stamhe/ppcoin,pascalguru/florincoin,jul2711/jucoin,earthcoinproject/earthcoin,steakknife/bitcoin-qt,jyap808/jumbucks,sproutcoin/sprouts,r8921039/bitcoin,koltcoin/koltcoin,worldbit/worldbit,nikkitan/bitcoin,shelvenzhou/BTCGPU,josephbisch/namecoin-core,dagurval/bitcoinxt,GwangJin/gwangmoney-core,GroundRod/anoncoin,viacoin/viacoin,x-kalux/bitcoin_WiG-B,MarcoFalke/bitcoin,coinkeeper/2015-06-22_18-45_peercoin,novacoin-project/novacoin,qreatora/worldcoin-v0.8,imton/bitcoin,litecoin-project/litecore-litecoin,netswift/vertcoin,dmrtsvetkov/flowercoin,elecoin/elecoin,coinerd/krugercoin,rjshaver/bitcoin,ahmedbodi/terracoin,zenywallet/bitzeny,practicalswift/bitcoin,aspirecoin/aspire,langerhans/dogecoin,BitcoinPOW/BitcoinPOW,privatecoin/privatecoin,jiangyonghang/bitcoin,byncoin-project/byncoin,Blackcoin/blackcoin,gjhiggins/vcoincore,TrainMAnB/vcoincore,Jeff88Ho/bitcoin,rnicoll/dogecoin,wtogami/bitcoin,koharjidan/bitcoin,Jeff88Ho/bitcoin,Peershares/Peershares,koharjidan/litecoin,KaSt/equikoin,JeremyRubin/bitcoin,BeirdoMud/MudCoin,svcop3/svcop3,TrainMAnB/vcoincore,TheBlueMatt/bitcoin,HerkCoin/herkcoin,akabmikua/flowcoin,Litecoindark/LTCD,coinkeeper/2015-06-22_19-13_florincoin,dmrtsvetkov/flowercoin,aspirecoin/aspire,iadix/iadixcoin,jtimon/bitcoin,arruah/ensocoin,Mrs-X/Darknet,ColossusCoinXT/ColossusCoinXT,apoelstra/elements,shomeser/bitcoin,BlueMeanie/PeerShares,starwalkerz/fincoin-fork,janko33bd/bitcoin,jlay11/sharecoin,dpayne9000/Rubixz-Coin,and2099/twister-core,lentza/SuperTurboStake,segsignal/bitcoin,XertroV/bitcoin-nulldata,MazaCoin/maza,aciddude/Feathercoin,balajinandhu/bitcoin,stronghands/stronghands,elliotolds/bitcoin,simonmulser/bitcoin,Jcing95/iop-hd,DSPay/DSPay,octocoin-project/octocoin,degenorate/Deftcoin,alexwaters/Bitcoin-Testing,syscoin/syscoin,reddink/reddcoin,janko33bd/bitcoin,guncoin/guncoin,bankonmecoin/bitcoin,GroestlCoin/bitcoin,marscoin/marscoin,redfish64/nomiccoin,applecoin-official/applecoin,whatrye/twister-core,cryptodev35/icash,AdrianaDinca/bitcoin,gameunits/gameunits,monacoinproject/monacoin,OmniLayer/omnicore,cddjr/BitcoinUnlimited,kfitzgerald/titcoin,KnCMiner/bitcoin,ajtowns/bitcoin,scippio/bitcoin,kallewoof/bitcoin,AkioNak/bitcoin,stamhe/bitcoin,sarielsaz/sarielsaz,and2099/twister-core,CrimeaCoin/crimeacoin,MOIN/moin,IOCoin/iocoin,bankonmecoin/bitcoin,capitalDIGI/litecoin,superjudge/bitcoin,prusnak/bitcoin,dobbscoin/dobbscoin-source,majestrate/twister-core,drwasho/bitcoinxt,likecoin-dev/bitcoin,antonio-fr/bitcoin,DigiByte-Team/digibyte,xawksow/GroestlCoin,freelion93/mtucicoin,snakie/ppcoin,myriadteam/myriadcoin,alejandromgk/Lunar,axelxod/braincoin,ravenbyron/phtevencoin,brettwittam/geocoin,barcoin-project/nothingcoin,mobicoins/mobicoin-core,iQcoin/iQcoin,imton/bitcoin,bitcoin/bitcoin,okinc/bitcoin,mobicoins/mobicoin-core,Justaphf/BitcoinUnlimited,lbryio/lbrycrd,AllanDoensen/BitcoinUnlimited,robvanmieghem/clams,qubitcoin-project/QubitCoinQ2C,deadalnix/bitcoin,constantine001/bitcoin,mb300sd/bitcoin,nochowderforyou/clams,sbaks0820/bitcoin,benzhi888/renminbi,willwray/dash,xXDavasXx/Davascoin,mincoin-project/mincoin,vtafaucet/virtacoin,Peerunity/Peerunity,RHavar/bitcoin,wellenreiter01/Feathercoin,javgh/bitcoin,erikYX/yxcoin-FIRST,Bitcoin-ABC/bitcoin-abc,RongxinZhang/bitcoinxt,szlaozhu/twister-core,truthcoin/truthcoin-cpp,peercoin/peercoin,pascalguru/florincoin,gazbert/bitcoin,Exgibichi/statusquo,HerkCoin/herkcoin,TGDiamond/Diamond,aspanta/bitcoin,iadix/iadixcoin,BigBlueCeiling/augmentacoin,capitalDIGI/DIGI-v-0-10-4,nathan-at-least/zcash,llamasoft/ProtoShares_Cycle,Anfauglith/iop-hd,dobbscoin/dobbscoin-source,111t8e/bitcoin,r8921039/bitcoin,cryptohelper/premine,bitcoinxt/bitcoinxt,phplaboratory/psiacoin,nsacoin/nsacoin,whatrye/twister-core,psionin/smartcoin,senadmd/coinmarketwatch,okcashpro/okcash,imharrywu/fastcoin,XertroV/bitcoin-nulldata,amaivsimau/bitcoin,phelix/namecore,Action-Committee/Spaceballz,coinkeeper/2015-06-22_19-19_worldcoin,rjshaver/bitcoin,gzuser01/zetacoin-bitcoin,zottejos/merelcoin,UdjinM6/dash,mammix2/ccoin-dev,jonghyeopkim/bitcoinxt,szlaozhu/twister-core,PandaPayProject/PandaPay,Kefkius/clams,kevin-cantwell/crunchcoin,nmarley/dash,GreenParhelia/bitcoin,tobeyrowe/smallchange,maaku/bitcoin,NateBrune/bitcoin-nate,maraoz/proofcoin,rjshaver/bitcoin,willwray/dash,richo/dongcoin,goldmidas/goldmidas,enlighter/Feathercoin,coinkeeper/2015-06-22_18-41_ixcoin,cryptcoins/cryptcoin,lbrtcoin/albertcoin,ghostlander/Testcoin,starwels/starwels,imharrywu/fastcoin,vtafaucet/virtacoin,destenson/bitcoin--bitcoin,MonetaryUnit/MUE-Src,dgenr8/bitcoinxt,GeekBrony/ponycoin-old,jrick/bitcoin,shadowoneau/ozcoin,zemrys/vertcoin,reddcoin-project/reddcoin,apoelstra/bitcoin,40thoughts/Coin-QualCoin,Paymium/bitcoin,gavinandresen/bitcoin-git,reddink/reddcoin,dexX7/mastercore,HeliumGas/helium,isocolsky/bitcoinxt,vlajos/bitcoin,nmarley/dash,phelixbtc/bitcoin,DMDcoin/Diamond,and2099/twister-core,rat4/bitcoin,brishtiteveja/sherlockholmescoin,Bloom-Project/Bloom,syscoin/syscoin2,Matoking/bitcoin,aciddude/Feathercoin,andres-root/bitcoinxt,sugruedes/bitcoinxt,EthanHeilman/bitcoin,blocktrail/bitcoin,apoelstra/bitcoin,tripmode/pxlcoin,kallewoof/elements,osuyuushi/laughingmancoin,biblepay/biblepay,madman5844/poundkoin,GeopaymeEE/e-goldcoin,tobeyrowe/BitStarCoin,borgcoin/Borgcoin.rar,TrainMAnB/vcoincore,fussl/elements,jonghyeopkim/bitcoinxt,Crypto-Currency/BitBar,hsavit1/bitcoin,zcoinofficial/zcoin,sugruedes/bitcoinxt,Rimbit/Wallets,globaltoken/globaltoken,FuzzyBearBTC/Fuzzyshares,fullcoins/fullcoin,gjhiggins/fuguecoin,misdess/bitcoin,mm-s/bitcoin,gwangjin2/gwangcoin-core,domob1812/bitcoin,fussl/elements,coinkeeper/2015-06-22_19-07_digitalcoin,JeremyRand/namecoin-core,nailtaras/nailcoin,lclc/bitcoin,mikehearn/bitcoin,Megacoin2/Megacoin,afk11/bitcoin,litecoin-project/litecoin,genavarov/lamacoin,xuyangcn/opalcoin,robvanbentem/bitcoin,crowning2/dash,rsdevgun16e/energi,argentumproject/argentum,zander/bitcoinclassic,Ziftr/bitcoin,Metronotes/bitcoin,Flurbos/Flurbo,ohac/sha1coin,iceinsidefire/peershare-edit,untrustbank/litecoin,coinkeeper/terracoin_20150327,BitcoinPOW/BitcoinPOW,gwillen/elements,jimmysong/bitcoin,ghostlander/Feathercoin,vizidrixfork/Peershares,jimblasko/2015_UNB_Wallets,sarielsaz/sarielsaz,ingresscoin/ingresscoin,kseistrup/twister-core,ajtowns/bitcoin,5mil/Bolt,jimblasko/UnbreakableCoin-master,p2peace/oliver-twister-core,glv2/peerunity,sugruedes/bitcoin,koharjidan/dogecoin,lateminer/bitcoin,andreaskern/bitcoin,upgradeadvice/MUE-Src,elacoin/elacoin,atgreen/bitcoin,nailtaras/nailcoin,reorder/viacoin,droark/bitcoin,glv2/peerunity,myriadteam/myriadcoin,Thracky/monkeycoin,Bushstar/UFO-Project,dan-mi-sun/bitcoin,fullcoins/fullcoin,jgarzik/bitcoin,IlfirinCano/shavercoin,wiggi/huntercore,alejandromgk/Lunar,puticcoin/putic,PIVX-Project/PIVX,gapcoin/gapcoin,ericshawlinux/bitcoin,IlfirinIlfirin/shavercoin,mooncoin-project/mooncoin-landann,svcop3/svcop3,memorycoin/memorycoin,NateBrune/bitcoin-nate,digideskio/namecoin,daliwangi/bitcoin,TheSeven/ppcoin,goldcoin/Goldcoin-GLD,CoinGame/NuShadowNet,axelxod/braincoin,VsyncCrypto/Vsync,ceptacle/libcoinqt,iQcoin/iQcoin,freelion93/mtucicoin,arnuschky/bitcoin,dakk/soundcoin,laanwj/bitcoin-qt,UFOCoins/ufo,OfficialTitcoin/titcoin-wallet,HerkCoin/herkcoin,Xekyo/bitcoin,Bitcoinsulting/bitcoinxt,tropa/axecoin,sugruedes/bitcoinxt,jtimon/bitcoin,funkshelper/woodcore,sdaftuar/bitcoin,destenson/bitcoin--bitcoin,cryptohelper/premine,ronpaulcoin/ronpaulcoin,constantine001/bitcoin,alexandrcoin/vertcoin,gzuser01/zetacoin-bitcoin,xawksow/GroestlCoin,kigooz/smalltest,FuzzyBearBTC/peercoin,Vector2000/bitcoin,sirk390/bitcoin,bittylicious/bitcoin,vertcoin/vertcoin,florincoin/florincoin,phorensic/yacoin,core-bitcoin/bitcoin,benosa/bitcoin,CoinGame/NuShadowNet,scmorse/bitcoin,rebroad/bitcoin,BTCTaras/bitcoin,laudaa/bitcoin,DigiByte-Team/digibyte,kazcw/bitcoin,manuel-zulian/accumunet,alecalve/bitcoin,schildbach/bitcoin,benzhi888/renminbi,memorycoin/memorycoin,habibmasuro/bitcoin,wellenreiter01/Feathercoin,Christewart/bitcoin,CoinGame/NuShadowNet,greenaddress/bitcoin,Rav3nPL/doubloons-0.10,byncoin-project/byncoin,Rav3nPL/doubloons-0.10,creath/barcoin,mockcoin/mockcoin,oklink-dev/bitcoin_block,skaht/bitcoin,gjhiggins/fuguecoin,sickpig/BitcoinUnlimited,vcoin-project/vcoin0.8zeta-dev,jeromewu/bitcoin-opennet,imharrywu/fastcoin,irvingruan/bitcoin,truthcoin/blocksize-market,scmorse/bitcoin,sipa/bitcoin,ColossusCoinXT/ColossusCoinXT,jlay11/sharecoin,jamesob/bitcoin,isle2983/bitcoin,gjhiggins/fuguecoin,putinclassic/putic,FarhanHaque/bitcoin,FuzzyBearBTC/Peerunity,bmp02050/ReddcoinUpdates,benzmuircroft/REWIRE.io,brettwittam/geocoin,oklink-dev/litecoin_block,isghe/bitcoinxt,blood2/bloodcoin-0.9,vectorcoindev/Vector,isghe/bitcoinxt,iosdevzone/bitcoin,error10/bitcoin,slingcoin/sling-market,RHavar/bitcoin,qtumproject/qtum,blocktrail/bitcoin,arruah/ensocoin,mastercoin-MSC/mastercore,magacoin/magacoin,jakeva/bitcoin-pwcheck,crowning2/dash,shadowproject/shadow,mmpool/coiledcoin,biblepay/biblepay,pstratem/bitcoin,haisee/dogecoin,phorensic/yacoin,blood2/bloodcoin-0.9,Richcoin-Project/RichCoin,mrtexaznl/mediterraneancoin,cerebrus29301/crowncoin,pascalguru/florincoin,greenaddress/bitcoin,sipa/elements,Alex-van-der-Peet/bitcoin,TeamBitBean/bitcoin-core,wcwu/bitcoin,Open-Source-Coins/EZ,dannyperez/bolivarcoin,HashUnlimited/Einsteinium-Unlimited,paveljanik/bitcoin,ANCompany/birdcoin-dev,Magicking/neucoin
693346fd3ae93be37fad41bf08acc00d416ba6df
examples/specific/functionOverload.h
examples/specific/functionOverload.h
//! Non overloaded function void simplefunc(); //! Function which takes two int arguments void f(int, int); //! Function which takes two double arguments void f(double, double); namespace test { //! Another function which takes two int arguments void g(int, int); //! Another function which takes two double arguments void g(double, double); } class MyType {}; class MyOtherType {}; //! Another function which takes a custom type void h(std::string, MyType); //! Another function which takes another custom type void h(std::string, MyOtherType o); //! Another function which takes a basic type void h(std::string, float myfloat); //! Another function which takes a const custom type void h(std::string, const MyType& mytype); //! Another function which takes a const basic type void h(std::string, const int myint); //! Another function which takes a const basic type template <typename T> void h(std::string, const T myType); //! Another function which takes a const basic type template <typename T, typename U> void h(std::string, const T m, const U n);
//! Non overloaded function void simplefunc(); //! Function which takes two int arguments void f(int, int); //! Function which takes two double arguments void f(double, double); namespace test { //! Another function which takes two int arguments void g(int, int); //! Another function which takes two double arguments void g(double, double); } class MyType {}; class MyOtherType {}; //! Another function which takes a custom type void h(std::string, MyType); //! Another function which takes another custom type void h(std::string, MyOtherType o); //! Another function which takes a basic type void h(std::string, float myfloat); //! Another function which takes a const custom type void h(std::string, const MyType& mytype); //! Another function which takes a const basic type void h(std::string, const int myint); //! Another function which takes a const basic type template <typename T> void h(std::string, const T myType); //! Another function which takes a const basic type template <typename T, typename U> void h(std::string, const T m, const U n); /** * Test function 1. */ void j(int); /** * Test function 2. */ void j(char);
Add extra function overload example
Add extra function overload example For some reason this single argument overloaded function reveals a bug that the more complex examples do not. Thanks to vitaut for providing it.
C
bsd-3-clause
kirbyfan64/breathe,AnthonyTruchet/breathe,RR2DO2/breathe,AnthonyTruchet/breathe,RR2DO2/breathe,kirbyfan64/breathe,kirbyfan64/breathe,AnthonyTruchet/breathe,AnthonyTruchet/breathe,kirbyfan64/breathe
51e6009860ba9291d5435a0932abe150e9d9e1b7
include/shmlog_tags.h
include/shmlog_tags.h
/* * $Id$ * * Define the tags in the shared memory in a reusable format. * Whoever includes this get to define what the SLTM macro does. * */ SLTM(CLI) SLTM(SessionOpen) SLTM(SessionClose) SLTM(ClientAddr) SLTM(Request) SLTM(URL) SLTM(Protocol) SLTM(Headers)
/* * $Id$ * * Define the tags in the shared memory in a reusable format. * Whoever includes this get to define what the SLTM macro does. * */ SLTM(CLI) SLTM(SessionOpen) SLTM(SessionClose) SLTM(ClientAddr) SLTM(Request) SLTM(URL) SLTM(Protocol) SLTM(H_Unknown) #define HTTPH(a, b) SLTM(b) #include "http_headers.h" #undef HTTPH
Use http_headers.h to define HTTP header tags for logging
Use http_headers.h to define HTTP header tags for logging git-svn-id: 7d4b18ab7d176792635d6a7a77dd8cbbea8e8daa@90 d4fa192b-c00b-0410-8231-f00ffab90ce4
C
bsd-2-clause
wikimedia/operations-debs-varnish,CartoDB/Varnish-Cache,CartoDB/Varnish-Cache,ssm/pkg-varnish,ssm/pkg-varnish,wikimedia/operations-debs-varnish,wikimedia/operations-debs-varnish,ssm/pkg-varnish,ssm/pkg-varnish,wikimedia/operations-debs-varnish,CartoDB/Varnish-Cache,ssm/pkg-varnish,wikimedia/operations-debs-varnish
36a864d477bf010819748d50f8be13b0497c1c7f
source/system/Array.h
source/system/Array.h
#ifndef OOC_ARRAY_H_ #define OOC_ARRAY_H_ #define array_malloc(size) calloc(1, (size)) #define array_free free #include <stdint.h> #define _lang_array__Array_new(type, size) ((_lang_array__Array) { size, array_malloc((size) * sizeof(type)) }); #if defined(safe) #define _lang_array__Array_get(array, index, type) ( \ ((type*) array.data)[(index < 0 || index >= array.length) ? kean_exception_outOfBoundsException_throw(index, array.length), -1 : index]) #define _lang_array__Array_set(array, index, type, value) \ (((type*) array.data)[(index < 0 || index >= array.length) ? kean_exception_outOfBoundsException_throw(index, array.length), -1 : index] = value) #else #define _lang_array__Array_get(array, index, type) ( \ ((type*) array.data)[index]) #define _lang_array__Array_set(array, index, type, value) \ (((type*) array.data)[index] = value) #endif #define _lang_array__Array_free(array) { array_free(array.data); array.data = NULL; array.length = 0; } typedef struct { size_t length; void* data; } _lang_array__Array; #endif
#ifndef OOC_ARRAY_H_ #define OOC_ARRAY_H_ #define array_malloc(size) calloc(1, (size)) #define array_free free #include <stdint.h> #define _lang_array__Array_new(type, size) ((_lang_array__Array) { size, array_malloc((size) * sizeof(type)) }); #if defined(safe) #define _lang_array__Array_get(array, index, type) ( \ ((type*) array.data)[(index < 0 || index >= array.length) ? kean_exception_outOfBoundsException_throw(index, array.length), -1 : index]) #define _lang_array__Array_set(array, index, type, value) \ (((type*) array.data)[(index < 0 || index >= array.length) ? kean_exception_outOfBoundsException_throw(index, array.length), -1 : index] = value) #else #define _lang_array__Array_get(array, index, type) ( \ ((type*) array.data)[index]) #define _lang_array__Array_set(array, index, type, value) \ (((type*) array.data)[index] = value) #endif #define _lang_array__Array_free(array) { array_free(array.data); } typedef struct { size_t length; void* data; } _lang_array__Array; #endif
Revert "Set pointer to array data to null after free"
Revert "Set pointer to array data to null after free"
C
mit
firog/ooc-kean,sebastianbaginski/ooc-kean,magic-lang/ooc-kean,fredrikbryntesson/ooc-kean,thomasfanell/ooc-kean,firog/ooc-kean,simonmika/ooc-kean,simonmika/ooc-kean,magic-lang/ooc-kean,thomasfanell/ooc-kean,fredrikbryntesson/ooc-kean,sebastianbaginski/ooc-kean
618f2055745e3d06751594bcefc1d0d0a7dbd83c
part/tests/range_test.h
part/tests/range_test.h
/* This file is part of the KDE libraries Copyright (C) 2010 Christoph Cullmann <cullmann@kde.org> Copyright (C) 2005 Hamish Rodda <rodda@kde.org> This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef KATE_RANGE_TEST_H #define KATE_RANGE_TEST_H #include <QtCore/QObject> #include <ktexteditor/range.h> class RangeTest : public QObject { Q_OBJECT; public: RangeTest(); ~RangeTest(); private Q_SLOTS: void testTextEditorRange(); void testTextRange(); void testInsertText(); void testCornerCaseInsertion(); private: void rangeCheck ( KTextEditor::Range & valid ); }; #endif
/* This file is part of the KDE libraries Copyright (C) 2010 Christoph Cullmann <cullmann@kde.org> Copyright (C) 2005 Hamish Rodda <rodda@kde.org> This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef KATE_RANGE_TEST_H #define KATE_RANGE_TEST_H #include <QtCore/QObject> #include <ktexteditor/range.h> class RangeTest : public QObject { Q_OBJECT public: RangeTest(); ~RangeTest(); private Q_SLOTS: void testTextEditorRange(); void testTextRange(); void testInsertText(); void testCornerCaseInsertion(); private: void rangeCheck ( KTextEditor::Range & valid ); }; #endif
Fix compilations Thanks to tropikhajma CCMAIL: tropikhajma@gmail.com BUG: 234775
Fix compilations Thanks to tropikhajma CCMAIL: tropikhajma@gmail.com BUG: 234775 svn path=/trunk/KDE/kdelibs/kate/; revision=1116300
C
lgpl-2.1
DickJ/kate,jfmcarreira/kate,hlamer/kate,hlamer/kate,hlamer/kate,sandsmark/kate,hlamer/kate,DickJ/kate,DickJ/kate,cmacq2/kate,sandsmark/kate,DickJ/kate,cmacq2/kate,sandsmark/kate,hlamer/kate,hlamer/kate,sandsmark/kate,hlamer/kate,hlamer/kate,jfmcarreira/kate,hlamer/kate,hlamer/kate,cmacq2/kate,jfmcarreira/kate
845b8ad003a92bb246c6b714f65212329c660797
shared/aktest.h
shared/aktest.h
/* Copyright (c) 2011 Volker Krause <vkrause@kde.org> This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef AKTEST_H #define AKTEST_H #include "akapplication.h" #define AKTEST_MAIN( TestObject ) \ int main(int argc, char **argv) \ { \ AkCoreApplication app(argc, argv); \ app.parseCommandLine(); \ TestObject tc; \ return QTest::qExec(&tc, argc, argv); \ } inline void akTestSetInstanceIdentifier( const QString &instanceId ) { AkApplication::setInstanceIdentifier( instanceId ); } #endif
/* Copyright (c) 2011 Volker Krause <vkrause@kde.org> This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef AKTEST_H #define AKTEST_H #include "akapplication.h" #define AKTEST_MAIN( TestObject ) \ int main(int argc, char **argv) \ { \ qputenv("XDG_DATA_HOME", ".local-unit-test/share"); \ qputenv("XDG_CONFIG_HOME", ".config-unit-test"); \ AkCoreApplication app(argc, argv); \ app.parseCommandLine(); \ TestObject tc; \ return QTest::qExec(&tc, argc, argv); \ } inline void akTestSetInstanceIdentifier( const QString &instanceId ) { AkApplication::setInstanceIdentifier( instanceId ); } #endif
Improve isolation of unit tests.
Improve isolation of unit tests.
C
lgpl-2.1
kolab-groupware/akonadi,kolab-groupware/akonadi,kolab-groupware/akonadi,kolab-groupware/akonadi
3967214b04e7411c3ac17d17bc8f62be71193c03
kate/kate_export.h
kate/kate_export.h
/* This file is part of KDE Copyright (C) 2006 Christian Ehrlicher <ch.ehrlicher@gmx.de> This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License version 2 as published by the Free Software Foundation. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef _KDEBASE_EXPORT_H #define _KDEBASE_EXPORT_H #include <kdemacros.h> #ifdef MAKE_KATEINTERFACES_LIB # define KATEINTERFACES_EXPORT KDE_EXPORT #else # if defined _WIN32 || defined _WIN64 # define KATEINTERFACES_EXPORT KDE_IMPORT # else # define KATEINTERFACES_EXPORT KDE_EXPORT # endif #endif #endif // _KDEBASE_EXPORT_H
/* This file is part of KDE Copyright (C) 2006 Christian Ehrlicher <ch.ehrlicher@gmx.de> This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License version 2 as published by the Free Software Foundation. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef _KATE_EXPORT_H #define _KATE_EXPORT_H #include <kdemacros.h> #ifdef MAKE_KATEINTERFACES_LIB # define KATEINTERFACES_EXPORT KDE_EXPORT #else # if defined _WIN32 || defined _WIN64 # define KATEINTERFACES_EXPORT KDE_IMPORT # else # define KATEINTERFACES_EXPORT KDE_EXPORT # endif #endif #endif // _KATE_EXPORT_H
Replace the include guard too.
Replace the include guard too. svn path=/trunk/KDE/kdesdk/kate/; revision=636748
C
lgpl-2.1
hlamer/kate,cmacq2/kate,DickJ/kate,hlamer/kate,hlamer/kate,DickJ/kate,jfmcarreira/kate,sandsmark/kate,hlamer/kate,hlamer/kate,cmacq2/kate,hlamer/kate,hlamer/kate,hlamer/kate,DickJ/kate,jfmcarreira/kate,hlamer/kate,jfmcarreira/kate,sandsmark/kate,hlamer/kate,sandsmark/kate,DickJ/kate,cmacq2/kate,sandsmark/kate
0d86b2eed6d0ec61a004aa3a6d13943d0f0b8a54
kernel/src/stdlib/stdio.h
kernel/src/stdlib/stdio.h
// File: stdlib/stdio.h // Author: vodozhaba // Created on: Aug 21, 2016 // Purpose: Provides standard I/O functions. #pragma once #include <stdarg.h> #include "io/disk/file.h" extern FileDescriptor* stdout; extern FileDescriptor* stderr; size_t StdoutWriteOp(FileDescriptor* file, size_t size, const void* buf); size_t StderrWriteOp(FileDescriptor* file, size_t size, const void* buf); int putchar(int character); int _puts(const char* s); int isspace (int c); int fprintf(FileDescriptor* file, const char* fmt, ...); int printf(const char* fmt, ...); int sprintf(char* dest, const char* fmt, ...);
// File: stdlib/stdio.h // Author: vodozhaba // Created on: Aug 21, 2016 // Purpose: Provides standard I/O functions. #pragma once #include <stdarg.h> #include "io/disk/file.h" extern FileDescriptor* stdout; extern FileDescriptor* stderr; size_t StdoutWriteOp(FileDescriptor* file, size_t size, const void* buf); size_t StderrWriteOp(FileDescriptor* file, size_t size, const void* buf); int putchar(int character); int _puts(const char* s); int isspace (int c); int fprintf(FileDescriptor* file, const char* fmt, ...); int vfprintf(FileDescriptor* file, const char* fmt, va_list argss); int printf(const char* fmt, ...); int sprintf(char* dest, const char* fmt, ...);
Add vfprintf to the public interface just in case
Add vfprintf to the public interface just in case
C
mit
vodozhaba/VV4OS,velikiyv4/VV4OS,vodozhaba/VV4OS,velikiyv4/VV4OS
c1d5b503174f1c6a72b1e72326fea1f930dca112
include/parrot/enums.h
include/parrot/enums.h
#if !defined(PARROT_ENUMS_H_GUARD) #define PARROT_ENUMS_H_GUARD typedef enum { NO_STACK_ENTRY_TYPE = 0, STACK_ENTRY_INT = 1, STACK_ENTRY_FLOAT = 2, STACK_ENTRY_STRING = 3, STACK_ENTRY_PMC = 4, STACK_ENTRY_POINTER = 5, STACK_ENTRY_DESTINATION = 6 } Stack_entry_type; typedef enum { NO_STACK_ENTRY_FLAGS = 0, STACK_ENTRY_CLEANUP_FLAG = 1 << 0 } Stack_entry_flags; typedef enum { NO_STACK_CHUNK_FLAGS = 0, STACK_CHUNK_COW_FLAG = 1 << 0 } Stack_chunk_flags; #endif
/* enums.h * Copyright: 2001-2003 The Perl Foundation. All Rights Reserved. * Overview: * enums shared by much of the stack-handling code * Data Structure and Algorithms: * History: * Notes: * References: */ #if !defined(PARROT_ENUMS_H_GUARD) #define PARROT_ENUMS_H_GUARD typedef enum { NO_STACK_ENTRY_TYPE = 0, STACK_ENTRY_INT = 1, STACK_ENTRY_FLOAT = 2, STACK_ENTRY_STRING = 3, STACK_ENTRY_PMC = 4, STACK_ENTRY_POINTER = 5, STACK_ENTRY_DESTINATION = 6 } Stack_entry_type; typedef enum { NO_STACK_ENTRY_FLAGS = 0, STACK_ENTRY_CLEANUP_FLAG = 1 << 0 } Stack_entry_flags; typedef enum { NO_STACK_CHUNK_FLAGS = 0, STACK_CHUNK_COW_FLAG = 1 << 0 } Stack_chunk_flags; #endif /* * Local variables: * c-indentation-style: bsd * c-basic-offset: 4 * indent-tabs-mode: nil * End: * * vim: expandtab shiftwidth=4: */
Add header and footer comments
Add header and footer comments git-svn-id: 6e74a02f85675cec270f5d931b0f6998666294a3@3957 d31e2699-5ff4-0310-a27c-f18f2fbe73fe
C
artistic-2.0
gitster/parrot,parrot/parrot,fernandobrito/parrot,fernandobrito/parrot,tewk/parrot-select,gagern/parrot,fernandobrito/parrot,youprofit/parrot,parrot/parrot,gagern/parrot,FROGGS/parrot,tkob/parrot,fernandobrito/parrot,gitster/parrot,FROGGS/parrot,tkob/parrot,FROGGS/parrot,FROGGS/parrot,tkob/parrot,gitster/parrot,tewk/parrot-select,gagern/parrot,gagern/parrot,gitster/parrot,parrot/parrot,tewk/parrot-select,tewk/parrot-select,gagern/parrot,tkob/parrot,tkob/parrot,fernandobrito/parrot,youprofit/parrot,youprofit/parrot,parrot/parrot,fernandobrito/parrot,gitster/parrot,gagern/parrot,tewk/parrot-select,fernandobrito/parrot,gagern/parrot,youprofit/parrot,youprofit/parrot,FROGGS/parrot,FROGGS/parrot,tewk/parrot-select,tkob/parrot,gitster/parrot,tkob/parrot,youprofit/parrot,parrot/parrot,youprofit/parrot,FROGGS/parrot,tewk/parrot-select,tkob/parrot,gitster/parrot,FROGGS/parrot,youprofit/parrot
7ca02c0585b8a6d208b2e5667cd272e6b2aebc51
OCCommunicationLib/OCCommunicationLib/OCErrorMsg.h
OCCommunicationLib/OCCommunicationLib/OCErrorMsg.h
// // OCErrorMsg.h // Owncloud iOs Client // // Copyright (C) 2014 ownCloud Inc. (http://www.owncloud.org/) // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // The above copyright notice and this permission notice shall be included in // all copies or substantial portions of the Software. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN // THE SOFTWARE. // #define kOCErrorServerUnauthorized 401 #define kOCErrorServerForbidden 403 #define kOCErrorServerPathNotFound 404 #define kOCErrorServerMethodNotPermitted 405 #define kOCErrorProxyAuth 407 #define kOCErrorServerTimeout 408
// // OCErrorMsg.h // Owncloud iOs Client // // Copyright (C) 2014 ownCloud Inc. (http://www.owncloud.org/) // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // The above copyright notice and this permission notice shall be included in // all copies or substantial portions of the Software. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN // THE SOFTWARE. // #define kOCErrorServerUnauthorized 401 #define kOCErrorServerForbidden 403 #define kOCErrorServerPathNotFound 404 #define kOCErrorServerMethodNotPermitted 405 #define kOCErrorProxyAuth 407 #define kOCErrorServerTimeout 408 #define kOCErrorServerInternalError 500
Add new code to manage 500 server error
Add new code to manage 500 server error
C
mit
pd81999/ios-library,blueseaguo/ios-library,owncloud/ios-library
2e5b331ef0015a62c698bfdd0072fe2712c5b19e
src/lib/mkdir-parents.c
src/lib/mkdir-parents.c
/* Copyright (c) 2003 Timo Sirainen */ #include "lib.h" #include "mkdir-parents.h" #include <sys/stat.h> int mkdir_parents(const char *path, mode_t mode) { const char *p; if (mkdir(path, mode) < 0 && errno != EEXIST) { if (errno != ENOENT) return -1; p = strrchr(path, '/'); if (p == NULL || p == path) return -1; /* shouldn't happen */ t_push(); if (mkdir_parents(t_strdup_until(path, p), mode) < 0) { t_pop(); return -1; } t_pop(); /* should work now */ if (mkdir(path, mode) < 0 && errno != EEXIST) return -1; } return 0; }
/* Copyright (c) 2003 Timo Sirainen */ #include "lib.h" #include "mkdir-parents.h" #include <sys/stat.h> int mkdir_parents(const char *path, mode_t mode) { const char *p; /* EISDIR check is for BSD/OS which returns it if path contains '/' at the end and it exists. */ if (mkdir(path, mode) < 0 && errno != EEXIST && errno != EISDIR) { if (errno != ENOENT) return -1; p = strrchr(path, '/'); if (p == NULL || p == path) return -1; /* shouldn't happen */ t_push(); if (mkdir_parents(t_strdup_until(path, p), mode) < 0) { t_pop(); return -1; } t_pop(); /* should work now */ if (mkdir(path, mode) < 0 && errno != EEXIST) return -1; } return 0; }
Check for EISDIR error as well. Fixed problems with BSD/OS.
Check for EISDIR error as well. Fixed problems with BSD/OS.
C
mit
damoxc/dovecot,LTD-Beget/dovecot,LTD-Beget/dovecot,LTD-Beget/dovecot,Distrotech/dovecot,LTD-Beget/dovecot,damoxc/dovecot,damoxc/dovecot,damoxc/dovecot,Distrotech/dovecot,Distrotech/dovecot,damoxc/dovecot,Distrotech/dovecot,Distrotech/dovecot,LTD-Beget/dovecot
6f3cd686426f580ef35015d7da331438e0a04cb6
Source/SimpleITKMacro.h
Source/SimpleITKMacro.h
#ifndef __SimpleITKMacro_h #define __SimpleITKMacro_h #include <stdint.h> #include <itkImageBase.h> #include <itkImage.h> #include <itkLightObject.h> #include <itkSmartPointer.h> // Define macros to aid in the typeless layer typedef itk::ImageBase<3> SimpleImageBase; namespace itk { namespace simple { // To add a new type you must: // 1. Add an entry to ImageDataType // 2. Add to the sitkDataTypeSwitch // 3. Add the new type to ImageFileReader/ImageFileWriter enum ImageDataType { sitkUInt8, // Unsigned 8 bit integer sitkInt16, // Signed 16 bit integer sitkInt32, // Signed 32 bit integer sitkFloat32, // 32 bit float }; #define sitkImageDataTypeCase(typeN, type, call ) \ case typeN: { typedef type DataType; call; }; break #define sitkImageDataTypeSwitch( call ) \ sitkImageDataTypeCase ( sitkUInt8, uint8_t, call ); \ sitkImageDataTypeCase ( sitkInt16, int16_t, call ); \ sitkImageDataTypeCase ( sitkInt32, int32_t, call ); \ sitkImageDataTypeCase ( sitkFloat32, float, call ); } } #endif
#ifndef __SimpleITKMacro_h #define __SimpleITKMacro_h // Ideally, take the types from the C99 standard. However, // VS 8 does not have stdint.h, but they are defined anyway. #ifndef _MSC_VER #include <stdint.h> #endif #include <itkImageBase.h> #include <itkImage.h> #include <itkLightObject.h> #include <itkSmartPointer.h> // Define macros to aid in the typeless layer typedef itk::ImageBase<3> SimpleImageBase; namespace itk { namespace simple { // To add a new type you must: // 1. Add an entry to ImageDataType // 2. Add to the sitkDataTypeSwitch // 3. Add the new type to ImageFileReader/ImageFileWriter enum ImageDataType { sitkUInt8, // Unsigned 8 bit integer sitkInt16, // Signed 16 bit integer sitkInt32, // Signed 32 bit integer sitkFloat32, // 32 bit float }; #define sitkImageDataTypeCase(typeN, type, call ) \ case typeN: { typedef type DataType; call; }; break #define sitkImageDataTypeSwitch( call ) \ sitkImageDataTypeCase ( sitkUInt8, uint8_t, call ); \ sitkImageDataTypeCase ( sitkInt16, int16_t, call ); \ sitkImageDataTypeCase ( sitkInt32, int32_t, call ); \ sitkImageDataTypeCase ( sitkFloat32, float, call ); } } #endif
Support for MS Visual Studio 2008.
Support for MS Visual Studio 2008.
C
apache-2.0
blowekamp/SimpleITK,richardbeare/SimpleITK,SimpleITK/SimpleITK,blowekamp/SimpleITK,hendradarwin/SimpleITK,richardbeare/SimpleITK,richardbeare/SimpleITK,InsightSoftwareConsortium/SimpleITK,SimpleITK/SimpleITK,blowekamp/SimpleITK,SimpleITK/SimpleITK,richardbeare/SimpleITK,blowekamp/SimpleITK,kaspermarstal/SimpleElastix,richardbeare/SimpleITK,hendradarwin/SimpleITK,InsightSoftwareConsortium/SimpleITK,kaspermarstal/SimpleElastix,blowekamp/SimpleITK,SimpleITK/SimpleITK,kaspermarstal/SimpleElastix,kaspermarstal/SimpleElastix,InsightSoftwareConsortium/SimpleITK,richardbeare/SimpleITK,kaspermarstal/SimpleElastix,richardbeare/SimpleITK,InsightSoftwareConsortium/SimpleITK,SimpleITK/SimpleITK,blowekamp/SimpleITK,hendradarwin/SimpleITK,SimpleITK/SimpleITK,kaspermarstal/SimpleElastix,hendradarwin/SimpleITK,richardbeare/SimpleITK,blowekamp/SimpleITK,InsightSoftwareConsortium/SimpleITK,hendradarwin/SimpleITK,SimpleITK/SimpleITK,InsightSoftwareConsortium/SimpleITK,InsightSoftwareConsortium/SimpleITK,hendradarwin/SimpleITK,kaspermarstal/SimpleElastix,hendradarwin/SimpleITK,SimpleITK/SimpleITK,blowekamp/SimpleITK,hendradarwin/SimpleITK,InsightSoftwareConsortium/SimpleITK
4a7f84f1682c8bc6ce3fe179bac9aa917284f00d
test/ClangModules/Inputs/usr/include/Foundation.h
test/ClangModules/Inputs/usr/include/Foundation.h
@import objc; @interface NSArray : NSObject - (id)objectAtIndexedSubscript:(unsigned)idx; @end @interface Hive @property __attribute__((iboutletcollection(B))) NSArray *bees; @end
@import objc; typedef unsigned long NSUInteger; @interface NSArray : NSObject - (id)objectAtIndexedSubscript:(NSUInteger)idx; @end @interface Hive @property __attribute__((iboutletcollection(B))) NSArray *bees; @end
Use NSUInteger, even in our little tests.
Use NSUInteger, even in our little tests. Swift SVN r3555
C
apache-2.0
rudkx/swift,SwiftAndroid/swift,airspeedswift/swift,kstaring/swift,hughbe/swift,SwiftAndroid/swift,devincoughlin/swift,johnno1962d/swift,zisko/swift,tinysun212/swift-windows,gottesmm/swift,natecook1000/swift,swiftix/swift.old,hughbe/swift,uasys/swift,kperryua/swift,ken0nek/swift,uasys/swift,emilstahl/swift,ahoppen/swift,milseman/swift,austinzheng/swift,gottesmm/swift,kstaring/swift,karwa/swift,mightydeveloper/swift,manavgabhawala/swift,allevato/swift,adrfer/swift,johnno1962d/swift,aschwaighofer/swift,swiftix/swift,huonw/swift,tinysun212/swift-windows,sdulal/swift,kusl/swift,gmilos/swift,shajrawi/swift,jopamer/swift,Ivacker/swift,ahoppen/swift,swiftix/swift.old,JGiola/swift,gmilos/swift,calebd/swift,calebd/swift,swiftix/swift,return/swift,alblue/swift,sschiau/swift,jmgc/swift,russbishop/swift,felix91gr/swift,amraboelela/swift,karwa/swift,rudkx/swift,xedin/swift,Ivacker/swift,zisko/swift,IngmarStein/swift,cbrentharris/swift,atrick/swift,slavapestov/swift,deyton/swift,gmilos/swift,austinzheng/swift,johnno1962d/swift,austinzheng/swift,roambotics/swift,therealbnut/swift,dreamsxin/swift,apple/swift,aschwaighofer/swift,mightydeveloper/swift,khizkhiz/swift,kusl/swift,slavapestov/swift,huonw/swift,jopamer/swift,KrishMunot/swift,return/swift,danielmartin/swift,tinysun212/swift-windows,milseman/swift,jtbandes/swift,hooman/swift,tardieu/swift,LeoShimonaka/swift,aschwaighofer/swift,nathawes/swift,dduan/swift,Jnosh/swift,Ivacker/swift,mightydeveloper/swift,allevato/swift,milseman/swift,jtbandes/swift,nathawes/swift,return/swift,sdulal/swift,hooman/swift,emilstahl/swift,airspeedswift/swift,brentdax/swift,milseman/swift,gottesmm/swift,natecook1000/swift,tjw/swift,modocache/swift,dreamsxin/swift,devincoughlin/swift,apple/swift,parkera/swift,JaSpa/swift,milseman/swift,LeoShimonaka/swift,allevato/swift,harlanhaskins/swift,bitjammer/swift,xwu/swift,alblue/swift,danielmartin/swift,adrfer/swift,bitjammer/swift,stephentyrone/swift,therealbnut/swift,kentya6/swift,amraboelela/swift,karwa/swift,devincoughlin/swift,karwa/swift,brentdax/swift,devincoughlin/swift,swiftix/swift.old,khizkhiz/swift,bitjammer/swift,jtbandes/swift,practicalswift/swift,xwu/swift,glessard/swift,shahmishal/swift,JGiola/swift,shahmishal/swift,harlanhaskins/swift,parkera/swift,tjw/swift,jckarter/swift,tardieu/swift,brentdax/swift,xedin/swift,ben-ng/swift,JaSpa/swift,kentya6/swift,Jnosh/swift,swiftix/swift,russbishop/swift,sschiau/swift,uasys/swift,OscarSwanros/swift,khizkhiz/swift,manavgabhawala/swift,sdulal/swift,harlanhaskins/swift,brentdax/swift,hooman/swift,SwiftAndroid/swift,xedin/swift,gribozavr/swift,shahmishal/swift,tkremenek/swift,rudkx/swift,nathawes/swift,adrfer/swift,shajrawi/swift,JGiola/swift,parkera/swift,alblue/swift,frootloops/swift,danielmartin/swift,austinzheng/swift,stephentyrone/swift,felix91gr/swift,jckarter/swift,glessard/swift,SwiftAndroid/swift,tkremenek/swift,sdulal/swift,stephentyrone/swift,natecook1000/swift,ben-ng/swift,danielmartin/swift,dduan/swift,kentya6/swift,arvedviehweger/swift,JGiola/swift,modocache/swift,amraboelela/swift,slavapestov/swift,alblue/swift,russbishop/swift,kusl/swift,codestergit/swift,kstaring/swift,khizkhiz/swift,modocache/swift,shahmishal/swift,JGiola/swift,IngmarStein/swift,shajrawi/swift,gregomni/swift,stephentyrone/swift,gribozavr/swift,jopamer/swift,djwbrown/swift,gregomni/swift,practicalswift/swift,bitjammer/swift,kperryua/swift,cbrentharris/swift,atrick/swift,mightydeveloper/swift,aschwaighofer/swift,emilstahl/swift,uasys/swift,OscarSwanros/swift,benlangmuir/swift,practicalswift/swift,return/swift,ken0nek/swift,CodaFi/swift,kusl/swift,austinzheng/swift,parkera/swift,hughbe/swift,hooman/swift,cbrentharris/swift,sdulal/swift,MukeshKumarS/Swift,benlangmuir/swift,tjw/swift,felix91gr/swift,sschiau/swift,calebd/swift,swiftix/swift,sschiau/swift,xwu/swift,rudkx/swift,KrishMunot/swift,deyton/swift,KrishMunot/swift,jmgc/swift,arvedviehweger/swift,khizkhiz/swift,dduan/swift,jckarter/swift,milseman/swift,mightydeveloper/swift,deyton/swift,xwu/swift,natecook1000/swift,shahmishal/swift,amraboelela/swift,practicalswift/swift,ken0nek/swift,Jnosh/swift,danielmartin/swift,uasys/swift,rudkx/swift,devincoughlin/swift,arvedviehweger/swift,airspeedswift/swift,jckarter/swift,kstaring/swift,jckarter/swift,jckarter/swift,russbishop/swift,karwa/swift,xwu/swift,aschwaighofer/swift,jtbandes/swift,airspeedswift/swift,xwu/swift,lorentey/swift,CodaFi/swift,stephentyrone/swift,lorentey/swift,manavgabhawala/swift,kstaring/swift,jtbandes/swift,tjw/swift,jopamer/swift,zisko/swift,russbishop/swift,MukeshKumarS/Swift,djwbrown/swift,SwiftAndroid/swift,LeoShimonaka/swift,CodaFi/swift,therealbnut/swift,djwbrown/swift,apple/swift,KrishMunot/swift,glessard/swift,lorentey/swift,swiftix/swift,kstaring/swift,LeoShimonaka/swift,huonw/swift,tardieu/swift,calebd/swift,LeoShimonaka/swift,cbrentharris/swift,airspeedswift/swift,gottesmm/swift,parkera/swift,IngmarStein/swift,gribozavr/swift,parkera/swift,tkremenek/swift,parkera/swift,ahoppen/swift,johnno1962d/swift,apple/swift,nathawes/swift,tkremenek/swift,slavapestov/swift,therealbnut/swift,johnno1962d/swift,allevato/swift,tardieu/swift,jmgc/swift,glessard/swift,SwiftAndroid/swift,slavapestov/swift,frootloops/swift,hughbe/swift,JaSpa/swift,tinysun212/swift-windows,modocache/swift,swiftix/swift,brentdax/swift,sschiau/swift,MukeshKumarS/Swift,frootloops/swift,roambotics/swift,frootloops/swift,CodaFi/swift,calebd/swift,Jnosh/swift,shahmishal/swift,swiftix/swift,tjw/swift,jtbandes/swift,ben-ng/swift,OscarSwanros/swift,slavapestov/swift,karwa/swift,tardieu/swift,gottesmm/swift,dduan/swift,modocache/swift,kentya6/swift,Ivacker/swift,natecook1000/swift,shahmishal/swift,ben-ng/swift,modocache/swift,jopamer/swift,xedin/swift,djwbrown/swift,gmilos/swift,atrick/swift,gregomni/swift,kentya6/swift,frootloops/swift,shajrawi/swift,manavgabhawala/swift,codestergit/swift,jopamer/swift,huonw/swift,atrick/swift,arvedviehweger/swift,allevato/swift,kentya6/swift,gottesmm/swift,tkremenek/swift,tkremenek/swift,shajrawi/swift,OscarSwanros/swift,hooman/swift,emilstahl/swift,OscarSwanros/swift,codestergit/swift,MukeshKumarS/Swift,lorentey/swift,adrfer/swift,xedin/swift,kentya6/swift,practicalswift/swift,rudkx/swift,ahoppen/swift,benlangmuir/swift,deyton/swift,jopamer/swift,russbishop/swift,aschwaighofer/swift,practicalswift/swift,adrfer/swift,Ivacker/swift,benlangmuir/swift,therealbnut/swift,zisko/swift,Ivacker/swift,JaSpa/swift,russbishop/swift,airspeedswift/swift,JGiola/swift,zisko/swift,IngmarStein/swift,mightydeveloper/swift,harlanhaskins/swift,lorentey/swift,Ivacker/swift,jmgc/swift,kperryua/swift,sdulal/swift,codestergit/swift,frootloops/swift,codestergit/swift,lorentey/swift,roambotics/swift,shajrawi/swift,bitjammer/swift,benlangmuir/swift,hughbe/swift,codestergit/swift,bitjammer/swift,alblue/swift,kperryua/swift,jmgc/swift,huonw/swift,CodaFi/swift,emilstahl/swift,ben-ng/swift,LeoShimonaka/swift,cbrentharris/swift,cbrentharris/swift,kusl/swift,sdulal/swift,harlanhaskins/swift,adrfer/swift,IngmarStein/swift,gribozavr/swift,hughbe/swift,dduan/swift,CodaFi/swift,gregomni/swift,dduan/swift,MukeshKumarS/Swift,austinzheng/swift,djwbrown/swift,devincoughlin/swift,Jnosh/swift,huonw/swift,ken0nek/swift,mightydeveloper/swift,hooman/swift,ben-ng/swift,karwa/swift,jckarter/swift,practicalswift/swift,khizkhiz/swift,MukeshKumarS/Swift,gribozavr/swift,manavgabhawala/swift,harlanhaskins/swift,apple/swift,apple/swift,IngmarStein/swift,JaSpa/swift,emilstahl/swift,natecook1000/swift,slavapestov/swift,adrfer/swift,khizkhiz/swift,manavgabhawala/swift,swiftix/swift.old,therealbnut/swift,sschiau/swift,tjw/swift,djwbrown/swift,Jnosh/swift,calebd/swift,return/swift,atrick/swift,johnno1962d/swift,zisko/swift,xedin/swift,kperryua/swift,therealbnut/swift,brentdax/swift,aschwaighofer/swift,return/swift,roambotics/swift,codestergit/swift,emilstahl/swift,shajrawi/swift,return/swift,lorentey/swift,CodaFi/swift,stephentyrone/swift,benlangmuir/swift,ben-ng/swift,devincoughlin/swift,uasys/swift,stephentyrone/swift,atrick/swift,JaSpa/swift,gmilos/swift,sdulal/swift,kentya6/swift,sschiau/swift,kusl/swift,ken0nek/swift,arvedviehweger/swift,gribozavr/swift,tardieu/swift,gregomni/swift,austinzheng/swift,tjw/swift,brentdax/swift,alblue/swift,roambotics/swift,frootloops/swift,djwbrown/swift,KrishMunot/swift,deyton/swift,LeoShimonaka/swift,tinysun212/swift-windows,kusl/swift,xedin/swift,gmilos/swift,xwu/swift,airspeedswift/swift,IngmarStein/swift,gribozavr/swift,dduan/swift,devincoughlin/swift,felix91gr/swift,LeoShimonaka/swift,allevato/swift,felix91gr/swift,gribozavr/swift,tinysun212/swift-windows,nathawes/swift,uasys/swift,jmgc/swift,karwa/swift,swiftix/swift.old,kperryua/swift,amraboelela/swift,MukeshKumarS/Swift,zisko/swift,glessard/swift,OscarSwanros/swift,gregomni/swift,deyton/swift,lorentey/swift,cbrentharris/swift,jmgc/swift,swiftix/swift.old,shahmishal/swift,hooman/swift,gottesmm/swift,johnno1962d/swift,gmilos/swift,Ivacker/swift,kusl/swift,nathawes/swift,glessard/swift,ahoppen/swift,harlanhaskins/swift,huonw/swift,sschiau/swift,modocache/swift,shajrawi/swift,natecook1000/swift,ken0nek/swift,danielmartin/swift,felix91gr/swift,KrishMunot/swift,mightydeveloper/swift,kperryua/swift,alblue/swift,JaSpa/swift,manavgabhawala/swift,calebd/swift,jtbandes/swift,amraboelela/swift,tardieu/swift,cbrentharris/swift,parkera/swift,bitjammer/swift,swiftix/swift.old,swiftix/swift.old,tkremenek/swift,deyton/swift,ken0nek/swift,roambotics/swift,arvedviehweger/swift,OscarSwanros/swift,amraboelela/swift,milseman/swift,tinysun212/swift-windows,kstaring/swift,felix91gr/swift,danielmartin/swift,SwiftAndroid/swift,xedin/swift,KrishMunot/swift,arvedviehweger/swift,emilstahl/swift,Jnosh/swift,ahoppen/swift,hughbe/swift,allevato/swift,practicalswift/swift,nathawes/swift
9c926f325de84b4692d72ac67050bc6f66bbd47d
include/grpc/impl/codegen/fork.h
include/grpc/impl/codegen/fork.h
/* * * Copyright 2017 gRPC authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * */ #ifndef GRPC_IMPL_CODEGEN_FORK_H #define GRPC_IMPL_CODEGEN_FORK_H /** * gRPC applications should call this before calling fork(). There should be no * active gRPC function calls between calling grpc_prefork() and * grpc_postfork_parent()/grpc_postfork_child(). * * * Typical use: * grpc_prefork(); * int pid = fork(); * if (pid) { * grpc_postfork_parent(); * // Parent process.. * } else { * grpc_postfork_child(); * // Child process... * } */ void grpc_prefork(); void grpc_postfork_parent(); void grpc_postfork_child(); void grpc_fork_handlers_auto_register(); #endif /* GRPC_IMPL_CODEGEN_FORK_H */
/* * * Copyright 2017 gRPC authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * */ #ifndef GRPC_IMPL_CODEGEN_FORK_H #define GRPC_IMPL_CODEGEN_FORK_H /** * gRPC applications should call this before calling fork(). There should be no * active gRPC function calls between calling grpc_prefork() and * grpc_postfork_parent()/grpc_postfork_child(). * * * Typical use: * grpc_prefork(); * int pid = fork(); * if (pid) { * grpc_postfork_parent(); * // Parent process.. * } else { * grpc_postfork_child(); * // Child process... * } */ void grpc_prefork(void); void grpc_postfork_parent(void); void grpc_postfork_child(void); void grpc_fork_handlers_auto_register(void); #endif /* GRPC_IMPL_CODEGEN_FORK_H */
Resolve Swift warnings by specifying void arguments
Resolve Swift warnings by specifying void arguments The following functions in the `fork.h` file cause a `This function declaration is not a prototype` warning in Swift: ``` void grpc_prefork(void); void grpc_postfork_parent(void); void grpc_postfork_child(void); void grpc_fork_handlers_auto_register(void); ``` Explicitly specifying `void` as the argument resolves the warnings. Reproducible using Xcode 9.2 with `SwiftGRPC`/`gRPC-Core` via CocoaPods.
C
apache-2.0
dgquintas/grpc,jtattermusch/grpc,ncteisen/grpc,firebase/grpc,jboeuf/grpc,jboeuf/grpc,nicolasnoble/grpc,thinkerou/grpc,donnadionne/grpc,grpc/grpc,nicolasnoble/grpc,pszemus/grpc,ncteisen/grpc,stanley-cheung/grpc,donnadionne/grpc,ctiller/grpc,donnadionne/grpc,ctiller/grpc,ncteisen/grpc,jboeuf/grpc,ejona86/grpc,mehrdada/grpc,Vizerai/grpc,vjpai/grpc,carl-mastrangelo/grpc,nicolasnoble/grpc,dgquintas/grpc,simonkuang/grpc,stanley-cheung/grpc,muxi/grpc,stanley-cheung/grpc,Vizerai/grpc,thinkerou/grpc,Vizerai/grpc,mehrdada/grpc,grpc/grpc,ncteisen/grpc,ctiller/grpc,chrisdunelm/grpc,ejona86/grpc,firebase/grpc,nicolasnoble/grpc,thinkerou/grpc,vjpai/grpc,thinkerou/grpc,jtattermusch/grpc,thinkerou/grpc,muxi/grpc,thinkerou/grpc,pszemus/grpc,thinkerou/grpc,sreecha/grpc,jtattermusch/grpc,carl-mastrangelo/grpc,sreecha/grpc,dgquintas/grpc,Vizerai/grpc,mehrdada/grpc,chrisdunelm/grpc,sreecha/grpc,ejona86/grpc,firebase/grpc,ctiller/grpc,nicolasnoble/grpc,donnadionne/grpc,carl-mastrangelo/grpc,firebase/grpc,jtattermusch/grpc,donnadionne/grpc,muxi/grpc,Vizerai/grpc,thinkerou/grpc,ctiller/grpc,stanley-cheung/grpc,ncteisen/grpc,vjpai/grpc,simonkuang/grpc,carl-mastrangelo/grpc,sreecha/grpc,pszemus/grpc,jtattermusch/grpc,muxi/grpc,ejona86/grpc,carl-mastrangelo/grpc,thinkerou/grpc,sreecha/grpc,vjpai/grpc,Vizerai/grpc,Vizerai/grpc,jboeuf/grpc,donnadionne/grpc,dgquintas/grpc,sreecha/grpc,nicolasnoble/grpc,nicolasnoble/grpc,donnadionne/grpc,chrisdunelm/grpc,simonkuang/grpc,dgquintas/grpc,chrisdunelm/grpc,pszemus/grpc,ctiller/grpc,mehrdada/grpc,chrisdunelm/grpc,jboeuf/grpc,jboeuf/grpc,stanley-cheung/grpc,ejona86/grpc,thinkerou/grpc,ncteisen/grpc,nicolasnoble/grpc,mehrdada/grpc,simonkuang/grpc,grpc/grpc,carl-mastrangelo/grpc,jboeuf/grpc,firebase/grpc,donnadionne/grpc,vjpai/grpc,grpc/grpc,sreecha/grpc,carl-mastrangelo/grpc,grpc/grpc,vjpai/grpc,nicolasnoble/grpc,vjpai/grpc,grpc/grpc,firebase/grpc,carl-mastrangelo/grpc,sreecha/grpc,muxi/grpc,carl-mastrangelo/grpc,carl-mastrangelo/grpc,chrisdunelm/grpc,mehrdada/grpc,jtattermusch/grpc,grpc/grpc,ctiller/grpc,nicolasnoble/grpc,firebase/grpc,donnadionne/grpc,carl-mastrangelo/grpc,mehrdada/grpc,nicolasnoble/grpc,firebase/grpc,ejona86/grpc,mehrdada/grpc,pszemus/grpc,ncteisen/grpc,muxi/grpc,stanley-cheung/grpc,ejona86/grpc,ejona86/grpc,stanley-cheung/grpc,dgquintas/grpc,muxi/grpc,chrisdunelm/grpc,ctiller/grpc,ctiller/grpc,sreecha/grpc,Vizerai/grpc,dgquintas/grpc,jtattermusch/grpc,stanley-cheung/grpc,grpc/grpc,thinkerou/grpc,ncteisen/grpc,jtattermusch/grpc,simonkuang/grpc,mehrdada/grpc,donnadionne/grpc,simonkuang/grpc,jboeuf/grpc,vjpai/grpc,vjpai/grpc,ncteisen/grpc,Vizerai/grpc,ejona86/grpc,chrisdunelm/grpc,simonkuang/grpc,vjpai/grpc,firebase/grpc,ejona86/grpc,pszemus/grpc,mehrdada/grpc,jboeuf/grpc,firebase/grpc,simonkuang/grpc,jboeuf/grpc,dgquintas/grpc,carl-mastrangelo/grpc,pszemus/grpc,pszemus/grpc,firebase/grpc,grpc/grpc,ncteisen/grpc,Vizerai/grpc,muxi/grpc,muxi/grpc,dgquintas/grpc,stanley-cheung/grpc,jtattermusch/grpc,sreecha/grpc,dgquintas/grpc,sreecha/grpc,pszemus/grpc,mehrdada/grpc,sreecha/grpc,muxi/grpc,ctiller/grpc,ncteisen/grpc,nicolasnoble/grpc,ctiller/grpc,grpc/grpc,chrisdunelm/grpc,stanley-cheung/grpc,ctiller/grpc,jtattermusch/grpc,donnadionne/grpc,ncteisen/grpc,pszemus/grpc,simonkuang/grpc,grpc/grpc,jboeuf/grpc,thinkerou/grpc,chrisdunelm/grpc,muxi/grpc,stanley-cheung/grpc,mehrdada/grpc,Vizerai/grpc,ejona86/grpc,donnadionne/grpc,chrisdunelm/grpc,vjpai/grpc,jtattermusch/grpc,vjpai/grpc,pszemus/grpc,dgquintas/grpc,jtattermusch/grpc,muxi/grpc,grpc/grpc,ejona86/grpc,jboeuf/grpc,stanley-cheung/grpc,firebase/grpc,pszemus/grpc
f4d017d65f7e464baeacc04987f5201eabc90c49
include/gpu/gl/SkMesaGLContext.h
include/gpu/gl/SkMesaGLContext.h
/* * Copyright 2011 Google Inc. * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #ifndef SkMesaGLContext_DEFINED #define SkMesaGLContext_DEFINED #include "SkGLContext.h" #if SK_MESA class SkMesaGLContext : public SkGLContext { private: typedef intptr_t Context; public: SkMesaGLContext(); virtual ~SkMesaGLContext(); virtual void makeCurrent() const SK_OVERRIDE; class AutoContextRestore { public: AutoContextRestore(); ~AutoContextRestore(); private: Context fOldContext; GLint fOldWidth; GLint fOldHeight; GLint fOldFormat; void* fOldImage; }; protected: virtual const GrGLInterface* createGLContext() SK_OVERRIDE; virtual void destroyGLContext() SK_OVERRIDE; private: Context fContext; GrGLubyte *fImage; }; #endif #endif
/* * Copyright 2011 Google Inc. * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #ifndef SkMesaGLContext_DEFINED #define SkMesaGLContext_DEFINED #include "SkGLContext.h" #if SK_MESA class SkMesaGLContext : public SkGLContext { private: typedef intptr_t Context; public: SkMesaGLContext(); virtual ~SkMesaGLContext(); virtual void makeCurrent() const SK_OVERRIDE; class AutoContextRestore { public: AutoContextRestore(); ~AutoContextRestore(); private: Context fOldContext; GrGLint fOldWidth; GrGLint fOldHeight; GrGLint fOldFormat; void* fOldImage; }; protected: virtual const GrGLInterface* createGLContext() SK_OVERRIDE; virtual void destroyGLContext() SK_OVERRIDE; private: Context fContext; GrGLubyte *fImage; }; #endif #endif
Fix undefined GLint in Mac builds
Fix undefined GLint in Mac builds git-svn-id: e8541e15acce502a64c929015570ad1648e548cd@3736 2bbb7eff-a529-9590-31e7-b0007b416f81
C
bsd-3-clause
MatChung/color-emoji.skia,Frankie-666/color-emoji.skia,hbwhlklive/color-emoji.skia,hbwhlklive/color-emoji.skia,MatChung/color-emoji.skia,Frankie-666/color-emoji.skia,hbwhlklive/color-emoji.skia,Frankie-666/color-emoji.skia,Frankie-666/color-emoji.skia,Hankuo/color-emoji.skia,Hankuo/color-emoji.skia,MatChung/color-emoji.skia,MatChung/color-emoji.skia,MatChung/color-emoji.skia,Hankuo/color-emoji.skia,Frankie-666/color-emoji.skia,Hankuo/color-emoji.skia,Hankuo/color-emoji.skia,hbwhlklive/color-emoji.skia,Frankie-666/color-emoji.skia,hbwhlklive/color-emoji.skia,Hankuo/color-emoji.skia,hbwhlklive/color-emoji.skia,MatChung/color-emoji.skia
9cdef1b46feb742a91e926f03cf6edc5a074bc4d
test/test_theft_aux.c
test/test_theft_aux.c
#include "test_theft.h" #include "theft_aux.h" SUITE(aux) { // builtins }
#include "test_theft.h" #include "theft_aux.h" struct a_squared_lte_b_env { struct theft_print_trial_result_env print_env; }; static enum theft_trial_res prop_a_squared_lte_b(void *arg_a, void *arg_b) { int8_t a = *(int8_t *)arg_a; uint16_t b = *(uint16_t *)arg_b; if (0) { fprintf(stdout, "\n$$ checking (%d * %d) < %u => %d ? %d\n", a, a, b, a * a, a * a <= b); } return ((a * a) <= b) ? THEFT_TRIAL_PASS : THEFT_TRIAL_FAIL; } TEST a_squared_lte_b(void) { theft_seed seed = theft_seed_of_time(); struct a_squared_lte_b_env env; memset(&env, 0x00, sizeof(env)); struct theft_run_config cfg = { .name = __func__, .fun = prop_a_squared_lte_b, .type_info = { theft_get_builtin_type_info(THEFT_BUILTIN_int8_t), theft_get_builtin_type_info(THEFT_BUILTIN_uint16_t), }, .bloom_bits = 20, .seed = seed, .hooks = { .run_pre = theft_hook_run_pre_print_info, .run_post = theft_hook_run_post_print_info, .env = &env, }, }; ASSERT_EQ_FMTm("should find counter-examples", THEFT_RUN_FAIL, theft_run(&cfg), "%d"); PASS(); } SUITE(aux) { // builtins RUN_TEST(a_squared_lte_b); }
Add test using built-in generators.
theft_aux: Add test using built-in generators.
C
isc
silentbicycle/theft
d0adf82885e8d650575f9290ca2e2620e240bec5
treeplayer/inc/LinkDef.h
treeplayer/inc/LinkDef.h
/* @(#)root/treeplayer:$Name: $:$Id: LinkDef.h,v 1.1.1.1 2000/05/16 17:00:44 rdm Exp $ */ /************************************************************************* * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. * * All rights reserved. * * * * For the licensing terms see $ROOTSYS/LICENSE. * * For the list of contributors see $ROOTSYS/README/CREDITS. * *************************************************************************/ #ifdef __CINT__ #pragma link off all globals; #pragma link off all classes; #pragma link off all functions; #pragma link C++ class TTreePlayer; #pragma link C++ class TPacketGenerator; #pragma link C++ class TTreeFormula-; #endif
/* @(#)root/treeplayer:$Name: $:$Id: LinkDef.h,v 1.2 2000/07/06 17:20:52 brun Exp $ */ /************************************************************************* * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. * * All rights reserved. * * * * For the licensing terms see $ROOTSYS/LICENSE. * * For the list of contributors see $ROOTSYS/README/CREDITS. * *************************************************************************/ #ifdef __CINT__ #pragma link off all globals; #pragma link off all classes; #pragma link off all functions; #pragma link C++ class TTreePlayer+; #pragma link C++ class TPacketGenerator; #pragma link C++ class TTreeFormula-; #endif
Declare option "+" for TTreePlayer
Declare option "+" for TTreePlayer git-svn-id: acec3fd5b7ea1eb9e79d6329d318e8118ee2e14f@986 27541ba8-7e3a-0410-8455-c3a389f83636
C
lgpl-2.1
root-mirror/root,mattkretz/root,krafczyk/root,olifre/root,root-mirror/root,mhuwiler/rootauto,omazapa/root-old,krafczyk/root,veprbl/root,perovic/root,smarinac/root,esakellari/root,sawenzel/root,buuck/root,ffurano/root5,beniz/root,zzxuanyuan/root,Duraznos/root,veprbl/root,krafczyk/root,jrtomps/root,mkret2/root,abhinavmoudgil95/root,veprbl/root,abhinavmoudgil95/root,kirbyherm/root-r-tools,BerserkerTroll/root,georgtroska/root,zzxuanyuan/root-compressor-dummy,davidlt/root,root-mirror/root,buuck/root,perovic/root,sirinath/root,pspe/root,tc3t/qoot,strykejern/TTreeReader,Y--/root,BerserkerTroll/root,gganis/root,ffurano/root5,kirbyherm/root-r-tools,abhinavmoudgil95/root,veprbl/root,arch1tect0r/root,smarinac/root,sbinet/cxx-root,BerserkerTroll/root,vukasinmilosevic/root,gganis/root,thomaskeck/root,dfunke/root,gbitzes/root,vukasinmilosevic/root,bbockelm/root,olifre/root,esakellari/root,beniz/root,gbitzes/root,vukasinmilosevic/root,mhuwiler/rootauto,jrtomps/root,pspe/root,veprbl/root,Duraznos/root,evgeny-boger/root,kirbyherm/root-r-tools,BerserkerTroll/root,gganis/root,sbinet/cxx-root,olifre/root,gbitzes/root,mattkretz/root,sbinet/cxx-root,smarinac/root,tc3t/qoot,sbinet/cxx-root,abhinavmoudgil95/root,simonpf/root,simonpf/root,root-mirror/root,omazapa/root,strykejern/TTreeReader,perovic/root,ffurano/root5,perovic/root,gbitzes/root,sawenzel/root,arch1tect0r/root,Y--/root,thomaskeck/root,root-mirror/root,smarinac/root,esakellari/root,bbockelm/root,zzxuanyuan/root-compressor-dummy,smarinac/root,BerserkerTroll/root,Duraznos/root,gbitzes/root,lgiommi/root,0x0all/ROOT,lgiommi/root,cxx-hep/root-cern,alexschlueter/cern-root,esakellari/my_root_for_test,satyarth934/root,bbockelm/root,gganis/root,perovic/root,mattkretz/root,Y--/root,perovic/root,olifre/root,esakellari/root,smarinac/root,cxx-hep/root-cern,krafczyk/root,Y--/root,alexschlueter/cern-root,Dr15Jones/root,karies/root,sawenzel/root,pspe/root,zzxuanyuan/root-compressor-dummy,karies/root,buuck/root,0x0all/ROOT,BerserkerTroll/root,sirinath/root,mattkretz/root,nilqed/root,nilqed/root,root-mirror/root,strykejern/TTreeReader,veprbl/root,Y--/root,arch1tect0r/root,agarciamontoro/root,mkret2/root,dfunke/root,arch1tect0r/root,jrtomps/root,mkret2/root,satyarth934/root,jrtomps/root,georgtroska/root,pspe/root,arch1tect0r/root,abhinavmoudgil95/root,esakellari/my_root_for_test,omazapa/root,simonpf/root,gbitzes/root,esakellari/my_root_for_test,CristinaCristescu/root,karies/root,tc3t/qoot,simonpf/root,buuck/root,nilqed/root,omazapa/root-old,krafczyk/root,gbitzes/root,thomaskeck/root,georgtroska/root,satyarth934/root,krafczyk/root,sirinath/root,vukasinmilosevic/root,thomaskeck/root,tc3t/qoot,nilqed/root,evgeny-boger/root,omazapa/root,evgeny-boger/root,satyarth934/root,Dr15Jones/root,satyarth934/root,beniz/root,mhuwiler/rootauto,arch1tect0r/root,mattkretz/root,BerserkerTroll/root,0x0all/ROOT,esakellari/root,olifre/root,buuck/root,bbockelm/root,CristinaCristescu/root,kirbyherm/root-r-tools,buuck/root,evgeny-boger/root,mkret2/root,veprbl/root,zzxuanyuan/root,omazapa/root-old,simonpf/root,olifre/root,gbitzes/root,omazapa/root,gbitzes/root,sirinath/root,mattkretz/root,omazapa/root,nilqed/root,vukasinmilosevic/root,davidlt/root,omazapa/root,jrtomps/root,gbitzes/root,thomaskeck/root,sawenzel/root,zzxuanyuan/root,lgiommi/root,smarinac/root,pspe/root,omazapa/root,perovic/root,veprbl/root,dfunke/root,CristinaCristescu/root,perovic/root,krafczyk/root,ffurano/root5,veprbl/root,esakellari/my_root_for_test,satyarth934/root,Duraznos/root,davidlt/root,kirbyherm/root-r-tools,Y--/root,simonpf/root,beniz/root,mhuwiler/rootauto,tc3t/qoot,mattkretz/root,lgiommi/root,abhinavmoudgil95/root,sbinet/cxx-root,gganis/root,georgtroska/root,karies/root,zzxuanyuan/root-compressor-dummy,sirinath/root,mkret2/root,pspe/root,ffurano/root5,esakellari/root,zzxuanyuan/root,sbinet/cxx-root,nilqed/root,mattkretz/root,esakellari/root,esakellari/my_root_for_test,esakellari/root,tc3t/qoot,0x0all/ROOT,vukasinmilosevic/root,pspe/root,agarciamontoro/root,karies/root,georgtroska/root,cxx-hep/root-cern,mkret2/root,perovic/root,lgiommi/root,dfunke/root,mkret2/root,0x0all/ROOT,nilqed/root,mhuwiler/rootauto,mhuwiler/rootauto,alexschlueter/cern-root,zzxuanyuan/root,davidlt/root,buuck/root,Duraznos/root,omazapa/root-old,evgeny-boger/root,Duraznos/root,root-mirror/root,Y--/root,pspe/root,satyarth934/root,cxx-hep/root-cern,root-mirror/root,bbockelm/root,davidlt/root,dfunke/root,esakellari/root,davidlt/root,Y--/root,Dr15Jones/root,agarciamontoro/root,omazapa/root-old,CristinaCristescu/root,mattkretz/root,mattkretz/root,beniz/root,sirinath/root,krafczyk/root,olifre/root,olifre/root,lgiommi/root,buuck/root,dfunke/root,agarciamontoro/root,simonpf/root,dfunke/root,bbockelm/root,beniz/root,sawenzel/root,BerserkerTroll/root,Duraznos/root,davidlt/root,tc3t/qoot,georgtroska/root,bbockelm/root,Dr15Jones/root,bbockelm/root,mkret2/root,bbockelm/root,Duraznos/root,alexschlueter/cern-root,omazapa/root-old,dfunke/root,omazapa/root-old,gganis/root,esakellari/my_root_for_test,smarinac/root,jrtomps/root,vukasinmilosevic/root,nilqed/root,sbinet/cxx-root,Dr15Jones/root,smarinac/root,agarciamontoro/root,sawenzel/root,CristinaCristescu/root,gganis/root,bbockelm/root,abhinavmoudgil95/root,mhuwiler/rootauto,nilqed/root,agarciamontoro/root,tc3t/qoot,mkret2/root,olifre/root,georgtroska/root,georgtroska/root,nilqed/root,Duraznos/root,olifre/root,nilqed/root,strykejern/TTreeReader,sirinath/root,olifre/root,gganis/root,root-mirror/root,CristinaCristescu/root,mhuwiler/rootauto,Duraznos/root,lgiommi/root,vukasinmilosevic/root,pspe/root,CristinaCristescu/root,strykejern/TTreeReader,Y--/root,alexschlueter/cern-root,arch1tect0r/root,zzxuanyuan/root-compressor-dummy,beniz/root,agarciamontoro/root,zzxuanyuan/root-compressor-dummy,strykejern/TTreeReader,sbinet/cxx-root,veprbl/root,lgiommi/root,sirinath/root,zzxuanyuan/root-compressor-dummy,smarinac/root,Dr15Jones/root,esakellari/my_root_for_test,karies/root,alexschlueter/cern-root,evgeny-boger/root,BerserkerTroll/root,jrtomps/root,zzxuanyuan/root-compressor-dummy,beniz/root,perovic/root,zzxuanyuan/root,jrtomps/root,sbinet/cxx-root,omazapa/root-old,0x0all/ROOT,buuck/root,karies/root,beniz/root,satyarth934/root,CristinaCristescu/root,karies/root,gganis/root,beniz/root,zzxuanyuan/root,sawenzel/root,kirbyherm/root-r-tools,bbockelm/root,zzxuanyuan/root,cxx-hep/root-cern,sawenzel/root,arch1tect0r/root,dfunke/root,omazapa/root,zzxuanyuan/root,pspe/root,thomaskeck/root,cxx-hep/root-cern,mkret2/root,sawenzel/root,evgeny-boger/root,tc3t/qoot,Y--/root,esakellari/my_root_for_test,omazapa/root-old,esakellari/my_root_for_test,mhuwiler/rootauto,jrtomps/root,abhinavmoudgil95/root,omazapa/root,esakellari/root,evgeny-boger/root,thomaskeck/root,simonpf/root,jrtomps/root,arch1tect0r/root,zzxuanyuan/root-compressor-dummy,0x0all/ROOT,georgtroska/root,perovic/root,zzxuanyuan/root,zzxuanyuan/root-compressor-dummy,lgiommi/root,zzxuanyuan/root-compressor-dummy,CristinaCristescu/root,beniz/root,sbinet/cxx-root,sirinath/root,arch1tect0r/root,davidlt/root,strykejern/TTreeReader,sirinath/root,vukasinmilosevic/root,BerserkerTroll/root,gganis/root,krafczyk/root,georgtroska/root,sirinath/root,esakellari/root,evgeny-boger/root,krafczyk/root,agarciamontoro/root,ffurano/root5,sawenzel/root,krafczyk/root,abhinavmoudgil95/root,omazapa/root-old,gbitzes/root,Y--/root,lgiommi/root,satyarth934/root,karies/root,simonpf/root,arch1tect0r/root,zzxuanyuan/root,dfunke/root,abhinavmoudgil95/root,mattkretz/root,satyarth934/root,agarciamontoro/root,agarciamontoro/root,gganis/root,BerserkerTroll/root,buuck/root,dfunke/root,0x0all/ROOT,Dr15Jones/root,root-mirror/root,root-mirror/root,omazapa/root-old,simonpf/root,satyarth934/root,thomaskeck/root,vukasinmilosevic/root,evgeny-boger/root,esakellari/my_root_for_test,davidlt/root,tc3t/qoot,sbinet/cxx-root,0x0all/ROOT,zzxuanyuan/root,thomaskeck/root,lgiommi/root,thomaskeck/root,abhinavmoudgil95/root,CristinaCristescu/root,jrtomps/root,simonpf/root,cxx-hep/root-cern,georgtroska/root,agarciamontoro/root,karies/root,mhuwiler/rootauto,pspe/root,mhuwiler/rootauto,evgeny-boger/root,veprbl/root,omazapa/root,CristinaCristescu/root,alexschlueter/cern-root,omazapa/root,davidlt/root,kirbyherm/root-r-tools,mkret2/root,sawenzel/root,cxx-hep/root-cern,buuck/root,ffurano/root5,davidlt/root,vukasinmilosevic/root,karies/root,Duraznos/root
3ff245f667167309ec41941036daa358bc60209d
nrf5/sdk/nrf5_sdk_conf.h
nrf5/sdk/nrf5_sdk_conf.h
#ifndef NRF_SDK_CONF_H__ #define NRF_SDK_CONF_H__ // SD specific configurations. #if (BLUETOOTH_SD == 100) #define MICROPY_PY_BLE (1) #define MICROPY_PY_BLE_6LOWPAN (1) #define MICROPY_PY_USOCKET (1) #define MICROPY_PY_NETWORK (1) #elif (BLUETOOTH_SD == 110) #define MICROPY_PY_BLE (1) #elif (BLUETOOTH_SD == 132) #define MICROPY_PY_BLE (1) #define MICROPY_PY_BLE_NUS (0) #define MICROPY_PY_UBLUEPY (1) #define MICROPY_PY_UBLUEPY_PERIPHERAL (1) #else #error "SD not supported" #endif // Default defines. #ifndef MICROPY_PY_BLE_6LOWPAN #define MICROPY_PY_BLE_6LOWPAN (0) #endif #ifndef MICROPY_PY_BLE #define MICROPY_PY_BLE (0) #endif #ifndef MICROPY_PY_BLE_NUS #define MICROPY_PY_BLE_NUS (0) #endif #endif
#ifndef NRF_SDK_CONF_H__ #define NRF_SDK_CONF_H__ // SD specific configurations. #if (BLUETOOTH_SD == 100) #define MICROPY_PY_BLE (1) #define MICROPY_PY_BLE_6LOWPAN (1) #define MICROPY_PY_USOCKET (1) #define MICROPY_PY_NETWORK (1) #elif (BLUETOOTH_SD == 110) #define MICROPY_PY_BLE (1) #define MICROPY_PY_BLE_NUS (0) #define MICROPY_PY_UBLUEPY (1) #define MICROPY_PY_UBLUEPY_PERIPHERAL (1) #elif (BLUETOOTH_SD == 132) #define MICROPY_PY_BLE (1) #define MICROPY_PY_BLE_NUS (0) #define MICROPY_PY_UBLUEPY (1) #define MICROPY_PY_UBLUEPY_PERIPHERAL (1) #else #error "SD not supported" #endif // Default defines. #ifndef MICROPY_PY_BLE_6LOWPAN #define MICROPY_PY_BLE_6LOWPAN (0) #endif #ifndef MICROPY_PY_BLE #define MICROPY_PY_BLE (0) #endif #ifndef MICROPY_PY_BLE_NUS #define MICROPY_PY_BLE_NUS (0) #endif #endif
Enable ubluepy module if s110 bluetooth stack is enabled.
nrf5/sdk: Enable ubluepy module if s110 bluetooth stack is enabled.
C
mit
tralamazza/micropython,tralamazza/micropython,adafruit/circuitpython,adafruit/micropython,adafruit/micropython,adafruit/micropython,tralamazza/micropython,adafruit/micropython,adafruit/circuitpython,tralamazza/micropython,adafruit/circuitpython,adafruit/circuitpython,adafruit/circuitpython,adafruit/circuitpython,adafruit/micropython
55793ac91e2491d9c9af88aa82792be759ac2039
i2c.h
i2c.h
#ifndef _I2C_H #define _I2C_H #define I2C_FREQ 100000 struct i2c_iovec_s { uint8_t *base; uint8_t len; }; void i2c_init(void); void i2c_open(void); void i2c_close(void); int8_t i2c_readv(uint8_t address, struct i2c_iovec_s *iov, uint8_t iovcnt); int8_t i2c_writev(uint8_t address, struct i2c_iovec_s *iov, uint8_t iovcnt); int8_t i2c_read(uint8_t address, uint8_t *buf, uint8_t len); int8_t i2c_write(uint8_t address, uint8_t *buf, uint8_t len); int8_t i2c_read_from(uint8_t address, uint8_t reg, uint8_t *buf, uint8_t len); int8_t i2c_write_to(uint8_t address, uint8_t reg, uint8_t *buf, uint8_t len); #endif
#ifndef _I2C_H #define _I2C_H #ifndef I2C_FREQ #define I2C_FREQ 100000 #endif struct i2c_iovec_s { uint8_t *base; uint8_t len; }; void i2c_init(void); void i2c_open(void); void i2c_close(void); int8_t i2c_readv(uint8_t address, struct i2c_iovec_s *iov, uint8_t iovcnt); int8_t i2c_writev(uint8_t address, struct i2c_iovec_s *iov, uint8_t iovcnt); int8_t i2c_read(uint8_t address, uint8_t *buf, uint8_t len); int8_t i2c_write(uint8_t address, uint8_t *buf, uint8_t len); int8_t i2c_read_from(uint8_t address, uint8_t reg, uint8_t *buf, uint8_t len); int8_t i2c_write_to(uint8_t address, uint8_t reg, uint8_t *buf, uint8_t len); #endif
Allow I2C_FREQ to be defined externally
Allow I2C_FREQ to be defined externally
C
mit
pietern/avr-tasks,pietern/avr-tasks