View .htaccess file ,subdomain and cakePHP
onsider a domain www.example.com. You have created an appliaction in its root folder. | |
Now you purchase a new subdomain www.newdomain.net that is like root/newdomain/ in your server. | |
When you place your cake application inside this newdomain folder, you will encounter problem regarding | |
redirect, sometimes you css will be not getting loaded same is with javascript and images. | |
To overcome this problem create 3 .htaccess files in this order:- | |
1) .htaccess file in root/newdomain/ folder write this:- | |
<IfModule mod_rewrite.c> | |
RewriteEngine on |
View .vimrc
"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++" | |
" " | |
" __ _ _ _ __ ___ _ __ ___ " | |
" \ \ / / | '_ ` _ \| '__/ __| " | |
" \ V /| | | | | | | | | (__ " | |
" \_/ |_|_| |_| |_|_| \___| " | |
" " | |
" " | |
"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++" |
View compile-node-alpine.txt
apk update | |
apk install curl python build-base gcc abuild binutils binutils-doc gcc-doc linux-headers | |
curl -L -O https://nodejs.org/dist/v4.6.0/node-v4.6.0.tar.gz | |
tar xzf node-v4.6.0.tar.gz | |
cd node-v4.6.0 | |
./configure | |
make | |
make install |
View jsio.js
var jsio = (function() { | |
var util = { | |
slice: Array.prototype.slice, | |
bind: function bind(method, context) { | |
var args = util.slice.call(arguments, 2); | |
return function() { | |
return method.apply(context, args.concat(util.slice.call(arguments, 0))); | |
}; | |
} |
View gist:851ea9c78f5bde4fef12e41492ce066a
/* | |
Copyright 2011 Martin Hawksey | |
Licensed under the Apache License, Version 2.0 (the "License"); | |
you may not use this file except in compliance with the License. | |
You may obtain a copy of the License at | |
http://www.apache.org/licenses/LICENSE-2.0 | |
Unless required by applicable law or agreed to in writing, software |
View app.html
<!doctype html> | |
<html><head><script src="app.js"></script></head><body></body></html> |
View .vimrc
set nocompatible | |
filetype off | |
set rtp+=~/.vim/bundle/Vundle.vim | |
call vundle#begin() | |
Plugin 'VundleVim/Vundle.vim' | |
Plugin 'lrvick/Conque-Shell' | |
Plugin 'scrooloose/nerdtree' | |
Plugin 'maksimr/vim-jsbeautify' |
View gist:e5aca17255e0f528229d6fb83a66caee
curl -sSL https://get.docker.com/ | sh | |
sudo usermod -aG docker ubuntu |
View waya-dl-setup.sh
#!/bin/bash | |
# install CUDA Toolkit v8.0 | |
# instructions from https://developer.nvidia.com/cuda-downloads (linux -> x86_64 -> Ubuntu -> 16.04 -> deb (network)) | |
CUDA_REPO_PKG="cuda-repo-ubuntu1604_8.0.61-1_amd64.deb" | |
wget http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1604/x86_64/${CUDA_REPO_PKG} | |
sudo dpkg -i ${CUDA_REPO_PKG} | |
sudo apt-get update | |
sudo apt-get -y install cuda |
View min-char-rnn.py
""" | |
Minimal character-level Vanilla RNN model. Written by Andrej Karpathy (@karpathy) | |
BSD License | |
""" | |
import numpy as np | |
# data I/O | |
data = open('input.txt', 'r').read() # should be simple plain text file | |
chars = list(set(data)) | |
data_size, vocab_size = len(data), len(chars) |
NewerOlder