I hereby claim:
- I am h0lyalg0rithm on github.
- I am h0lyalg0rithm (https://keybase.io/h0lyalg0rithm) on keybase.
- I have a public key ASCW6fm3ZjZcLUUF0ymURenr-TIddQ10YYSA3xxZbTI3jAo
To claim this, I am signing this object:
sudo apt-get install build-essential clang python3 cmake libboost-all-dev libyaml-cpp-dev rapidjson-dev libsqlite3-dev zlib1g-dev libhdf5-cpp-103 libhdf5-dev cppcheck doxygen graphviz zstd libzstd-dev texlive-font-utils -y | |
wget https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-Linux-x86_64.sh && bash ./Miniforge3-Linux-x86_64.sh | |
source ~/.bashrc | |
git clone --recursive https://github.com/riscv-software-src/riscv-perf-model.git | |
git clone --branch map_v1.1.0 https://github.com/sparcians/map.git |
I hereby claim:
To claim this, I am signing this object:
2017-07-08T08:23:58.935Z 48998 TID-4jyi0 WARN: Thread TID-4jyi0 | |
2017-07-08T08:23:58.936Z 48998 TID-4jyi0 WARN: /home/dev/apps/paack/shared/bundle/ruby/2.2.0/gems/sidekiq-4.2.10/lib/sidekiq/cli.rb:151:in `backtrace' | |
/home/dev/apps/paack/shared/bundle/ruby/2.2.0/gems/sidekiq-4.2.10/lib/sidekiq/cli.rb:151:in `block in handle_signal' | |
/home/dev/apps/paack/shared/bundle/ruby/2.2.0/gems/sidekiq-4.2.10/lib/sidekiq/cli.rb:148:in `each' | |
/home/dev/apps/paack/shared/bundle/ruby/2.2.0/gems/sidekiq-4.2.10/lib/sidekiq/cli.rb:148:in `handle_signal' | |
/home/dev/apps/paack/shared/bundle/ruby/2.2.0/gems/sidekiq-4.2.10/lib/sidekiq/cli.rb:96:in `run' | |
/home/dev/apps/paack/shared/bundle/ruby/2.2.0/gems/sidekiq-4.2.10/bin/sidekiq:12:in `<top (required)>' | |
/home/dev/apps/paack/shared/bundle/ruby/2.2.0/bin/sidekiq:23:in `load' | |
/home/dev/apps/paack/shared/bundle/ruby/2.2.0/bin/sidekiq:23:in `<top (required)>' |
#forked from https://coderwall.com/p/eclzyg/redis-to-redis-data-copy | |
require 'redis' | |
redisSrc = Redis.connect :url => "redis://localhost:6379" | |
redisDest = Redis.connect :url => "redis://localhost:6379" | |
redisSrc.keys("*").each do |key| | |
data = redisSrc.dump key | |
redisDest.restore key, 0, data unless redisDest.exists(key) |
defmodule LocationService.Daterange do | |
@behaviour Ecto.Type | |
def type, do: :daterange | |
def cast([lower, upper]) do | |
{:ok, [lower, upper]} | |
end | |
def cast(_), do: :error |
#Install android build tools, platforms | |
#Supported versions here https://circleci.com/docs/android | |
dependencies: | |
override: | |
- echo y | android update sdk --no-ui --all --filter tools,platform-tools,build-tools-23.0.1,android-23,extra-google-m2repository,extra-google-google_play_services,extra-android-support | |
- ANDROID_HOME=/usr/local/android-sdk-linux ./gradlew dependencies | |
#Pull any submodules | |
checkout: | |
post: |
server { | |
listen 80; | |
root /var/www/app/current; | |
index index.php index.html index.htm; | |
server_name example.com; | |
location / { | |
try_files $uri $uri/ =404; |
require 'capistrano/setup' | |
require 'capistrano/deploy' |
.container | |
.row | |
.col-md-4.col-md-offset-4 | |
.login-panel.panel.panel-default | |
.panel-heading | |
%h3.panel-title Sign up | |
.panel-body | |
%div | |
= form_for(resource, as: resource_name, url: registration_path(resource_name)) do |f| | |
= devise_error_messages! |
class Item < ItemTemplate | |
self.primary_key = "id" | |
end |