Should be something like this:
wget https://developer.download.nvidia.com/compute/cuda/11.2.2/local_installers/cuda_11.2.2_460.32.03_linux.runsudo
sh cuda_11.2.2_460.32.03_linux.run
using System; | |
public class Dog | |
{ | |
static public void Type() | |
{ | |
Console.WriteLine("a Dog!"); | |
} | |
public void Bark() | |
{ |
import io | |
import sys | |
# Temporarily redirect stdout to a StringIO. | |
stdout = sys.stdout | |
s = io.StringIO() | |
sys.stdout = s | |
help(sys.intern) |
'use strict'; | |
var Octokat = require('octokat'); | |
var extend = require('lodash/object/assign'); | |
var defaults = { | |
branchName: 'master', | |
token: '', | |
username: '', | |
reponame: '' |
#!/usr/bin/env ruby | |
require 'octokit' | |
# !!! DO NOT EVER USE HARD-CODED VALUES IN A REAL APP !!! | |
login = ENV['GH_LOGIN'] | |
password = ENV['GH_LOGIN_PASSWORD'] | |
repo = "gjtorikian/crud-test" | |
master = client.ref(repo, "heads/master") | |