I hereby claim:
- I am alayek on github.
- I am alayek (https://keybase.io/alayek) on keybase.
- I have a public key ASAZ4uBZXcIRqlWRxrGF2YsiXHPPmYG4s7iMzhkooHPrTQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| for lib in lib{gmp,mpfr,mpc}.la; do | |
| echo $lib: $(if find /usr/lib* -name $lib| | |
| grep -q $lib;then :;else echo not;fi) found | |
| done | |
| unset lib |
| #!/bin/bash | |
| # Simple script to list version numbers of critical development tools | |
| export LC_ALL=C | |
| bash --version | head -n1 | cut -d" " -f2-4 | |
| MYSH=$(readlink -f /bin/sh) | |
| echo "/bin/sh -> $MYSH" | |
| echo $MYSH | grep -q bash || echo "ERROR: /bin/sh does not point to bash" | |
| unset MYSH | |
| echo -n "Binutils: "; ld --version | head -n1 | cut -d" " -f3- |
| Bringing machine 'default' up with 'virtualbox' provider... | |
| ==> default: Importing base box 'minimal/trusty64'... | |
| [KProgress: 10% | |
| [KProgress: 30% | |
| [KProgress: 40% | |
| [KProgress: 50% | |
| [KProgress: 60% | |
| [KProgress: 70% | |
| [KProgress: 90% |
| Bringing machine 'default' up with 'virtualbox' provider... | |
| ==> default: Importing base box 'minimal/trusty64'... | |
| [KProgress: 10% | |
| [KProgress: 30% | |
| [KProgress: 40% | |
| [KProgress: 50% | |
| [KProgress: 60% | |
| [KProgress: 70% | |
| [KProgress: 90% |
| Bringing machine 'default' up with 'virtualbox' provider... | |
| ==> default: Importing base box 'minimal/trusty64'... | |
| [KProgress: 10% | |
| [KProgress: 30% | |
| [KProgress: 40% | |
| [KProgress: 50% | |
| [KProgress: 60% | |
| [KProgress: 70% | |
| [KProgress: 90% |
| #!/usr/bin/env bash | |
| # installation settings | |
| PROJECT=my_project # we would want a name passed to it via te first argument, | |
| DB=fcc_provision # the name of postgreSQL DB we need to provision, maybe | |
| ENV_NAME=fcc-clojure # the vitualenv we would like to create, with Python 3.4 | |
| # This file is executed by root user - sudo not needed | |
| # But do not create any directory | |
| # which vagrant user might need access to later in su mode |
I hereby claim:
To claim this, I am signing this object:
| try: | |
| import requests | |
| except ImportError: | |
| import pip | |
| pip.main(['install', 'requests']) # if not running in venv, pass the --users flag too | |
| import requests | |
| r = requests.get('https://api.github.com/events') | |
| print(r) |
| package com.example.android.sunshine.app; | |
| import android.annotation.TargetApi; | |
| import android.content.Context; | |
| import android.content.res.Configuration; | |
| import android.media.Ringtone; | |
| import android.media.RingtoneManager; | |
| import android.net.Uri; | |
| import android.os.Build; | |
| import android.os.Bundle; |