foursking.github.io foursking.github.io

foursking.github.io

首页

No description found

http://foursking.github.io/

WEBSITE DETAILS
SEO
PAGES
SIMILAR SITES

TRAFFIC RANK FOR FOURSKING.GITHUB.IO

TODAY'S RATING

>1,000,000

TRAFFIC RANK - AVERAGE PER MONTH

BEST MONTH

December

AVERAGE PER DAY Of THE WEEK

HIGHEST TRAFFIC ON

Saturday

TRAFFIC BY CITY

CUSTOMER REVIEWS

Average Rating: 3.9 out of 5 with 13 reviews
5 star
6
4 star
4
3 star
1
2 star
0
1 star
2

Hey there! Start your review of foursking.github.io

AVERAGE USER RATING

Write a Review

WEBSITE PREVIEW

Desktop Preview Tablet Preview Mobile Preview

LOAD TIME

0.3 seconds

CONTACTS AT FOURSKING.GITHUB.IO

Login

TO VIEW CONTACTS

Remove Contacts

FOR PRIVACY ISSUES

CONTENT

SCORE

6.2

PAGE TITLE
首页 | foursking.github.io Reviews
<META>
DESCRIPTION
<META>
KEYWORDS
1 index
2 tags
3 feed
4 mac下面 hhkb使用
5 使用brew 管理mac php版本
6 tmux使用 转自tankywoo
7 python抓取luoo站点专辑
8 新的开始
9 mac通过homebrew 安装mysql
10 nginx ci
CONTENT
Page content here
KEYWORDS ON
PAGE
index,tags,feed,mac下面 hhkb使用,使用brew 管理mac php版本,tmux使用 转自tankywoo,python抓取luoo站点专辑,新的开始,mac通过homebrew 安装mysql,nginx ci,gitlab ssh 提交代码,nginx 配置总结,symfony2 使用总结,php pear,php错误报告,test private function in php,osx 中vim的复制和粘贴,shell 流控制,git备忘录,best app
SERVER
GitHub.com
CONTENT-TYPE
utf-8
GOOGLE PREVIEW

首页 | foursking.github.io Reviews

https://foursking.github.io

<i>No description found</i>

INTERNAL PAGES

foursking.github.io foursking.github.io
1

gitlab ssh 提交代码

http://foursking.github.io/2014/01/20/git-gitlab

Cd /ssh & ssh-keygen #创建ssh key. Generating public/private rsa key pair. Enter file in which to save the key (/home/foursk/.ssh/id rsa): test #输入需要的name. 创建完之后在 .ssh 目录会看到 两个文件. Touch /.ssh/config #创建config. Host you.host Hostname your.host.name User git IdentityFile /.ssh/test.

2

文章分类

http://foursking.github.io/categorys

3

nginx ci

http://foursking.github.io/2014/01/20/nginx-ci

