This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
require 'inifile' | |
require 'net/https' | |
require 'json' | |
local_repositories = [] | |
Dir['_all/**/.git/config'].each do |f| | |
config = IniFile.load(f) | |
url = config['remote "origin"']['url'] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <core/Preprocessor.h> | |
namespace core { | |
namespace types { | |
/** | |
* Anonymous class, to be used instead of <code>0</code> or <code>NULL</code>. | |
* Enables the selection of the correct form when methods are overloaded for | |
* both pointers & integrals types. | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if exists("+relativenumber") | |
set relativenumber " show relative line numbers | |
set numberwidth=3 " narrow number column | |
" cycles between relative / absolute / no numbering | |
function! RelativeNumberToggle() | |
if (&relativenumber == 1) | |
set number number? | |
elseif (&number == 1) | |
set nonumber number? | |
else |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
echo updating svn repositories | |
find . -type d -exec test -d '{}'/.svn.disabled \; -prune -o -exec test -d '{}'/.svn \; -prune -exec sh -c "echo updating {} && svn cleanup {} && svn update --non-interactive --trust-server-cert {}" \; | |
echo updating git repositories | |
find . -type d -exec test -d '{}'/.git \; -prune -exec sh -c "echo updating {} && cd {} && git clean -xdf && git pull" \; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ------------------------------------------------------------------------------ | |
# int32_t dotProduct_16x8_neon(int16_t const* __restrict u, int8_t const* __restrict v, int32_t size) | |
.globl _dotProduct_16x8_neon | |
.private_extern _dotProduct_16x8_neon | |
.no_dead_strip _dotProduct_16x8_neon | |
_dotProduct_16x8_neon: | |
# calling conventions: | |
#--------------------- |
NewerOlder