Dataset Viewer
commit
stringlengths 40
40
| old_file
stringlengths 4
217
| new_file
stringlengths 4
217
| old_code
stringlengths 0
3.94k
| new_code
stringlengths 1
4.42k
| subject
stringlengths 15
736
| message
stringlengths 15
9.92k
| lang
stringclasses 218
values | license
stringclasses 13
values | repos
stringlengths 6
114k
| udiff
stringlengths 42
4.57k
|
|---|---|---|---|---|---|---|---|---|---|---|
db140493afab616f7da7c3212c5e0ae44650b72f
|
.circleci/config.yml
|
.circleci/config.yml
|
# Clojure CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-clojure/ for more details
#
version: 2.1
jobs:
build:
docker:
# specify the version you desire here
- image: circleci/clojure:tools-deps-1.9.0.394
# Specify service dependencies here if necessary
# CircleCI maintains a library of pre-built images
# documented at https://circleci.com/docs/2.0/circleci-images/
# - image: circleci/postgres:9.4
working_directory: ~/repo
environment:
# Customize the JVM maximum heap limit
JVM_OPTS: -Xmx3200m
steps:
- checkout
# Download and cache dependencies
- restore_cache:
keys:
- v2-dependencies-{{ checksum "deps.edn" }}
# fallback to using the latest cache if no exact match is found
- v2-dependencies-
- run: clojure -P -M:test
- save_cache:
paths:
- ~/.m2
key: v2-dependencies-{{ checksum "deps.edn" }}
# run tests!
- run: clojure -M:test
|
# Clojure CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-clojure/ for more details
#
version: 2.1
jobs:
build:
docker:
# specify the version you desire here
- image: circleci/clojure:tools-deps-1.10.1.727
# Specify service dependencies here if necessary
# CircleCI maintains a library of pre-built images
# documented at https://circleci.com/docs/2.0/circleci-images/
# - image: circleci/postgres:9.4
working_directory: ~/repo
environment:
# Customize the JVM maximum heap limit
JVM_OPTS: -Xmx3200m
steps:
- checkout
# Download and cache dependencies
- restore_cache:
keys:
- v2-dependencies-{{ checksum "deps.edn" }}
# fallback to using the latest cache if no exact match is found
- v2-dependencies-
- run: clojure -P -M:test
- save_cache:
paths:
- ~/.m2
key: v2-dependencies-{{ checksum "deps.edn" }}
# run tests!
- run: clojure -M:test
|
Use a more recent version of Clojure
|
Use a more recent version of Clojure
|
YAML
|
epl-1.0
|
cddr/ksml
|
---
+++
@@ -7,7 +7,7 @@
build:
docker:
# specify the version you desire here
- - image: circleci/clojure:tools-deps-1.9.0.394
+ - image: circleci/clojure:tools-deps-1.10.1.727
# Specify service dependencies here if necessary
# CircleCI maintains a library of pre-built images
|
925b24a73ccc90fbdb0dc99d6484baf882d221fd
|
src/main/java/EvenElement.java
|
src/main/java/EvenElement.java
|
/**
* Copyright (c) 2012 by Tyson Gern
* Licensed under the MIT License
*/
import java.util.*;
/**
* This class stores an element of a Coxeter group of rank "rank" as a
* signed permutation, oneLine. The methods contained in this class
* can preform elementary operations on the element.
* @author Tyson Gern (tygern@gmail.com)
*/
abstract class EvenElement extends Element {
}
|
/**
* Copyright (c) 2012 by Tyson Gern
* Licensed under the MIT License
*/
import java.util.*;
/**
* This class stores an element of a Coxeter group of rank "rank" as a
* signed permutation, oneLine. The methods contained in this class
* can preform elementary operations on the element.
* @author Tyson Gern (tygern@gmail.com)
*/
abstract class EvenElement extends Element {
protected int countNeg() {
int count = 0;
for (int i = 1; i <= size; i++) {
if (mapsto(i) < 0) count ++;
}
return count;
}
}
|
Add sign counting for future use in type B length function.
|
Add sign counting for future use in type B length function.
|
Java
|
mit
|
tygern/BuildDomino
|
---
+++
@@ -13,4 +13,14 @@
*/
abstract class EvenElement extends Element {
+ protected int countNeg() {
+ int count = 0;
+
+ for (int i = 1; i <= size; i++) {
+ if (mapsto(i) < 0) count ++;
+ }
+
+ return count;
+ }
+
}
|
89a8e62c03aa2cfe044c9023ec3bbaefb835a7df
|
test/profile/Posix/instrprof-get-filename-merge-mode.c
|
test/profile/Posix/instrprof-get-filename-merge-mode.c
|
// Test __llvm_profile_get_filename when the on-line merging mode is enabled.
//
// RUN: %clang_pgogen -dynamiclib -o %t.dso %p/Inputs/instrprof-get-filename-dso.c
// RUN: %clang_pgogen -o %t %s %t.dso
// RUN: env LLVM_PROFILE_FILE="%t-%m.profraw" %run %t
#include <string.h>
const char *__llvm_profile_get_filename(void);
extern const char *get_filename_from_DSO(void);
int main(int argc, const char *argv[]) {
const char *filename1 = __llvm_profile_get_filename();
const char *filename2 = get_filename_from_DSO();
// Exit with code 1 if the two filenames are the same.
return strcmp(filename1, filename2) == 0;
}
|
// Test __llvm_profile_get_filename when the on-line merging mode is enabled.
//
// RUN: %clang_pgogen -fPIC -shared -o %t.dso %p/../Inputs/instrprof-get-filename-dso.c
// RUN: %clang_pgogen -o %t %s %t.dso
// RUN: env LLVM_PROFILE_FILE="%t-%m.profraw" %run %t
#include <string.h>
const char *__llvm_profile_get_filename(void);
extern const char *get_filename_from_DSO(void);
int main(int argc, const char *argv[]) {
const char *filename1 = __llvm_profile_get_filename();
const char *filename2 = get_filename_from_DSO();
// Exit with code 1 if the two filenames are the same.
return strcmp(filename1, filename2) == 0;
}
|
Use -fPIC -shared in a test instead of -dynamiclib
|
[profile] Use -fPIC -shared in a test instead of -dynamiclib
This is more portable than -dynamiclib. Also, fix the path to an input
file that broke when the test was moved in r375315.
git-svn-id: c199f293c43da69278bea8e88f92242bf3aa95f7@375317 91177308-0d34-0410-b5e6-96231b3b80d8
|
C
|
apache-2.0
|
llvm-mirror/compiler-rt,llvm-mirror/compiler-rt,llvm-mirror/compiler-rt,llvm-mirror/compiler-rt,llvm-mirror/compiler-rt
|
---
+++
@@ -1,6 +1,6 @@
// Test __llvm_profile_get_filename when the on-line merging mode is enabled.
//
-// RUN: %clang_pgogen -dynamiclib -o %t.dso %p/Inputs/instrprof-get-filename-dso.c
+// RUN: %clang_pgogen -fPIC -shared -o %t.dso %p/../Inputs/instrprof-get-filename-dso.c
// RUN: %clang_pgogen -o %t %s %t.dso
// RUN: env LLVM_PROFILE_FILE="%t-%m.profraw" %run %t
|
6f0e236760db70ec2ddf062f8abcc46c939d4dc4
|
_posts/2014-06-17-Package-Delivered.md
|
_posts/2014-06-17-Package-Delivered.md
|
---
layout: post
title: Package Delivered
author: Josh
---
Over the course of the past year we have received a number of packages and
letters from family and friends. We are really grateful to all of you who
thought to send us something. It was a nice way of continuing to feel
connected to and supported by those who we have been so far from.
As hard as it is to believe, we are now less than a month away from
returning back to Nebraska. There may be some of you reading this who have
been meaning to send something and just kept putting it off (that would be
me if I were in Nebraska, I love procrastination). You might now be
thinking, "Quick, I better send them something before it is too late." You
probably shouldn't.
With packages and mail arriving in an average of three weeks, the chances
are that anything you might now send won't make it before we leave. But
don't sweat it, just come greet us at the airport when we get back! That day
is going to be here before any of us know it.
|
Add a new post about sending packages.
|
Add a new post about sending packages.
|
Markdown
|
mit
|
jbranchaud/joshanderin.com
|
---
+++
@@ -0,0 +1,22 @@
+---
+layout: post
+title: Package Delivered
+author: Josh
+---
+
+Over the course of the past year we have received a number of packages and
+letters from family and friends. We are really grateful to all of you who
+thought to send us something. It was a nice way of continuing to feel
+connected to and supported by those who we have been so far from.
+
+As hard as it is to believe, we are now less than a month away from
+returning back to Nebraska. There may be some of you reading this who have
+been meaning to send something and just kept putting it off (that would be
+me if I were in Nebraska, I love procrastination). You might now be
+thinking, "Quick, I better send them something before it is too late." You
+probably shouldn't.
+
+With packages and mail arriving in an average of three weeks, the chances
+are that anything you might now send won't make it before we leave. But
+don't sweat it, just come greet us at the airport when we get back! That day
+is going to be here before any of us know it.
|
|
21dd95a43b7bec0ea1c8618eec46a0e4b134b02c
|
CHANGELOG.md
|
CHANGELOG.md
|
# Changelog
All notable changes to this project will be documented in this file.
## Unreleased
### Added
- Add links to tweet posts more easily in the admin
- Twitter card on show pages
### Changed
### Fixed
### Removed
## v1.1.0 - 2015-10-02
### Added
- Submission of new plays
- Ability for admins to validate and reject submissions
- Link to the submit page in the main menu
- Assets version number
### Changed
- Set proper home, show and soon pages titles
## v1.0.2 - 2015-09-22
### Added
- Author display on the show page
- Nice favicon
### Fixed
- Make the animation takes the full container width
## v1.0.1 - 2015-09-22
### Added
- Author to plays
## v1.0.0 - 2015-09-21
### Added
- Last 5 plays on the homepage
- Ability to create new plays when admin
- Full paginated list of plays accessible from the homepage
- Show pages with a specific URL for each play
- "soon" page to be displayed when reaching the end of the list
- Piwik tracking
|
# Changelog
All notable changes to this project will be documented in this file.
## Unreleased
### Added
### Changed
### Fixed
### Removed
## v1.1.1 - 2015-10-10
### Added
- Add links to tweet posts more easily in the admin
- Twitter card on show pages
## v1.1.0 - 2015-10-02
### Added
- Submission of new plays
- Ability for admins to validate and reject submissions
- Link to the submit page in the main menu
- Assets version number
### Changed
- Set proper home, show and soon pages titles
## v1.0.2 - 2015-09-22
### Added
- Author display on the show page
- Nice favicon
### Fixed
- Make the animation takes the full container width
## v1.0.1 - 2015-09-22
### Added
- Author to plays
## v1.0.0 - 2015-09-21
### Added
- Last 5 plays on the homepage
- Ability to create new plays when admin
- Full paginated list of plays accessible from the homepage
- Show pages with a specific URL for each play
- "soon" page to be displayed when reaching the end of the list
- Piwik tracking
|
Update the changelog for the v1.1.1 version
|
Update the changelog for the v1.1.1 version
|
Markdown
|
mit
|
rocketgif/app,rocketgif/app,rocketgif/app,rocketgif/app
|
---
+++
@@ -3,14 +3,17 @@
## Unreleased
### Added
-- Add links to tweet posts more easily in the admin
-- Twitter card on show pages
### Changed
### Fixed
### Removed
+
+## v1.1.1 - 2015-10-10
+### Added
+- Add links to tweet posts more easily in the admin
+- Twitter card on show pages
## v1.1.0 - 2015-10-02
### Added
|
d2beabe061e00d9e1b516bb256030ecc1b00c5fd
|
Licence.md
|
Licence.md
|
Copyright 2017 Robert Haines, University of Manchester, UK
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
Copyright 2017, 2018 Robert Haines, University of Manchester, UK
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
Update year in licence file.
|
Update year in licence file.
|
Markdown
|
bsd-3-clause
|
hainesr/mvc-dev,hainesr/mvc-dev
|
---
+++
@@ -1,4 +1,4 @@
-Copyright 2017 Robert Haines, University of Manchester, UK
+Copyright 2017, 2018 Robert Haines, University of Manchester, UK
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
dbf022534fd3155671f911ea4503d59d2aaa56d7
|
app/scripts/controllers/repository-detail-controller.js
|
app/scripts/controllers/repository-detail-controller.js
|
'use strict';
/**
* @ngdoc function
* @name docker-registry-frontend.controller:RepositoryDetailController
* @description
* # RepositoryController
* Controller of the docker-registry-frontend
*/
angular.module('repository-detail-controller', ['app-mode-services'])
.controller('RepositoryDetailController', ['$scope', '$route', '$routeParams', '$location', 'AppMode',
function($scope, $route, $routeParams, $location, AppMode){
$scope.$route = $route;
$scope.$location = $location;
$scope.$routeParams = $routeParams;
$scope.searchTerm = $route.current.params['searchTerm'];
$scope.repositoryUser = $route.current.params['repositoryUser'];
$scope.repositoryName = $route.current.params['repositoryName'];
$scope.repository = $scope.repositoryUser + '/' + $scope.repositoryName;
$scope.appMode = AppMode.query();
}]);
|
'use strict';
/**
* @ngdoc function
* @name docker-registry-frontend.controller:RepositoryDetailController
* @description
* # RepositoryDetailController
* Controller of the docker-registry-frontend
*/
angular.module('repository-detail-controller', ['app-mode-services'])
.controller('RepositoryDetailController', ['$scope', '$route', '$routeParams', '$location', 'AppMode',
function($scope, $route, $routeParams, $location, AppMode){
$scope.appMode = AppMode.query();
}]);
|
Adjust documentation and remove unnecessary code
|
Adjust documentation and remove unnecessary code
|
JavaScript
|
mit
|
inn1983/docker-registry-frontend,cxxly/docker-registry-frontend,kwk/docker-registry-frontend,yut148/docker-registry-frontend,kwk/docker-registry-frontend,mariolameiras/docker-distribution-ui,FrontSide/docker-registry-frontend,pgrund/docker-registry-frontend,AlphaStaxLLC/docker-registry-frontend,harrisonfeng/docker-registry-frontend,inn1983/docker-registry-frontend,teonite/docker-registry-frontend,inn1983/docker-registry-frontend,yut148/docker-registry-frontend,harrisonfeng/docker-registry-frontend,cxxly/docker-registry-frontend,Filirom1/docker-registry-frontend,AlphaStaxLLC/docker-registry-frontend,AlphaStaxLLC/docker-registry-frontend,beyondthestory/docker-registry-frontend,harrisonfeng/docker-registry-frontend,FrontSide/docker-registry-frontend,mariolameiras/docker-distribution-ui,Filirom1/docker-registry-frontend,hushi55/docker-registry-frontend,goern/docker-registry-frontend,beyondthestory/docker-registry-frontend,pgrund/docker-registry-frontend,beyondthestory/docker-registry-frontend,Filirom1/docker-registry-frontend,xgin/docker-registry-frontend,parabuzzle/docker-registry-frontend,parabuzzle/docker-registry-frontend,teonite/docker-registry-frontend,mariolameiras/docker-distribution-ui,kwk/docker-registry-frontend,pgrund/docker-registry-frontend,hushi55/docker-registry-frontend,goern/docker-registry-frontend,hushi55/docker-registry-frontend,xgin/docker-registry-frontend,teonite/docker-registry-frontend,parabuzzle/docker-registry-frontend,cxxly/docker-registry-frontend,xgin/docker-registry-frontend,goern/docker-registry-frontend,FrontSide/docker-registry-frontend,yut148/docker-registry-frontend
|
---
+++
@@ -4,21 +4,11 @@
* @ngdoc function
* @name docker-registry-frontend.controller:RepositoryDetailController
* @description
- * # RepositoryController
+ * # RepositoryDetailController
* Controller of the docker-registry-frontend
*/
angular.module('repository-detail-controller', ['app-mode-services'])
.controller('RepositoryDetailController', ['$scope', '$route', '$routeParams', '$location', 'AppMode',
function($scope, $route, $routeParams, $location, AppMode){
-
- $scope.$route = $route;
- $scope.$location = $location;
- $scope.$routeParams = $routeParams;
-
- $scope.searchTerm = $route.current.params['searchTerm'];
- $scope.repositoryUser = $route.current.params['repositoryUser'];
- $scope.repositoryName = $route.current.params['repositoryName'];
- $scope.repository = $scope.repositoryUser + '/' + $scope.repositoryName;
-
$scope.appMode = AppMode.query();
}]);
|
7c41858dcbfe4da36d9ba5a570a3d8e3d8efa649
|
locales/ru/encrypt.properties
|
locales/ru/encrypt.properties
|
join_mozilla=Присоединиться к Mozilla
update_my_info=Обновить мою информацию
signup_header_variant_a=Станьте чемпионом шифрования
join_the_convo=Присоединиться к обсуждению
take_the_pledge=Дать обещание
become_champ=Станьте чемпионом шифрования
sign_now=Подписаться
thank_you=Спасибо!
share_this_now=Поделитесь этим сейчас
fellows=Участники
application_closed=Принятие заявок закрыто
now_playing=Проигрывается
episode_num=ЭПИЗОД {num}
overview=Обзор
info=Информация
thanks_for_signup=Спасибо, что подписались!
privacy_notice=Я согласен с тем, как Mozilla обращается с моей информацией, согласно <a href="https://www.mozilla.org/privacy/websites/" target="_blank">этой политике приватности</a>.
home=Главная
blog=Блог
donate=Пожертвовать
legal=Права
privacy_policy=Политика приватности
connect_twitter=Твитнуть на Твиттере
contact_us=Связаться с нами
video_data_title_1=Приватность даёт вам быть самими собой
video_data_title_2=Встречайте шифрование
video_data_title_3=Шифрование, журналистика и свобода слова
video_data_title_3b=Шифрование и свобода слова
video_data_title_4=Боритесь за сильное шифрование
sign_up_for_email=Подпишитесь на рассылку Mozilla
select_your_country=Выберите вашу страну
first_name=Имя
email_required=Адрес эл. почты (обязательно)
share_this_page=Поделиться этой страницей
|
Update Russian (ru) localization of Mozilla Advocacy
|
Pontoon: Update Russian (ru) localization of Mozilla Advocacy
Localization authors:
- Victor Bychek <a@bychek.ru>
|
INI
|
mpl-2.0
|
mozilla/advocacy.mozilla.org
|
---
+++
@@ -0,0 +1,34 @@
+join_mozilla=Присоединиться к Mozilla
+update_my_info=Обновить мою информацию
+signup_header_variant_a=Станьте чемпионом шифрования
+join_the_convo=Присоединиться к обсуждению
+take_the_pledge=Дать обещание
+become_champ=Станьте чемпионом шифрования
+sign_now=Подписаться
+thank_you=Спасибо!
+share_this_now=Поделитесь этим сейчас
+fellows=Участники
+application_closed=Принятие заявок закрыто
+now_playing=Проигрывается
+episode_num=ЭПИЗОД {num}
+overview=Обзор
+info=Информация
+thanks_for_signup=Спасибо, что подписались!
+privacy_notice=Я согласен с тем, как Mozilla обращается с моей информацией, согласно <a href="https://www.mozilla.org/privacy/websites/" target="_blank">этой политике приватности</a>.
+home=Главная
+blog=Блог
+donate=Пожертвовать
+legal=Права
+privacy_policy=Политика приватности
+connect_twitter=Твитнуть на Твиттере
+contact_us=Связаться с нами
+video_data_title_1=Приватность даёт вам быть самими собой
+video_data_title_2=Встречайте шифрование
+video_data_title_3=Шифрование, журналистика и свобода слова
+video_data_title_3b=Шифрование и свобода слова
+video_data_title_4=Боритесь за сильное шифрование
+sign_up_for_email=Подпишитесь на рассылку Mozilla
+select_your_country=Выберите вашу страну
+first_name=Имя
+email_required=Адрес эл. почты (обязательно)
+share_this_page=Поделиться этой страницей
|
|
926dd6e83da4d45702f7940c55978568568deb86
|
appbuilder/appbuilder-bootstrap.ts
|
appbuilder/appbuilder-bootstrap.ts
|
require("../bootstrap");
$injector.require("projectConstants", "./appbuilder/project-constants");
$injector.require("projectFilesProvider", "./appbuilder/providers/project-files-provider");
$injector.require("pathFilteringService", "./appbuilder/services/path-filtering");
$injector.require("liveSyncServiceBase", "./services/livesync-service-base");
$injector.require("androidLiveSyncServiceLocator", "./appbuilder/services/livesync/android-livesync-service");
$injector.require("iosLiveSyncServiceLocator", "./appbuilder/services/livesync/ios-livesync-service");
$injector.require("deviceAppDataProvider", "./appbuilder/providers/device-app-data-provider");
$injector.requirePublic("companionAppsService", "./appbuilder/services/livesync/companion-apps-service");
$injector.require("nativeScriptProjectCapabilities", "./appbuilder/project/nativescript-project-capabilities");
$injector.require("cordovaProjectCapabilities", "./appbuilder/project/cordova-project-capabilities");
$injector.require("mobilePlatformsCapabilities", "./appbuilder/mobile-platforms-capabilities");
$injector.requirePublic("npmService", "./appbuilder/services/npm-service");
$injector.require("iOSLogFilter", "./appbuilder/mobile/ios/ios-log-filter");
|
require("../bootstrap");
$injector.require("projectConstants", "./appbuilder/project-constants");
$injector.require("projectFilesProvider", "./appbuilder/providers/project-files-provider");
$injector.require("pathFilteringService", "./appbuilder/services/path-filtering");
$injector.require("liveSyncServiceBase", "./services/livesync-service-base");
$injector.require("androidLiveSyncServiceLocator", "./appbuilder/services/livesync/android-livesync-service");
$injector.require("iosLiveSyncServiceLocator", "./appbuilder/services/livesync/ios-livesync-service");
$injector.require("deviceAppDataProvider", "./appbuilder/providers/device-app-data-provider");
$injector.requirePublic("companionAppsService", "./appbuilder/services/livesync/companion-apps-service");
$injector.require("nativeScriptProjectCapabilities", "./appbuilder/project/nativescript-project-capabilities");
$injector.require("cordovaProjectCapabilities", "./appbuilder/project/cordova-project-capabilities");
$injector.require("mobilePlatformsCapabilities", "./appbuilder/mobile-platforms-capabilities");
$injector.requirePublic("npmService", "./appbuilder/services/npm-service");
$injector.require("iOSLogFilter", "./mobile/ios/ios-log-filter");
|
Fix cannot find module ios-log-filter
|
Fix cannot find module ios-log-filter
Change the path to ios-log-filter to point to the correct folder.
|
TypeScript
|
apache-2.0
|
telerik/mobile-cli-lib,telerik/mobile-cli-lib
|
---
+++
@@ -11,4 +11,4 @@
$injector.require("cordovaProjectCapabilities", "./appbuilder/project/cordova-project-capabilities");
$injector.require("mobilePlatformsCapabilities", "./appbuilder/mobile-platforms-capabilities");
$injector.requirePublic("npmService", "./appbuilder/services/npm-service");
-$injector.require("iOSLogFilter", "./appbuilder/mobile/ios/ios-log-filter");
+$injector.require("iOSLogFilter", "./mobile/ios/ios-log-filter");
|
08f8ebc8bffc055d62711ca8524fc1bfa8ec10f0
|
jsoo/todomvc-react/index.html
|
jsoo/todomvc-react/index.html
|
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Js_of_ocaml • TodoMVC</title>
<link rel="stylesheet" href="node_modules/todomvc-common/base.css">
<link rel="stylesheet" href="node_modules/todomvc-app-css/index.css">
</head>
<body>
<div id="todomvc" class="todoapp"></div>
<script src="js/todomvc.js"></script>
</body>
</html>
|
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Js_of_ocaml • TodoMVC</title>
<link rel="stylesheet" href="node_modules/todomvc-common/base.css">
<link rel="stylesheet" href="node_modules/todomvc-app-css/index.css">
</head>
<body>
<div id="todomvc"></div>
<script src="js/todomvc.js"></script>
</body>
</html>
|
Remove white background under footer
|
Remove white background under footer
|
HTML
|
mit
|
slegrand45/examples_ocsigen,slegrand45/examples_ocsigen
|
---
+++
@@ -8,7 +8,7 @@
<link rel="stylesheet" href="node_modules/todomvc-app-css/index.css">
</head>
<body>
- <div id="todomvc" class="todoapp"></div>
+ <div id="todomvc"></div>
<script src="js/todomvc.js"></script>
</body>
</html>
|
408824bd1d4eb1c3b72129631b7f44860315cbd3
|
.github/workflows/build.yaml
|
.github/workflows/build.yaml
|
name: Build Aiven Client
on:
push:
branches:
- master
tags:
- '**'
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
# only use one version for the lint step
python-version: [3.8]
steps:
- id: checkout-code
uses: actions/checkout@v2
- id: prepare-python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- id: dependencies
run: |
pip install requests
pip install -r requirements.dev.txt
- id: validate-style
run: make validate-style
- id: flake8
run: make flake8
- id: mypy
run: make mypy
- id: pyLint
run: make pylint
test:
runs-on: ${{ matrix.os }}
needs: lint
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', 'pypy3']
os: [ubuntu-latest, windows-latest]
steps:
- id: checkout-code
uses: actions/checkout@v2
- id: prepare-python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- id: dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
pip install -e .
pytest -vv tests/
|
name: Build Aiven Client
on:
push:
branches:
- master
tags:
- '**'
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
# only use one version for the lint step
python-version: [3.8]
steps:
- id: checkout-code
uses: actions/checkout@v2
- id: prepare-python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- id: dependencies
run: |
pip install requests
pip install -r requirements.dev.txt
- id: validate-style
run: make validate-style
- id: flake8
run: make flake8
- id: mypy
run: make mypy
- id: pyLint
run: make pylint
test:
runs-on: ${{ matrix.os }}
needs: lint
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', 'pypy-3.7', 'pypy-3.8']
os: [ubuntu-latest, windows-latest]
steps:
- id: checkout-code
uses: actions/checkout@v2
- id: prepare-python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- id: dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
pip install -e .
pytest -vv tests/
|
Use pypy-3.7 and pypy-3.8 on CI
|
Use pypy-3.7 and pypy-3.8 on CI
`pypy3` stands for Python 3.6, which was dropped recently.
|
YAML
|
apache-2.0
|
aiven/aiven-client
|
---
+++
@@ -49,7 +49,7 @@
needs: lint
strategy:
matrix:
- python-version: ['3.7', '3.8', '3.9', '3.10', 'pypy3']
+ python-version: ['3.7', '3.8', '3.9', '3.10', 'pypy-3.7', 'pypy-3.8']
os: [ubuntu-latest, windows-latest]
steps:
|
fd50592307016358e3bac0f0097d738abc85c199
|
spec/requests/authorization_spec.rb
|
spec/requests/authorization_spec.rb
|
require 'rails_helper'
RSpec.describe 'Authorization' do
context 'with an unauthorized user' do
let(:user) { FactoryBot.create(:user) }
context 'when visiting a restricted page like GET /site/edit' do
include_examples 'renders page not found'
end
end
end
|
Add missing spec for authorization
|
Add missing spec for authorization
|
Ruby
|
mit
|
obduk/cms,obduk/cms,obduk/cms,obduk/cms
|
---
+++
@@ -0,0 +1,11 @@
+require 'rails_helper'
+
+RSpec.describe 'Authorization' do
+ context 'with an unauthorized user' do
+ let(:user) { FactoryBot.create(:user) }
+
+ context 'when visiting a restricted page like GET /site/edit' do
+ include_examples 'renders page not found'
+ end
+ end
+end
|
|
233c29710d2c2d5f19c56093fc145d28f24deb38
|
core/app/assets/javascripts/jquery_ujs_override.coffee
|
core/app/assets/javascripts/jquery_ujs_override.coffee
|
#This patches jquery_ujs, such that it grabs csrf token from localStorage
#instead of from the meta tag.
# Make sure that every Ajax request sends the CSRF token
$.rails.CSRFProtection = (xhr) ->
token = safeLocalStorage.factlink_csrf_token
if token
xhr.setRequestHeader('X-CSRF-Token', token)
# making sure that all forms have actual up-to-date token(cached forms contain old one)
$.rails.refreshCSRFTokens = ->
csrfToken = safeLocalStorage.factlink_csrf_token
csrfParam = safeLocalStorage.factlink_csrf_param
$('form input[name="' + csrfParam + '"]').val(csrfToken);
|
#This patches jquery_ujs, such that it grabs csrf token from localStorage
#instead of from the meta tag.
updateRailsCsrfMetaTags = ->
if !$('meta[name=csrf-token]').length
$('<meta name="csrf-token">').appendTo(document.head)
$('<meta name="csrf-param">').appendTo(document.head)
$('meta[name=csrf-token]').attr('content', safeLocalStorage.factlink_csrf_token)
$('meta[name=csrf-param]').attr('content', safeLocalStorage.factlink_csrf_param)
updateCsrfTagsBeforeExecution = (func) -> ->
updateRailsCsrfMetaTags()
func.apply(@, arguments)
['refreshCSRFTokens', 'CSRFProtection', 'handleMethod'].forEach (name) ->
$.rails[name] = updateCsrfTagsBeforeExecution $.rails[name]
|
Update meta tags instead of reimplementing ujs functionality
|
Update meta tags instead of reimplementing ujs functionality
|
CoffeeScript
|
mit
|
Factlink/factlink-core,daukantas/factlink-core,Factlink/factlink-core,daukantas/factlink-core,Factlink/factlink-core,Factlink/factlink-core,daukantas/factlink-core,daukantas/factlink-core
|
---
+++
@@ -1,14 +1,17 @@
#This patches jquery_ujs, such that it grabs csrf token from localStorage
#instead of from the meta tag.
-# Make sure that every Ajax request sends the CSRF token
-$.rails.CSRFProtection = (xhr) ->
- token = safeLocalStorage.factlink_csrf_token
- if token
- xhr.setRequestHeader('X-CSRF-Token', token)
+updateRailsCsrfMetaTags = ->
+ if !$('meta[name=csrf-token]').length
+ $('<meta name="csrf-token">').appendTo(document.head)
+ $('<meta name="csrf-param">').appendTo(document.head)
+ $('meta[name=csrf-token]').attr('content', safeLocalStorage.factlink_csrf_token)
+ $('meta[name=csrf-param]').attr('content', safeLocalStorage.factlink_csrf_param)
-# making sure that all forms have actual up-to-date token(cached forms contain old one)
-$.rails.refreshCSRFTokens = ->
- csrfToken = safeLocalStorage.factlink_csrf_token
- csrfParam = safeLocalStorage.factlink_csrf_param
- $('form input[name="' + csrfParam + '"]').val(csrfToken);
+updateCsrfTagsBeforeExecution = (func) -> ->
+ updateRailsCsrfMetaTags()
+ func.apply(@, arguments)
+
+['refreshCSRFTokens', 'CSRFProtection', 'handleMethod'].forEach (name) ->
+ $.rails[name] = updateCsrfTagsBeforeExecution $.rails[name]
+
|
a2f52c318db53d54e0a31068b935c5f2f7581513
|
src/webpackConfigBase.coffee
|
src/webpackConfigBase.coffee
|
webpack = require 'webpack'
LANGS = ['en_gb']
module.exports =
resolve:
# Add automatically the following extensions to required modules
extensions: ['', '.coffee', '.cjsx', '.js']
plugins: [
new webpack.ContextReplacementPlugin /moment[\\\/]locale$/, new RegExp ".[\\\/](#{LANGS.join '|'})"
]
devtool: if process.env.NODE_ENV isnt 'production' then 'eval'
module:
loaders: [
test: /\.cjsx$/
loader: 'coffee!cjsx'
,
test: /\.coffee$/
loader: 'coffee'
,
test: /\.(otf|eot|svg|ttf|woff|woff2)(\?v=[0-9]\.[0-9]\.[0-9])?$/
loader: 'file'
,
test: /\.css$/
loader: 'style!css'
,
test: /\.sass$/
loader: 'style!css!sass?indentedSyntax'
]
|
webpack = require 'webpack'
LANGS = ['en_gb']
module.exports =
resolve:
# Add automatically the following extensions to required modules
extensions: ['', '.coffee', '.cjsx', '.js']
plugins: [
new webpack.ContextReplacementPlugin /moment[\\\/]locale$/, new RegExp ".[\\\/](#{LANGS.join '|'})"
]
## devtool: if process.env.NODE_ENV isnt 'production' then 'eval'
module:
loaders: [
test: /\.cjsx$/
loader: 'coffee!cjsx'
,
test: /\.coffee$/
loader: 'coffee'
,
test: /\.(otf|eot|svg|ttf|woff|woff2)(\?v=[0-9]\.[0-9]\.[0-9])?$/
loader: 'file'
,
test: /\.css$/
loader: 'style!css'
,
test: /\.sass$/
loader: 'style!css!sass?indentedSyntax'
]
|
Remove Webpack devtool configuration (not allowed for Chrome extensions)
|
Remove Webpack devtool configuration (not allowed for Chrome extensions)
|
CoffeeScript
|
mit
|
guigrpa/storyboard,guigrpa/storyboard
|
---
+++
@@ -11,7 +11,7 @@
new webpack.ContextReplacementPlugin /moment[\\\/]locale$/, new RegExp ".[\\\/](#{LANGS.join '|'})"
]
- devtool: if process.env.NODE_ENV isnt 'production' then 'eval'
+ ## devtool: if process.env.NODE_ENV isnt 'production' then 'eval'
module:
loaders: [
|
ac0a77edf9238154351e36e04a99a2b5444963d9
|
tox.ini
|
tox.ini
|
[tox]
args_are_paths = false
envlist =
docs,
{py27,py32,py33,py34}-{1.7,1.8},
{py27,py34,py35}-{1.9,master}
[testenv]
basepython =
py27: python2.7
py32: python3.2
py33: python3.3
py34: python3.4
py35: python3.5
usedevelop = true
pip_pre = true
commands =
invoke test {posargs}
deps =
1.7: Django>=1.7,<1.8
1.8: Django>=1.8,<1.9
1.9: Django==1.9rc2
master: https://github.com/django/django/archive/master.tar.gz
-r{toxinidir}/tests/requirements.txt
[testenv:docs]
deps =
Sphinx>=1.3
-r{toxinidir}/docs/requirements.txt
basepython = python2.7
commands =
sphinx-build -W -b html -d {envtmpdir}/doctrees docs docs/_build/html
|
[tox]
args_are_paths = false
envlist =
docs,
{py27,py32,py33,py34}-{1.7,1.8},
{py27,py34,py35}-{1.9,master}
[testenv]
basepython =
py27: python2.7
py32: python3.2
py33: python3.3
py34: python3.4
py35: python3.5
usedevelop = true
pip_pre = true
commands =
invoke test {posargs}
deps =
1.7: Django>=1.7,<1.8
1.8: Django>=1.8,<1.9
1.9: Django>=1.9,<1.10
master: https://github.com/django/django/archive/master.tar.gz
-r{toxinidir}/tests/requirements.txt
[testenv:docs]
deps =
Sphinx>=1.3
-r{toxinidir}/docs/requirements.txt
basepython = python2.7
commands =
sphinx-build -W -b html -d {envtmpdir}/doctrees docs docs/_build/html
|
Use Django 1.9 (release) in tests.
|
Use Django 1.9 (release) in tests.
|
INI
|
bsd-3-clause
|
rsalmaso/django-localflavor,django/django-localflavor,jieter/django-localflavor,agustin380/django-localflavor,thor/django-localflavor,maisim/django-localflavor,infoxchange/django-localflavor
|
---
+++
@@ -19,7 +19,7 @@
deps =
1.7: Django>=1.7,<1.8
1.8: Django>=1.8,<1.9
- 1.9: Django==1.9rc2
+ 1.9: Django>=1.9,<1.10
master: https://github.com/django/django/archive/master.tar.gz
-r{toxinidir}/tests/requirements.txt
|
ca2ccc379bab731e9d1659f3d77961ebb1058829
|
test/Transforms/Internalize/stackguard.ll
|
test/Transforms/Internalize/stackguard.ll
|
; __stack_chk_guard and __stack_chk_fail should not be internalized.
; RUN: opt < %s -internalize -S | FileCheck %s
; RUN: opt < %s -passes=internalize -S | FileCheck %s
; CHECK: @__stack_chk_guard = hidden global [8 x i64] zeroinitializer, align 16
@__stack_chk_guard = hidden global [8 x i64] zeroinitializer, align 16
; CHECK: @__stack_chk_fail = hidden global [8 x i64] zeroinitializer, align 16
@__stack_chk_fail = hidden global [8 x i64] zeroinitializer, align 16
|
Test that __stack_chk_{guard, fail} are not internalized.
|
[Internalize] Test that __stack_chk_{guard, fail} are not internalized.
r154645 introduced this feature without test. This should have better
coverage now.
git-svn-id: 0ff597fd157e6f4fc38580e8d64ab130330d2411@271853 91177308-0d34-0410-b5e6-96231b3b80d8
|
LLVM
|
apache-2.0
|
llvm-mirror/llvm,llvm-mirror/llvm,llvm-mirror/llvm,GPUOpen-Drivers/llvm,apple/swift-llvm,llvm-mirror/llvm,apple/swift-llvm,GPUOpen-Drivers/llvm,llvm-mirror/llvm,apple/swift-llvm,llvm-mirror/llvm,apple/swift-llvm,apple/swift-llvm,GPUOpen-Drivers/llvm,apple/swift-llvm,GPUOpen-Drivers/llvm,GPUOpen-Drivers/llvm,apple/swift-llvm,GPUOpen-Drivers/llvm,llvm-mirror/llvm,llvm-mirror/llvm,apple/swift-llvm,GPUOpen-Drivers/llvm,llvm-mirror/llvm,GPUOpen-Drivers/llvm
|
---
+++
@@ -0,0 +1,9 @@
+; __stack_chk_guard and __stack_chk_fail should not be internalized.
+; RUN: opt < %s -internalize -S | FileCheck %s
+; RUN: opt < %s -passes=internalize -S | FileCheck %s
+
+; CHECK: @__stack_chk_guard = hidden global [8 x i64] zeroinitializer, align 16
+@__stack_chk_guard = hidden global [8 x i64] zeroinitializer, align 16
+
+; CHECK: @__stack_chk_fail = hidden global [8 x i64] zeroinitializer, align 16
+@__stack_chk_fail = hidden global [8 x i64] zeroinitializer, align 16
|
|
ae84ebfe30d7ec5607e6d734e5416d6e4a0e94f4
|
centos-6.4-x86_64/Readme.md
|
centos-6.4-x86_64/Readme.md
|
# CentOS 6 x86_64
Installes the current CentOS 6 64bit plus:
* ruby-install and chruby
* ruby 1.9.3-p429 as "system-ruby" in "/usr" so it is available for root (chef and co.)
* chef-solo 11.6.x (via rubygems)
* VMwareTools (if build as such, uses local iso file which must be present)
* VirtualBoxGuestAddition (if build as such, uses local iso file which must be present)
|
# CentOS 6 x86_64
Installes the current CentOS 6 64bit plus:
* ruby-install and chruby
* ruby 1.9.3-p429 and bundler for "vagrant" (in user-space)
* chef-solo 11.6.x (via omnibus)
* VMwareTools (if build as such, uses local iso file which must be present)
* VirtualBoxGuestAddition (if build as such, uses local iso file which must be present)
|
Fix centos-readme to reflect correct ruby installations
|
Fix centos-readme to reflect correct ruby installations
|
Markdown
|
mpl-2.0
|
dotless-de/packer-templates
|
---
+++
@@ -3,7 +3,7 @@
Installes the current CentOS 6 64bit plus:
* ruby-install and chruby
-* ruby 1.9.3-p429 as "system-ruby" in "/usr" so it is available for root (chef and co.)
-* chef-solo 11.6.x (via rubygems)
+* ruby 1.9.3-p429 and bundler for "vagrant" (in user-space)
+* chef-solo 11.6.x (via omnibus)
* VMwareTools (if build as such, uses local iso file which must be present)
* VirtualBoxGuestAddition (if build as such, uses local iso file which must be present)
|
e4836389c9e158cb7fbe3112106def5c1a8be344
|
requirements/local.txt
|
requirements/local.txt
|
-r ./base.txt
Sphinx==2.0.1 # https://github.com/sphinx-doc/sphinx
psycopg2-binary==2.8.2 # https://github.com/psycopg/psycopg2
# Testing
# ------------------------------------------------------------------------------
mypy==0.670 # https://github.com/python/mypy
pytest==4.5.0 # https://github.com/pytest-dev/pytest
pytest-sugar==0.9.2 # https://github.com/Frozenball/pytest-sugar
# Code quality
# ------------------------------------------------------------------------------
flake8==3.7.7 # https://github.com/PyCQA/flake8
coverage==4.5.3 # https://github.com/nedbat/coveragepy
pydocstyle==3.0.0
# Django
# ------------------------------------------------------------------------------
factory-boy==2.12.0 # https://github.com/FactoryBoy/factory_boy
django-debug-toolbar==1.11 # https://github.com/jazzband/django-debug-toolbar
django-extensions==2.1.6 # https://github.com/django-extensions/django-extensions
django-coverage-plugin==1.6.0 # https://github.com/nedbat/django_coverage_plugin
pytest-django==3.4.8 # https://github.com/pytest-dev/pytest-django
|
-r ./base.txt
Sphinx==2.1.2 # https://github.com/sphinx-doc/sphinx
psycopg2-binary==2.8.2 # https://github.com/psycopg/psycopg2
# Testing
# ------------------------------------------------------------------------------
mypy==0.670 # https://github.com/python/mypy
pytest==4.5.0 # https://github.com/pytest-dev/pytest
pytest-sugar==0.9.2 # https://github.com/Frozenball/pytest-sugar
# Code quality
# ------------------------------------------------------------------------------
flake8==3.7.7 # https://github.com/PyCQA/flake8
coverage==4.5.3 # https://github.com/nedbat/coveragepy
pydocstyle==3.0.0
# Django
# ------------------------------------------------------------------------------
factory-boy==2.12.0 # https://github.com/FactoryBoy/factory_boy
django-debug-toolbar==1.11 # https://github.com/jazzband/django-debug-toolbar
django-extensions==2.1.6 # https://github.com/django-extensions/django-extensions
django-coverage-plugin==1.6.0 # https://github.com/nedbat/django_coverage_plugin
pytest-django==3.4.8 # https://github.com/pytest-dev/pytest-django
|
Update sphinx from 2.0.1 to 2.1.2
|
Update sphinx from 2.0.1 to 2.1.2
|
Text
|
mit
|
uccser/cs4teachers,uccser/cs4teachers,uccser/cs4teachers,uccser/cs4teachers
|
---
+++
@@ -1,6 +1,6 @@
-r ./base.txt
-Sphinx==2.0.1 # https://github.com/sphinx-doc/sphinx
+Sphinx==2.1.2 # https://github.com/sphinx-doc/sphinx
psycopg2-binary==2.8.2 # https://github.com/psycopg/psycopg2
# Testing
|
2e477cb74a7d6daa9b99eb327607dcf54785ed41
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.6
- 7.0
- 7.1
- 7.2
- nightly
matrix:
allow_failures:
- php: nightly
before_script:
- composer self-update
- travis_retry composer install --prefer-source --no-interaction --dev
script:
- composer test
after_success:
- bash <(curl -s https://codecov.io/bash)
|
language: php
php:
- 7.2
- nightly
matrix:
allow_failures:
- php: nightly
before_script:
- composer self-update
- travis_retry composer install --prefer-source --no-interaction --dev
script:
- composer test
after_success:
- bash <(curl -s https://codecov.io/bash)
|
Drop PHP versions older than 7.2 from CI matrix
|
Drop PHP versions older than 7.2 from CI matrix
|
YAML
|
mit
|
Ayesh/case-insensitive-array
|
---
+++
@@ -1,8 +1,5 @@
language: php
php:
- - 5.6
- - 7.0
- - 7.1
- 7.2
- nightly
matrix:
|
b88a0992e36c00db37eba823931f9b0fdcf385db
|
etc/build-helper/project.clj
|
etc/build-helper/project.clj
|
;; Copyright 2014 Red Hat, Inc, and individual contributors.
;;
;; 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.
;; *** NOTE: update the version in docs.clj when you change it here ***
(defproject org.immutant/build-helper "0.1.6"
:description "A plugin to aid in building Immutant"
:url "https://github.com/immutant/immutant"
:license {:name "Apache Software License - v 2.0"
:url "http://www.apache.org/licenses/LICENSE-2.0"
:distribution :repo}
:dependencies [[org.clojars.tcrawley/codox.core "0.8.0a"]
;;[codox/codox.core "0.8.0"]
[org.clojars.tcrawley/markdown-clj "0.9.43a"]
;;[markdown-clj "0.9.43"]
]
:eval-in-leiningen true
:signing {:gpg-key "BFC757F9"})
|
;; Copyright 2014 Red Hat, Inc, and individual contributors.
;;
;; 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.
;; *** NOTE: update the version in docs.clj when you change it here ***
(defproject org.immutant/build-helper "0.1.6"
:description "A plugin to aid in building Immutant"
:url "https://github.com/immutant/immutant"
:license {:name "Apache Software License - v 2.0"
:url "http://www.apache.org/licenses/LICENSE-2.0"
:distribution :repo}
:dependencies [[org.clojars.tcrawley/codox.core "0.8.0a"]
;;[codox/codox.core "0.8.0"]
[markdown-clj "0.9.44"]]
:eval-in-leiningen true
:signing {:gpg-key "BFC757F9"})
|
Switch to the canonical markdown-clj.
|
Switch to the canonical markdown-clj.
|
Clojure
|
apache-2.0
|
coopsource/immutant,immutant/immutant,kbaribeau/immutant,coopsource/immutant,kbaribeau/immutant,immutant/immutant,immutant/immutant,kbaribeau/immutant,immutant/immutant,coopsource/immutant
|
---
+++
@@ -21,8 +21,6 @@
:distribution :repo}
:dependencies [[org.clojars.tcrawley/codox.core "0.8.0a"]
;;[codox/codox.core "0.8.0"]
- [org.clojars.tcrawley/markdown-clj "0.9.43a"]
- ;;[markdown-clj "0.9.43"]
- ]
+ [markdown-clj "0.9.44"]]
:eval-in-leiningen true
:signing {:gpg-key "BFC757F9"})
|
bae2a92def8371b317f9f22010b562bc2cb2d579
|
openfisca_tunisia/parameters/impot_revenu/deductions/fam/infirme.yaml
|
openfisca_tunisia/parameters/impot_revenu/deductions/fam/infirme.yaml
|
description: Enfant infirme
# TODO dates
unit: currency
values:
1990-01-01:
value: 500
2004-01-01:
value: 600
2005-01-01:
value: 750
reference: Article 50 de la loi no 2004-90 du 31-12-2004 portant Loi de finances 2005
2010-01-01:
value: 1000
reference: Article 40 de la loi no 2009-71 du 21-12-2004 portant Loi de finances 2010
2014-01-01:
value: 1200
2018-01-01:
value: 2000
reference: Article 40.III de la loi no 2017-?? du ??-12-2004 portant Loi de finances 2018
|
description: Enfant infirme
# TODO dates
unit: currency
values:
1990-01-01:
value: 500
2004-01-01:
value: 600
2005-01-01:
value: 750
reference: Article 50 de la loi no 2004-90 du 31-12-2004 portant Loi de finances 2005
2010-01-01:
value: 1000
reference: Article 40 de la loi no 2009-71 du 21-12-2009 portant Loi de finances 2010
2014-01-01:
value: 1200
2018-01-01:
value: 2000
reference: Article 40.III de la loi no 2017-?? du ??-12-2017 portant Loi de finances 2018
|
Fix wrong dates in reference
|
Fix wrong dates in reference
|
YAML
|
agpl-3.0
|
openfisca/openfisca-tunisia,openfisca/openfisca-tunisia
|
---
+++
@@ -11,9 +11,9 @@
reference: Article 50 de la loi no 2004-90 du 31-12-2004 portant Loi de finances 2005
2010-01-01:
value: 1000
- reference: Article 40 de la loi no 2009-71 du 21-12-2004 portant Loi de finances 2010
+ reference: Article 40 de la loi no 2009-71 du 21-12-2009 portant Loi de finances 2010
2014-01-01:
value: 1200
2018-01-01:
value: 2000
- reference: Article 40.III de la loi no 2017-?? du ??-12-2004 portant Loi de finances 2018
+ reference: Article 40.III de la loi no 2017-?? du ??-12-2017 portant Loi de finances 2018
|
cdc3da6b4139cf607cd07e70f619612161189b53
|
cairis/config/sizes.json
|
cairis/config/sizes.json
|
{
"AssetParameters" : {
"theName" : 50,
"theShortCode" : 20,
"theDescription" : 1000,
"theSignificance" : 1000
},
"Asset" : {
"theName" : 50,
"theShortCode" : 20,
"theDescription" : 1000,
"theSignificance" : 1000
},
"EnvironmentParameters" : {
"theName" : 50,
"theShortCode" : 20,
"theDescription" : 4000
},
"Environment" : {
"theName" : 50,
"theShortCode" : 20,
"theDescription" : 4000
},
"DomainPropertyParameters" : {
"theName" : 255,
"theOriginator" : 20,
"theDescription" : 4000
},
"DomainProperty" : {
"theName" : 255,
"theOriginator" : 20,
"theDescription" : 4000
}
}
|
{
"AssetParameters" : {
"theName" : 50,
"theShortCode" : 20,
"theDescription" : 1000,
"theSignificance" : 1000
},
"Asset" : {
"theName" : 50,
"theShortCode" : 20,
"theDescription" : 1000,
"theSignificance" : 1000
},
"EnvironmentParameters" : {
"theName" : 50,
"theShortCode" : 20,
"theDescription" : 4000
},
"Environment" : {
"theName" : 50,
"theShortCode" : 20,
"theDescription" : 4000
},
"DomainPropertyParameters" : {
"theName" : 255,
"theOriginator" : 100,
"theDescription" : 4000
},
"DomainProperty" : {
"theName" : 255,
"theOriginator" : 100,
"theDescription" : 4000
}
}
|
Correct originator attribute size for domain properties
|
Correct originator attribute size for domain properties
|
JSON
|
apache-2.0
|
nathanbjenx/cairis,nathanbjenx/cairis,nathanbjenx/cairis,failys/CAIRIS,failys/CAIRIS,failys/CAIRIS,nathanbjenx/cairis
|
---
+++
@@ -23,12 +23,12 @@
},
"DomainPropertyParameters" : {
"theName" : 255,
- "theOriginator" : 20,
+ "theOriginator" : 100,
"theDescription" : 4000
},
"DomainProperty" : {
"theName" : 255,
- "theOriginator" : 20,
+ "theOriginator" : 100,
"theDescription" : 4000
}
}
|
3dbb61d9af82700c2936f5f469334a82746384ca
|
.pre-commit-config.yaml
|
.pre-commit-config.yaml
|
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v1.4.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: autopep8-wrapper
- id: check-docstring-first
- id: check-json
- id: check-yaml
- id: debug-statements
- id: name-tests-test
- id: requirements-txt-fixer
- id: flake8
- repo: https://github.com/pre-commit/pre-commit
rev: v1.10.5
hooks:
- id: validate_manifest
- repo: https://github.com/asottile/reorder_python_imports
rev: v1.1.0
hooks:
- id: reorder-python-imports
language_version: python2.7
- repo: https://github.com/asottile/add-trailing-comma
rev: v0.6.4
hooks:
- id: add-trailing-comma
- repo: meta
hooks:
- id: check-hooks-apply
- id: check-useless-excludes
|
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.0.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-docstring-first
- id: check-json
- id: check-yaml
- id: debug-statements
- id: name-tests-test
- id: requirements-txt-fixer
- id: flake8
- repo: https://github.com/pre-commit/mirrors-autopep8
rev: v1.4
hooks:
- id: autopep8
- repo: https://github.com/pre-commit/pre-commit
rev: v1.11.2
hooks:
- id: validate_manifest
- repo: https://github.com/asottile/reorder_python_imports
rev: v1.3.0
hooks:
- id: reorder-python-imports
language_version: python2.7
- repo: https://github.com/asottile/add-trailing-comma
rev: v0.7.1
hooks:
- id: add-trailing-comma
- repo: meta
hooks:
- id: check-hooks-apply
- id: check-useless-excludes
|
Migrate from autopep8-wrapper to mirrors-autopep8
|
Migrate from autopep8-wrapper to mirrors-autopep8
Committed via https://github.com/asottile/all-repos
|
YAML
|
mit
|
pre-commit/pre-commit,pre-commit/pre-commit,pre-commit/pre-commit,pre-commit/pre-commit,pre-commit/pre-commit,pre-commit/pre-commit,pre-commit/pre-commit,pre-commit/pre-commit,pre-commit/pre-commit,pre-commit/pre-commit,pre-commit/pre-commit
|
---
+++
@@ -1,10 +1,9 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
- rev: v1.4.0
+ rev: v2.0.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- - id: autopep8-wrapper
- id: check-docstring-first
- id: check-json
- id: check-yaml
@@ -12,17 +11,21 @@
- id: name-tests-test
- id: requirements-txt-fixer
- id: flake8
+- repo: https://github.com/pre-commit/mirrors-autopep8
+ rev: v1.4
+ hooks:
+ - id: autopep8
- repo: https://github.com/pre-commit/pre-commit
- rev: v1.10.5
+ rev: v1.11.2
hooks:
- id: validate_manifest
- repo: https://github.com/asottile/reorder_python_imports
- rev: v1.1.0
+ rev: v1.3.0
hooks:
- id: reorder-python-imports
language_version: python2.7
- repo: https://github.com/asottile/add-trailing-comma
- rev: v0.6.4
+ rev: v0.7.1
hooks:
- id: add-trailing-comma
- repo: meta
|
a97711be44b2c13af2cf728aa173774f6070f3c5
|
bin/pipeline.ts
|
bin/pipeline.ts
|
import 'source-map-support/register';
import * as cdk from '@aws-cdk/core';
import { AppStack } from '../lib/app-stack';
import { SetupStack } from '../lib/setup-stack'
const app = new cdk.App();
const region = "us-west-1";
const account = '084374970894';
new SetupStack(app, "ApiTestToolSetupStack", {
env: {
account: account,
region: region
}
});
const appStack = new AppStack(app, "ApiTestToolAppStack", {
env: {
account: account,
region: region
}
});
console.log("LoadBalancer" + appStack.urlOutput);
app.synth();
|
import * as cdk from '@aws-cdk/core';
import { AppStack } from '../lib/app-stack';
import { SetupStack } from '../lib/setup-stack'
const app = new cdk.App();
new SetupStack(app, "ApiTestToolSetupStack", {
env: {
account: process.env.CDK_DEFAULT_ACCOUNT,
region: process.env.CDK_DEFAULT_REGION
}
});
const appStack = new AppStack(app, "ApiTestToolAppStack", {
env: {
account: process.env.CDK_DEFAULT_ACCOUNT,
region: process.env.CDK_DEFAULT_REGION
}
});
console.log("LoadBalancer" + appStack.urlOutput);
app.synth();
|
Remove region and account information.
|
Remove region and account information.
|
TypeScript
|
apache-2.0
|
Brightspace/util-api-test-tool,Brightspace/util-api-test-tool,Brightspace/util-api-test-tool
|
---
+++
@@ -1,23 +1,20 @@
-import 'source-map-support/register';
import * as cdk from '@aws-cdk/core';
import { AppStack } from '../lib/app-stack';
import { SetupStack } from '../lib/setup-stack'
const app = new cdk.App();
-const region = "us-west-1";
-const account = '084374970894';
new SetupStack(app, "ApiTestToolSetupStack", {
env: {
- account: account,
- region: region
+ account: process.env.CDK_DEFAULT_ACCOUNT,
+ region: process.env.CDK_DEFAULT_REGION
}
});
const appStack = new AppStack(app, "ApiTestToolAppStack", {
env: {
- account: account,
- region: region
+ account: process.env.CDK_DEFAULT_ACCOUNT,
+ region: process.env.CDK_DEFAULT_REGION
}
});
|
c00a6a3112e432fa4fc4ff12e44ff1fa9ac5c7bf
|
Casks/font-geo-sans-light.rb
|
Casks/font-geo-sans-light.rb
|
class FontGeoSansLight < Cask
url 'http://img.dafont.com/dl/?f=geo_sans_light'
homepage 'http://www.dafont.com/geo-sans-light.font'
version 'latest'
sha1 'no_checksum'
font 'GeosansLight-Oblique.ttf'
font 'GeosansLight.ttf'
end
|
Create cask for Geo Sans Light font
|
Create cask for Geo Sans Light font
|
Ruby
|
bsd-2-clause
|
ahbeng/homebrew-fonts,zorosteven/homebrew-fonts,mtakayuki/homebrew-fonts,bkudria/homebrew-fonts,kostasdizas/homebrew-fonts,herblover/homebrew-fonts,guerrero/homebrew-fonts,ahbeng/homebrew-fonts,psibre/homebrew-fonts,caskroom/homebrew-fonts,caskroom/homebrew-fonts,unasuke/homebrew-fonts,victorpopkov/homebrew-fonts,andrewsardone/homebrew-fonts,rstacruz/homebrew-fonts,sscotth/homebrew-fonts,RJHsiao/homebrew-fonts,zorosteven/homebrew-fonts,bkudria/homebrew-fonts,psibre/homebrew-fonts,joeyhoer/homebrew-fonts,sscotth/homebrew-fonts,herblover/homebrew-fonts,scw/homebrew-fonts,andrewsardone/homebrew-fonts,kkung/homebrew-fonts,alerque/homebrew-fonts,mtakayuki/homebrew-fonts,elmariofredo/homebrew-fonts,victorpopkov/homebrew-fonts,kostasdizas/homebrew-fonts,guerrero/homebrew-fonts,elmariofredo/homebrew-fonts,rstacruz/homebrew-fonts,joeyhoer/homebrew-fonts,alerque/homebrew-fonts,RJHsiao/homebrew-fonts,kkung/homebrew-fonts,scw/homebrew-fonts
|
---
+++
@@ -0,0 +1,8 @@
+class FontGeoSansLight < Cask
+ url 'http://img.dafont.com/dl/?f=geo_sans_light'
+ homepage 'http://www.dafont.com/geo-sans-light.font'
+ version 'latest'
+ sha1 'no_checksum'
+ font 'GeosansLight-Oblique.ttf'
+ font 'GeosansLight.ttf'
+end
|
|
a74368975ef661de454a9fc4111bc4f9c5a15e9a
|
test/module.mk
|
test/module.mk
|
$(call assert-variable,iso.path)
/:=$(BUILD_DIR)/test/
$/%: /:=$/
test: test-integration
clean: $/clean-integration-test-cache-file
.PHONY: $/clean-integration-test-cache-file
$/clean-integration-test-environment:
test -f $/environment-id && \
python test/integration.py -l INFO --cache-file $(abspath $/environment-id) destroy
.PHONY: test-integration
test-integration: $/environment-id
python test/integration.py -l INFO --cache-file $(abspath $<) --iso $(abspath $(iso.path)) test
$/environment-id: | $(iso.path)
@mkdir -p $(@D)
python test/integration.py -l INFO --cache-file $(abspath $@) destroy
python test/integration.py -l INFO --cache-file $(abspath $@) --iso $(abspath $(iso.path)) setup
ifdef FORCE_INTEGRATION_ENVIRONMENT
$/environment-id: FORCE
endif
|
$(call assert-variable,iso.path)
/:=$(BUILD_DIR)/test/
$/%: /:=$/
test: test-integration
clean: $/clean-integration-test-cache-file
.PHONY: $/clean-integration-test-cache-file
$/clean-integration-test-environment:
test -f $/environment-id.candidate && \
python test/integration.py -l INFO --cache-file $(abspath $/environment-id.candidate) destroy
test -f $/environment-id && \
python test/integration.py -l INFO --cache-file $(abspath $/environment-id) destroy
.PHONY: test-integration
test-integration: $/environment-id
python test/integration.py -l INFO --cache-file $(abspath $<) --iso $(abspath $(iso.path)) test
$/environment-id: | $(iso.path)
@mkdir -p $(@D)
python test/integration.py -l INFO --cache-file $(abspath $@) destroy
python test/integration.py -l INFO --cache-file $(abspath $@) --iso $(abspath $(iso.path)) setup
ifdef FORCE_INTEGRATION_ENVIRONMENT
$/environment-id: FORCE
endif
|
Fix clean to remove broken environments also
|
[test] Fix clean to remove broken environments also
|
Makefile
|
apache-2.0
|
eayunstack/fuel-web,ddepaoli3/fuel-main-dev,teselkin/fuel-main,eayunstack/fuel-web,eayunstack/fuel-main,Fiware/ops.Fuel-main-dev,stackforge/fuel-web,eayunstack/fuel-main,prmtl/fuel-web,nebril/fuel-web,koder-ua/nailgun-fcert,stackforge/fuel-web,nebril/fuel-web,huntxu/fuel-main,prmtl/fuel-web,dancn/fuel-main-dev,AnselZhangGit/fuel-main,Fiware/ops.Fuel-main-dev,Fiware/ops.Fuel-main-dev,zhaochao/fuel-web,eayunstack/fuel-web,SergK/fuel-main,SmartInfrastructures/fuel-web-dev,SmartInfrastructures/fuel-main-dev,zhaochao/fuel-main,teselkin/fuel-main,eayunstack/fuel-main,zhaochao/fuel-web,SmartInfrastructures/fuel-web-dev,ddepaoli3/fuel-main-dev,SmartInfrastructures/fuel-web-dev,huntxu/fuel-web,AnselZhangGit/fuel-main,teselkin/fuel-main,prmtl/fuel-web,SmartInfrastructures/fuel-main-dev,SergK/fuel-main,eayunstack/fuel-web,SmartInfrastructures/fuel-main-dev,zhaochao/fuel-main,zhaochao/fuel-main,ddepaoli3/fuel-main-dev,dancn/fuel-main-dev,nebril/fuel-web,dancn/fuel-main-dev,nebril/fuel-web,SmartInfrastructures/fuel-web-dev,stackforge/fuel-main,koder-ua/nailgun-fcert,dancn/fuel-main-dev,zhaochao/fuel-main,AnselZhangGit/fuel-main,zhaochao/fuel-web,prmtl/fuel-web,stackforge/fuel-main,zhaochao/fuel-web,AnselZhangGit/fuel-main,huntxu/fuel-main,teselkin/fuel-main,huntxu/fuel-web,koder-ua/nailgun-fcert,stackforge/fuel-main,Fiware/ops.Fuel-main-dev,huntxu/fuel-web,koder-ua/nailgun-fcert,SmartInfrastructures/fuel-web-dev,SmartInfrastructures/fuel-main-dev,ddepaoli3/fuel-main-dev,SergK/fuel-main,huntxu/fuel-web,huntxu/fuel-main,nebril/fuel-web,eayunstack/fuel-web,zhaochao/fuel-web,stackforge/fuel-web,prmtl/fuel-web,huntxu/fuel-web,zhaochao/fuel-main
|
---
+++
@@ -13,6 +13,8 @@
.PHONY: $/clean-integration-test-cache-file
$/clean-integration-test-environment:
+ test -f $/environment-id.candidate && \
+ python test/integration.py -l INFO --cache-file $(abspath $/environment-id.candidate) destroy
test -f $/environment-id && \
python test/integration.py -l INFO --cache-file $(abspath $/environment-id) destroy
|
4ff53333659f1537d3d3e6112e3570478aa71104
|
app/assets/stylesheets/goals.scss
|
app/assets/stylesheets/goals.scss
|
// Place all the styles related to the Goals controller here.
// They will automatically be included in application.css.
// You can use Sass (SCSS) here: http://sass-lang.com/
|
// Place all the styles related to the Goals controller here.
// They will automatically be included in application.css.
// You can use Sass (SCSS) here: http://sass-lang.com/
label.active {
font-size: 150%;
}
.new_goal {
font-size: 100%;
}
|
Change font size on form
|
Change font size on form
|
SCSS
|
mit
|
AliasHendrickson/progress,AliasHendrickson/progress,AliasHendrickson/progress
|
---
+++
@@ -1,3 +1,12 @@
// Place all the styles related to the Goals controller here.
// They will automatically be included in application.css.
// You can use Sass (SCSS) here: http://sass-lang.com/
+
+label.active {
+ font-size: 150%;
+}
+
+.new_goal {
+ font-size: 100%;
+}
+
|
cce8bf4e6bae95518132fd7d46cc420ca430dcf6
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "11"
cache:
npm: true
directories:
- ~/.cache
addons:
postgresql: "9.6"
before_script:
- cp .env.travis api/.env && cp .env.travis map/.env
- cd api && yarn test:init && cd ..
before_install:
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.9.2
- export PATH="$HOME/.yarn/bin:$PATH"
jobs:
include:
- stage: test
name: "API"
script: cd api && yarn test
- name: "Schemas"
script: cd schemas && yarn test
- name: "Map"
script: cd map && yarn test
- name: "Admin"
script: cd admin && yarn test
# - stage: integration
# name: "Integration Tests"
# script: yarn cypress:ci
- stage: deployment
name: "Staging Deployment"
script:
- export BRANCH=$(if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then echo $TRAVIS_BRANCH; else echo $TRAVIS_PULL_REQUEST_BRANCH; fi)
- echo build is on branch $BRANCH
- if [ "$BRANCH" != "master" ] ; then echo "branch is not master, not deploying" ; exit 0 ; fi
- echo 'deployment'
notifications:
slack: ernteteilen:0QwBhQegAchwMOPjhLdqwtNm
|
language: node_js
node_js:
- "12"
cache:
npm: true
directories:
- ~/.cache
addons:
postgresql: "9.6"
before_script:
- cp .env.travis api/.env && cp .env.travis map/.env
- cd api && yarn test:init && cd ..
before_install:
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.9.2
- export PATH="$HOME/.yarn/bin:$PATH"
jobs:
include:
- stage: test
name: "API"
script: cd api && yarn test
- name: "Schemas"
script: cd schemas && yarn test
- name: "Map"
script: cd map && yarn test
- name: "Admin"
script: cd admin && yarn test
# - stage: integration
# name: "Integration Tests"
# script: yarn cypress:ci
- stage: deployment
name: "Staging Deployment"
script:
- export BRANCH=$(if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then echo $TRAVIS_BRANCH; else echo $TRAVIS_PULL_REQUEST_BRANCH; fi)
- echo build is on branch $BRANCH
- if [ "$BRANCH" != "master" ] ; then echo "branch is not master, not deploying" ; exit 0 ; fi
- echo 'deployment'
notifications:
slack: ernteteilen:0QwBhQegAchwMOPjhLdqwtNm
|
Use node 12 in Travis CI
|
Chore: Use node 12 in Travis CI
|
YAML
|
agpl-3.0
|
teikei/teikei,teikei/teikei,teikei/teikei
|
---
+++
@@ -1,6 +1,6 @@
language: node_js
node_js:
- - "11"
+ - "12"
cache:
npm: true
directories:
|
422a960cad378dad571503e6f191d73ee9a6c5d8
|
SETUP.md
|
SETUP.md
|
Deploying a schema change
=========================
Log into EC2 instance in security group w/ access to the database
(e.g. an API instance)
sudo apt-get install postgresql-client
sudo apt-get install git
sudo apt-get install ruby
git clone git://github.com/gilt/schema-evolution-manager.git
cd schema-evolution-manager
git checkout 0.9.12
ruby ./configure.rb
sudo ruby ./install.rb
|
Deploying a schema change
=========================
Log into EC2 instance in security group w/ access to the database
(e.g. an API instance)
sudo apt-get install postgresql-client
sudo apt-get install git
sudo apt-get install ruby
git clone git://github.com/gilt/schema-evolution-manager.git
cd schema-evolution-manager
git checkout 0.9.12
ruby ./configure.rb
sudo ruby ./install.rb
echo "apidoc2.cqe9ob8rnh0u.us-east-1.rds.amazonaws.com:5432:apidoc:web:PASSWORD" > ~/.pgass
chmod 0600 ~/.pgpass
sem-apply --host apidoc2.cqe9ob8rnh0u.us-east-1.rds.amazonaws.com --name apidoc --user web
|
Update setup for db configuration
|
Update setup for db configuration
|
Markdown
|
mit
|
gheine/apidoc,Seanstoppable/apidoc,movio/apidoc,apicollective/apibuilder,movio/apidoc,mbryzek/apidoc,movio/apidoc,apicollective/apibuilder,mbryzek/apidoc,gheine/apidoc,apicollective/apibuilder,mbryzek/apidoc,gheine/apidoc,Seanstoppable/apidoc,Seanstoppable/apidoc
|
---
+++
@@ -11,4 +11,9 @@
cd schema-evolution-manager
git checkout 0.9.12
ruby ./configure.rb
- sudo ruby ./install.rb+ sudo ruby ./install.rb
+
+ echo "apidoc2.cqe9ob8rnh0u.us-east-1.rds.amazonaws.com:5432:apidoc:web:PASSWORD" > ~/.pgass
+ chmod 0600 ~/.pgpass
+
+ sem-apply --host apidoc2.cqe9ob8rnh0u.us-east-1.rds.amazonaws.com --name apidoc --user web
|
3b10811e61ed71ec331dd606b0234c7cb934f2bb
|
samples/HelloWorld/Startup.cs
|
samples/HelloWorld/Startup.cs
|
using ExplicitlyImpl.AspNetCore.Mvc.FluentActions;
using Microsoft.AspNetCore.Builder;
using Microsoft.Extensions.DependencyInjection;
namespace HelloWorld
{
public class Startup
{
public void ConfigureServices(IServiceCollection services)
{
services.AddMvc().AddFluentActions();
}
public void Configure(IApplicationBuilder app)
{
app.UseFluentActions(actions =>
{
actions.RouteGet("/").To(() => "Hello World!");
});
app.UseMvc();
}
}
}
|
using ExplicitlyImpl.AspNetCore.Mvc.FluentActions;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.DependencyInjection;
namespace HelloWorld
{
public class Startup
{
public void ConfigureServices(IServiceCollection services)
{
services
.AddMvc()
.AddFluentActions()
.SetCompatibilityVersion(CompatibilityVersion.Version_2_2);
}
public void Configure(IApplicationBuilder app)
{
app.UseFluentActions(actions =>
{
actions.RouteGet("/").To(() => "Hello World!");
});
app.UseMvc();
}
}
}
|
Set compatibility version to 2.2 in hello world sample project
|
Set compatibility version to 2.2 in hello world sample project
|
C#
|
mit
|
ExplicitlyImplicit/AspNetCore.Mvc.FluentActions,ExplicitlyImplicit/AspNetCore.Mvc.FluentActions
|
---
+++
@@ -1,5 +1,6 @@
using ExplicitlyImpl.AspNetCore.Mvc.FluentActions;
using Microsoft.AspNetCore.Builder;
+using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.DependencyInjection;
namespace HelloWorld
@@ -8,7 +9,10 @@
{
public void ConfigureServices(IServiceCollection services)
{
- services.AddMvc().AddFluentActions();
+ services
+ .AddMvc()
+ .AddFluentActions()
+ .SetCompatibilityVersion(CompatibilityVersion.Version_2_2);
}
public void Configure(IApplicationBuilder app)
|
41c9a6a691e73d9bdf994095bb72a3cd46eb4bb8
|
src/e2e/security/security.e2e.js
|
src/e2e/security/security.e2e.js
|
var helpers = require("../helpers")
describe('Security', function() {
it("Initializes a (hopefully secret) cookie and navigates to the security test page", function(){
browser.ignoreSynchronization = true;
browser.get("http://localhost:9855/init")
helpers.waitForEl("#confirm-cookie")
browser.get("http://localhost:9856/src/e2e/security/security.html#auto-activate-fromjs")
// browser.pause();
return browser.driver.wait(function(){
return browser.executeScript(function(){
console.log("Waiting fo f__StringLiteral")
return window.f__StringLiteral !== undefined
}).then(function(r){
return r
})
}).then(helpers.waitForEl("#security-done"))
.then(function(){
var getInnerHtml = function(){
return "" + document.querySelector("#result").innerHTML
}
browser.executeScript(getInnerHtml).then(function (resultHtml) {
expect(resultHtml.indexOf("FAILED")).toBe(-1)
});
})
.catch(function(){
console.log("FAIL")
})
})
});
|
var helpers = require("../helpers")
describe('Security', function() {
it("Initializes a (hopefully secret) cookie and navigates to the security test page", function(){
browser.ignoreSynchronization = true;
browser.get("http://localhost:9855/init")
helpers.waitForEl("#confirm-cookie")
browser.get("http://localhost:9856/src/e2e/security/security.html#auto-activate-fromjs")
// browser.pause();
return browser.driver.wait(function(){
return browser.executeScript(function(){
console.log("Waiting fo f__StringLiteral")
return window.f__StringLiteral !== undefined
}).then(function(r){
return r
})
}).then(helpers.waitForEl("#security-done"))
.then(function(){
var getInnerHtml = function(){
return "" + document.querySelector("#result").innerHTML
}
browser.executeScript(getInnerHtml).then(function (resultHtml) {
expect(resultHtml.indexOf("FAILED")).toBe(-1)
});
})
})
});
|
Remove console log that never hits anyway.
|
Remove console log that never hits anyway.
|
JavaScript
|
mit
|
mattzeunert/FromJS,mattzeunert/FromJS,mattzeunert/FromJS,mattzeunert/FromJS
|
---
+++
@@ -24,8 +24,5 @@
expect(resultHtml.indexOf("FAILED")).toBe(-1)
});
})
- .catch(function(){
- console.log("FAIL")
- })
})
});
|
b36d600757216d99c46b4c696c165582d71812df
|
lib/arrthorizer/rails/controller_configuration.rb
|
lib/arrthorizer/rails/controller_configuration.rb
|
module Arrthorizer
module Rails
class ControllerConfiguration
Error = Class.new(Arrthorizer::ArrthorizerException)
def initialize(&block)
yield self
rescue LocalJumpError
raise Error, "No builder block provided to ContextBuilder.new"
end
def defaults(&block)
self.defaults_block = block
end
def for_action(action, &block)
add_action_block(action, &block)
end
def block_for(action)
action_blocks.fetch(action) { defaults_block }
end
private
attr_accessor :defaults_block
def add_action_block(action, &block)
action_blocks[action] = block
end
def action_blocks
@action_blocks ||= HashWithIndifferentAccess.new
end
end
end
end
|
module Arrthorizer
module Rails
class ControllerConfiguration
Error = Class.new(Arrthorizer::ArrthorizerException)
def initialize(&block)
yield self
rescue LocalJumpError
raise Error, "No builder block provided to ContextBuilder.new"
end
def defaults(&block)
self.defaults_block = block
end
def for_action(*actions, &block)
actions.each do |action|
add_action_block(action, &block)
end
end
alias_method :for_actions, :for_action
def block_for(action)
action_blocks.fetch(action) { defaults_block }
end
private
attr_accessor :defaults_block
def add_action_block(action, &block)
action_blocks[action] = block
end
def action_blocks
@action_blocks ||= HashWithIndifferentAccess.new
end
end
end
end
|
Allow configuration of multiple actions at the same time
|
Allow configuration of multiple actions at the same time
for_action is now aliased as for_actions, and both accept multiple
actions to configure using the same block. Fixes #23.
|
Ruby
|
mit
|
BUS-OGD/arrthorizer,BUS-OGD/arrthorizer,BUS-OGD/arrthorizer
|
---
+++
@@ -13,9 +13,12 @@
self.defaults_block = block
end
- def for_action(action, &block)
- add_action_block(action, &block)
+ def for_action(*actions, &block)
+ actions.each do |action|
+ add_action_block(action, &block)
+ end
end
+ alias_method :for_actions, :for_action
def block_for(action)
action_blocks.fetch(action) { defaults_block }
|
7e25a0097c3a4e7d37d75f6e90bcee2883df0a46
|
analysis/opening_plot.py
|
analysis/opening_plot.py
|
#!/usr/bin/python
import sys
def parse_opening_list(filename):
with open(filename) as f:
open_count = dict()
openings = []
for line in (raw.strip() for raw in f):
open_count.setdefault(line, 0)
open_count[line] += 1
openings.append(line)
top10 = list(reversed(sorted(open_count.keys(),
key=lambda x: open_count[x])[-10:]))
movsum_window = 1000
last_window = openings[-movsum_window:]
top10_rate = list(reversed(sorted(open_count.keys(),
key=lambda x : last_window.count(x))[-10:]))
for data in [[top10, '_top_opening_data.txt'], [top10_rate, '_top_opening_rate_data.txt']]:
with open(filename + data[1] , 'w') as out:
out.write(','.join(top10) + '\n')
for opening in openings:
marker = ['1' if x == opening else '0' for x in data[0]]
out.write(','.join(marker) + '\n')
if __name__ == '__main__':
parse_opening_list(sys.argv[1])
|
#!/usr/bin/python
import sys
def parse_opening_list(filename):
with open(filename) as f:
open_count = dict()
openings = []
for line in (raw.strip() for raw in f):
open_count.setdefault(line, 0)
open_count[line] += 1
openings.append(line)
top10 = list(reversed(sorted(open_count.keys(),
key=lambda x: open_count[x])[-10:]))
movsum_window = 1000
last_window = openings[-movsum_window:]
top10_rate = list(reversed(sorted(open_count.keys(),
key=lambda x : last_window.count(x))[-10:]))
for data in [[top10, '_top_opening_data.txt'], [top10_rate, '_top_opening_rate_data.txt']]:
with open(filename + data[1] , 'w') as out:
out.write(','.join(data[0]) + '\n')
for opening in openings:
marker = ['1' if x == opening else '0' for x in data[0]]
out.write(','.join(marker) + '\n')
if __name__ == '__main__':
parse_opening_list(sys.argv[1])
|
Write correct titles for opening plots
|
Write correct titles for opening plots
|
Python
|
mit
|
MarkZH/Genetic_Chess,MarkZH/Genetic_Chess,MarkZH/Genetic_Chess,MarkZH/Genetic_Chess,MarkZH/Genetic_Chess
|
---
+++
@@ -21,7 +21,7 @@
for data in [[top10, '_top_opening_data.txt'], [top10_rate, '_top_opening_rate_data.txt']]:
with open(filename + data[1] , 'w') as out:
- out.write(','.join(top10) + '\n')
+ out.write(','.join(data[0]) + '\n')
for opening in openings:
marker = ['1' if x == opening else '0' for x in data[0]]
out.write(','.join(marker) + '\n')
|
a77eb24def5ba577f8545a0ae61c606392099342
|
_notes/tool/linux/shell_script/built_in.md
|
_notes/tool/linux/shell_script/built_in.md
|
---
---
## Set
```shell
# https://www.gnu.org/software/bash/manual/html_node/The-Set-Builtin.html
set -x
set -o xtrace
```
## Random
```shell
echo $(( RANDOM % 10 ))
```
## Print
```shell
printf %s "${MYVAR}" # Without new line
printf %s\\n "${MYVAR}" # With new line
```
|
---
---
## Set
```shell
# https://www.gnu.org/software/bash/manual/html_node/The-Set-Builtin.html
set -e # Exit on error
set -u # Throw error on undefined variables
set -o pipefail # Throw error on command pipe failures
set -x # Print the commands (-o xtrace)
```
## Random
```shell
echo $(( RANDOM % 10 ))
```
## Print
```shell
printf %s "${MYVAR}" # Without new line
printf %s\\n "${MYVAR}" # With new line
```
|
Add more notes for shell script's set built in
|
Add more notes for shell script's set built in
|
Markdown
|
mit
|
Yutsuten/Yutsuten.github.io,Yutsuten/Yutsuten.github.io,Yutsuten/Yutsuten.github.io
|
---
+++
@@ -5,8 +5,10 @@
```shell
# https://www.gnu.org/software/bash/manual/html_node/The-Set-Builtin.html
-set -x
-set -o xtrace
+set -e # Exit on error
+set -u # Throw error on undefined variables
+set -o pipefail # Throw error on command pipe failures
+set -x # Print the commands (-o xtrace)
```
## Random
|
fd6555b31a117ab699324ffb9b78fa6eadd53cb4
|
script.js
|
script.js
|
$(function() {
$("td").dblclick(function() {
var td = $(this), OriginalContent = td.text();
td.addClass("cellEditing");
td.html("<input type='text' value='" + OriginalContent + "' />");
td.children().first().focus();
td.children().first().keypress(function(e) {
if (e.which == 13) {
var text = $(this), newContent = text.val(), td = text.parent();
td.text(newContent);
td.removeClass("cellEditing");
}
});
td.children().first().blur(function(){
var td = $(this).parent();
td.text(OriginalContent);
td.removeClass("cellEditing");
});
});
});
|
$(function() {
$("td").dblclick(function() {
var td = $(this), originalContent = td.text();
td.addClass("cellEditing");
td.data("originalContent", originalContent);
td.html("<input type='text' value='" + originalContent + "' />");
td.children().first().focus();
td.children().first().keypress(function(e) {
if (e.which == 13) {
var text = $(this), newContent = text.val(), td = text.parent();
td.text(newContent);
td.removeClass("cellEditing");
}
});
td.children().first().blur(function(){
var td = $(this).parent();
td.text(td.data("originalContent"));
td.removeData("originalContent");
td.removeClass("cellEditing");
});
});
});
|
Use html5 data attributes to save the original content.
|
Use html5 data attributes to save the original content.
|
JavaScript
|
mit
|
hnakamur/editable_html_table_example
|
---
+++
@@ -1,9 +1,10 @@
$(function() {
$("td").dblclick(function() {
- var td = $(this), OriginalContent = td.text();
+ var td = $(this), originalContent = td.text();
td.addClass("cellEditing");
- td.html("<input type='text' value='" + OriginalContent + "' />");
+ td.data("originalContent", originalContent);
+ td.html("<input type='text' value='" + originalContent + "' />");
td.children().first().focus();
td.children().first().keypress(function(e) {
@@ -16,7 +17,8 @@
td.children().first().blur(function(){
var td = $(this).parent();
- td.text(OriginalContent);
+ td.text(td.data("originalContent"));
+ td.removeData("originalContent");
td.removeClass("cellEditing");
});
});
|
709eb1e44020a19d819cd05a9e52bb341cd6a2c0
|
src/main/java/org/purescript/psi/typeconstructor/TypeConstructorReference.kt
|
src/main/java/org/purescript/psi/typeconstructor/TypeConstructorReference.kt
|
package org.purescript.psi.typeconstructor
import com.intellij.psi.PsiElement
import com.intellij.psi.PsiReferenceBase
class TypeConstructorReference(typeConstructor: PSTypeConstructor) :
PsiReferenceBase<PSTypeConstructor>(
typeConstructor,
typeConstructor.textRangeInParent,
false
) {
override fun resolve(): PsiElement? {
return myElement.module.dataDeclarations.firstOrNull {it.name == myElement.name}
}
}
|
package org.purescript.psi.typeconstructor
import com.intellij.psi.PsiElement
import com.intellij.psi.PsiReferenceBase
import org.purescript.psi.PSPsiElement
class TypeConstructorReference(typeConstructor: PSTypeConstructor) :
PsiReferenceBase<PSTypeConstructor>(
typeConstructor,
typeConstructor.textRangeInParent,
false
) {
override fun getVariants(): Array<Any> =
candidates.toTypedArray()
override fun resolve(): PsiElement? =
candidates.firstOrNull { it.name == myElement.name }
/*
* TODO [simonolander]
* Add support for type declarations
*/
private val candidates: List<PSPsiElement>
get() = myElement.module.run {
dataDeclarations.toList() + newTypeDeclarations.toList() +
importDeclarations.flatMap { it.importedDataDeclarations + it.importedNewTypeDeclarations }
}
}
|
Add reference support between type constructors and data declarations and newtype declarations
|
Add reference support between type constructors and data declarations and newtype declarations
|
Kotlin
|
bsd-3-clause
|
intellij-purescript/intellij-purescript,intellij-purescript/intellij-purescript
|
---
+++
@@ -2,6 +2,7 @@
import com.intellij.psi.PsiElement
import com.intellij.psi.PsiReferenceBase
+import org.purescript.psi.PSPsiElement
class TypeConstructorReference(typeConstructor: PSTypeConstructor) :
PsiReferenceBase<PSTypeConstructor>(
@@ -9,7 +10,20 @@
typeConstructor.textRangeInParent,
false
) {
- override fun resolve(): PsiElement? {
- return myElement.module.dataDeclarations.firstOrNull {it.name == myElement.name}
- }
+
+ override fun getVariants(): Array<Any> =
+ candidates.toTypedArray()
+
+ override fun resolve(): PsiElement? =
+ candidates.firstOrNull { it.name == myElement.name }
+
+ /*
+ * TODO [simonolander]
+ * Add support for type declarations
+ */
+ private val candidates: List<PSPsiElement>
+ get() = myElement.module.run {
+ dataDeclarations.toList() + newTypeDeclarations.toList() +
+ importDeclarations.flatMap { it.importedDataDeclarations + it.importedNewTypeDeclarations }
+ }
}
|
3fc109a396ccbdf1f9b26a0cf89e2a92d3f87fb0
|
setup.py
|
setup.py
|
#!/usr/bin/env python
"""
setup.py file for afnumpy
"""
from distutils.core import setup
from afnumpy import __version__
setup (name = 'afnumpy',
version = __version__,
author = "Filipe Maia",
author_email = "filipe.c.maia@gmail.com",
url = 'https://github.com/FilipeMaia/afnumpy',
download_url = 'https://github.com/FilipeMaia/afnumpy/archive/'+__version__,
keywords = ['arrayfire', 'numpy', 'GPU'],
description = """A GPU-ready drop-in replacement for numpy""",
packages = ["afnumpy", "afnumpy/core", "afnumpy/lib", "afnumpy/linalg"],
install_requires=['arrayfire', 'numpy'],
)
|
#!/usr/bin/env python
"""
setup.py file for afnumpy
"""
from distutils.core import setup
from afnumpy import __version__
setup (name = 'afnumpy',
version = __version__,
author = "Filipe Maia",
author_email = "filipe.c.maia@gmail.com",
url = 'https://github.com/FilipeMaia/afnumpy',
download_url = 'https://github.com/FilipeMaia/afnumpy/archive/'+__version__+'.tar.gz',
keywords = ['arrayfire', 'numpy', 'GPU'],
description = """A GPU-ready drop-in replacement for numpy""",
packages = ["afnumpy", "afnumpy/core", "afnumpy/lib", "afnumpy/linalg"],
install_requires=['arrayfire', 'numpy'],
)
|
Correct again the pip URL
|
Correct again the pip URL
|
Python
|
bsd-2-clause
|
FilipeMaia/afnumpy,daurer/afnumpy
|
---
+++
@@ -13,7 +13,7 @@
author = "Filipe Maia",
author_email = "filipe.c.maia@gmail.com",
url = 'https://github.com/FilipeMaia/afnumpy',
- download_url = 'https://github.com/FilipeMaia/afnumpy/archive/'+__version__,
+ download_url = 'https://github.com/FilipeMaia/afnumpy/archive/'+__version__+'.tar.gz',
keywords = ['arrayfire', 'numpy', 'GPU'],
description = """A GPU-ready drop-in replacement for numpy""",
packages = ["afnumpy", "afnumpy/core", "afnumpy/lib", "afnumpy/linalg"],
|
74d4cdc8e13ce273ba45aff525c44602b9ac7278
|
oss-licenses-plugin/gradle/wrapper/gradle-wrapper.properties
|
oss-licenses-plugin/gradle/wrapper/gradle-wrapper.properties
|
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.2-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
|
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.6.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
|
Update Gradle version to 6.6.1
|
Update Gradle version to 6.6.1
|
INI
|
apache-2.0
|
google/play-services-plugins,google/play-services-plugins
|
---
+++
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
-distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.2-bin.zip
+distributionUrl=https\://services.gradle.org/distributions/gradle-6.6.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
|
ec21184bd1ef3538a0418d8d45a8c82522ba9bcb
|
platformio.ini
|
platformio.ini
|
; PlatformIO Project Configuration File
;
; Build options: build flags, source filter
; Upload options: custom upload port, speed and extra flags
; Library options: dependencies, extra library storages
; Advanced options: extra scripting
;
; Please visit documentation for the other options and examples
; http://docs.platformio.org/page/projectconf.html
[env:pro16MHzatmega328]
platform = atmelavr
board = pro16MHzatmega328
framework = arduino
lib_deps =
1250
|
; PlatformIO Project Configuration File
;
; Build options: build flags, source filter
; Upload options: custom upload port, speed and extra flags
; Library options: dependencies, extra library storages
; Advanced options: extra scripting
;
; Please visit documentation for the other options and examples
; http://docs.platformio.org/page/projectconf.html
[env:pro16MHzatmega328]
platform = atmelavr
board = pro16MHzatmega328
framework = arduino
lib_deps =
1250
2064
|
Add Adafruit VCNL4010 library as PIO dependency
|
Add Adafruit VCNL4010 library as PIO dependency
|
INI
|
mit
|
stonehippo/purry
|
---
+++
@@ -14,3 +14,4 @@
framework = arduino
lib_deps =
1250
+ 2064
|
0763a918e6355f4b67100f090f3a86e2a68b584c
|
app/helpers/application_helper/button/container_timeline.rb
|
app/helpers/application_helper/button/container_timeline.rb
|
class ApplicationHelper::Button::ContainerTimeline < ApplicationHelper::Button::Container
needs :@record
def disabled?
@error_message = _('No Timeline data has been collected for this %{entity}') %
{:entity => @entity} unless proper_events?
@error_message.present?
end
private
def proper_events?
@record.has_events? || @record.has_events?(:policy_events)
end
end
|
Create button a class for container timeline buttons
|
Create button a class for container timeline buttons
|
Ruby
|
apache-2.0
|
NaNi-Z/manageiq,aufi/manageiq,billfitzgerald0120/manageiq,kbrock/manageiq,mfeifer/manageiq,andyvesel/manageiq,romanblanco/manageiq,branic/manageiq,andyvesel/manageiq,tzumainn/manageiq,branic/manageiq,jrafanie/manageiq,durandom/manageiq,NaNi-Z/manageiq,hstastna/manageiq,josejulio/manageiq,ailisp/manageiq,jntullo/manageiq,agrare/manageiq,durandom/manageiq,syncrou/manageiq,aufi/manageiq,skateman/manageiq,lpichler/manageiq,jvlcek/manageiq,mzazrivec/manageiq,jvlcek/manageiq,aufi/manageiq,agrare/manageiq,tinaafitz/manageiq,tzumainn/manageiq,NickLaMuro/manageiq,matobet/manageiq,israel-hdez/manageiq,lpichler/manageiq,mresti/manageiq,hstastna/manageiq,israel-hdez/manageiq,agrare/manageiq,matobet/manageiq,ilackarms/manageiq,ilackarms/manageiq,syncrou/manageiq,jameswnl/manageiq,chessbyte/manageiq,mkanoor/manageiq,chessbyte/manageiq,israel-hdez/manageiq,mresti/manageiq,NickLaMuro/manageiq,hstastna/manageiq,tzumainn/manageiq,fbladilo/manageiq,matobet/manageiq,juliancheal/manageiq,mzazrivec/manageiq,d-m-u/manageiq,juliancheal/manageiq,kbrock/manageiq,djberg96/manageiq,matobet/manageiq,chessbyte/manageiq,romanblanco/manageiq,borod108/manageiq,mkanoor/manageiq,durandom/manageiq,juliancheal/manageiq,romanblanco/manageiq,mfeifer/manageiq,lpichler/manageiq,jameswnl/manageiq,andyvesel/manageiq,NaNi-Z/manageiq,NickLaMuro/manageiq,gmcculloug/manageiq,NickLaMuro/manageiq,tinaafitz/manageiq,syncrou/manageiq,billfitzgerald0120/manageiq,yaacov/manageiq,yaacov/manageiq,ilackarms/manageiq,gmcculloug/manageiq,mresti/manageiq,tinaafitz/manageiq,djberg96/manageiq,d-m-u/manageiq,NaNi-Z/manageiq,skateman/manageiq,borod108/manageiq,jntullo/manageiq,djberg96/manageiq,josejulio/manageiq,aufi/manageiq,yaacov/manageiq,kbrock/manageiq,josejulio/manageiq,ManageIQ/manageiq,ailisp/manageiq,mfeifer/manageiq,ailisp/manageiq,gerikis/manageiq,hstastna/manageiq,ManageIQ/manageiq,borod108/manageiq,branic/manageiq,mzazrivec/manageiq,mkanoor/manageiq,skateman/manageiq,mfeifer/manageiq,jrafanie/manageiq,romanblanco/manageiq,agrare/manageiq,d-m-u/manageiq,tinaafitz/manageiq,chessbyte/manageiq,pkomanek/manageiq,josejulio/manageiq,pkomanek/manageiq,ailisp/manageiq,d-m-u/manageiq,gerikis/manageiq,fbladilo/manageiq,gmcculloug/manageiq,yaacov/manageiq,ManageIQ/manageiq,juliancheal/manageiq,branic/manageiq,ilackarms/manageiq,jntullo/manageiq,djberg96/manageiq,ManageIQ/manageiq,jvlcek/manageiq,jntullo/manageiq,gerikis/manageiq,kbrock/manageiq,mresti/manageiq,durandom/manageiq,pkomanek/manageiq,billfitzgerald0120/manageiq,andyvesel/manageiq,fbladilo/manageiq,tzumainn/manageiq,lpichler/manageiq,jameswnl/manageiq,jameswnl/manageiq,pkomanek/manageiq,skateman/manageiq,jrafanie/manageiq,fbladilo/manageiq,mkanoor/manageiq,jrafanie/manageiq,gerikis/manageiq,mzazrivec/manageiq,syncrou/manageiq,israel-hdez/manageiq,gmcculloug/manageiq,jvlcek/manageiq,billfitzgerald0120/manageiq,borod108/manageiq
|
---
+++
@@ -0,0 +1,15 @@
+class ApplicationHelper::Button::ContainerTimeline < ApplicationHelper::Button::Container
+ needs :@record
+
+ def disabled?
+ @error_message = _('No Timeline data has been collected for this %{entity}') %
+ {:entity => @entity} unless proper_events?
+ @error_message.present?
+ end
+
+ private
+
+ def proper_events?
+ @record.has_events? || @record.has_events?(:policy_events)
+ end
+end
|
|
3a0907f6eb974bb1afeb278645848ab9cc0bffab
|
src/main/resources/log4j.properties
|
src/main/resources/log4j.properties
|
# Define the root logger with the appender = console
# Supported Logging Levels in low-high order is
# DEBUG < INFO < WARN < ERROR < FATAL
# Logging levels are inherited from the root logger, and, logging levels
# are enabled in a low-high order for e.g. logging level ERROR will enable
# ERROR and FATAL log messages to be displayed on the appender.
log4j.rootLogger = INFO, CONSOLE, STDERR
# Define the console appender
log4j.appender.CONSOLE=org.apache.log4j.ConsoleAppender
# Define the layout for console appender
log4j.appender.CONSOLE.layout=org.apache.log4j.PatternLayout
# See (https://logging.apache.org/log4j/1.2/apidocs/org/apache/log4j/PatternLayout.html)
# for details on the pattern layout string.
log4j.appender.CONSOLE.layout.conversionPattern=%d{dd MMM yyyy HH:mm:ss,SSS} [%-5p] [%C{1}]: %m%n
log4j.appender.STDERR=org.apache.log4j.ConsoleAppender
log4j.appender.STDERR.layout=org.apache.log4j.PatternLayout
log4j.appender.STDERR.layout.conversionPattern=%d{dd MMM yyyy HH:mm:ss,SSS} [%-5p] [%C{1}]: %m%n
log4j.appender.STDERR.Threshold=WARN
log4j.appender.STDERR.Target=System.err
|
# Define the root logger with the appender = console
# Supported Logging Levels in low-high order is
# DEBUG < INFO < WARN < ERROR < FATAL
# Logging levels are inherited from the root logger, and, logging levels
# are enabled in a low-high order for e.g. logging level ERROR will enable
# ERROR and FATAL log messages to be displayed on the appender.
log4j.rootLogger = INFO, CONSOLE
# Define the console appender
log4j.appender.CONSOLE=org.apache.log4j.ConsoleAppender
# Define the layout for console appender
log4j.appender.CONSOLE.layout=org.apache.log4j.PatternLayout
# See (https://logging.apache.org/log4j/1.2/apidocs/org/apache/log4j/PatternLayout.html)
# for details on the pattern layout string.
log4j.appender.CONSOLE.layout.conversionPattern=%d{dd MMM yyyy HH:mm:ss,SSS} [%-5p] [%C{1}]: %m%n
|
Revert "Log errors to stderr so they can be captured by non-java software"
|
Revert "Log errors to stderr so they can be captured by non-java software"
This reverts commit 353d29deeb20305b396278093173d6f0ceafe225.
|
INI
|
apache-2.0
|
Netflix/photon,Netflix/photon
|
---
+++
@@ -4,7 +4,7 @@
# Logging levels are inherited from the root logger, and, logging levels
# are enabled in a low-high order for e.g. logging level ERROR will enable
# ERROR and FATAL log messages to be displayed on the appender.
-log4j.rootLogger = INFO, CONSOLE, STDERR
+log4j.rootLogger = INFO, CONSOLE
# Define the console appender
log4j.appender.CONSOLE=org.apache.log4j.ConsoleAppender
@@ -14,9 +14,3 @@
# See (https://logging.apache.org/log4j/1.2/apidocs/org/apache/log4j/PatternLayout.html)
# for details on the pattern layout string.
log4j.appender.CONSOLE.layout.conversionPattern=%d{dd MMM yyyy HH:mm:ss,SSS} [%-5p] [%C{1}]: %m%n
-
-log4j.appender.STDERR=org.apache.log4j.ConsoleAppender
-log4j.appender.STDERR.layout=org.apache.log4j.PatternLayout
-log4j.appender.STDERR.layout.conversionPattern=%d{dd MMM yyyy HH:mm:ss,SSS} [%-5p] [%C{1}]: %m%n
-log4j.appender.STDERR.Threshold=WARN
-log4j.appender.STDERR.Target=System.err
|
6cabf9c03cd40ae748d03f1a2fd3f4f3db6c47a5
|
protocols/models.py
|
protocols/models.py
|
from datetime import datetime
from django.db import models
class Topic(models.Model):
name = models.CharField(max_length=100)
description = models.TextField(blank=True, null=True)
attachment = models.ManyToManyField('attachments.Attachment')
voted_for = models.PositiveIntegerField()
voted_against = models.PositiveIntegerField()
voted_abstain = models.PositiveIntegerField()
statement = models.TextField()
def __unicode__(self):
return self.name
class Institution(models.Model):
name = models.CharField(max_length=64)
def __unicode__(self):
return self.name
class Protocol(models.Model):
conducted_at = models.DateField(default=datetime.now)
institution = models.ForeignKey(Institution)
number = models.CharField(max_length=20, unique=True)
scheduled_time = models.TimeField()
absent = models.ManyToManyField('members.User', related_name='meetings_absent')
attendents = models.ManyToManyField('members.User', related_name='meetings_attend')
start_time = models.TimeField()
additional = models.TextField(blank=True, null=True)
quorum = models.PositiveIntegerField()
majority = models.PositiveIntegerField()
current_majority = models.PositiveIntegerField()
topics = models.ManyToManyField(Topic)
information = models.TextField(blank=True, null=True)
def __unicode__(self):
return self.number
|
from datetime import datetime
from django.db import models
class Topic(models.Model):
name = models.CharField(max_length=100)
description = models.TextField(blank=True, null=True)
attachment = models.ManyToManyField('attachments.Attachment')
voted_for = models.PositiveIntegerField(blank=True, null=True)
voted_against = models.PositiveIntegerField(blank=True, null=True)
voted_abstain = models.PositiveIntegerField(blank=True, null=True)
statement = models.TextField(blank=True, null=True)
def __unicode__(self):
return self.name
class Institution(models.Model):
name = models.CharField(max_length=64)
def __unicode__(self):
return self.name
class Protocol(models.Model):
conducted_at = models.DateField(default=datetime.now)
institution = models.ForeignKey(Institution)
number = models.CharField(max_length=20, unique=True)
scheduled_time = models.TimeField()
absent = models.ManyToManyField('members.User', related_name='meetings_absent')
attendents = models.ManyToManyField('members.User', related_name='meetings_attend')
start_time = models.TimeField()
additional = models.TextField(blank=True, null=True)
quorum = models.PositiveIntegerField()
majority = models.PositiveIntegerField()
current_majority = models.PositiveIntegerField()
topics = models.ManyToManyField(Topic)
information = models.TextField(blank=True, null=True)
def __unicode__(self):
return self.number
|
Add option for blank voting
|
Add option for blank voting
|
Python
|
mit
|
Hackfmi/Diaphanum,Hackfmi/Diaphanum
|
---
+++
@@ -7,10 +7,10 @@
name = models.CharField(max_length=100)
description = models.TextField(blank=True, null=True)
attachment = models.ManyToManyField('attachments.Attachment')
- voted_for = models.PositiveIntegerField()
- voted_against = models.PositiveIntegerField()
- voted_abstain = models.PositiveIntegerField()
- statement = models.TextField()
+ voted_for = models.PositiveIntegerField(blank=True, null=True)
+ voted_against = models.PositiveIntegerField(blank=True, null=True)
+ voted_abstain = models.PositiveIntegerField(blank=True, null=True)
+ statement = models.TextField(blank=True, null=True)
def __unicode__(self):
return self.name
|
02f7a546cda7b8b3ce31616a74f3aa3518632885
|
djangocms_spa_vue_js/templatetags/router_tags.py
|
djangocms_spa_vue_js/templatetags/router_tags.py
|
import json
from django import template
from django.utils.safestring import mark_safe
from ..menu_helpers import get_vue_js_router
register = template.Library()
@register.simple_tag(takes_context=True)
def vue_js_router(context):
if context.has_key('vue_js_router'):
router = context['vue_js_router']
else:
router = get_vue_js_router(context=context)
router_json = json.dumps(router)
escaped_router_json = router_json.replace("'", "'") # Escape apostrophes to prevent JS errors.
return mark_safe(escaped_router_json)
|
import json
from django import template
from django.utils.safestring import mark_safe
from ..menu_helpers import get_vue_js_router
register = template.Library()
@register.simple_tag(takes_context=True)
def vue_js_router(context):
if 'vue_js_router' in context:
router = context['vue_js_router']
else:
router = get_vue_js_router(context=context)
router_json = json.dumps(router)
escaped_router_json = router_json.replace("'", "'") # Escape apostrophes to prevent JS errors.
return mark_safe(escaped_router_json)
|
Use `in` rather than `has_key`
|
Use `in` rather than `has_key`
|
Python
|
mit
|
dreipol/djangocms-spa-vue-js
|
---
+++
@@ -10,7 +10,7 @@
@register.simple_tag(takes_context=True)
def vue_js_router(context):
- if context.has_key('vue_js_router'):
+ if 'vue_js_router' in context:
router = context['vue_js_router']
else:
router = get_vue_js_router(context=context)
|
7ff139f097603085685f3a152f67ce566dd40932
|
.github/workflows/check_transport.yml
|
.github/workflows/check_transport.yml
|
name: Check Matrix
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
transport: [native, nio]
exclude:
# excludes native on Windows (there's none)
- os: windows-latest
transport: native
steps:
- uses: actions/checkout@v1
- name: Set up JDK 1.8
uses: actions/setup-java@v1.2.0
with:
java-version: 1.8
- name: Build with Gradle
run: ./gradlew clean check -PforceTransport=${{ matrix.transport }}
|
name: Check Matrix
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-18.04, macos-10.15, windows-2019]
transport: [native, nio]
exclude:
# excludes native on Windows (there's none)
- os: windows-latest
transport: native
steps:
- uses: actions/checkout@v1
- name: Set up JDK 1.8
uses: actions/setup-java@v1.2.0
with:
java-version: 1.8
- name: Build with Gradle
run: ./gradlew clean check -PforceTransport=${{ matrix.transport }}
|
Switch to a fixed version instead of latest version for CI VMs
|
Switch to a fixed version instead of latest version for CI VMs
|
YAML
|
apache-2.0
|
reactor/reactor-netty,reactor/reactor-netty
|
---
+++
@@ -9,7 +9,7 @@
strategy:
fail-fast: false
matrix:
- os: [ubuntu-latest, macOS-latest, windows-latest]
+ os: [ubuntu-18.04, macos-10.15, windows-2019]
transport: [native, nio]
exclude:
# excludes native on Windows (there's none)
|
cbb0b65464c7f6895d612aab65f554431062ce2c
|
modules/projects/README.md
|
modules/projects/README.md
|
# Project Manifests
Project manifests live in `modules/projects/manifests/$project.pp`. A
simple project manifest example:
```puppet
class projects::boxen {
$dir = "${boxen::config::srcdir}/boxen"
repository { $dir:
source => 'boxen/boxen'
}
ruby::local { $dir:
version => 'system',
require => Repository[$dir]
}
}
```
|
# Project Manifests
Project manifests live in `modules/projects/manifests/$project.pp`. A
simple project manifest example:
```puppet
class projects::boxen {
include qt # requires the qt module in Puppetfile
$dir = "${boxen::config::srcdir}/boxen"
repository { $dir:
source => 'boxen/boxen'
}
ruby::local { $dir:
version => 'system',
require => Repository[$dir]
}
}
```
|
Update docs a bit for projects example
|
Update docs a bit for projects example
|
Markdown
|
mit
|
vincentpeyrouse/my-boxen,arntzel/BoxenRepo,chrissav/2u_boxen,concordia-publishing-house/boxen,blamarvt/boxen,uniite/my-boxen,schlick/my-boxen,otternq/our-boxen,testboxenmissinformed/boxen-test,albertofem/boxen,phase2/our-confroom-boxen,cade/my-boxen,darthmacdougal/boxen,RossKinsella/our-boxen,atomaka/my-boxen,yuma-iwasaki/my-boxen,nealio42/macbookair,bolasblack/boxen,xebu/boxen-minimal,singuerinc/singuerinc-boxen,malt3/boxen-test,palcisto/my-boxen,dartavion/my-boxen,shaokun/boxen,Jaco-Pretorius/Workstation,jamielennox1/boxen,mwagg/our-boxen,hussfelt/my-boxen,buritica/our-boxen,tetsuo692/my-boxen,sreid/my-boxen,andrzejsliwa/our-boxen,mitsurun/my-boxen,rprimus/my-boxen,ryanycoleman/my-boxen,dotfold/dotboxen,ferventcoder/boxen,ozw-sei/boxen,hparra/my-boxen,chrisklaiber/khan-boxen,platanus/our-boxen,andrewhao/our-boxen,scopp/boxen,jonatanmendozaboxen/platformboxen,qmoya/my-boxen,christian-blades-cb/blades-boxen,portaltechdevenv/tbsdevenvtest,jonnangle/my-boxen,MattParker89/MyBoxen,Shekharv/open,nealio42/macbookair,1gitGrey/boxen015,jwalsh/our-boxen,jypandjio/fortest_my_boxen,msuess/my-boxen,nickpellant/our-boxen,navied/boxen-ios,bjarkehs/my-boxen,franco/boxen,justinmeader/meader-boxen,apto-as/my_boxen,scottgearyau/boxen,applidium-boxen/our-boxen,bwl/bwl-boxen,zachseifts/boxen,Jun-Chang/my-boxen,andrewhao/our-boxen,hernandezgustavo/boxenTest,g12r/bx,bmihelac/our-boxen,navied/boxen-ios,atty303/boxen,mfks17/our-boxen,elle24/boxen,ombr/our-boxen,coreone/tex-boxen,tatsuma/boxen,jak/boxen,jdwolk/my-boxen,vkrishnasamy/vkboxen,andrewhao/our-boxen,krajewf/my-boxen,hwhelchel/boxen,tatsuma/boxen,vphamdev/boxen,newta/my-boxen,jgrau/default-boxen,hydra1983/my-boxen,tdd/my-boxen,dstack4273/MyBoxenBootstrap,cubicmushroom/our-boxen,quintel/boxen,blamattina/our-boxen,theand/our-boxen,jantman/boxen,jacderida/boxen,raychouio/Boxen,mdepuy/boxen,ta9o/our-boxen,wongyouth/boxen,Ganonside/ganon-boxen,lixef/my-boxen,webflo/our-boxen,ONSdigital/ons-boxen,hkrishna/boxen,felixcohen/my-boxen,siddhuwarrier/my-boxen,tdm00/my-boxen,boskya/my-boxen,ryanaslett/mixologic-boxen,nrako/my-boxen,aedelmangh/thdboxen,alainravet/our-boxen,luisbarrueco/boxen,geoffharcourt/boxen,jacksingleton/our-boxen,sharpwhisper/our-boxen,joboscribe/my_boxen,chrisjbaik/our-boxen,drfmunoz/our-boxen,ErikEvenson/boxen,kayleg/my-boxen,pekepeke/boxen,devboy/our-boxen,warrenbailey/ons-boxen,dansmithy/danny-boxen,geekles/my-boxen,bartekrutkowski/our-boxen,shaunoconnor/my-boxen,thomaswelton/old-boxen,msuess/my-boxen,Nanshan/Nanshan-boxen,gravityrail/our-boxen,mwermuth/our-boxen,pearofducks/slappy-testerson,sonnymai/my-boxen,jasonamyers/our-boxen,narze/our-boxen,kayleg/my-boxen,bleech/general-boxen,enriqueruiz/ninja-boxen,jodylent/boxen,mcrumm/my-boxen,palcisto/my-boxen,ykhs/my-boxen,vipulnsward/boxen-repo,skyis/gig-boxen,julienlavergne/my-boxen,boxen-jin/my-boxen,Traxmaxx/my-boxen,rudazhan/my-boxen,schani/xamarin-boxen,tdm00/my-boxen,greatjam/boxenbase,nimbleape/example-boxen,bdossantos/my-boxen,bitbier/my-boxen,ooiwa/my-boxen,abennet/tools,russ/boxen,bdossantos/my-boxen,chai/boxen,calorie/my-boxen,dotfold/dotboxen,grahambeedie/my-boxen,masawo/my-boxen,julzhk/myboxen,rozza/my-boxen,user-tony/my-boxen,akoinesjr/andrew-boxen,balloon-studios/balloon-boxen,BillWeiss/boxen,MrBri/a-go-at-boxen,nickpellant/our-boxen,moriarty/my-boxen,lakhansamani/myboxen,jae2/boxen,ryanwalker/my-boxen,christian-blades-cb/blades-boxen,BrandonCummings/BoxenRepo,rob-murray/my-osx,clburlison/my-boxen,vtlearn/boxen,GoodDingo/my-boxen,adamwalz/my-boxen,faizhasim/our-boxen,joelturnbull/our-boxen,lonnen/base-boxen,sahilm/boxen,moveline/our-boxen,joelhooks/my-boxen,phathocker/loxen-phathocker,paluchas/my-boxen,akiellor/our-boxen,han/hana-boxen,kitatuba/my-boxen,matildabellak/my-boxen,trq/my-boxen,juherpin/myboxen,indika/boxen,telamonian/boxen-linux,mztaylor/our_boxen,apeeters/boxen,dangig/a1-boxen,newta/my-boxen,bartekrutkowski/our-boxen,kevcolwell/Boxen,WeAreMiles/myBoxen,jacobtomlinson/my-boxen,glarizza/my-boxen,mmrobins/my-boxen,segu/my-boxen,staxmanade/boxen-vertigo,masawo/my-boxen,wkimeria/boxen_research,theand/our-boxen,lpmulligan/lpm-boxen,rumblesan/my-boxen,GrandSlam/my-boxen,scoutbrandie/my-boxen,muuran/my-boxen,extrinsicmedia/finboxen,flatiron32/boxen,dansmithy/danny-boxen,kayhide/boxen,Tr4pSt3R/boxen,manolin/manolin-boxen,scottgearyau/boxen,joboscribe/my_boxen,kabostime/my-boxen,rvora/rvora-boxen,appcues/our-boxen,ckesurf/patch-boxen,enigmamarketing/boxen,wasabi0522/my-boxen,AnneTheAgile/AnneTheAgile-boxen,acarl005/our-boxen,stefanfoulis/divio-boxen,mrbrett/bretts-boxen,iorionda/my-boxen,jgrau/default-boxen,leed71/boxen,johnsoga/my_boxen,empty23/myboxen,chinafanghao/forBoxen,halyard/halyard,yrabinov/boxen,dannydover/boxen-dover,cmckni3/my-boxen,mickengland/boxen,rudymccomb/my-boxen15,johnnyLadders/boxen,marr/our-boxen,bmihelac/our-boxen,stuartcampbell/my-boxen,gregimba/boxen-personal,mfks17/our-boxen,jldbasa/boxen,evalphobia/my-boxen,joelchelliah/sio-boxen,jhonathas/boxen,raychouio/Boxen,friederikewild/boxen,ballyhooit/boxen,mikecardii/nerdboxen,sreeramanathan/my-boxen,shaokun/boxen,kevronthread/boxen-test,stedwards/our-boxen,ysoussov/mah-boxen,smcingvale/my-boxen,tbueno/my-boxen,stoeffel/our-boxen,agilecreativity/boxen-2015,puppetlabs/eduteam-boxen,rujiali/ibis,magicmonty/our-boxen,burin/whee-boxen,springaki/boxen,discoverydev/my-boxen,ymmty/my-boxen,ddaugher/baseBoxen,petronbot/our-boxen,whharris/boxen,tischler/tims-boxen,rudymccomb/my-boxen,tbueno/my-boxen,marzagao/our-boxen,danpalmer/boxen,catesandrew/cates-boxen,BillWeiss/boxen,andrewdlong/boxen,johnsoga/my_boxen,drewtempelmeyer/boxen,sgerrand/our-boxen,fukayatsu/my-boxen,wcorrigan/myboxen,rafasf/my-boxen,Damienkatz/my-boxen,mlevitt/boxen,merikan/my-boxen,chaoranxie/my-boxen,taoistmath/USSBoxen,Yeriwyn/my-boxen,kosmotaur/boxen,bentrevor/my-boxen,jacobboland/my-boxen,siddhuwarrier/my-boxen,gsamokovarov/my-boxen,plainfingers/adfiboxen,rusty0606/my-boxen,prussiap/boxen_dev,kseta/my-boxen,balloon-studios/balloon-boxen,1337807/my-boxen,yokulkarni/boxen,mattr-/our-boxen,belighted/our-boxen,cqwense/our-boxen,kallekrantz/boxen,wesen/our-boxen,mikeycmccarthy/our-boxen,lixef/my-boxen,pingpad/boxen,kallekrantz/boxen,jiananlu/our-boxen,Johaned/my_boxen,marano/my-boxen,mtakezawa/our-boxen,caciasmith/my-boxen,surefire/our-boxen,novakps/our-boxen,k-nishijima/our-boxen,jgrau/my-boxen,ombr/our-boxen,filipebarcos/filipebarcos-boxen,FrancisVarga/dev-boxen,jduhamel/my-boxen,viztor/boxen,meltmedia/boxen,douglasom/railsexperiments,allanma/BBoxen,nullus/boxen,boztek/my-boxen,surfacedamage/boxen,rafasf/my-boxen,toocheap/my-boxen,leehanel/my_boxen,puttiz/bird-boxen,wcorrigan/myboxen,theand/our-boxen,vindir/vindy-boxen,user-tony/my-boxen,gabrielalmeida/my-boxen,felixclack/my-boxen,sigriston/my-boxen,jcarlson/cdx-boxen,fredoliveira/boxen,hjuutilainen/myboxen,sepeth/my-boxen,micalexander/boxen,kakuda/my-boxen,haeronen/my-boxen,panderp/my-boxen,dfwarden/gsu-boxen,DennisDenuto/our-boxen,rumblesan/my-boxen,geoffharcourt/boxen,imdhmd/my-boxen,scheibinger/my-boxen,usmanismail/boxen,elbuo8/boxen,josemvidal/my-boxen,WeAreMiles/myBoxen,Ceasar/my-boxen,inakiabt/boxen-productgram,mmasashi/my-boxen,jacobboland/my-boxen,evanchiu/my-boxen,mroth/my-boxen,didymu5/tommysboxen,zamoose/boxen,pseudomuto/boxen,kidylee/our-boxen,ckelly/my-boxen,csaura/my_boxen,kyohei-shimada/my-boxen,akoinesjr/andrew-boxen,webdizz/my-boxen,flyingpig16/boxen,singuerinc/singuerinc-boxen,topsterio/boxen,abuxton/our-boxen,weiliv/boxen,discoverydev/my-boxen,mediasuitenz/our-boxen-xcode5.1,jwalsh/our-boxen,spazm/our-boxen,Royce/my-boxen,huit/cloudeng-boxen,luisbarrueco/boxen,abennet/tools,mlevitt/boxen,robbiegill/a-boxen,peterwardle/boxen,rudymccomb/my-boxen17,darkseed/boxen,paolodm/test-boxen,jduhamel/my-boxen,grahamgilbert/my-boxen,jtao826/mscp-boxen,heflinao/boxen,bwl/bwl-boxen,theand/our-boxen,mirajsanghvi/boxen_tidepool,donaldpiret/our-boxen,minatsu/my-boxen,saicologic/our-boxen,adamchandra/my-boxen,sorenmat/our-boxen,Nanshan/Nanshan-boxen,aisensiy/boxen,amitmula/boxen-test,diegofigueroa/boxen,smh/my-boxen,bentsou-com/ben-boxen,justinmeader/whipple-boxen,mkilpatrick/boxen_test,spacepants/my-boxen,ysoussov/boxenz,raymaung/ray-boxen,nederhrj/boxen,HalfdanJ/Boxen,atmos/our-boxen,arron-green/my-boxen,hydra1983/my-boxen,kcmartin/our-boxen,voidraven2/boxen,dstack27/MyBoxenBootstrap,jeffleeismyhero/boxen,MAECProject/maec-boxen,boxen-jin/my-boxen,maxdeviant/boxen,gsamokovarov/my-boxen,jiananlu/our-boxen,italoag/boxen,dliggat/boxen-old,hjfbynara/hjf-boxen,klean-software/default-boxen,digitaljamfactory/boxen,takashi/my-boxen,tfhartmann/boxen,pauldambra/our-boxen,kieranja/mac,jwmayfield/my-boxen,ingoclaro/our-boxen,abuxton/our-boxen,huyennh/boxen,huit/cloudeng-boxen,jsmitley/boxen,traethethird/boxen-python,quintel/boxen,meatherly/my-boxen,rogerhub/our-boxen,pixeldetective/myboxen,Dmetmylabel/labelweb-boxen,gf1730/boxen,bigashman/boxen,mikeycmccarthy/our-boxen,miguelscopely/boxen,nik/my-boxen,kdimiche/boxen,mefellows/my-boxen,jpogran/puppetlabs-boxen,markkendall/boxen,pixeldetective/myboxen,mly1999/my-boxen,debona/my-boxen,bash0C7/my-boxen,cleblanc87/boxen,antigremlin/my-boxen,jbecker42/boxen,mirkokiefer/mirkos-boxen,arnoldsandoval/our-boxen,escott-/boxen,n0ts/our-boxen,zacharyrankin/my-boxen,manchan/boxen,BenjMichel/our-boxen,nixterrimus/boxen,morgante/boxen-saturn,joe-re/my-boxen,diegofigueroa/boxen,mgibson/boxen-dec-2013,bjarkehs/my-boxen,webflo/our-boxen,pizzaops/drunken-tribble,kevinSuttle/my-boxen,tischler/tims-boxen,novakps/our-boxen,arntzel/BoxenRepo,cbi/cbi-boxen,gaahrdner/my-boxen,codingricky/my-boxen,jypandjio/fortest_my_boxen,panderp/boxen,Royce/my-boxen,mansfiem/boxen,vesan/boxen,salimane/our-boxen,morganloehr/setup,mgriffin/my-boxen,lsylvester/boxen,mgriffin/my-boxen,oke-ya/boxen,vipulnsward/boxen-repo,jazeren1/boxen,dmccown/boxen,alphagov/gds-boxen,justinmeader/meader-boxen,davedash/my-boxen,ferventcoder/boxen,rexxllabore/localboxen,surfacedamage/boxen,noriaki/my-boxen,BrandonCummings/BoxenRepo,srclab/our-boxen,plyfe/our-boxen,JanGorman/my-boxen,debona/my-boxen,billyvg/my-boxen,thejonanshow/my-boxen,mruser/boxen,voidraven2/boxen,kevinprince/our-boxen,sqki/boxen,sreid/my-boxen,erickreutz/our-boxen,natewalck/my-boxen_old,philipsdoctor/try-boxen,drfmunoz/our-boxen,scheibinger/my-boxen,thenickcox/my_boxen,drewtempelmeyer/boxen,calorie/my-boxen,paluchas/my-boxen,nrako/my-boxen,bentsou-com/ben-boxen,kylemclaren/boxen,ckesurf/patch-boxen,malt3/boxen-test,micalexander/boxen,jabley/our-boxen,typhonius/boxen,atayarani/myboxen,extrinsicmedia/finboxen,dbld-org/our-boxen,cade/my-boxen,josemarluedke/neighborly-boxen,lacroixdesign/our-boxen,yayao/my-boxen,k-nishijima/our-boxen,marzagao/our-boxen,lacroixdesign/our-boxen,mainyaa/boxen,chrisklaiber/khan-boxen,webflo/our-boxen,jfx41/voraa,pedro-mass/boxentest,oddhill/oddboxen,patrickkelso/boxen-test,greatjam/boxenbase,crpeck/boxen,kaneshin/boxen,elbuo8/boxen,grahamgilbert/my-boxen,ngalchonkova/lohika,lotsofcode/my-boxen,zachahn/our-boxen,kabostime/my-boxen,dgiunta/boxen,rebootd/myboxen,jniesen/my-boxen,rickyp72/rp_boxen,bjarkehs/my-boxen,msaunby/our-boxen,kitakitabauer/my-boxen,gdks/our-boxen,thuai/boxen,shao1555/my-boxen,randym/boxen,puppetlabs/eduteam-boxen,raffone/boxen,john-griffin/boxen,dmccown/boxen,kyletns/boxen,acarl005/our-boxen,sahilm/boxen,ugoletti/my-boxen,hashrock-sandbox/MyBoxen,jonatanmendozaboxen/platformboxen,zooland/our-boxen,wheresjim/my-boxen,jasonleibowitz/tigerspike-boxen,gaohao/our-boxen,shaunoconnor/my-boxen,barm4ley/crash_analyzer_boxen,stedwards/our-boxen,segu/my-boxen,chrissav/2u_boxen,tam-vo/my-boxen,sjoeboo/boxen,smozely/boxen,bentrevor/my-boxen,JanGorman/my-boxen,sigriston/my-boxen,christopher-b/boxen,jjtorroglosa/my-boxen,sleparc/my-boxen,webbj74/my-boxen,steinim/steinim-boxen,ingoclaro/our-boxen,moredip/my-boxen,umi-uyura/my-boxen,magicmonty/our-boxen,junior-ales/oh-my-mac,morgante/boxen-saturn,cander/boxen,albac/my-boxen,salimane/our-boxen,kdimiche/boxen,ldickerson/Boxen,smt/my-boxen,wkimeria/spectre,scottgearyau/boxen,micahroberson/boxen,designbyraychou/boxen,tarVolcano/my-boxen,puttiz/bird-boxen,atmos/our-boxen,pizzaops/drunken-tribble,mattdelves/boxen,MattParker89/MyBoxen,yakimant/boxen,darvin/apportable-boxen,krohrbaugh/my-boxen,webbj74/webbj74-boxen,gato-omega/my-boxen,gregorylloyd/our-boxen,Nanshan/Nanshan-boxen,gregrperkins/boxen,natewalck/my-boxen_old,weih/boxen,borcean/my-boxen,yrabinov/boxen,davidmyers9000/my-boxen,mcrumm/my-boxen,jamesvulling/my-boxen,andrewdlong/boxen,miguelalvarado/my-boxen,ooiwa/my-boxen,darvin/apportable-boxen,bartul/boxen,jgrau/default-boxen,gregrperkins/boxen,chrisjbaik/our-boxen,heptat/boxen,dvberkel/luminis-boxen-dev,bigashman/boxen,ricrios11/Bootstrapping,pamo/boxen-mini,adelegard/my_boxen,adelegard/my_boxen,scottstanfield/boxen,jhuston/our-boxen,Glipho/boxen,mattgoldspink/personal-boxen,rootandflow/our-boxen,mpherg/new-boxen,waisbrot/boxen,tanihito/my-boxen,rebootd/myboxen,awaxa/awaxa-boxen,matthew-andrews/my-boxen,qmoya/my-boxen,brendancarney/my-boxen,nicknovitski/my-boxen,burin/whee-boxen,urimikhli/myboxen,goncalopereira/boxen,ckelly/my-boxen,GrandSlam/my-boxen,springaki/boxen,mischizzle/boxen,Glipho/boxen,mefellows/my-boxen,Yeriwyn/my-boxen,dotfold/dotboxen,all9lives/lv-boxen,lenciel/my-box,dannydover/boxen-dover,arntzel/BoxenRepo,carthik/our-boxen,filaraujo/.boxen,lsylvester/boxen,blamattina/my-boxen,ChrisWeiss/our-boxen,padwasabimasala/my-boxen,yss44/my-boxen,chaoranxie/my-boxen,supernovae/boxen,calebrosario/boxen,Johaned/my_boxen,tgarrier/boxen,fbernitt/our-boxen,joshbeard/boxen,josemvidal/my-boxen,jdhom/my-boxen,jtjurick/boxen-custom,pheekra/our-boxen,mattdelves/boxen,ugoletti/my-boxen,girishpandit88/boxen,bayster/boxen,nithyan/rcc-boxen,jeremybaumont/jboxen,ralphreid/boxen,kabostime/my-boxen,allanma/BBoxen,jonmosco/boxen-test,donaldpiret/our-boxen,mpherg/boxen,neotag/neotag-boxen,jde/boxen,mirajsanghvi/boxen_tidepool,kPhilosopher/my_boxen,borcean/my-boxen,Lavoaster/our-boxen,dfwarden/gsu-boxen,jacebrowning/my-boxen,yakimant/boxen,otternq/our-boxen,burin/whee-boxen,logikal/boxen,motns/my-boxen,milan/our-boxen,Sugitaku/my-boxen,jeffleeismyhero/boxen,mwermuth/our-boxen,KazukiOhashi/my-boxen,lorn/lorn-boxen,spuder/spuder-boxen,miguelespinoza/boxen,mansfiem/boxen,professoruss/russ_boxen,kitakitabauer/my-boxen,caciasmith/my-boxen,erasmios/deuteron,g12r/bx,AVVSDevelopment/boxen,Damienkatz/my-boxen,dangig/a1-boxen,apackeer/my-boxen-old,ykt/boxen-silverbox,ArpitJalan/boxen,jacebrowning/my-boxen,ronco/my-tomputor,huyennh/boxen,mikedename/myboxen,Shekharv/open,felho/boxen,bgerstle/my-boxen,krohrbaugh/my-boxen,brissmyr/my-boxen,jheuer/my-boxen,ckelly/my-boxen,jeremybaumont/jboxen,junior-ales/oh-my-mac,appcues/our-boxen,rudymccomb/my-boxen,snieto/boxen,woowee/my-boxen,jkemsley/boxen-def,pictura/pictura-boxen,ofl/my-boxen,arnoldsandoval/our-boxen,uniite/my-boxen,macboi86/boxen,user-tony/boxen,shiftit/our-boxen,seanhandley/my_boxen,flannon/dh-boxen,jtjurick/DEPRECATED--boxen,spikeheap/our-boxen,kevronthread/boxen-test,crpdm/our-boxen,mpherg/new-boxen,seancallanan/my-boxen,boztek/my-boxen,fluentglobe/our-boxen,ktec/boxen-laptop,sfcabdriver/sfcabdriver-boxen,tarebyte/my-boxen,rozza/my-boxen,gaishimo/my-boxen,surefire/our-boxen,thuai/boxen,tfnico/my-boxen,jcvanderwal/boxen,morganloehr/setup,alf/boxen,smt/my-boxen,amerdidit/my-boxen,driverdan/boxen,PopShack/boxen,PKaung/boxen,sfwatergit/sfboxen,Berico-Technologies/bt-boxen,makersquare/student-boxen,goncalopereira/boxen,mdavezac/our-boxen,scopp/boxen,stereobooster/my-boxen,fordlee404/code-boxen,didymu5/tommysboxen,adityatrivedi/boxen,raffone/boxen,alvinlai/boxen,valencik/Boxenhops,radeksimko/our-boxen,jcowhigjr/my-boxen,AlabamaMike/my-boxen,devnall/boxen,ccelebi/boxen,markkendall/boxen,takashiyoshida/my-boxen,ckazu/my-boxen,matthew-andrews/my-boxen,smozely/boxen,BrandonCummings/BoxenRepo,duboff/alphabox,srclab/our-boxen,wasabi0522/my-boxen,StEdwardsTeam/our-boxen,jandoubek/boxen,taylorzane/adelyte-boxen,ryan-robeson/osx-workstation,nullus/boxen,benwtr/our-boxen,Menain/mac,fefranca/boxen,jazeren1/boxen,ssabljak/my-boxen,urimikhli/myboxen,steinim/steinim-boxen,DennisDenuto/our-boxen,rwoolley/rdot-boxen,chieping/my-boxen,junior-ales/oh-my-mac,robinbowes/boxen,threetreeslight/my-boxen,jtjurick/DEPRECATED--boxen2,salimane/our-boxen,berryp/my-boxen,user-tony/boxen,felixcohen/my-boxen,femto/our-boxen,jgarcia/turbo-octo-tyrion,whoz51/my-boxen,MayerHouse/our-boxen,bartul/boxen,jeffreybaird/my-boxen,indika/boxen,webbj74/my-boxen,depop/depop-boxen,PKaung/boxen,hussfelt/my-boxen,psi/my-boxen,jwmayfield/my-boxen,sorenmat/boxen,padi/my-boxen,rickard-von-essen/my-boxen,novakps/our-boxen,nonsense/my-boxen,nonsense/my-boxen,cynipe/our-boxen-win,matteofigus/my-boxen,mattr-/our-boxen,inakiabt/boxen-productgram,ddaugher/baseBoxen,LewisLebentz/boxen,prussiap/boxen_dev,ArthurMediaGroup/amg-boxen,yumiyon/my-boxen,jedcn/mac-config,hackers-jp/our-boxen,gregrperkins/boxen,mvandevy/our-boxen,goatsweater/boxen-bellerophon,evalphobia/my-boxen,TaylorMonacelli/our-boxen,take/boxen,schani/xamarin-boxen,ebruning/boxen,adasescu/asl-boxen,AlabamaMike/my-boxen,robbiegill/a-boxen,erivello/my-boxen,cyberrecon/boxen,winklercoop/boxen,arron-green/my-boxen,jrrrd/butthole,rickard-von-essen/my-boxen,GrandSlam/my-boxen,skothavale/workboxen,braitom/my-boxen,sfcabdriver/sfcabdriver-boxen,mpherg/boxen,tangadev/our-boxen,acmcelwee/my-boxen,karrde00/oberd-boxen,Tombar/our-boxen,hparra/my-boxen,fboyer/boxen,nithyan/rcc-boxen,matteofigus/my-boxen,spacepants/my-boxen,amitmula/boxen-test,chrisng/boxen,bartvanremortele/my-boxen,friederikewild/boxen,ChrisWeiss/our-boxen,grahambeedie/my-boxen,lynndylanhurley/lynn-boxen,josemvidal/my-boxen,italoag/boxen,hernandezgustavo/boxenTest,jldbasa/boxen,albac/my-boxen,oddhill/oddboxen,ozw-sei/boxen,chieping/my-boxen,ryanorsinger/boxen,novakps/our-boxen,ballyhooit/boxen,href/boxen,daviderwin/boxen,reon7902/boxen,kvalle/my-boxen,scobal/boxen,davidmyers9000/my-boxen,itismadhan/boxen,jtjurick/boxen-custom,jacobtomlinson/my-boxen,TechEnterprises/our-boxen,rudymccomb/my-boxen15,wln/my-boxen,kieran-bamforth/our-boxen,tjws052009/ts_boxen,mircealungu/mir-boxen,enriqueruiz/ninja-boxen,mediba-Kitada/mdev3g-boxen,namesco/our-boxen,devpg/my-boxen,phathocker/loxen-phathocker,glarizza/my-boxen,dstack27/MyBoxenBootstrap,spazm/our-boxen,shadowmaru/my-boxen,nonsense/my-boxen,quintel/boxen,smcingvale/my-boxen,changtc8/changtc8-boxen,julzhk/myboxen,ryanwalker/my-boxen,Shekharv/open,jodylent/boxen,brotherbain/testboxen,salekseev/boxen,RaginBajin/my-osx-setup,rozza/my-boxen,jdhom/my-boxen,josemarluedke/my-boxen,hwhelchel/boxen,elsom25/secret-dubstep,joelturnbull/our-boxen,takashiyoshida/my-boxen,jtligon/voboxen,mavant/our-boxen,kitatuba/my-boxen,stefanfoulis/divio-boxen,clarkbreyman/my-boxen,vphamdev/boxen,han/hana-boxen,dyoung522/my-boxen,shiftit/our-boxen,vaddirajesh/boxen,TaylorMonacelli/our-boxen,redbarron23/myboxen,chengdh/my-boxen,accessible-ly/myboxen,driverdan/boxen,phamann/guardian-boxen,boskya/my-boxen,StEdwardsTeam/our-boxen,patrickkelso/boxen-test,ChrisMacNaughton/boxen,shrijeet/my-boxen,logicminds/mybox,wkimeria/spectre,jongold/boxen,kPhilosopher/my_boxen,jamesperet/my-boxen,juananruiz/boxen,pearofducks/slappy-testerson,JamshedVesuna/our-boxen,tetsuo692/my-boxen,gravit/boxen,webdizz/my-boxen,jongold/boxen,libk3n/my-boxen,blongden/my-boxen,cmstarks/boxen,weareinstrumental/boxen,cframe/my-boxen,logicminds/mybox,datsnet/My-Boxen,sorenmat/boxen,mikeycmccarthy/our-boxen,hernandezgustavo/boxenTest,xebu/thoughtpanda-boxen,heruan/boxen,nickb-minted/boxen,flannon/boxen-dyson,CheyneWilson/boxen,cdenneen/our-boxen,stephenyeargin/boxen,logicminds/our-boxen,woowee/my-boxen,smh/my-boxen,reon7902/boxen,dstack4273/MyBoxenBootstrap,arjunvenkat/boxen,discoverydev/my-boxen,drom296/boxentest,bytey/boxen,jingweno/owen-boxen,JF0h/boxen2,dbunskoek/boxen,tobyhede/my-boxen,carwin/boxen,sgerrand/our-boxen,seanknox/my-boxen,ChrisWeiss/our-boxen,nagas/my-boxen,slucero/my-boxen,jniesen/my-boxen,myohei/boxen,nspire/our-boxen,discoverydev/my-boxen,tangadev/our-boxen,poochiethecat/my-boxen,jhalter/my-boxen,hk41/my-boxen,elle24/boxen,cander/boxen,manchan/boxen,jacobbednarz/our-boxen,coreone/tex-boxen,hirocaster/boxen,rprimus/my-boxen,seanhandley/my_boxen,dwpdigitaltech/dwp-boxen,robjacoby/my-boxen,kayhide/boxen,pfeff/my-boxen,cerodriguezl/my-boxen,mojao/my-boxen,rogeralmeida/my-boxen,akiellor/our-boxen,rafasf/my-boxen,huyennh/boxen,tam-vo/my-boxen,hemanpagey/heman_boxen,tkayo/boxen,cloudnautique/home-boxen,csaura/my_boxen,rmzi/rmzi_boxen,hmatsuda/my-boxen,randym/boxen,lpmulligan/lpm-boxen,vesan/boxen,carmi/boxen,jeff-french/my-boxen,bazbremner/our-boxen,jjtorroglosa/my-boxen,marcinkwiatkowski/ios-build-boxen,tinygrasshopper/boxen,rudazhan/my-boxen,tarVolcano/my-boxen,bradley/boxen,paolodm/test-boxen,dgiunta/boxen,logikal/boxen,rafaelfranca/my-boxen,rebootd/myboxen,ymmty/my-boxen,Maarc/our-boxen,rfink/my-boxen,ajordanow/our-boxen,cbrock/my-boxen,0xabad1deaf/boxen,kykim/our-boxen,bmihelac/our-boxen,darthmacdougal/boxen,jsmitley/boxen,etaroza/our-boxen,RARYates/my-boxen,zjjw/jjbox,wednesdayagency/boxen,Berico-Technologies/bt-boxen,dannydover/boxen-dover,stedwards/our-boxen,featherweightlabs/our-boxen,yarbelk/boxen,oke-ya/boxen,ynnadrules/neuralbox,ricrios11/Bootstrapping,fusion94/boxen,johnsoga/my_boxen,andschwa/boxen,logicminds/our-boxen,jcarlson/cdx-boxen,clburlison/my-boxen,joelhooks/my-boxen,smasry/our-boxen,brissmyr/my-boxen,karmicnewt/newt-boxen,openfcci/our-boxen,azumafuji/boxen,csaura/my_boxen,otternq/our-boxen,kyosuke/my-boxen,mmickan/our-boxen,zooland/boxen,412andrewmortimer/my-boxen,molst/our-boxen,middle8media/myboxen,egeek/boxen,zywy/boxen,ricrios11/Bootstrapping,g12r/bx,tarVolcano/my-boxen,jcinnamond/my-boxen,jonatanmendozaboxen/platformboxen,kyohei-shimada/my-boxen,EmptyClipGaming/our-boxen,delba/boxen,Genki-S/boxen,Ditofry/dito-boxen,AntiTyping/boxen-workstation,alphagov/gds-boxen,DylanSchell/boxen,unasuke/unasuke-boxen,antigremlin/my-boxen,fasrc/boxen,blamarvt/boxen,gl0wa/my-boxen,eliperkins/my-boxen,lorn/lorn-boxen,bolasblack/boxen,musha68k/my-boxen,zach-hu/boxen,mkilpatrick/boxen_test,riethmayer/my-boxen,shimbaco/my-boxen,belighted/our-boxen,atomaka/my-boxen,mdepuy/boxen,RARYates/my-boxen,christopher-b/boxen,fluentglobe/our-boxen,noahrc/boxen,shaokun/boxen,robjacoby/my-boxen,ryanycoleman/my-boxen,sqki/boxen,jhalstead85/boxen,friederikewild/boxen,winklercoop/boxen,albertofem/boxen,JF0h/boxen,zamoose/boxen,stoeffel/our-boxen,petronbot/our-boxen,takezou/boxen,rhussmann/boxen,cframe/my-boxen,delba/boxen,felipecvo/my-boxen,fluentglobe/our-boxen,jamesperet/my-boxen,ugoletti/my-boxen,DylanSchell/boxen,andrewdlong/boxen,patrikbreitenmoser/my_boxen,jabley/our-boxen,mkilpatrick/boxen_test,seancallanan/my-boxen,cnachtigall/boxen,Maarc/our-boxen,indika/boxen,CheyneWilson/boxen,atayarani/myboxen,manolin/manolin-boxen,rperello/boxenized,kmohr/my-boxen,neotag/neotag-boxen,pathable/pathable-boxen,mikedename/myboxen,mpemer/boxen,brissmyr/my-boxen,MAECProject/maec-boxen,deone/boxen,gregimba/boxen-personal,kosmotaur/boxen,jrrrd/butthole,n0ts/our-boxen,jeffremer/boxen,bkreider/boxen,gf1730/boxen,deline/boxen,haeronen/my-boxen,ryotarai/my-boxen,jhalter/my-boxen,femto/our-boxen,FrancisVarga/dev-boxen,rudymccomb/my-boxen17,jonmosco/boxen-test,mikecardii/nerdboxen,alexmuller/personal-boxen,delba/boxen,baek-jinoo/my-boxen,boxen/our-boxen,JanGorman/my-boxen,inakiabt/boxen-productgram,testboxenmissinformed/boxen-test,raychouio/Boxen,jamesblack/frontier-boxen,sfwatergit/sfboxen,bash0C7/my-boxen,mohamedhaleem/myboxen,magicmonty/our-boxen,xudejian/myboxen,christian-blades-cb/blades-boxen,geapi/boxen,miguelalvarado/my-boxen,jorgemancheno/boxen,jeffleeismyhero/our-boxen,Couto/my-boxen,Ganonside/ganon-boxen,xenolf/real-boxen,dmccown/boxen,cubicmushroom/our-boxen,mrbrett/bretts-boxen,iowillhoit/boxen,xebu/thoughtpanda-boxen,ldickerson/Boxen,mattr-/our-boxen,zakuni/my-boxen,mefellows/my-boxen,alecklandgraf/boxen,jcfigueiredo/boxen,atty303/boxen,koppacetic/myboxen,molst/our-boxen,levithomason/my-boxen,Contegix/puppet-boxen,jeffleeismyhero/boxen,villamor/villamor-boxen,kallekrantz/boxen,kengos/boxen,erickreutz/our-boxen,kykim/our-boxen,Fidzup/our-boxen,carmi/boxen,jp-a/boxen,railslove/our-boxen,nagas/my-boxen,salekseev/boxen,liatrio/our_boxen,aa2kids/aa2kids-boxen,jacebrowning/my-boxen,bartul/boxen,JF0h/boxen,lonnen/base-boxen,AVVS/boxen,bitbier/my-boxen,catesandrew/cates-boxen,iorionda/my-boxen,bytey/boxen,nathankot/our-boxen,keynodes/my-boxen,arjunvenkat/boxen,aa2kids/aa2kids-boxen,wbs75/myboxen_yosemite,sfwatergit/sfboxen,jeffremer/boxen,AVVS/boxen,fpaula/my-boxen,yuma-iwasaki/my-boxen,adamchandra/my-boxen,MayerHouse/our-boxen,oddhill/oddboxen,brianluby/boxen,zacharyrankin/my-boxen,justinberry/justin-boxen,bazbremner/our-boxen,CaseyLeask/my-boxen,eadmundo/my-boxen,josharian/our-boxen,mmrobins/my-boxen,kengos/boxen,nfaction/boxen,driverdan/boxen,leed71/boxen,tatsuma/boxen,leehanel/my_boxen,aeikenberry/boxen-for-me,wcorrigan/myboxen,rafaelportela/my-boxen,DennisDenuto/our-boxen,gato-omega/my-boxen,thomaswelton/boxen,mitsurun/my-boxen,davidpelaez/myboxen,tcarmean/my-boxen,sharpwhisper/our-boxen,mtakezawa/our-boxen,debona/my-boxen,micahroberson/boxen,dpnl87/boxen,bwl/bwl-boxen,takashi/my-boxen,weiliv/boxen,jonkessler/boxen,smozely/our-boxen,ggoodyer/boxen,mongorian-chop/boxen,apto-as/my_boxen,SudoNikon/boxen,outrunthewolf/outrunthewolf-boxen,zovafit/our-boxen,baseboxorg/basebox-dev,onewheelskyward/boxen,warrenbailey/ons-boxen,reon7902/boxen,stickyworld/boxen,logikal/boxen,ccelebi/boxen,ndelage/boxen,ajordanow/our-boxen,middle8media/myboxen,wideopenspaces/jake-boxen,rafaelportela/my-boxen,tobyhede/my-boxen,ccelebi/boxen,patrikbreitenmoser/my_boxen,russ/boxen,joshuaess/my-boxen,haelmy/my-boxen,jp-a/boxen,segu/my-boxen,bayster/boxen,smcingvale/my-boxen,meestaben/our-boxen,BuddyApp/our-boxen,xudejian/myboxen,pattichan/boxen,s-ashwinkumar/test_boxen,ldickerson/Boxen,alphagov/gds-boxen,loregood/boxen,jedcn/mac-config,mbraak/my-box,losthyena/my-boxen,chris-horder/boxen,matteofigus/my-boxen,ysoussov/mah-boxen,yanap/our-boxen,hirocaster/boxen,ohwakana/my-boxen,jcowhigjr/our-boxen,fusion94/boxen,stephenyeargin/boxen,kchygoe/my-boxen,dvberkel/luminis-boxen-dev,sigriston/my-boxen,chengdh/my-boxen,bagodonuts/scatola-boxen,gregimba/boxen-personal,lukwam/boxen,rgpretto/my-boxen,panderp/boxen,distributedlife/boxen,bentrevor/my-boxen,thorerik/our-boxen,stereobooster/my-boxen,scoutbrandie/my-boxen,rudymccomb/my-boxen,sreeramanathan/my-boxen,zachahn/our-boxen,mongorian-chop/boxen,ykt/boxen-silverbox,maxdeviant/boxen,jdigger/boxen,filipebarcos/filipebarcos-boxen,jpamaya/myboxen,randym/boxen,makersacademy/our-boxen,marano/my-boxen,shimbaco/my-boxen,ericpfisher/boxen,pfeff/my-boxen,anantkpal/our-boxen,cogfor/boxen,tfnico/my-boxen,brendancarney/my-boxen,lacroixdesign/our-boxen,puppetlabs/eduteam-boxen,xebu/boxen-minimal,railslove/our-boxen,huan/my-boxen,TinyDragonApps/boxen,jwalsh/jwalsh-boxen,chris-horder/boxen,dfwarden/my-boxen,vkrishnasamy/vkboxen,anuforok/HQ,jamesperet/my-boxen,nixterrimus/boxen,gdks/our-boxen,bytey/boxen,nickpellant/our-boxen,hwhelchel/boxen,rancher/boxen,jkongie/my-boxen,ryanycoleman/my-boxen,jhalstead85/boxen,gravit/boxen,bradleywright/my-boxen,socialstudios/boxen,weyert/boxen,weiliv/boxen,n0ts/our-boxen,jtjurick/DEPRECATED--boxen,lumannnn/boxen,heptat/boxen,nickb-minted/boxen,niallmccullagh/our-boxen,mickengland/boxen,mrchrisadams/mrchrisadamsboxen,charleshbaker/chb-boxen,davidcunningham/my-boxen,whharris/boxen,adityatrivedi/boxen,sjoeboo/boxen,Tombar/our-boxen,hydradevelopment/our-boxen,tcarmean/yosemite-boxen,tetsuo6666/tetsuo-boxen,mrbrett/bretts-boxen,joshbeard/boxen,mootpointer/my-boxen,devboy/our-boxen,joelchelliah/sio-boxen,jdwolk/my-boxen,rafaelportela/my-boxen,nagas/my-boxen,codekipple/my-boxen,masawo/my-boxen,jcowhigjr/my-boxen,TaylorMonacelli/our-boxen,Yeriwyn/my-boxen,apackeer/my-boxen-old,baek-jinoo/my-boxen,takashiyoshida/my-boxen,jeffremer/boxen,hk41/my-boxen,kajohansen/our-boxen,etaroza/our-boxen,merikan/my-boxen,anicet/boxen,calorie/my-boxen,alexfish/boxen,HalfdanJ/Boxen,pingpad/boxen,ysoussov/boxenz,zachseifts/boxen,daviderwin/boxen,tylerbeck/my-boxen,Tr4pSt3R/boxen,agilecreativity/boxen-2015,micahroberson/boxen,mingderwang/our-boxen,voidraven2/boxen,jodylent/boxen,manbous/my-boxen,anantkpal/our-boxen,tooky/boxen,raganw/my-boxen,nithyan/rcc-boxen,jcvanderwal/boxen,ndelage/boxen,kcmartin/our-boxen,djui/boxen,jbennett/our-boxen,taylorzane/adelyte-boxen,nickb-minted/boxen,masutaka/my-boxen,rolfvandekrol/my-boxen,exedre/my-boxen,stickyworld/boxen,sepeth/my-boxen,billputer/bill-boxen,wesen/our-boxen,jcfigueiredo/boxen,alecklandgraf/boxen,TechEnterprises/our-boxen,mmickan/our-boxen,charleshbaker/chb-boxen,outrunthewolf/outrunthewolf-boxen,akiomik/my-boxen,href/boxen,w4ik/millermac-boxen,chriswk/myboxen,yuma-iwasaki/my-boxen,zachahn/our-boxen,darthmacdougal/boxen,tarebyte/my-boxen,sveinung/my-boxen,cmonty/my-boxen,mootpointer/my-boxen,waisbrot/boxen,concordia-publishing-house/boxen,jacobbednarz/our-boxen,alexfish/boxen,ktrujillo/boxen,hydra1983/my-boxen,satiar/arpita-boxen,sjoeboo/boxen,RossKinsella/our-boxen,leanmoves/boxen,anuforok/HQ,potix2/my-boxen,mozilla/ambient-boxen,hjuutilainen/myboxen,kieran-bamforth/our-boxen,pearofducks/slappy-testerson,jeffleeismyhero/our-boxen,garycrawford/my-boxen,krohrbaugh/my-boxen,tetsuo692/my-boxen,tcarmean/my-boxen,msaunby/our-boxen,christopher-b/boxen,geapi/boxen,lynndylanhurley/lynn-boxen,leandroferreira/boxen,pamo/boxen-mini,dwpdigitaltech/dwp-boxen,thenickcox/my_boxen,kevronthread/boxen-test,motns/my-boxen,barkingiguana/our-boxen,calebrosario/boxen,robinbowes/boxen,scopp/boxen,sylv3rblade/indinero-boxen,jingweno/owen-boxen,nullus/boxen,netpro2k/my-boxen,smozely/our-boxen,miguelespinoza/boxen,anantkpal/our-boxen,rvora/rvora-boxen,glarizza/my-boxen,adaptivelab/our-boxen,vshu/vshu-boxen,kizard09/my-boxen,PopShack/boxen,rtircher/my-boxen,deline/boxen,bitbier/my-boxen,mly1999/my-boxen,CaseyLeask/my-boxen,TechEnterprises/our-boxen,pavankumar2203/MacBoxen,mediasuitenz/our-boxen-xcode5.1,cyberrecon/boxen,SBoudrias/my-boxen,sorenmat/our-boxen,pathable/pathable-boxen,Dmetmylabel/labelweb-boxen,zach-hu/boxen,ckesurf/patch-boxen,kchygoe/my-boxen,drmaruyama/my-boxen,natewalck/my-boxen,wheresjim/my-boxen,BenjMichel/our-boxen,jonnangle/my-boxen,blangenfeld/boxen,chinafanghao/forBoxen,RohitUdayTalwalkar/IndexBoxen,maxwellwall/boxentest,leonardoobaptistaa/my-boxen,smasry/our-boxen,terbolous/our-boxen,RossKinsella/our-boxen,josemarluedke/my-boxen,ebruning/boxen,ngalchonkova/lohika,fredva/my-boxen,micalexander/boxen,agilecreativity/boxen-2015,jcfigueiredo/boxen,sorenmat/our-boxen,kyletns/boxen,gyllen/boxen,mohamedhaleem/myboxen,jsmitley/boxen,ssabljak/my-boxen,cmckni3/my-boxen,huit/cloudeng-boxen,pseudomuto/boxen,seb/boxen,traethethird/boxen-python,weyert/boxen,wmadden/boxen,hgsk/my-boxen,mingderwang/our-boxen,dpnl87/boxen,riethmayer/my-boxen,mainyaa/boxen,shrijeet/my-boxen,mickengland/boxen,jcowhigjr/my-boxen,juliogarciag/boxen-box,vipulnsward/boxen-repo,rapaul/my-boxen,XiaoYy/boxen,xcompass/our-boxen,onewheelskyward/boxen,bobisjan/boxen,jervi/my-boxen,netpro2k/my-boxen,tgarrier/boxen,aibooooo/boxen,halyard/halyard,shrijeet/my-boxen,TinyDragonApps/boxen,daviderwin/boxen,garetjax-setup/my-boxen,philipsdoctor/try-boxen,karrde00/oberd-boxen,bobisjan/boxen,crpdm/our-boxen,cloudnautique/home-boxen,paolodm/test-boxen,designbyraychou/boxen,tonywok/tonywoxen,atsuya046/my-boxen,marcovanest/boxen,hkaju/boxen,bgerstle/my-boxen,marcinkwiatkowski/ios-build-boxen,tsphethean/my-boxen,terbolous/our-boxen,kieranja/mac,riveramj/boxen,jniesen/my-boxen,josharian/our-boxen,cerodriguezl/my-boxen,kdimiche/boxen,haelmy/my-boxen,cbi/cbi-boxen,rudymccomb/my-boxen17,pekepeke/boxen,ericpfisher/boxen,adelegard/my_boxen,mirkokiefer/mirkos-boxen,ap1kenobi/my-boxen,egeek/boxen,benja-M-1/my-boxen,mirkokiefer/mirkos-boxen,natewalck/my-boxen,joeybaker/boxen-personal,mztaylor/our_boxen,pathable/pathable-boxen,apeeters/boxen,lumannnn/boxen,jenscobie/our-boxen,zooland/our-boxen,wmadden/boxen,massiveclouds/boxen,cdenneen/our-boxen,jacderida/boxen,faizhasim/our-boxen,andrzejsliwa/our-boxen,Mizune/boxen,ronco/my-tomputor,mozilla/ambient-boxen,jypandjio/my-boxen,outrunthewolf/outrunthewolf-boxen,geapi/boxen,met-office-lab/our-boxen,ozw-sei/boxen,jwalsh/jwalsh-boxen,chai/boxen,masutaka/my-boxen,GoodDingo/my-boxen,msuess/my-boxen,jp-a/boxen,elbuo8/boxen,tkayo/boxen,charleshbaker/chb-boxen,sleparc/my-boxen,jacksingleton/our-boxen,Couto/my-boxen,antigremlin/my-boxen,brianluby/boxen,fefranca/boxen,wln/my-boxen,bd808/my-boxen,dspeele/boxen,MrBri/a-go-at-boxen,tomiacannondale/our-boxen,adasescu/asl-boxen,zywy/boxen,kengos/boxen,kwiss/hooray-boxen,rickard-von-essen/my-boxen,sahilm/boxen,bigashman/boxen,gl0wa/my-boxen,carwin/boxen,niallmccullagh/our-boxen,adwitz/boxen-setup,bartekrutkowski/our-boxen,crizCraig/boxen,usmanismail/boxen,jjperezaguinaga/frontend-boxen,alserik/a-boxen,skothavale/workboxen,rudazhan/my-boxen,dfwarden/my-boxen,davidcunningham/my-boxen,mtakezawa/our-boxen,kthukral/my-boxen,onewheelskyward/boxen,trvrplk/my-boxen,ktrujillo/boxen,poochiethecat/my-boxen,tjws052009/ts_boxen,fredva/my-boxen,jasonamyers/my-boxen,alvinlai/boxen,jdigger/boxen,xebu/boxen-minimal,smasry/our-boxen,brettswift/bs_boxen,ONSdigital/ons-boxen,jasonamyers/our-boxen,julson/my-boxen,Tombar/our-boxen,wbs75/myboxen_yosemite,yamayo/boxen,pattichan/boxen,libdx/my-boxen,hirocaster/our-boxen,webtrainingmx/boxen-teacher,nrako/my-boxen,Tr4pSt3R/boxen,cogfor/boxen,vesan/boxen,platanus/our-boxen,ktec/boxen-laptop,brettswift/bs_boxen,AV4TAr/MyBoxen,kieran-bamforth/our-boxen,professoruss/russ_boxen,jervi/my-boxen,ysoussov/boxenz,rogeralmeida/my-boxen,hamazy/my-boxen,jenscobie/our-boxen,NoUseFreak/our-boxen,cannfoddr/Our-Boxen,noahrc/boxen,libk3n/my-boxen,vshu/vshu-boxen,kevcolwell/Boxen,makersacademy/our-boxen,AVVSDevelopment/boxen,jchris/my-boxen,makersquare/student-boxen,davidpelaez/myboxen,tfhartmann/boxen,tooky/boxen,pavankumar2203/MacBoxen,typhonius/boxen,RaginBajin/my-osx-setup,danpalmer/boxen,loregood/boxen,amitmula/boxen-test,matildabellak/my-boxen,dansmithy/danny-boxen,chrissav/2u_boxen,slucero/my-boxen,korenmiklos/my-boxen,mjason/mjboxen,apotact/boxen,jedcn/mac-config,liatrio/our_boxen,AVVSDevelopment/boxen,artemdinaburg/boxentest,seehafer/boxen,mhkt/my-boxen,rumblesan/my-boxen,Menain/mac,cannfoddr/Our-Boxen,tobyhede/my-boxen,seanknox/exygy-boxen,rafaelfranca/my-boxen,hamazy/my-boxen,jabley/our-boxen,dspeele/boxen,yanap/our-boxen,kvalle/my-boxen,rayward/our-boxen,zenstyle-inc/our-boxen,mpherg/boxen,Couto/my-boxen,am/our-boxen,barm4ley/crash_analyzer_boxen,kevintfly/boxen_test,borcean/my-boxen,jcowhigjr/our-boxen,sr/laptop,pekepeke/boxen,fbernitt/our-boxen,hiroooo/boxen,kakuda/my-boxen,zacharyrankin/my-boxen,lukwam/boxen,bd808/my-boxen,phase2/our-confroom-boxen,greatjam/boxenbase,mavant/our-boxen,Mizune/boxen,cnachtigall/boxen,andrzejsliwa/our-boxen,benja-M-1/my-boxen,jamielennox1/boxen,AngeloAballe/Boxen,krajewf/my-boxen,Sugitaku/my-boxen,samant/boxen,leanmoves/boxen,thuai/boxen,kizard09/my-boxen,zjjw/jjbox,dbunskoek/boxen,ChrisMacNaughton/boxen,jhuston/our-boxen,Tombar/boxen-test,jonmosco/boxen-test,snieto/boxen,href/boxen,lsylvester/boxen,kenmazaika/firehose-boxen,tsphethean/my-boxen,mozilla/ambient-boxen,cph/boxen,cframe/my-boxen,WeAreMiles/myBoxen,blamattina/my-boxen,nikersch/junxboxen,raymaung/ray-boxen,billyvg/my-boxen,namesco/our-boxen,openfcci/our-boxen,nikersch/junxboxen,rickyp72/rp_boxen,libk3n/my-boxen,hiroooo/boxen,vaddirajesh/boxen,fboyer/boxen,julienlavergne/my-boxen,jhonathas/boxen,raymaung/ray-boxen,rfink/my-boxen,caciasmith/my-boxen,domingusj/our-boxen,seanknox/exygy-boxen,jbecker42/boxen,blamattina/our-boxen,AlabamaMike/my-boxen,haeronen/my-boxen,davidpelaez/myboxen,darkseed/boxen,jantman/boxen,massiveclouds/boxen,niallmccullagh/our-boxen,dax70/devenv,gravit/boxen,danielrob/my-boxen,eddieridwan/my-boxen,heflinao/boxen,yamayo/boxen,mjason/mjboxen,levithomason/my-boxen,jonnangle/my-boxen,jpogran/puppetlabs-boxen,srclab/our-boxen,mhan/my-boxen,ArpitJalan/boxen,ItGumby/boxen,padwasabimasala/my-boxen,ryotarai/my-boxen,kyosuke/my-boxen,alexmuller/personal-boxen,billputer/bill-boxen,theand/our-boxen,vshu/vshu-boxen,aedelmangh/thdboxen,jgrau/my-boxen,Menain/mac,itismadhan/boxen,1gitGrey/boxen015,thesmart/UltimateChart-Boxen,lukwam/boxen,haelmy/my-boxen,kevcolwell/Boxen,dannyviti/our-boxen,felipecvo/my-boxen,alf/boxen,febbraro/our-boxen,hkaju/boxen,whoz51/my-boxen,rayward/our-boxen,juherpin/myboxen,hkaju/boxen,jypandjio/my-boxen,mikecardii/nerdboxen,mirajsanghvi/boxen_tidepool,panderp/my-boxen,BillWeiss/boxen,Traxmaxx/my-boxen,cregev/our-boxen,lgaches/boxen,pedro-mass/boxentest,weareinstrumental/boxen,hirocaster/boxen,kcmartin/our-boxen,billyvg/my-boxen,kevintfly/boxen_test,JamshedVesuna/our-boxen,rob-murray/my-osx,met-office-lab/our-boxen,mly1999/my-boxen,w4ik/millermac-boxen,ta9o/our-boxen,nspire/our-boxen,kennyg/our-boxen,jkongie/my-boxen,allanma/BBoxen,wesscho/boxen,ap1kenobi/my-boxen,nanoxd/our-boxen,seanknox/exygy-boxen,nejoshi/boxen,bradleywright/my-boxen,kyletns/boxen,montyzukowski-temboo/our-boxen,buritica/our-boxen,ryanswood/our-boxen,jamesvulling/my-boxen,lumannnn/boxen,viztor/boxen,kskotetsu/my-boxen,judytuna/boxen-judy,smozely/our-boxen,AntiTyping/boxen-workstation,fboyer/boxen,justinmeader/whipple-boxen,rperello/boxenized,depop/depop-boxen,ryan-robeson/osx-workstation,norisu0313/my-boxen,joshbeard/boxen,socialstudios/boxen,vtlearn/boxen,cbi/cbi-boxen,crizCraig/boxen,applidium-boxen/our-boxen,ralphreid/boxen,nicolasbrechet/our-boxen,radeksimko/our-boxen,mohamedhaleem/myboxen,thomaswelton/old-boxen,nejoshi/boxen,jcinnamond/my-boxen,barklyprotects/our-boxen,jdigger/boxen,vphamdev/boxen,crpeck/boxen,rolfvandekrol/my-boxen,syossan27/my-boxen,wongyouth/boxen,aeikenberry/boxen-for-me,gregorylloyd/our-boxen,iowillhoit/boxen,ssabljak/my-boxen,dolhana/my-boxen,samsonnguyen/solium-boxen,sr/laptop,staxmanade/boxen-vertigo,mainyaa/boxen,dyoung522/my-boxen,panderp/boxen,weyert/my-boxen,katryo/boxen_katryo,Tombar/boxen-test,flannon/boxen-dyson,AVVS/boxen,Jaco-Pretorius/Workstation,jcarlson/cdx-boxen,mbraak/my-box,BuddyApp/our-boxen,Contegix/puppet-boxen,blamattina/our-boxen,jandoubek/boxen,middle8media/myboxen,cqwense/our-boxen,keynodes/my-boxen,nimashariatian/our-boxen,danpalmer/boxen,schlick/my-boxen,mediba-Kitada/mdev3g-boxen,theand/our-boxen,aibooooo/boxen,ngalchonkova/lohika,miguelscopely/boxen,peterwardle/boxen,phase2/our-confroom-boxen,josemarluedke/neighborly-boxen,gsamokovarov/my-boxen,jiamat/dragonbox,kidylee/our-boxen,flannon/boxen-dyson,netdev/our-boxen,scopp/boxen,webtrainingmx/boxen-teacher,narze/our-boxen,leandroferreira/boxen,rvora/rvora-boxen,sr/laptop,flyingbuddha/boxen,rancher/boxen,stuartcampbell/my-boxen,taylorzane/adelyte-boxen,nevstokes/boxen,zer0bytescorp/boxen,bazbremner/our-boxen,surfacedamage/boxen,drewtempelmeyer/boxen,sreeramanathan/my-boxen,atsuya046/my-boxen,garycrawford/my-boxen,hjuutilainen/myboxen,conatus/boxen,steffengodskesen/my-boxen,felixcohen/my-boxen,exedre/my-boxen,zooland/boxen,ta9o/our-boxen,katryo/boxen_katryo,testboxenmissinformed/boxen-test,cawhite78/corey-boxen,juliogarciag/boxen-box,julson/my-boxen,jfx41/voraa,MattParker89/MyBoxen,clarkbreyman/my-boxen,pagrawl3/boxen,montyzukowski-temboo/our-boxen,alainravet/our-boxen,psi/my-boxen,cloudfour/cloudfour-boxen,scottstanfield/boxen,Contegix/puppet-boxen,apotact/boxen,losthyena/my-boxen,jrrrd/butthole,john-griffin/boxen,anicet/boxen,hirose504/boxen,ArpitJalan/boxen,0xabad1deaf/boxen,abuxton/our-boxen,nejoshi/boxen,mpemer/boxen,jtligon/voboxen,1gitGrey/boxen015,ronco/my-tomputor,rujiali/ibis,mgibson/boxen-dec-2013,arron-green/my-boxen,thuai/boxen,jiananlu/our-boxen,josemarluedke/neighborly-boxen,drom296/boxentest,k-nishijima/our-boxen,cnachtigall/boxen,mdavezac/our-boxen,hakamadare/our-boxen,poetic/our-boxen,usmanismail/boxen,jpamaya/myboxen,manbous/my-boxen,drmaruyama/my-boxen,yss44/my-boxen,thejonanshow/my-boxen,mojao/my-boxen,alvinlai/boxen,rperello/boxenized,cmpowell/boxen,seanknox/my-boxen,flannon/dh-boxen,Genki-S/boxen,nimashariatian/our-boxen,macasek/my_boxen,mnussbaum/my_boxen,scottgearyau/boxen,afmacedo/boxen,djui/boxen,zaphod42/my-boxen,eschapp/boxen,enigmamarketing/boxen,dspeele/boxen,brotherbain/testboxen,Lavoaster/our-boxen,ralphreid/my_boxen,chrisng/boxen,ggoodyer/boxen,beefeng/my-boxen,ggoodyer/boxen,sreid/my-boxen,designbyraychou/boxen,dannyviti/our-boxen,myohei/boxen,meestaben/our-boxen,mnussbaum/my_boxen,nevstokes/boxen,met-office-lab/our-boxen,jdhom/my-boxen,vinhnx/my-boxen,kennyg/our-boxen,douglasnomizo/myboxen,geekles/my-boxen,scobal/boxen,garethr/my-boxen,changtc8/changtc8-boxen,bradleywright/my-boxen,meatherly/my-boxen,matthew-andrews/my-boxen,flannon/boxen-kenny,filaraujo/.boxen,fefranca/boxen,erivello/my-boxen,conatus/boxen,steffengodskesen/my-boxen,eschapp/boxen,mwermuth/our-boxen,gravityrail/our-boxen,valencik/Boxenhops,noriaki/my-boxen,weyert/my-boxen,zywy/boxen,sgerrand/our-boxen,atmos/our-boxen,mruser/boxen,hmatsuda/my-boxen,jcinnamond/my-boxen,goxberry/tmux-boxen,LewisLebentz/boxen,ralphreid/my_boxen,mmasashi/my-boxen,zach-hu/boxen,villamor/villamor-boxen,kieran-bamforth/our-boxen,bartvanremortele/my-boxen,jasonamyers/my-boxen,seancallanan/my-boxen,ktec/boxen-laptop,Fidzup/our-boxen,korenmiklos/my-boxen,weareinstrumental/boxen,FrancisVarga/dev-boxen,yamayo/boxen,threetreeslight/my-boxen,trvrplk/my-boxen,mmunhall/boxen-dev,KazukiOhashi/my-boxen,lgaches/boxen,hakamadare/our-boxen,clarkbreyman/my-boxen,ofl/my-boxen,nicknovitski/my-boxen,andschwa/boxen,ryanwalker/my-boxen,zovafit/our-boxen,flannon/boxen-kenny,mircealungu/mir-boxen,afmacedo/boxen,krajewf/my-boxen,masutaka/my-boxen,stefanfoulis/divio-boxen,rusty0606/my-boxen,russ/boxen,tylerbeck/my-boxen,barkingiguana/our-boxen,fukayatsu/my-boxen,rootandflow/our-boxen,lotsofcode/my-boxen,kennyg/our-boxen,devpg/my-boxen,domingusj/our-boxen,enriqueruiz/ninja-boxen,moriarty/my-boxen,webtrainingmx/boxen-teacher,nicsnet/our-boxen,tcarmean/yosemite-boxen,weih/boxen,bluesalt/my-boxen,bradwright/my-boxen,pizzaops/drunken-tribble,ryan-robeson/osx-workstation,dyoung522/my-boxen,kholloway/our-boxen,marzagao/our-boxen,plyfe/our-boxen,manchan/boxen,malt3/boxen-test,cregev/our-boxen,dax70/devenv,hydradevelopment/our-boxen,JF0h/boxen2,SudoNikon/boxen,scoutbrandie/my-boxen,aestrea/aestrea-boxen,Americastestkitchen/our-boxen,andhansen/uwboxen,leanmoves/boxen,nimashariatian/our-boxen,NoUseFreak/our-boxen,codekipple/my-boxen,jfx41/voraa,accessible-ly/myboxen,cleblanc87/boxen,hirose504/boxen,flyingbuddha/boxen,gaishimo/my-boxen,davidmyers9000/my-boxen,rwoolley/rdot-boxen,mattgoldspink/personal-boxen,xenolf/real-boxen,kakuda/my-boxen,rtircher/my-boxen,cdenneen/our-boxen,1337807/my-boxen,hjfbynara/hjf-boxen,akiomik/my-boxen,bauricio/my-boxen,bgerstle/my-boxen,nathankot/our-boxen,sepeth/my-boxen,keynodes/my-boxen,fbernitt/our-boxen,leveragei/boxen,elsom25/secret-dubstep,sfcabdriver/sfcabdriver-boxen,xebu/thoughtpanda-boxen,garetjax-setup/my-boxen,Royce/my-boxen,deline/boxen,alexmuller/personal-boxen,kholloway/our-boxen,ryanaslett/mixologic-boxen,nicsnet/our-boxen,yokulkarni/boxen,featherweightlabs/our-boxen,braitom/my-boxen,saicologic/our-boxen,distributedlife/boxen,filaraujo/our-boxen,AnneTheAgile/AnneTheAgile-boxen,wasabi0522/my-boxen,joeybaker/boxen-personal,terbolous/our-boxen,JF0h/boxen,huan/my-boxen,codingricky/my-boxen,rogerhub/our-boxen,nanoxd/our-boxen,yanap/our-boxen,scottstanfield/boxen,carwin/boxen,aisensiy/boxen,samsonnguyen/solium-boxen,rtircher/my-boxen,salekseev/boxen,lixef/my-boxen,sangotaro/my-boxen,portaltechdevenv/tbsdevenvtest,rhussmann/boxen,jeffreybaird/jeffs-boxen,poetic/our-boxen,wbs75/my-boxen,goxberry/tmux-boxen,adaptivelab/our-boxen,hackers-jp/our-boxen,Ceasar/my-boxen,jde/boxen,cutmail/my-boxen,jtjurick/DEPRECATED--boxen2,pamo/boxen-mini,xebu/boxen-experimental,awaxa/awaxa-boxen,DanLindeman/boxen,rayward/our-boxen,aa2kids/aa2kids-boxen,jpogran/puppetlabs-boxen,MrBri/a-go-at-boxen,imdhmd/my-boxen,tkayo/boxen,take/boxen,NoUseFreak/our-boxen,darvin/apportable-boxen,mavant/our-boxen,akiomik/my-boxen,tcarmean/yosemite-boxen,erasmios/deuteron,jasonleibowitz/tigerspike-boxen,bradley/boxen,tafujita/our-boxen,rmjasmin/diablo-boxen,grahamgilbert/my-boxen,webdizz/my-boxen,mpherg/new-boxen,thesmart/UltimateChart-Boxen,kylemclaren/boxen,milan/our-boxen,PKaung/boxen,geoffharcourt/boxen,apeeters/boxen,spikeheap/our-boxen,scottelundgren/my-boxen,ddaugher/baseBoxen,jamielennox1/boxen,mhan/my-boxen,yayao/my-boxen,pheekra/our-boxen,weih/boxen,mdavezac/our-boxen,rgpretto/my-boxen,loregood/boxen,xenolf/real-boxen,mefellows/my-boxen,blueplanet/my-boxen,cmstarks/boxen,tcarmean/my-boxen,taoistmath/USSBoxen,marcinkwiatkowski/ios-build-boxen,nevstokes/boxen,febbraro/our-boxen,juherpin/myboxen,ryanswood/our-boxen,kwiss/hooray-boxen,narze/our-boxen,telamonian/boxen-linux,cloudfour/cloudfour-boxen,klean-software/default-boxen,AV4TAr/MyBoxen,kholloway/our-boxen,avihut/boxen,ustun/boxen,boxen/our-boxen,lenciel/my-box,vincentpeyrouse/my-boxen,abuxton/our-boxen,netdev/our-boxen,justinberry/justin-boxen,redbarron23/myboxen,jeff-french/my-boxen,thuai/boxen,scottelundgren/my-boxen,novakps/our-boxen,davedash/my-boxen,zakuni/my-boxen,mroth/my-boxen,meltmedia/boxen,crizCraig/boxen,codeship/our-boxen,dangig/a1-boxen,milan/our-boxen,danielrob/my-boxen,stereobooster/my-boxen,goatsweater/boxen-bellerophon,julson/my-boxen,kidylee/our-boxen,sylv3rblade/indinero-boxen,elovelan/our-boxen,rmzi/rmzi_boxen,logicminds/our-boxen,kmohr/my-boxen,Americastestkitchen/our-boxen,aeikenberry/boxen-for-me,donmullen/myboxen,klloydh/dynamo-boxen,kthukral/my-boxen,aisensiy/boxen,ynnadrules/neuralbox,yarbelk/boxen,carthik/our-boxen,judytuna/boxen-judy,hakamadare/our-boxen,atayarani/myboxen,jak/boxen,elle24/boxen,arnoldsandoval/our-boxen,nederhrj/boxen,sleparc/my-boxen,tafujita/our-boxen,dbld-org/our-boxen,maarten/our-boxen,seehafer/boxen,bkreider/boxen,bash0C7/my-boxen,ssayre/my-boxen,tarebyte/my-boxen,kseta/my-boxen,EmptyClipGaming/our-boxen,minatsu/my-boxen,wkimeria/boxen_research,ckazu/my-boxen,devpg/my-boxen,msaunby/our-boxen,cawhite78/corey-boxen,flatiron32/boxen,rmjasmin/diablo-boxen,dstack4273/MyBoxenBootstrap,stoeffel/our-boxen,xcompass/our-boxen,hjfbynara/hjf-boxen,rhussmann/boxen,decobisu/my-boxen,kosmotaur/boxen,unasuke/unasuke-boxen,hgsk/my-boxen,siddhuwarrier/my-boxen,ralphreid/boxen,newta/my-boxen,plainfingers/adfiboxen,sqki/boxen,pauldambra/our-boxen,alf/boxen,filaraujo/our-boxen,nealio42/macbookair,febbraro/our-boxen,Jun-Chang/my-boxen,franco/boxen,JF0h/boxen2,justinberry/justin-boxen,mhan/my-boxen,apotact/boxen,zenstyle-inc/our-boxen,rogerhub/our-boxen,SudoNikon/boxen,petronbot/our-boxen,bleech/general-boxen,shao1555/my-boxen,blongden/my-boxen,pictura/pictura-boxen,joseluis2g/my-boxen,seanknox/exygy-boxen,alserik/a-boxen,natewalck/my-boxen,vaddirajesh/boxen,mnussbaum/my_boxen,rexxllabore/localboxen,jkemsley/boxen-def,schani/xamarin-boxen,chai/boxen,cph/boxen,ryanorsinger/boxen,ErikEvenson/boxen,berryp/my-boxen,mwagg/our-boxen,jtjurick/DEPRECATED--boxen,ingoclaro/our-boxen,Jun-Chang/my-boxen,jorgemancheno/boxen,bradwright/my-boxen,moredip/my-boxen,jkongie/my-boxen,mikedename/myboxen,blangenfeld/boxen,jwmayfield/my-boxen,href/boxen,weyert/our-boxen,chollier/my-boxen,radeksimko/our-boxen,thomaswelton/old-boxen,pate/boxen,dfwarden/gsu-boxen,pagrawl3/boxen,rogeralmeida/my-boxen,elsom25/secret-dubstep,crpdm/our-boxen,mhkt/my-boxen,ndelage/boxen,rudymccomb/my-boxen15,1337807/my-boxen,lattwood/boxen,CaseyLeask/my-boxen,philipsdoctor/try-boxen,etaroza/our-boxen,bryfox/foxen-boxen,duboff/alphabox,petems/our-boxen,leonardoobaptistaa/my-boxen,jgarcia/turbo-octo-tyrion,wednesdayagency/boxen,thomaswelton/boxen,macasek/my_boxen,thomjoy/our-boxen,AngeloAballe/Boxen,acmcelwee/my-boxen,codeship/our-boxen,RohitUdayTalwalkar/IndexBoxen,ebruning/boxen,platanus/our-boxen,azumafuji/boxen,Glipho/boxen,AngeloAballe/Boxen,mbraak/my-box,shadowmaru/my-boxen,jacobbednarz/our-boxen,rprimus/my-boxen,datsnet/My-Boxen,libdx/my-boxen,kenmazaika/firehose-boxen,eddieridwan/my-boxen,acarl005/our-boxen,gravityrail/our-boxen,jtjurick/DEPRECATED--boxen2,discoverydev/my-boxen,mcrumm/my-boxen,codekipple/my-boxen,jacksingleton/our-boxen,maarten/our-boxen,ChrisMacNaughton/boxen,johnnyLadders/boxen,han/hana-boxen,ralphreid/my_boxen,cutmail/my-boxen,stephenyeargin/boxen,akiellor/our-boxen,yss44/my-boxen,blackcoffee/boxen,syossan27/my-boxen,cregev/our-boxen,azumafuji/boxen,zovafit/our-boxen,jae2/boxen,maxwellwall/boxentest,samsonnguyen/solium-boxen,dubilla/VTS-Boxen,drmaruyama/my-boxen,thorerik/our-boxen,empty23/myboxen,umi-uyura/my-boxen,takezou/boxen,aedelmangh/thdboxen,bluesalt/my-boxen,chinafanghao/forBoxen,brianluby/boxen,Lavoaster/our-boxen,412andrewmortimer/my-boxen,lenciel/my-box,kevinSuttle/my-boxen,gyllen/boxen,karmicnewt/newt-boxen,hamzarazzak/test_box,snieto/myboxen,jervi/my-boxen,spazm/our-boxen,leveragei/boxen,threetreeslight/my-boxen,scottelundgren/my-boxen,inokappa/myboxen,brendancarney/my-boxen,jldbasa/boxen,kcparashar/boxen,jypandjio/my-boxen,empty23/myboxen,StEdwardsTeam/our-boxen,whharris/boxen,wideopenspaces/jake-boxen,pfeff/my-boxen,flannon/boxen-kenny,decobisu/my-boxen,cynipe/our-boxen-win,jonkessler/boxen,padi/my-boxen,domingusj/our-boxen,pseudomuto/boxen,skyis/gig-boxen,koppacetic/myboxen,dgiunta/boxen,fadingred/red-boxen,jenscobie/our-boxen,cogfor/boxen,nimbleape/example-boxen,avihut/boxen,AntiTyping/boxen-workstation,onedge/my-boxen,datsnet/My-Boxen,rootandflow/our-boxen,w4ik/millermac-boxen,padwasabimasala/my-boxen,stuartcampbell/my-boxen,riveramj/boxen,LewisLebentz/boxen,bagodonuts/scatola-boxen,jingweno/owen-boxen,marr/our-boxen,blacktorn/my-boxen,faizhasim/our-boxen,sangotaro/my-boxen,adamwalz/my-boxen,qmoya/my-boxen,abennet/tools,tdd/my-boxen,bluesalt/my-boxen,fadingred/red-boxen,supernovae/boxen,xebu/boxen-experimental,douglasnomizo/myboxen,fadingred/red-boxen,onedge/my-boxen,girishpandit88/boxen,jjperezaguinaga/frontend-boxen,barklyprotects/our-boxen,thesmart/UltimateChart-Boxen,kseta/my-boxen,jkemsley/boxen-def,devboy/our-boxen,garethr/my-boxen,cloudfour/cloudfour-boxen,danielrob/my-boxen,jeremybaumont/jboxen,zaphod42/my-boxen,hashrock-sandbox/MyBoxen,flatiron32/boxen,ustun/boxen,fpaula/my-boxen,erickreutz/our-boxen,elovelan/our-boxen,user-tony/my-boxen,dbunskoek/boxen,uniite/my-boxen,hkrishna/boxen,digitaljamfactory/boxen,cerodriguezl/my-boxen,jorgemancheno/boxen,jchris/my-boxen,fasrc/boxen,benja-M-1/my-boxen,urimikhli/myboxen,jamsilver/our-boxen,leehanel/my_boxen,chrisklaiber/khan-boxen,dartavion/my-boxen,mlevitt/boxen,heruan/boxen,webbj74/webbj74-boxen,BenjMichel/our-boxen,coreone/tex-boxen,tomiacannondale/our-boxen,mgfreshour/my_boxen,snieto/myboxen,logicminds/mybox,alecklandgraf/boxen,wbs75/my-boxen,blangenfeld/boxen,gaohao/our-boxen,lattwood/boxen,jchris/my-boxen,toocheap/my-boxen,escott-/boxen,neotag/neotag-boxen,hirocaster/our-boxen,ryotarai/my-boxen,tdm00/my-boxen,kayleg/my-boxen,Ceasar/my-boxen,gaishimo/my-boxen,yumiyon/my-boxen,MAECProject/maec-boxen,makersquare/student-boxen,PopShack/boxen,albac/my-boxen,pate/boxen,all9lives/lv-boxen,samant/boxen,jamsilver/our-boxen,Maarc/our-boxen,joe-re/my-boxen,dwpdigitaltech/dwp-boxen,douglasom/railsexperiments,sharpwhisper/our-boxen,allen13/boxen-mac-dev,peterwardle/boxen,levithomason/my-boxen,villamor/villamor-boxen,joshuaess/my-boxen,tangadev/our-boxen,KarolBuchta/boxen,johnnyLadders/boxen,miguelespinoza/boxen,tgarrier/boxen,jbennett/our-boxen,chriswk/myboxen,judytuna/boxen-judy,rapaul/my-boxen,enigmamarketing/boxen,cmonty/my-boxen,artemdinaburg/boxentest,rafaelfelini/my-boxen,ofl/my-boxen,ohwakana/my-boxen,kalupa/my-boxen,tfhartmann/boxen,mrchrisadams/mrchrisadamsboxen,seanknox/my-boxen,baseboxorg/basebox-dev,kalupa/my-boxen,Ganonside/ganon-boxen,JamshedVesuna/our-boxen,jiamat/dragonbox,jeffreybaird/jeffs-boxen,rmzi/rmzi_boxen,tamlyn/boxen,juananruiz/boxen,seb/boxen,clburlison/my-boxen,robinbowes/boxen,kaneshin/boxen,freshvolk/ballin-meme-boxen,rmjasmin/diablo-boxen,kskotetsu/my-boxen,appcues/our-boxen,wongyouth/boxen,dpnl87/boxen,scheibinger/my-boxen,kieranja/mac,mruser/boxen,nik/my-boxen,ryanswood/our-boxen,mwagg/our-boxen,kcparashar/boxen,kevinprince/our-boxen,jde/boxen,padi/my-boxen,sveinung/my-boxen,deone/boxen,thomjoy/our-boxen,socialstudios/boxen,gdks/our-boxen,plainfingers/adfiboxen,adamchandra/my-boxen,taoistmath/USSBoxen,flannon/dh-boxen,DanLindeman/boxen,jheuer/my-boxen,jbennett/our-boxen,stefanfoulis/divio-boxen,tylerbeck/my-boxen,marr/our-boxen,petems/our-boxen,jhonathas/boxen,chollier/my-boxen,ykhs/my-boxen,thorerik/our-boxen,weyert/our-boxen,ombr/our-boxen,buritica/our-boxen,chengdh/my-boxen,fordlee404/code-boxen,mgfreshour/my_boxen,ErikEvenson/boxen,jtao826/mscp-boxen,italoag/boxen,kevinprince/our-boxen,edk/boxen-test,ykt/boxen-silverbox,pattichan/boxen,beefeng/my-boxen,sonnymai/my-boxen,girishpandit88/boxen,rfink/my-boxen,yatatsu/my-boxen,miguelalvarado/my-boxen,dannyviti/our-boxen,namesco/our-boxen,andhansen/uwboxen,bauricio/my-boxen,panderp/my-boxen,filaraujo/our-boxen,jiamat/dragonbox,mmunhall/boxen-dev,potix2/my-boxen,goatsweater/boxen-bellerophon,mgfreshour/my_boxen,iowillhoit/boxen,joeybaker/boxen-personal,xcompass/our-boxen,clburlison/my-boxen,depop/depop-boxen,cbrock/my-boxen,tanihito/my-boxen,awaxa/awaxa-boxen,benwtr/our-boxen,bayster/boxen,ryanaslett/mixologic-boxen,HalfdanJ/Boxen,tamlyn/boxen,cqwense/our-boxen,rafaelfelini/my-boxen,josharian/our-boxen,goncalopereira/boxen,kajohansen/our-boxen,kalupa/my-boxen,markkendall/boxen,cleblanc87/boxen,morganloehr/setup,eadmundo/my-boxen,Berico-Technologies/bt-boxen,karrde00/oberd-boxen,filipebarcos/filipebarcos-boxen,zer0bytescorp/boxen,trvrplk/my-boxen,0xabad1deaf/boxen,vindir/vindy-boxen,snieto/boxen,pauldambra/our-boxen,nederhrj/boxen,bryfox/foxen-boxen,springaki/boxen,Jaco-Pretorius/Workstation,shadowmaru/my-boxen,dstack27/MyBoxenBootstrap,tolomaus/my-boxen,yatatsu/my-boxen,SBoudrias/my-boxen,eliperkins/my-boxen,takezou/boxen,carthik/our-boxen,albertofem/boxen,mmasashi/my-boxen,wesscho/boxen,jamesblack/frontier-boxen,hgsk/my-boxen,rafaelfranca/my-boxen,morgante/boxen-saturn,macboi86/boxen,garycrawford/my-boxen,korenmiklos/my-boxen,missionfocus/mf-boxen,ysoussov/mah-boxen,cmpowell/boxen,cbrock/my-boxen,mdepuy/boxen,topsterio/boxen,gaahrdner/my-boxen,ONSdigital/ons-boxen,ItGumby/boxen,ssayre/my-boxen,lakhansamani/myboxen,vinhnx/my-boxen,phamann/guardian-boxen,hydradevelopment/our-boxen,blueplanet/my-boxen,dfwarden/my-boxen,marcovanest/boxen,jantman/boxen,musha68k/my-boxen,mingderwang/our-boxen,evanchiu/my-boxen,felixclack/my-boxen,aestrea/aestrea-boxen,nfaction/boxen,jeffleeismyhero/our-boxen,thomaswelton/boxen,moveline/our-boxen,ferventcoder/boxen,hemanpagey/heman_boxen,tetsuo6666/tetsuo-boxen,matildabellak/my-boxen,jak/boxen,muuran/my-boxen,chollier/my-boxen,chris-horder/boxen,joelhooks/my-boxen,meltmedia/boxen,tbueno/my-boxen,hirocaster/our-boxen,devnall/boxen,tolomaus/my-boxen,jeffreybaird/my-boxen,anicet/boxen,aestrea/aestrea-boxen,felipecvo/my-boxen,RARYates/my-boxen,XiaoYy/boxen,barm4ley/crash_analyzer_boxen,Ditofry/dito-boxen,dliggat/boxen-old,jgarcia/turbo-octo-tyrion,cubicmushroom/our-boxen,hemanpagey/heman_boxen,nicolasbrechet/our-boxen,KarolBuchta/boxen,SBoudrias/my-boxen,elovelan/our-boxen,mischizzle/boxen,tdd/my-boxen,spuder/spuder-boxen,allen13/boxen-mac-dev,fredoliveira/boxen,joseluis2g/my-boxen,flyingpig16/boxen,rwoolley/rdot-boxen,jamesvulling/my-boxen,moredip/my-boxen,dliggat/boxen-old,nanoxd/our-boxen,adwitz/boxen-setup,warrenbailey/ons-boxen,jasonamyers/our-boxen,onedge/my-boxen,inokappa/myboxen,tinygrasshopper/boxen,bartvanremortele/my-boxen,itismadhan/boxen,losthyena/my-boxen,theand/our-boxen,poochiethecat/my-boxen,trq/my-boxen,smh/my-boxen,blamattina/my-boxen,AnneTheAgile/AnneTheAgile-boxen,amerdidit/my-boxen,goxberry/tmux-boxen,julzhk/myboxen,s-ashwinkumar/test_boxen,klloydh/dynamo-boxen,bradwright/my-boxen,dolhana/my-boxen,chaoranxie/my-boxen,blacktorn/my-boxen,dvberkel/luminis-boxen-dev,digitaljamfactory/boxen,hernandezgustavo/boxenTest,satiar/arpita-boxen,fordlee404/code-boxen,ArthurMediaGroup/amg-boxen,hkrishna/boxen,freshvolk/ballin-meme-boxen,singuerinc/singuerinc-boxen,rob-murray/my-osx,missionfocus/mf-boxen,concordia-publishing-house/boxen,hamzarazzak/test_box,barklyprotects/our-boxen,professoruss/russ_boxen,cph/boxen,weyert/our-boxen,yakimant/boxen,alexfish/boxen,kevinSuttle/my-boxen,joshuaess/my-boxen,donmullen/myboxen,blackcoffee/boxen,zamoose/boxen,mootpointer/my-boxen,am/our-boxen,grahambeedie/my-boxen,dubilla/VTS-Boxen,edk/boxen-test,brettswift/bs_boxen,gabrielalmeida/my-boxen,raganw/my-boxen,vindir/vindy-boxen,norisu0313/my-boxen,jasonleibowitz/tigerspike-boxen,apackeer/my-boxen-old,fukayatsu/my-boxen,riethmayer/my-boxen,nimbleape/example-boxen,mvandevy/our-boxen,thejonanshow/my-boxen,pheekra/our-boxen,didymu5/tommysboxen,spacepants/my-boxen,boxen/our-boxen,macboi86/boxen,tischler/tims-boxen,jeff-french/my-boxen,felho/boxen,cmckni3/my-boxen,tonywok/tonywoxen,toocheap/my-boxen
|
---
+++
@@ -5,6 +5,8 @@
```puppet
class projects::boxen {
+ include qt # requires the qt module in Puppetfile
+
$dir = "${boxen::config::srcdir}/boxen"
repository { $dir:
|
166af23675bcd0453b0da0b1d93d6bb3bb6028d8
|
apps/account/lib/account/service.ex
|
apps/account/lib/account/service.ex
|
defmodule HELM.Account.Service do
use GenServer
alias HELM.Account
alias HELF.Broker
alias HELF.Router
def start_link(state \\ []) do
Router.register("account.create", "account:create")
Router.register("account.login", "account:login")
Router.register("account.get", "account:get")
GenServer.start_link(__MODULE__, state, name: :account_service)
end
def init(_args) do
Broker.subscribe(:account_service, "account:create", call:
fn _,_,account,_ ->
response = Account.Controller.new_account(account)
{:reply, response}
end)
Broker.subscribe(:account_service, "account:get", call:
fn _,_,request,_ ->
response = Account.Controller.get(request)
{:reply, response}
end)
Broker.subscribe(:account_service, "account:login", call:
fn _,_,account,_ ->
response = Account.Controller.login_with(account)
{:reply, response}
end)
# TODO: fix this return
{:ok, %{}}
end
end
|
defmodule HELM.Account.Service do
use GenServer
alias HELM.Account
alias HELF.Broker
alias HELF.Router
def start_link(state \\ []) do
Router.register("account.create", "account:create")
Router.register("account.login", "account:login")
Router.register("account.get", "account:get")
GenServer.start_link(__MODULE__, state, name: :account_service)
end
def init(_args) do
Broker.subscribe(:account_service, "account:create", call:
fn _,_,account,_ ->
response = Account.Controller.new_account(account)
{:reply, response}
end)
Broker.subscribe(:account_service, "account:get", call:
fn _,_,request,_ ->
response = Account.Controller.get(request)
{:reply, response}
end)
Broker.subscribe(:account_service, "account:login", call:
fn _,_,account,_ ->
response = Account.Controller.login_with(account)
{:reply, response}
end)
{:ok, %{}}
end
end
|
Remove wrong todo from `Account.Service`.
|
Remove wrong todo from `Account.Service`.
|
Elixir
|
agpl-3.0
|
renatomassaro/Helix,HackerExperience/Helix,renatomassaro/Helix,mememori/Helix,HackerExperience/Helix
|
---
+++
@@ -33,8 +33,6 @@
{:reply, response}
end)
- # TODO: fix this return
{:ok, %{}}
end
-
end
|
8f84fe5cd431130113928621149bf1ceb3b76c90
|
scripts/runner.sh
|
scripts/runner.sh
|
#!/usr/bin/env bash
echo "Fetching credentials from $REGISTRY_USERS"
curl -o /etc/nginx/.htpasswd $REGISTRY_USERS
/usr/sbin/nginx -c /etc/nginx/nginx.conf
|
#!/usr/bin/env bash
echo "Fetching credentials from $REGISTRY_USERS"
curl -o /etc/nginx/.htpasswd $REGISTRY_USERS
cat /etc/nginx/.htpasswd
/usr/sbin/nginx -c /etc/nginx/nginx.conf
|
Print the contents to be sure
|
Print the contents to be sure
|
Shell
|
mit
|
tco/screwdriver-docker-proxy
|
---
+++
@@ -3,4 +3,6 @@
curl -o /etc/nginx/.htpasswd $REGISTRY_USERS
+cat /etc/nginx/.htpasswd
+
/usr/sbin/nginx -c /etc/nginx/nginx.conf
|
ad325d79139348b260d54bf58063877795c05176
|
requirements/base.txt
|
requirements/base.txt
|
git+git://github.com/liqd/adhocracy4.git@31bd992a1813208c5aa44a0cebb2fe00bdea6f34#egg=adhocracy4
bcrypt==3.1.4
django-capture-tag==1.0
django_csp==3.4
requests==2.18.4
wagtail==1.13.1 # pyup: <2.0
zeep==2.5.0
# Inherited a4-core requirements
bleach==2.1.3
Django==1.11.12 # pyup: <2.0
django-allauth==0.35.0
django-autoslug==1.9.3
django-background-tasks==1.1.13
django-ckeditor==5.4.0
django-cloudflare-push==0.2.0
django-filter==1.1.0
django-widget-tweaks==1.4.2
djangorestframework==3.8.2
easy-thumbnails==2.5
html5lib==1.0.1
jsonfield==2.0.2
python-dateutil==2.7.2
python-magic==0.4.15
rules==1.3
XlsxWriter==1.0.4
|
git+git://github.com/liqd/adhocracy4.git@31bd992a1813208c5aa44a0cebb2fe00bdea6f34#egg=adhocracy4
bcrypt==3.1.4
django-capture-tag==1.0
django_csp==3.4
requests==2.18.4
wagtail==1.13.1 # pyup: <2.0
zeep==2.5.0
# Inherited a4-core requirements
bleach==2.1.3
Django==1.11.13 # pyup: <2.0
django-allauth==0.35.0
django-autoslug==1.9.3
django-background-tasks==1.1.13
django-ckeditor==5.4.0
django-cloudflare-push==0.2.0
django-filter==1.1.0
django-widget-tweaks==1.4.2
djangorestframework==3.8.2
easy-thumbnails==2.5
html5lib==1.0.1
jsonfield==2.0.2
python-dateutil==2.7.2
python-magic==0.4.15
rules==1.3
XlsxWriter==1.0.4
|
Update django from 1.11.12 to 1.11.13
|
Update django from 1.11.12 to 1.11.13
|
Text
|
agpl-3.0
|
liqd/a4-meinberlin,liqd/a4-meinberlin,liqd/a4-meinberlin,liqd/a4-meinberlin
|
---
+++
@@ -8,7 +8,7 @@
# Inherited a4-core requirements
bleach==2.1.3
-Django==1.11.12 # pyup: <2.0
+Django==1.11.13 # pyup: <2.0
django-allauth==0.35.0
django-autoslug==1.9.3
django-background-tasks==1.1.13
|
a4b5cdde1843dca8c08fc3d6ddf2b763ef4e873d
|
lib/constants.js
|
lib/constants.js
|
var fs = require('fs')
var pkg = JSON.parse(fs.readFileSync(__dirname + '/../package.json').toString())
exports.VERSION = pkg.version
exports.DEFAULT_PORT = process.env.PORT || 9876
exports.DEFAULT_HOSTNAME = process.env.IP || 'localhost'
// log levels
exports.LOG_DISABLE = 'OFF'
exports.LOG_ERROR = 'ERROR'
exports.LOG_WARN = 'WARN'
exports.LOG_INFO = 'INFO'
exports.LOG_DEBUG = 'DEBUG'
// Default patterns for the pattern layout.
exports.COLOR_PATTERN = '%[%p [%c]: %]%m'
exports.NO_COLOR_PATTERN = '%p [%c]: %m'
// Default console appender
exports.CONSOLE_APPENDER = {
type: 'console',
layout: {
type: 'pattern',
pattern: exports.COLOR_PATTERN
}
}
exports.EXIT_CODE = '\x1FEXIT'
|
var fs = require('fs')
var pkg = JSON.parse(fs.readFileSync(__dirname + '/../package.json').toString())
exports.VERSION = pkg.version
exports.DEFAULT_PORT = process.env.PORT || 9876
exports.DEFAULT_HOSTNAME = process.env.IP || 'localhost'
// log levels
exports.LOG_DISABLE = 'OFF'
exports.LOG_ERROR = 'ERROR'
exports.LOG_WARN = 'WARN'
exports.LOG_INFO = 'INFO'
exports.LOG_DEBUG = 'DEBUG'
// Default patterns for the pattern layout.
exports.COLOR_PATTERN = '%[%d{DATE}:%p [%c]: %]%m'
exports.NO_COLOR_PATTERN = '%d{DATE}:%p [%c]: %m'
// Default console appender
exports.CONSOLE_APPENDER = {
type: 'console',
layout: {
type: 'pattern',
pattern: exports.COLOR_PATTERN
}
}
exports.EXIT_CODE = '\x1FEXIT'
|
Add date/time stamp to log output
|
feat(logger): Add date/time stamp to log output
The `"%d{DATE}"` in the log pattern adds a date and time stamp to log
lines.
So you get output like this from karma's logging:
```
30 06 2015 15:19:56.562:DEBUG [temp-dir]: Creating temp dir at /tmp/karma-43808925
```
The date and time are handy for figuring out if karma is running slowly.
|
JavaScript
|
mit
|
pmq20/karma,youprofit/karma,chrisirhc/karma,astorije/karma,aiboy/karma,jamestalmage/karma,hitesh97/karma,vtsvang/karma,patrickporto/karma,aiboy/karma,karma-runner/karma,shirish87/karma,kahwee/karma,buley/karma,IsaacChapman/karma,hitesh97/karma,harme199497/karma,astorije/karma,tomkuk/karma,pedrotcaraujo/karma,Klaudit/karma,patrickporto/karma,Klaudit/karma,stevemao/karma,harme199497/karma,simudream/karma,jamestalmage/karma,IsaacChapman/karma,harme199497/karma,Klaudit/karma,oyiptong/karma,clbond/karma,patrickporto/karma,IveWong/karma,Sanjo/karma,jjoos/karma,gayancliyanage/karma,unional/karma,KrekkieD/karma,powerkid/karma,IveWong/karma,Dignifiedquire/karma,david-garcia-nete/karma,stevemao/karma,vtsvang/karma,Dignifiedquire/karma,aiboy/karma,unional/karma,tomkuk/karma,pedrotcaraujo/karma,chrisirhc/karma,mprobst/karma,panrafal/karma,panrafal/karma,IveWong/karma,timebackzhou/karma,SamuelMarks/karma,rhlass/karma,Dignifiedquire/karma,mprobst/karma,mprobst/karma,IsaacChapman/karma,karma-runner/karma,Dignifiedquire/karma,buley/karma,youprofit/karma,clbond/karma,xiaoking/karma,jjoos/karma,gayancliyanage/karma,chrisirhc/karma,skycocker/karma,wesleycho/karma,oyiptong/karma,buley/karma,Klaudit/karma,wesleycho/karma,chrisirhc/karma,johnjbarton/karma,pedrotcaraujo/karma,aiboy/karma,IveWong/karma,codedogfish/karma,Sanjo/karma,jjoos/karma,xiaoking/karma,ernsheong/karma,jamestalmage/karma,clbond/karma,brianmhunt/karma,ernsheong/karma,gayancliyanage/karma,oyiptong/karma,unional/karma,marthinus-engelbrecht/karma,oyiptong/karma,timebackzhou/karma,KrekkieD/karma,astorije/karma,ernsheong/karma,powerkid/karma,shirish87/karma,simudream/karma,clbond/karma,skycocker/karma,timebackzhou/karma,youprofit/karma,hitesh97/karma,brianmhunt/karma,gayancliyanage/karma,simudream/karma,Sanjo/karma,tomkuk/karma,xiaoking/karma,Sanjo/karma,SamuelMarks/karma,skycocker/karma,pmq20/karma,karma-runner/karma,powerkid/karma,panrafal/karma,xiaoking/karma,vtsvang/karma,david-garcia-nete/karma,kahwee/karma,brianmhunt/karma,pmq20/karma,marthinus-engelbrecht/karma,pmq20/karma,wesleycho/karma,youprofit/karma,skycocker/karma,kahwee/karma,marthinus-engelbrecht/karma,maksimr/karma,karma-runner/karma,unional/karma,KrekkieD/karma,simudream/karma,wesleycho/karma,brianmhunt/karma,kahwee/karma,hitesh97/karma,johnjbarton/karma,codedogfish/karma,rhlass/karma,marthinus-engelbrecht/karma,tomkuk/karma,maksimr/karma,johnjbarton/karma,powerkid/karma,SamuelMarks/karma,rhlass/karma,timebackzhou/karma,david-garcia-nete/karma,patrickporto/karma,stevemao/karma,maksimr/karma,jjoos/karma,vtsvang/karma,rhlass/karma,stevemao/karma,astorije/karma,buley/karma,codedogfish/karma,codedogfish/karma,KrekkieD/karma,johnjbarton/karma,pedrotcaraujo/karma,jamestalmage/karma,harme199497/karma,IsaacChapman/karma,shirish87/karma
|
---
+++
@@ -15,8 +15,8 @@
exports.LOG_DEBUG = 'DEBUG'
// Default patterns for the pattern layout.
-exports.COLOR_PATTERN = '%[%p [%c]: %]%m'
-exports.NO_COLOR_PATTERN = '%p [%c]: %m'
+exports.COLOR_PATTERN = '%[%d{DATE}:%p [%c]: %]%m'
+exports.NO_COLOR_PATTERN = '%d{DATE}:%p [%c]: %m'
// Default console appender
exports.CONSOLE_APPENDER = {
|
e71b34dbd6ff3fbdf2eb7485762136eda2926a98
|
lib/phrender.rb
|
lib/phrender.rb
|
require "phrender/version"
require "phrender/logger"
require "phrender/phantom_js_engine"
require "phrender/phantom_js_session"
require "phrender/rack_base"
require "phrender/rack_middleware"
require "phrender/rack_static"
class Phrender
end
|
require "phrender/version"
require "phrender/logger"
require "phrender/phantom_js_engine"
require "phrender/phantom_js_session"
require "phrender/rack_middleware"
require "phrender/rack_static"
class Phrender
end
|
Remove reference to deleted file.
|
Remove reference to deleted file.
|
Ruby
|
mit
|
scoremedia/phrender,scoremedia/phrender
|
---
+++
@@ -2,7 +2,6 @@
require "phrender/logger"
require "phrender/phantom_js_engine"
require "phrender/phantom_js_session"
-require "phrender/rack_base"
require "phrender/rack_middleware"
require "phrender/rack_static"
|
dfe85877d689f0a465e1a4649159541d11d4002d
|
senlin_dashboard/cluster/profiles/templates/profiles/_create.html
|
senlin_dashboard/cluster/profiles/templates/profiles/_create.html
|
{% extends "horizon/common/_modal_form.html" %}
{% load i18n %}
{% block modal-body-right %}
<h3>{% trans "Description:" %}</h3>
<p>{% trans "A profile encodes the information needed for node creation." %}</p>
<a target="_blank" href="https://github.com/openstack/senlin/tree/master/examples/profiles">
{% trans "Profile Spec Examples" %}
</a>
{% endblock %}
|
{% extends "horizon/common/_modal_form.html" %}
{% load i18n %}
{% block form_id %}create_profile_form{% endblock %}
{% block form_action %}{% url 'horizon:cluster:profiles:create' %}{% endblock %}
{% block form_attrs %}enctype="multipart/form-data"{% endblock %}
{% block modal-body-right %}
<h3>{% trans "Description:" %}</h3>
<p>{% trans "A profile encodes the information needed for node creation." %}</p>
<a target="_blank" href="https://github.com/openstack/senlin/tree/master/examples/profiles">
{% trans "Profile Spec Examples" %}
</a>
{% endblock %}
|
Fix senlin profile create through file upload.
|
Fix senlin profile create through file upload.
The senlin profile create is failing to pass the file name on form submit
due to missing encode type in the POST request.
Change-Id: I2a3d1a34725e60b6f59c355980fa48be580eceec
|
HTML
|
apache-2.0
|
openstack/senlin-dashboard,openstack/senlin-dashboard,openstack/senlin-dashboard,stackforge/senlin-dashboard,stackforge/senlin-dashboard,openstack/senlin-dashboard,stackforge/senlin-dashboard
|
---
+++
@@ -1,5 +1,9 @@
{% extends "horizon/common/_modal_form.html" %}
{% load i18n %}
+
+{% block form_id %}create_profile_form{% endblock %}
+{% block form_action %}{% url 'horizon:cluster:profiles:create' %}{% endblock %}
+{% block form_attrs %}enctype="multipart/form-data"{% endblock %}
{% block modal-body-right %}
<h3>{% trans "Description:" %}</h3>
|
353d89f62bfc8b74456de02f2a3bb234760d2b79
|
ITWedding/ITWeddingv2016.05/app/src/main/res/layout/activity_main.xml
|
ITWedding/ITWeddingv2016.05/app/src/main/res/layout/activity_main.xml
|
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context="ua.uagames.itwedding.v201605.MainActivity">
<TextView
android:text="Hello World!"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</RelativeLayout>
|
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="ua.uagames.itwedding.v201605.MainActivity">
<WebView
android:id="@+id/viewer"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"/>
</LinearLayout>
|
Change project ITWeddingv2016.05. Add main activity with WebViewer component.
|
Change project ITWeddingv2016.05. Add main activity with WebViewer component.
|
XML
|
mit
|
nevmaks/UAGames
|
---
+++
@@ -1,17 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
-<RelativeLayout
+<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
- android:paddingLeft="@dimen/activity_horizontal_margin"
- android:paddingRight="@dimen/activity_horizontal_margin"
- android:paddingTop="@dimen/activity_vertical_margin"
- android:paddingBottom="@dimen/activity_vertical_margin"
+ android:orientation="vertical"
tools:context="ua.uagames.itwedding.v201605.MainActivity">
- <TextView
- android:text="Hello World!"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"/>
-</RelativeLayout>
+ <WebView
+ android:id="@+id/viewer"
+ android:layout_width="match_parent"
+ android:layout_height="0dp"
+ android:layout_weight="1"/>
+
+</LinearLayout>
|
7c67b3453eebcfea74f18611ad44cf1a3919b4e3
|
api/person-add.php
|
api/person-add.php
|
<?
include '../scat.php';
$name= $_REQUEST['name'];
$company= $_REQUEST['company'];
$phone= $_REQUEST['phone'];
if (empty($name) && empty($company) && empty($phone))
die_jsonp("You need to supply at least a name, company, or phone number.");
$list= array();
foreach(array('name', 'company', 'address',
'email', 'phone', 'tax_id') as $field) {
$list[]= "$field = '" . $db->escape($_REQUEST[$field]) . "', ";
}
if ($_REQUEST['phone']) {
$list[]= "loyalty_number = '" .
preg_replace('/[^\d]/', '', $_REQUEST['phone']) .
"', ";
}
$fields= join('', $list);
$q= "INSERT INTO person
SET $fields
active = 1";
$r= $db->query($q)
or die_query($db, $q);
echo jsonp(array('person' => $db->insert_id));
|
<?
include '../scat.php';
$name= $_REQUEST['name'];
$company= $_REQUEST['company'];
$phone= $_REQUEST['phone'];
if (empty($name) && empty($company) && empty($phone))
die_jsonp("You need to supply at least a name, company, or phone number.");
$list= array();
foreach(array('name', 'role', 'company', 'address',
'email', 'phone', 'tax_id') as $field) {
$list[]= "$field = '" . $db->escape($_REQUEST[$field]) . "', ";
}
if ($_REQUEST['phone']) {
$list[]= "loyalty_number = '" .
preg_replace('/[^\d]/', '', $_REQUEST['phone']) .
"', ";
}
$fields= join('', $list);
$q= "INSERT INTO person
SET $fields
active = 1";
$r= $db->query($q)
or die_query($db, $q);
echo jsonp(array('person' => $db->insert_id));
|
Save role when adding new person
|
Save role when adding new person
|
PHP
|
mit
|
jimwins/scat,jimwins/scat,jimwins/scat,jimwins/scat
|
---
+++
@@ -8,7 +8,7 @@
die_jsonp("You need to supply at least a name, company, or phone number.");
$list= array();
-foreach(array('name', 'company', 'address',
+foreach(array('name', 'role', 'company', 'address',
'email', 'phone', 'tax_id') as $field) {
$list[]= "$field = '" . $db->escape($_REQUEST[$field]) . "', ";
}
|
6d6739357119d9a2fd78d82c6f0cc640fa3878ea
|
metadata/com.github.alijc.cricketsalarm.yml
|
metadata/com.github.alijc.cricketsalarm.yml
|
Categories:
- Time
License: GPL-3.0-only
SourceCode: https://github.com/alijc/CricketsAlarm
IssueTracker: https://github.com/alijc/CricketsAlarm/issues
AutoName: Cricket’s Alarm
Description: |-
A widget for keeping track of a pet’s medications.
This is a simple widget timer that rings an alarm to remind me to give
Cricket (my diabetic tortie) a shot of insulin. By default the alarm rings
after 12 hours. It can be 'snoozed' for an hour.
RepoType: git
Repo: https://github.com/alijc/CricketsAlarm.git
Builds:
- versionName: '1.1'
versionCode: 2
commit: f498c8dc31
subdir: CricketsAlarm
target: android-14
AutoUpdateMode: None
UpdateCheckMode: RepoManifest
CurrentVersion: '1.1'
CurrentVersionCode: 2
|
Categories:
- Time
License: GPL-3.0-only
SourceCode: https://github.com/alijc/CricketsAlarm
IssueTracker: https://github.com/alijc/CricketsAlarm/issues
AutoName: Cricket's Alarm
Description: |-
A widget for keeping track of a pet’s medications.
This is a simple widget timer that rings an alarm to remind me to give
Cricket (my diabetic tortie) a shot of insulin. By default the alarm rings
after 12 hours. It can be 'snoozed' for an hour.
RepoType: git
Repo: https://github.com/alijc/CricketsAlarm.git
Builds:
- versionName: '1.1'
versionCode: 2
commit: f498c8dc31
subdir: CricketsAlarm
target: android-14
AutoUpdateMode: None
UpdateCheckMode: RepoManifest
CurrentVersion: '1.1'
CurrentVersionCode: 2
|
Set autoname of Cricket's Alarm
|
Set autoname of Cricket's Alarm
|
YAML
|
agpl-3.0
|
f-droid/fdroiddata,f-droid/fdroiddata
|
---
+++
@@ -4,7 +4,7 @@
SourceCode: https://github.com/alijc/CricketsAlarm
IssueTracker: https://github.com/alijc/CricketsAlarm/issues
-AutoName: Cricket’s Alarm
+AutoName: Cricket's Alarm
Description: |-
A widget for keeping track of a pet’s medications.
|
End of preview. Expand
in Data Studio
README.md exists but content is empty.
- Downloads last month
- 36