$ rvm install 2.3.1
Searching for binary rubies, this might take some time.
No binary rubies available for: manjaro/17.0.2/x86_64/ruby-2.3.1.
Continuing with compilation. Please read 'rvm help mount' to get more informatio
Checking requirements for manjaro.
Requirements installation successful.
Installing Ruby from source to: /home/hvardhan/.rvm/rubies/ruby-2.3.1, this may
ruby-2.3.1 - #downloading ruby-2.3.1, this may take a while depending on your co
% Total % Received % Xferd Average Speed Time Time Time Current
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
+__rvm_make:0> make -j4 | |
CC = gcc | |
LD = ld | |
LDSHARED = gcc -shared | |
CFLAGS = -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wno-unused-parameter -Wno-parentheses -Wno-long-long -Wno-missing-field-initializers -Wunused-variable -Wpointer-arith -Wwrite-strings -Wdeclaration-after-statement -Wimplicit-function-declaration -Wdeprecated-declarations -Wno-packed-bitfield-compat -std=iso9899:1999 -fPIC | |
XCFLAGS = -D_FORTIFY_SOURCE=2 -fstack-protector -fno-strict-overflow -fvisibility=hidden -DRUBY_EXPORT | |
CPPFLAGS = -I. -I.ext/include/x86_64-linux -I./include -I. | |
DLDFLAGS = -Wl,-soname,libruby.so.2.3 -fstack-protector | |
SOLIBS = -lpthread -lgmp -ldl -lcrypt -lm | |
Using built-in specs. |
This file has been truncated, but you can view the full file.
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
This file contains any messages produced by compilers while | |
running configure, to aid debugging if configure makes a mistake. | |
It was created by configure, which was | |
generated by GNU Autoconf 2.69. Invocation command line was | |
$ ./configure --prefix=/home/hvardhan/.rvm/rubies/ruby-2.3.1 --disable-install-doc --enable-shared | |
## --------- ## | |
## Platform. ## |
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 you come from bash you might have to change your $PATH. | |
export PATH=$HOME/flatbuffers:$HOME/.local/bin:/usr/local/mysql/bin:/opt/android-studio/bin:$HOME/bin:/usr/local/bin:$PATH | |
# Path to your oh-my-zsh installation. | |
export ZSH=/home/hvardhan/.oh-my-zsh | |
# Set name of the theme to load. Optionally, if you set this to "random" | |
# it'll load a random theme each time that oh-my-zsh is loaded. | |
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes | |
ZSH_THEME="af-magic" |
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/bash | |
killall -q polybar | |
while pgrep -x polybar >/dev/null; do sleep 1; done | |
polybar -r top |
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/bash | |
osd='no' | |
inc='5' | |
capvol='no' | |
maxvol='200' | |
tmpfile='/tmp/pasink.tmp' | |
autosync='yes' | |
active_sink=`pacmd list-sinks |awk '/* index:/{print $3}'` |
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 bash | |
icon="$HOME/Pictures/lock.png" | |
tmpbg='/tmp/screen.png' | |
(( $# )) && { icon=$1; } | |
scrot "$tmpbg" | |
convert "$tmpbg" -scale 10% -scale 1000% "$tmpbg" | |
convert "$tmpbg" "$icon" -gravity center -composite -matte "$tmpbg" |
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 __has_include(".extend.Xresources") | |
! #include ".extend.Xresources" | |
! #endif | |
! ^ The above lines are no comments! | |
! Leave them as they are if a file ~/.extend.Xresources is being used on your system. | |
! config can be added there or also here below. | |
! For comments use "!" | |
! Xft.dpi: 96 |
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
from __future__ import print_function | |
import os | |
import sys | |
from concurrent import futures | |
import time | |
import grpc | |
import flatbuffers | |
import MyGame.Sample.Color as Color |
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
from . import encode | |
from . import packer | |
+import pickle | |
from . import compat | |
from .compat import range_func | |
@@ -391,6 +392,14 @@ class Builder(object): | |
self.PlaceUOffsetT(vectorNumElems) | |
return self.Offset() | |