I hereby claim:
- I am ihashacks on github.
- I am ihashacks (https://keybase.io/ihashacks) on keybase.
- I have a public key whose fingerprint is 93A3 E6A0 E191 A709 5077 5406 36D6 E99F DA81 99E8
To claim this, I am signing this object:
<SearchPlugin xmlns="http://www.mozilla.org/2006/browser/search/"> | |
<ShortName>Dell Product</ShortName> | |
<Description>Dell Product Search</Description> | |
<InputEncoding>utf-8</InputEncoding> | |
<Image width="16" height="16"> data:image/x-icon;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAMAAACdt4HsAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJ | |
bWFnZVJlYWR5ccllPAAAAyBpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdp | |
bj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6 | |
eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEz | |
NDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJo | |
dHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlw |
#!/bin/bash | |
################################################################################ | |
# License | |
################################################################################ | |
# | |
# Copyright (c) 2014 Brandon Pierce <[email protected]> | |
# | |
# This program is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by |
I hereby claim:
To claim this, I am signing this object:
# docker image for running CC test suite | |
FROM ubuntu | |
RUN apt-get update | |
RUN apt-get -y install wget | |
RUN apt-get -y install git | |
# install Ruby 1.9.3-p484 | |
RUN apt-get -y install build-essential zlib1g-dev libreadline-dev libssl-dev libcurl4-openssl-dev |
#/bin/env bash | |
# Builds the docker image and pushs to | |
# repository (local by default) | |
# Usage: | |
# build_and_push <directory of Dockerfile> <resultant docker image name> | |
DOCKERFILE_DIRECTORY=$1 | |
DOCKER_IMAGE_NAME=$2 |
#!/bin/bash | |
MAC_TYPE=$(curl -s "http://support-sp.apple.com/sp/product?cc=$(system_profiler SPHardwareDataType | awk ' /Serial/ { print $4 } ' | cut -c 9-)" | sed 's|.*<configCode>\(.*\)</configCode>.*|\1|') | |
MAC_PROCESSOR=$(sysctl -n machdep.cpu.brand_string) | |
MAC_MEMORY="$(( $(sysctl -n hw.memsize) / 1024 ** 3 )) GB" | |
MAC_SERIAL=$(system_profiler SPHardwareDataType | awk ' /Serial/ { print $4 } ') | |
echo "System: ${MAC_TYPE}" | |
echo "CPU: ${MAC_PROCESSOR}" | |
echo "Memory: ${MAC_MEMORY}" |