Skip to content

Instantly share code, notes, and snippets.

View alexklibisz's full-sized avatar
:octocat:

Alex Klibisz alexklibisz

:octocat:
View GitHub Profile
@edefiez
edefiez / docpad.js
Last active May 9, 2016 14:46
docpad.js instead of docpad.coffee
var docpadConfig,
__indexOf = [].indexOf || function(item) { for (var i = 0, l = this.length; i < l; i++) { if (i in this && this[i] === item) return i; } return -1; };
docpadConfig = {
templateData: {
site: {
url: "http://website.com",
oldUrls: ['www.website.com', 'website.herokuapp.com'],
title: "Your Website",
description: "When your website appears in search results in say Google, the text here will be shown underneath your website's title.",
@cranst0n
cranst0n / repositories
Created March 15, 2016 18:44
Sample repositories file to get SBT working with Artifactory
# Use '-Dsbt.override.build.repos=true' and '-Dsbt.repository.config=repositories' flags when firing up SBT
[repositories]
local
ivy-proxy: http://192.168.2.107:8081/artifactory/repo/, [organization]/[module]/[revision]/[type]s/[artifact](-[classifier]).[ext]
maven-proxy: http://192.168.2.107:8081/artifactory/repo/
sbt-plugins-proxy: http://192.168.2.107:8081/artifactory/repo/, [organization]/[module]/(scala_[scalaVersion]/)(sbt_[sbtVersion]/)[revision]/[type]s/[artifact](-[classifier]).[ext]
@Brainiarc7
Brainiarc7 / build-tensorflow-from-source.md
Last active July 29, 2023 21:28
Build Tensorflow from source, for better performance on Ubuntu.

Building Tensorflow from source on Ubuntu 16.04LTS for maximum performance:

TensorFlow is now distributed under an Apache v2 open source license on GitHub.

On Ubuntu 16.04LTS+:

Step 1. Install NVIDIA CUDA:

To use TensorFlow with NVIDIA GPUs, the first step is to install the CUDA Toolkit as shown: