contact: {CONTACT NAME}
metrics:
offering:
| # This script is designed to work with ubuntu 16.04 LTS | |
| # with keras 1.2.2 and the latest Pytorch with CUDA 8 support | |
| ########################################################################## | |
| #This is used to install CUDA 8 driver for Tesla K80 | |
| ########################################################################## | |
| #!/bin/bash | |
| echo "Checking for CUDA and installing." | |
| # Check for CUDA and try to install. | |
| if ! dpkg-query -W cuda-8-0; then |
| # download: remote -> local | |
| scp user@remote_host:remote_file local_file | |
| # upload: local -> remote | |
| scp local_file user@remote_host:remote_file |
| $ brew install fish | |
| $ echo "/usr/local/bin/fish" | sudo tee -a /etc/shells | |
| $ chsh -s `which fish` |
| import React, {Component} from 'react'; | |
| class someFeature extends Component { | |
| constructor(props){ | |
| super(props); | |
| this.state = {}; | |
| } | |
| FROM nvidia/cuda:9.0-cudnn7-devel-ubuntu16.04 | |
| LABEL com.nvidia.volumes.needed="nvidia_driver" | |
| RUN echo "deb http://developer.download.nvidia.com/compute/machine-learning/repos/ubuntu1604/x86_64 /" > /etc/apt/sources.list.d/nvidia-ml.list | |
| RUN apt-get update && apt-get install -y --allow-downgrades --no-install-recommends \ | |
| build-essential \ | |
| cmake \ | |
| git \ |
| var express = require('express'); | |
| var bodyParser = require('body-parser'); | |
| var app = express(); | |
| app.set('view engine', 'ejs'); | |
| app.use(bodyParser.urlencoded({ extended: false })) | |
| app.listen(4000, function() { | |
| console.log('server is listening!!'); | |
| }); |
I hereby claim:
To claim this, I am signing this object:
| ui<-fluidPage(DT::dataTableOutput("wideTable")) | |
| server<-function(input, output) { | |
| output$wideTable <- DT::renderDataTable({ | |
| table <- do.call(cbind, lapply(1:100, function(i) 1:1000)) | |
| colnames(table) <- paste0("name.", 1:100) | |
| DT::datatable(table, options = list(scrollX = TRUE)) | |
| }) | |
| } |
| import MySQLdb | |
| # Open database connection ( If database is not created don't give dbname) | |
| db = MySQLdb.connect("localhost","yourusername","yourpassword","yourdbname" ) | |
| # prepare a cursor object using cursor() method | |
| cursor = db.cursor() | |
| # For creating create db | |
| # Below line is hide your warning |