Server { listen 80; server name you.service.name error log /path/to/log; access log /path/to/log; location / { root /path/to/file index index.php index.html index.htm; if (-f $request filename) { expires max; break; } #if (! E $request filename) { # rewrite /(.*)$ /index.php/$1 last; #} if ($request filename!

4

python抓取luoo站点专辑

http://foursking.github.io/python/2014/08/18/py-d1

Http:/ www.luoo.net/music/{id}. Http:/ luoo.800edu.net/low/luoo/radio{id}/. Http:/ img.luoo.net/pics/albums/{song id}/cover.jpg 580x580.jpg. R span class=vol-number rounded ([ /]*) /span. R img src=http:/ img2.luoo.net/pics/albums/(. )/cover.jpg 580x580.jpg alt=. class=cover rounded. R a href=javascript:; rel=nofollow class=trackname btn-play (. ) /a. R span class=vol-number rounded . /span s* span class=vol-title (. ) /span.

5

shell 流控制

http://foursking.github.io/2014/01/10/condition-test

Bin/sh if [commend1];then commend2 . else commend3 . fi. Str1 = str2 当两个串有相同内容、长度时为真. Int1 -eq int2 两数相等为真. Int1 -ne int2 两数不等为真. Int1 -gt int2 int1大于int2为真. Int1 -ge int2 int1大于等于int2为真. Int1 -lt int2 int1小于int2为真. Int1 -le int2 int1小于等于int2为真. Bin/bash i="shell" if [ "$i"= "shell" ]; then echo $i else echo "not shell" fi. 有点不习惯书写方式 如表达式 $i= shell 也成立 作为一个写php的觉得很不习惯.

UPGRADE TO PREMIUM TO VIEW 14 MORE

TOTAL PAGES IN THIS WEBSITE

19

LINKS TO THIS WEBSITE

geniuze.com geniuze.com

Geniuze / markdown study (2)

http://geniuze.com/posts/markdown-2.html

Posted in [ Markdown Category. 接着一个普通括号,里面放上图片的网址,最后还可以用引号包住并加上 选择性的 ‘title’ 文字。 Markdown 支持以比较简短的自动链接形式来处理网址和电子邮件信箱,只要是用尖括号包起来, Markdown 就会自动把它转成链接。 A href="http:/ example.com/" http:/ example.com/ /a. 邮址的自动链接也很类似,只是 Markdown 会先做一个编码转换的过程,把文字字符转成 16 进位码的 HTML 实体,这样的格式可以糊弄一些不好的邮址收集机器人,例如. 在浏览器里面,这段字串 其实是 address@example.com. 会变成一个可以点击的 address@example.com 链接。 Markdown 可以利用反斜杠来插入一些在语法中有其它意义的符号,例如 如果你想要用星号加在文字旁边的方式来做出强调效果 但不用. 反斜线 ` 反引号 * 星号 底线 {} 花括号 [] 方括号 () 括弧 # 井字号 加号 - 减号 . 英文句点!

geniuze.com geniuze.com

Geniuze / c++ category

http://geniuze.com/category/c++

geniuze.com geniuze.com

Geniuze / c++ list

http://geniuze.com/posts/c++list.html

Posted in [ c Category. 1){ erase(pos); } } void set(int pos, const T& d){ if (pos 0 pos size() return; Node *p = getptr(pos); p- data = d; } bool empty()const {return size() = 0;} const T& front() {if (empty() throw "空";return head- data;} const T& back() { if (empty() throw "空"; Node *p = head; while(p- next) p = p- next; return p- data; } };.

geniuze.com geniuze.com

Geniuze / markdown study (1)

http://geniuze.com/posts/markdown.html

Posted in [ Markdown Category. 这是标题1 = = = = = 这是标题2 - - - - -. 这是标题1 # 这是标题2 # # # 这是标题6. 这是标题1# # 这是标题2# # # # 这是标题6# # # # # #. This is a blockquote with two paragraphs. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aliquam hendrerit mi posuere lectus. Vestibulum enim wisi, viverra nec, fringilla in, laoreet vitae, risus. Donec sit amet nisl. Aliquam semper ipsum sit amet velit. Suspendisse id sem consectetuer libero luctus adipiscing. 列表1 * 列表2 * 列表3 列表1 列表2 列表3 - 列表1 - 列表2 - 列表3. 1986 Wh...

geniuze.com geniuze.com

Geniuze / Default category

http://geniuze.com/category/default

Posted in [ Default Category.

geniuze.com geniuze.com

Geniuze / 像黑客一样写自己的技术博客

http://geniuze.com/posts/my-tech-blogging-like-a-hacker.html

Posted in [ Another Category. 用 Google Custom Search. 原文 Blogging Like a Hacker.

geniuze.com geniuze.com

Geniuze / MarkDown category

http://geniuze.com/category/markdown

Posted in [ Markdown Category. Posted in [ Markdown Category.

geniuze.com geniuze.com

Geniuze / Another category

http://geniuze.com/category/another

Posted in [ Another Category. 用 Google Custom Search. 原文 Blogging Like a Hacker.

UPGRADE TO PREMIUM TO VIEW 4 MORE

TOTAL LINKS TO THIS WEBSITE

12

OTHER SITES

fourskillsenglish.com fourskillsenglish.com

Speak, listen, read, write

Speak, listen, read, write. English proofreading and transcribing / lessons / practice interviews / resume editing. Bitcoin donations / payments. Version 1.22. Theme Designed and Developed by Amit Jakhu. Speak, listen, read, write. We are not derited! March 20, 2018. In Kanagawa has been completely upgraded and has an onsen and western style spa, complete with jacuzzis and infinity pool with views of Enoshima in one direction and Fuji in the other. It was really great! We are going again! March 19, 2018.

fourskims.com fourskims.com

Welcome fourskims.com - Justhost.com

Web Hosting from Just Host. Design By Design Fusions.

fourskin.blogspot.com fourskin.blogspot.com

FoUrSkIn[NaTiOn]

Put your profile/short bio, favourites, dislikes, anything else about yourself here. Tag board code here. Thursday, January 20, 2005. Posted by BeNjA at 8:00 PM. Wednesday, November 17, 2004. Hahaz sorri fer not updatin.e monsoon season is comi9n so it will be raining like hell.hahaz todae soccer trainin score 4 goal sia budden no glorycause defender is jonathan ang.hahaaz. Posted by BeNjA at 5:21 PM. Monday, July 26, 2004. Tis few dae is goin to be hot again to hahaz todae 30 degree liao . Light up a day.

fourskin.co.uk fourskin.co.uk

fourskin.co.uk

fourskinband.com fourskinband.com

FOUR SKIN

FOUR SKIN RELEASE THE INCEPTION TOUR DATES. August 1st, 2015. FALL TOUR IS CURRENTLY BEING SCHEDULED. July 13th, 2015. Dates for the fall tour are currently being scheduled across the US. Dates from sunny California to Queens, NY have already been booked for FOUR SKIN's 90 Day US Tour scheduled for fall 2015. The band is currently in the studio continuing work on the Time is Now record to be released under the Blackwater Records label. The record is anticipated to be completed by late 2015. The band is c...

fourskinsgolf.com fourskinsgolf.com

Bald is Beautiful!!!

Welcome to Fourskinsgolf.com. Fourplay has never looked so bald!

fourskulls.bandcamp.com fourskulls.bandcamp.com

World Of Hurt | Four Skulls

Includes unlimited streaming via the free Bandcamp app, plus high-quality download in MP3, FLAC and more. Mind Made For Me. Released November 8, 2013. Feeds for this album. As Recorded by Four Skulls. My future as Id seen it, had been molded in my mind as long as I can. Ive always been, where I want to be. Every day without end. Can this last for me, Ill have to wait and see. Coming up is my past. Ive always known, who I want to be. Every minute is mine. Can you last for me, well have to wait and see.

fourskulls.com fourskulls.com

HostMonster

Web Hosting - courtesy of www.hostmonster.com.

fourskulls.net fourskulls.net

Four Skulls - Hard Rock and Metal

fourskullsklan.skyrock.com fourskullsklan.skyrock.com

Blog de FOURSKULLSKLAN - Blog de FOURSKULLSKLAN - Skyrock.com

Mot de passe :. J'ai oublié mon mot de passe. Déjà frères depuis de longues années, nous baptisons notre groupe THE FOUR SKULLSen hommage aux 4 membres fondateurs ainsi qu'à leur intrépide état d'esprit. Nous décidons en 2008 d'adhérer au mouvement des Klans de France et en adoptons les règles et statuts. Chaque frères et soeurs de notre Klan se portent garant de la sécurité du groupe. Mise à jour :. Abonne-toi à mon blog! THE FOUR SKULLS KLAN. Ou poster avec :. Posté le mardi 16 septembre 2008 10:32.