- Http'ye giris, istemci ve sunucu bilgileri, Http durum kodlari, encoding, ilk web sayfasi
- Temel metin editoru veya IDE secimi ve kullanimi
- Temel komut satiri kullanimi, secilen isletim sitemine gore anlatim.
- Temel html
- Temel GIT kullanimi 1
- Ileri seviye html
- Temel css 1
- Temel css 2
- Ileri seviye css
- Ornek web sitesi projesi - Blog (1)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git init # 初始化本地git仓库(创建新仓库) | |
git config --global user.name "xxx" # 配置用户名 | |
git config --global user.email "[email protected]" # 配置邮件 | |
git config --global color.ui true # git status等命令自动着色 | |
git config --global color.status auto | |
git config --global color.diff auto | |
git config --global color.branch auto | |
git config --global color.interactive auto | |
git config --global --unset http.proxy # remove proxy configuration on git | |
git clone git+ssh://[email protected]/VT.git # clone远程仓库 |
Quick uninstall JetBrains settings:
curl -sL https://gist.github.com/denji/9731967/raw/jetbrains-uninstall.sh | sudo bash -s
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# install laravel under bash | |
wget http://laravel.com/laravel.phar && chmod +x laravel.phar && mv laravel.phar /usr/local/bin/laravel | |
# under fish | |
wget http://laravel.com/laravel.phar ; chmod +x laravel.phar; mv laravel.phar /usr/local/bin/laravel |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
export DEBIAN_FRONTEND=noninteractive | |
#echo "--> Configuring locales <--" | |
#locale-gen en_US.UTF-8 | |
#apt-get install language-pack-en-base | |
echo "--> Updating package db <--" | |
apt-get update |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
VAGRANTFILE_API_VERSION = "2" | |
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
config.vm.provider "virtualbox" do |v| | |
v.memory = 256 | |
end | |
config.vm.box = "precise32" | |
config.vm.box_url = "http://files.vagrantup.com/precise32.box" | |
config.vm.synced_folder "./" , "/vagrant/", :mount_options => ["dmode=777", "fmode=666"] | |
config.vm.provision :shell, :path => "https://gist.github.com/amiroff/7976592/raw/lamp.sh" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/**********************************************/ | |
/* | |
/* Make Chrome dev tools look good under Linux | |
/* ~/.config/google-chrome/Default/User StyleSheets/Custom.css | |
/* chrome-devtools://devtools/devTools.css | |
/* See https://plus.google.com/115133653231679625609/posts/UZF34wPJXsL | |
/* | |
/**********************************************/ | |