pecl channel-update pecl.php.net
pecl clear-cache
pecl install xdebug
#!/bin/bash | |
# install CUDA Toolkit v9.0 | |
# instructions from https://developer.nvidia.com/cuda-downloads (linux -> x86_64 -> Ubuntu -> 16.04 -> deb) | |
CUDA_REPO_PKG="cuda-repo-ubuntu1604-9-0-local_9.0.176-1_amd64-deb" | |
wget https://developer.nvidia.com/compute/cuda/9.0/Prod/local_installers/${CUDA_REPO_PKG} | |
sudo dpkg -i ${CUDA_REPO_PKG} | |
sudo apt-key adv --fetch-keys http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1604/x86_64/7fa2af80.pub | |
sudo apt-get update | |
sudo apt-get -y install cuda-9-0 |
/* | |
Copyright (C) 2015 3D Robotics | |
Permission is hereby granted, free of charge, to any | |
person obtaining a copy of this software and associated | |
documentation files (the "Software"), to deal in the | |
Software without restriction, including without | |
limitation the rights to use, copy, modify, merge, | |
publish, distribute, sublicense, and/or sell copies of | |
the Software, and to permit persons to whom the Software |
Our Virtual Machines are provisioned using Vagrant from a Linux base box to run using VirutalBox. If the Hard Disk space runs out and you cannot remove files to free-up space, you can resize the Hard Disk using some VirtualBox and Linux commands.
The following steps assume you've got a set-up like mine, where:
Our Virtual Machines are provisioned using Vagrant from a Linux base box to run using VirutalBox. If the Hard Disk space runs out and you cannot remove files to free-up space, you can resize the Hard Disk using some VirtualBox and Linux commands.
The following steps assume you've got a set-up like mine, where:
A lot of these are outright stolen from Edward O'Campo-Gooding's list of questions. I really like his list.
I'm having some trouble paring this down to a manageable list of questions -- I realistically want to know all of these things before starting to work at a company, but it's a lot to ask all at once. My current game plan is to pick 6 before an interview and ask those.
I'd love comments and suggestions about any of these.
I've found questions like "do you have smart people? Can I learn a lot at your company?" to be basically totally useless -- everybody will say "yeah, definitely!" and it's hard to learn anything from them. So I'm trying to make all of these questions pretty concrete -- if a team doesn't have an issue tracker, they don't have an issue tracker.
I'm also mostly not asking about principles, but the way things are -- not "do you think code review is important?", but "Does all code get reviewed?".
git archive --output=file.zip HEAD $(git diff --name-only SHA1 SHA2) |
/** | |
* This is a WIP of potential usage of the ORM in a NodeJS implementation. Let's try implementing | |
* this as a module for other parts of the app to use. Less instantiation for later | |
*/ | |
var ORM = require('awesomeorm-base'), | |
repository = require('awesomeorm-repository-rest')('http://rest.example.com/schema'), | |
dataParser = require('awesomeorm-data-jsonapi'), | |
modelBuilder = require('awesomeorm-model-encasulated'); | |