To open a file in Vim:
vim <filename>
Navigation | |
---|---|
h |
move one character left |
j |
move one row down |
# required: RGtk2 | |
calculateGUI <- function() { | |
## Run on "OK" | |
performStatistics <- function(button, user.data) { | |
res <- NULL | |
d <- NULL | |
error <- NULL | |
warning <- NULL | |
# Get the information about data and the file | |
the.file <- filename$getText() |
-- Remove the history from | |
rm -rf .git | |
-- recreate the repos from the current content only | |
git init | |
git add . | |
git commit -m "Initial commit" | |
-- push to the github remote repos ensuring you overwrite history | |
git remote add origin [email protected]:<YOUR ACCOUNT>/<YOUR REPOS>.git |
# Standard scientific Python imports | |
import pylab as pl | |
import numpy as np | |
from time import time | |
# Import datasets, classifiers and performance metrics | |
from sklearn import datasets, svm, pipeline | |
from sklearn.kernel_approximation import (RBFSampler, | |
Nystroem) | |
from sklearn.utils import shuffle |
#!/usr/bin/eggdrop | |
# ^- This should contain a fully qualified path to your Eggdrop executable. | |
# | |
# $Id: eggdrop.conf,v 1.51 2008-02-16 20:15:30 guppy Exp $ | |
# | |
# This is a sample Eggdrop configuration file which includes all possible | |
# settings that can be used to configure your bot. | |
# | |
# The pound signs (#) that you see at the beginning of some lines mean that | |
# the remainder of that line is a comment, or just for your information. By |