now really works

This commit is contained in:
2013-01-14 21:14:28 +08:00
parent 4aa91a85e7
commit 39cc786ae0
233 changed files with 3324 additions and 2122 deletions
Submodule
+1
Submodule .themes/phase added at a9c2ebfbb3
Submodule
+1
Submodule .themes/slath added at 2cc927dd8c
-18
View File
@@ -1,18 +0,0 @@
source "http://rubygems.org"
group :development do
gem 'rake', '~> 10.0.2'
gem 'rack', '~> 1.4.1'
gem 'jekyll', '~> 0.11.2'
gem 'rdiscount', '~> 1.6.8'
gem 'pygments.rb', '~> 0.2.12'
gem 'RedCloth', '~> 4.2.9'
gem 'haml', '~> 3.1.6'
gem 'compass', '~> 0.12.1'
gem 'rubypants', '~> 0.2.0'
gem 'rb-fsevent', '~> 0.9'
gem 'stringex', '~> 1.4.0'
gem 'liquid', '~> 2.3.0'
end
gem 'sinatra', '~> 1.3.2'
+2 -2
View File
@@ -9,10 +9,10 @@ ssh_port = "22"
document_root = "~/website.com/" document_root = "~/website.com/"
rsync_delete = false rsync_delete = false
rsync_args = "" # Any extra arguments to pass to rsync rsync_args = "" # Any extra arguments to pass to rsync
deploy_default = "rsync" deploy_default = "push"
# This will be configured for you when you run config_deploy # This will be configured for you when you run config_deploy
deploy_branch = "gh-pages" deploy_branch = "master"
## -- Misc Configs -- ## ## -- Misc Configs -- ##
+3 -3
View File
@@ -36,7 +36,7 @@ category_dir: blog/categories
markdown: rdiscount markdown: rdiscount
pygments: false # default python pygments have been replaced by pygments.rb pygments: false # default python pygments have been replaced by pygments.rb
paginate: 8 # Posts per page on the blog index paginate: 6 # Posts per page on the blog index
pagination_dir: blog # Directory base for pagination URLs eg. /blog/page/2/ pagination_dir: blog # Directory base for pagination URLs eg. /blog/page/2/
recent_posts: 5 # Posts in the sidebar Recent Posts section recent_posts: 5 # Posts in the sidebar Recent Posts section
excerpt_link: "Read on →" # "Continue reading" link text at the bottom of excerpted articles excerpt_link: "Read on →" # "Continue reading" link text at the bottom of excerpted articles
@@ -69,7 +69,7 @@ twitter_tweet_count: 4
twitter_show_replies: false twitter_show_replies: false
twitter_follow_button: true twitter_follow_button: true
twitter_show_follower_count: false twitter_show_follower_count: false
twitter_tweet_button: true twitter_tweet_button: false
# Google +1 # Google +1
google_plus_one: false google_plus_one: false
@@ -78,7 +78,7 @@ google_plus_one_size: medium
# Google Plus Profile # Google Plus Profile
# Hidden: No visible button, just add author information to search results # Hidden: No visible button, just add author information to search results
googleplus_user: googleplus_user:
googleplus_hidden: false googleplus_hidden: true
# Pinboard # Pinboard
pinboard_user: pinboard_user:
-100
View File
@@ -1,100 +0,0 @@
# ----------------------- #
# Main Configs #
# ----------------------- #
url: http://wahyd4.github.com
title: Junv's Blog
subtitle: nothing to say
author: Junv
simple_search: http://google.com/search
description:
# Default date format is "ordinal" (resulting in "July 22nd 2007")
# You can customize the format as defined in
# http://www.ruby-doc.org/core-1.9.2/Time.html#method-i-strftime
# Additionally, %o will give you the ordinal representation of the day
date_format: "ordinal"
# RSS / Email (optional) subscription links (change if using something like Feedburner)
subscribe_rss: /atom.xml
subscribe_email:
# RSS feeds can list your email address if you like
email:
# ----------------------- #
# Jekyll & Plugins #
# ----------------------- #
# If publishing to a subdirectory as in http://site.com/project set 'root: /project'
root: /
permalink: /blog/:year/:month/:day/:title/
source: source
destination: public
plugins: plugins
code_dir: downloads/code
category_dir: blog/categories
markdown: rdiscount
pygments: false # default python pygments have been replaced by pygments.rb
paginate: 10 # Posts per page on the blog index
pagination_dir: blog # Directory base for pagination URLs eg. /blog/page/2/
recent_posts: 5 # Posts in the sidebar Recent Posts section
excerpt_link: "Read on →" # "Continue reading" link text at the bottom of excerpted articles
titlecase: true # Converts page and post titles to titlecase
# list each of the sidebar modules you want to include, in the order you want them to appear.
# To add custom asides, create files in /source/_includes/custom/asides/ and add them to the list like 'custom/asides/custom_aside_name.html'
default_asides: [asides/recent_posts.html, asides/github.html, asides/twitter.html, asides/delicious.html, asides/pinboard.html, asides/googleplus.html]
# Each layout uses the default asides, but they can have their own asides instead. Simply uncomment the lines below
# and add an array with the asides you want to use.
# blog_index_asides:
# post_asides:
# page_asides:
# ----------------------- #
# 3rd Party Settings #
# ----------------------- #
# Github repositories
github_user: wahyd4
github_repo_count: 0
github_show_profile_link: true
github_skip_forks: true
# Twitter
twitter_user:
twitter_tweet_count: 4
twitter_show_replies: false
twitter_follow_button: true
twitter_show_follower_count: false
twitter_tweet_button: true
# Google +1
google_plus_one: false
google_plus_one_size: medium
# Google Plus Profile
# Hidden: No visible button, just add author information to search results
googleplus_user:
googleplus_hidden: false
# Pinboard
pinboard_user:
pinboard_count: 3
# Delicious
delicious_user:
delicious_count: 3
# Disqus Comments
disqus_short_name:
disqus_show_comment_count: false
# Google Analytics
google_analytics_tracking_id:
# Facebook Like
facebook_like: false
+3 -4
View File
@@ -1,5 +1,4 @@
@import "base/color";
@import "base/font";
@import "base/utilities"; @import "base/utilities";
@import "base/solarized"; @import "base/layout";
@import "base/theme";
@import "base/typography";
@import "base/layout";
+8
View File
@@ -0,0 +1,8 @@
@import "parts/header";
@import "parts/pagination";
@import "parts/article";
@import "parts/archive";
@import "parts/comment";
@import "parts/footer";
@import "parts/syntax";
@import "parts/phasebeam";
+1
View File
@@ -0,0 +1 @@
@import "plugins/fancybox";
+8
View File
@@ -0,0 +1,8 @@
$color-background: #000;
$color-font: #333;
$color-meta: #999;
$color-border: #ccc;
$color-main01: rgb(157, 97, 207);
$color-main02: rgb(40, 20, 105);
$color-main03: rgb(0, 150, 240);
$color-main04: rgb(0, 26, 77);
+21
View File
@@ -0,0 +1,21 @@
$font-main: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, sans-serif;
$font-title: "Pontano Sans", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, sans-serif;
$font-mono: Menlo, Monaco, Andale Mono, Lucida console, Courier New, monospace;
$font-serif: "Georgia", serif;
@import url(http://fonts.googleapis.com/css?family=Pontano+Sans);
$font-icon: FontAwesome;
$font-icon-path: "/font/fontawesome-webfont";
@font-face {
font-family: 'FontAwesome';
src: url('#{$font-icon-path}.eot');
src: url('#{$font-icon-path}.eot?#iefix') format('embedded-opentype'),
url('#{$font-icon-path}.woff') format('woff'),
url('#{$font-icon-path}.ttf') format('truetype'),
url('#{$font-icon-path}.svgz#FontAwesomeRegular') format('svg'),
url('#{$font-icon-path}.svg#FontAwesomeRegular') format('svg');
font-weight: normal;
font-style: normal;
}
+37 -189
View File
@@ -1,192 +1,40 @@
$max-width: 1200px !default; *{
// Padding used for layout margins
$pad-min: 18px !default;
$pad-narrow: 25px !default;
$pad-medium: 35px !default;
$pad-wide: 55px !default;
// Sidebar widths used in media queries
$sidebar-width-medium: 240px !default;
$sidebar-pad-medium: 15px !default;
$sidebar-pad-wide: 20px !default;
$sidebar-width-wide: 300px !default;
$indented-lists: false !default;
$header-font-size: 1em !default;
$header-padding-top: 1.5em !default;
$header-padding-bottom: 1.5em !default;
.group { @include pie-clearfix; }
@mixin collapse-sidebar {
float: none;
width: auto;
clear: left;
margin: 0; margin: 0;
padding: 0 $pad-medium 1px; padding: 0;
background-color: lighten($sidebar-bg, 2);
border-top: 1px solid lighten($sidebar-border, 4);
section {
&.odd, &.even { float: left; width: 48%; }
&.odd { margin-left: 0; }
&.even { margin-left: 4%; }
}
&.thirds section {
width: 30%;
margin-left: 5%;
&.first {
margin-left: 0;
clear: both;
}
}
} }
body{
body { background: $color-background;
-webkit-text-size-adjust: none; font: 300 14px $font-main;
max-width: $max-width; text-shadow: 0 0 1px transparent;
position: relative; }
h1{
font-size: 2em;
}
h2{
font-size: 1.6em;
}
h3{
font-size: 1.3em;
}
a{
color: $color-main01;
text-decoration: none;
}
strong{
font-weight: bold;
}
.alignleft{
float: left;
}
.alignright{
float: right;
}
.clearfix{
@include pie-clearfix;
}
.inner{
margin: 0 auto; margin: 0 auto;
> header, > nav, > footer, #content > article, #content > div > article, #content > div > section { position: relative;
@extend .group; width: 1000px;
padding-left: $pad-min; z-index: 0;
padding-right: $pad-min; }
@media only screen and (min-width: 480px) {
padding-left: $pad-narrow;
padding-right: $pad-narrow;
}
@media only screen and (min-width: 768px) {
padding-left: $pad-medium;
padding-right: $pad-medium;
}
@media only screen and (min-width: 992px) {
padding-left: $pad-wide;
padding-right: $pad-wide;
}
}
div.pagination {
@extend .group;
margin-left: $pad-min;
margin-right: $pad-min;
@media only screen and (min-width: 480px) {
margin-left: $pad-narrow;
margin-right: $pad-narrow;
}
@media only screen and (min-width: 768px) {
margin-left: $pad-medium;
margin-right: $pad-medium;
}
@media only screen and (min-width: 992px) {
margin-left: $pad-wide;
margin-right: $pad-wide;
}
}
> header {
font-size: $header-font-size;
padding-top: $header-padding-top;
padding-bottom: $header-padding-bottom;
}
}
#content {
overflow: hidden;
> div, > article { width: 100%; }
}
aside.sidebar {
float: none;
padding: 0 $pad-min 1px;
background-color: lighten($sidebar-bg, 2);
border-top: 1px solid $sidebar-border;
@extend .group;
}
.flex-content { max-width: 100%; height: auto; }
.basic-alignment {
&.left { float: left; margin-right: 1.5em; }
&.right { float: right; margin-left: 1.5em; }
&.center { display:block; margin: 0 auto 1.5em; }
&.left, &.right { margin-bottom: .8em; }
}
.toggle-sidebar { &, .no-sidebar & { display: none; }}
body.sidebar-footer {
@media only screen and (min-width: 750px) {
aside.sidebar{ @include collapse-sidebar; }
}
#content { margin-right: 0px; }
.toggle-sidebar { display: none; }
}
@media only screen and (min-width: 550px) {
body > header { font-size: $header-font-size; }
}
@media only screen and (min-width: 750px) {
aside.sidebar { @include collapse-sidebar; }
}
#main, #content, .sidebar {
@extend .group;
}
@media only screen and (min-width: 768px) {
body { -webkit-text-size-adjust: auto; }
body > header { font-size: $header-font-size * 1.2; }
#main {
padding: 0;
margin: 0 auto;
}
#content {
overflow: visible;
margin-right: $sidebar-width-medium;
position: relative;
.no-sidebar & { margin-right: 0; border-right: 0; }
.collapse-sidebar & { margin-right: 20px; }
> div, > article {
padding-top: $pad-medium/2;
padding-bottom: $pad-medium/2;
float: left;
}
}
aside.sidebar {
width: $sidebar-width-medium - $sidebar-pad-medium*2;
padding: 0 $sidebar-pad-medium $sidebar-pad-medium;
background: none;
clear: none;
float: left;
margin: 0 -100% 0 0;
section {
width: auto; margin-left: 0;
&.odd, &.even { float: none; width: auto; margin-left: 0; }
}
.collapse-sidebar & {
@include collapse-sidebar;
}
}
}
@media only screen and (min-width: 992px) {
body > header { font-size: $header-font-size * 1.3; }
#content { margin-right: $sidebar-width-wide; }
#content {
> div, > article {
padding-top: $pad-wide/2;
padding-bottom: $pad-wide/2;
}
}
aside.sidebar {
width: $sidebar-width-wide - $sidebar-pad-wide*2;
padding: 1.2em $sidebar-pad-wide $sidebar-pad-wide;
.collapse-sidebar & {
padding: { left: $pad-wide; right: $pad-wide; }
}
}
}
@if $indented-lists == false {
@media only screen and (min-width: 768px) {
ul, ol { margin-left: 0; }
}
}
+20 -25
View File
@@ -1,28 +1,23 @@
@mixin mask-image($img, $repeat: no-repeat){ @mixin square($size){
@include experimental(mask-image, image-url($img), -webkit, -moz, -o, -ms); width: $size;
@include experimental(mask-repeat, $repeat, -webkit, -moz, -o, -ms); height: $size;
width: image-width($img);
height: image-height($img);
} }
@mixin center($width, $height){
@mixin shadow-box($border: #fff .5em solid, $shadow: rgba(#000, .15) 0 1px 4px, $border-radius: .3em) { position: absolute;
@include border-radius($border-radius); top: 50%;
@include box-shadow($shadow); left: 50%;
@include box-sizing(border-box); margin-left: -1/2 * $width;
border: $border; margin-top: -1/2 * $height;
} }
@mixin hide-text{
@mixin selection($bg, $color: inherit, $text-shadow: none){ text-indent: 100%;
* { white-space: nowrap;
&::-moz-selection { background: $bg; color: $color; text-shadow: $text-shadow; } overflow: hidden;
&::-webkit-selection { background: $bg; color: $color; text-shadow: $text-shadow; }
&::selection { background: $bg; color: $color; text-shadow: $text-shadow; }
}
} }
@mixin user-select($prop){
@function text-color($color, $dark: dark, $light: light){ -moz-user-select: $prop;
$text-color: ( (red($color)*299) + (green($color)*587) + (blue($color)*114) ) / 1000; -khtml-user-select: $prop;
$text-color: if($text-color >= 150, $dark, $light); -webkit-user-select: $prop;
@return $text-color; -o-user-select: $prop;
} user-select: $prop;
}
+110
View File
@@ -0,0 +1,110 @@
#archive-header{
height: 2em;
margin-bottom: 50px;
h1{
color: rgba(255,255,255,0.7);
font-family: $font-title;
font-weight: normal;
line-height: 1;
}
.search{
input[type="text"]{
background: rgba(0,0,0,0.3);
border: none;
color: rgba(255,255,255,0.7);
font: 0.9em $font-title;
padding: 7px 12px;
width: 150px;
}
}
}
.archives{
background: #fff;
border: 1px solid #ddd;
color: $color-font;
margin-bottom: 50px;
box-shadow: 0 0 16px rgba(0,0,0,0.3);
text-align: justify;
position: relative;
@include border-radius(3px);
&:before{
content: "";
position: absolute;
top: 0;
left: 0;
width: $meta-width;
height: 100%;
@include background(linear-gradient(left, #ddd, #fff));
}
.year{
color: $color-meta;
font: 2em $font-title;
position: absolute;
top: 15px;
left: 20px;
}
article{
border-left: 1px solid $color-border;
margin-left: $meta-width + 20*2px;
padding: 15px 20px;
position: relative;
&:before{
content: "";
position: absolute;
bottom: -6px;
left: -5px;
width: 7px;
height: 7px;
border: 1px solid $color-border;
background: #fff;
z-index: 1;
@include transform(rotate(45deg));
}
&:last-of-type{
&:before{
display: none;
}
}
.title{
font-family: $font-title;
font-weight: normal;
line-height: 1.1;
a{
color: $color-font;
}
}
footer{
color: $color-meta;
font-size: 0.9em;
line-height: 1.6em;
margin-top: 5px;
a{
color: $color-meta;
&:hover{
color: darken($color-meta, 20%);
}
}
time{
&:before{
content: "\f073";
font-family: $font-icon;
padding-right: 10px;
}
}
.tags{
display: inline-block;
margin-left: 25px;
&:before{
content: "\f02c";
font-family: $font-icon;
padding-right: 10px;
}
}
}
}
}
.archive{
box-shadow: none;
border: none;
margin-bottom: 0;
}
+274
View File
@@ -0,0 +1,274 @@
$meta-width: 120px;
article{
background: #fff;
border: 1px solid #ddd;
color: $color-font;
margin-bottom: 50px;
box-shadow: 0 0 16px rgba(0,0,0,0.3);
text-align: justify;
position: relative;
@include border-radius(3px);
header{
font-family: $font-title;
padding: 15px 20px;
position: relative;
.title{
font-weight: normal;
line-height: 1.1;
a{
color: $color-font;
}
}
time{
color: $color-meta;
position: absolute;
top: 15px;
left: -$meta-width - 20px;
z-index: 1;
@include user-select(none);
.day{
font-size: 2em;
}
.month{
&:before{
content: " / "
}
}
}
}
.entry-content{
line-height: 1.6;
padding: 15px 20px 15px;
margin-top: -15px;
p, blockquote, ul, ol, dl, table, iframe, h1, h2, .video-container, .sharing{
margin-top: 15px;
}
ul, ol, dl{
margin-left: 20px;
ul, ol, dl{
margin-top: 0;
}
}
strong{
font-weight: bold;
}
em{
font-style: italic;
}
a{
&:hover{
text-decoration: underline;
}
}
h1, h2, h3, h4, h5, h6{
font-family: $font-title;
font-weight: normal;
line-height: 1.1;
}
h1, h2{
border-top: 1px solid lighten($color-border, 10%);
padding-top: 15px;
}
h3, h4, h5, h6{
margin-top: 25px;
}
img, video{
max-width: 100%;
height: auto;
}
blockquote{
border-top: 1px solid lighten($color-border, 10%);
border-bottom: 1px solid lighten($color-border, 10%);
color: #666;
font-style: italic;
font-size: 1.2em;
font-family: $font-serif;
padding: 10px 25px 25px;
position: relative;
text-align: center;
&:before, &:after{
position: absolute;
color: $color-border;
line-height: 1;
font-size: 50px;
}
&:before{
content: "";
top: 3px;
left: 0;
}
&:after{
content: "";
bottom: 8px;
right: 0;
}
footer{
font-size: 0.8em;
color: $color-meta;
line-height: 1.1;
margin-top: 20px;
cite{
&:before{
content: "";
color: #ccc;
padding: 0 0.5em;
}
}
a{
color: $color-meta;
text-decoration: underline;
&:hover{
color: $color-font;
}
}
}
}
iframe{
border: none;
}
.caption{
color: $color-meta;
display: block;
font-size: 0.9em;
margin-top: 5px;
&:before{
font-family: $font-icon;
content: "\f040";
padding-right: 10px;
}
}
.video-container{
position: relative;
padding-bottom: 56.25%;
padding-top: 30px;
height: 0;
overflow: hidden;
iframe{
margin-top: 0;
}
iframe, object, embed{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
}
.sharing{
border-top: 1px solid lighten($color-border, 10%);
padding-top: 15px;
iframe{
margin-top: 0;
}
}
[class^="pullquote"]{
float: right;
width: 45%;
display: block;
margin: 0.5em 0 1em 1.5em;
color: #666;
font-size: 1.2em;
font-style: italic;
font-family: $font-serif;
position: relative;
padding-left: 35px;
&:before{
position: absolute;
color: $color-border;
line-height: 1;
font-size: 50px;
top: 0;
content: "";
left: 0;
}
}
.pullquote-left{
float: left;
margin: 0.5em 1.5em 1em 0;
}
}
}
.post{
&:before{
content: "";
position: absolute;
top: 0;
left: 0;
width: $meta-width;
height: 100%;
@include background(linear-gradient(left, #ddd, #fff));
}
header, .entry-content{
border-left: 1px solid $color-border;
margin-left: $meta-width + 20*2px;
}
.entry-content{
min-height: 130px;
position: relative;
&:before{
content: "";
position: absolute;
top: 15px;
left: -5px;
width: 7px;
height: 7px;
border: 1px solid $color-border;
background: #fff;
@include transform(rotate(45deg));
}
.meta{
color: $color-meta;
font-size: 0.9em;
position: absolute;
top: 30px;
left: -$meta-width - 20px;
width: $meta-width;
z-index: 1;
a{
color: $color-meta;
display: block;
&:hover{
color: darken($color-meta, 20%);
}
}
.tags{
line-height: 1.6em;
a{
&:before{
content: "\f02b";
font-family: $font-icon;
padding-right: 10px;
}
&:hover{
text-decoration: none;
}
}
}
.comment{
margin-top: 20px;
&:before{
content: "\f075";
font-family: $font-icon;
padding-right: 8px;
}
&:hover{
text-decoration: none;
}
}
}
}
}
.page{
&:before{
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 60px;
@include background(linear-gradient(top, #ddd, #fff));
}
}
+4
View File
@@ -0,0 +1,4 @@
#comment{
position: relative;
margin: 30px 20px 0;
}
+46
View File
@@ -0,0 +1,46 @@
@import "social/*.png";
#footer{
color: rgba(255, 255, 255, 0.7);
font-size: 0.9em;
line-height: 1.6;
margin-bottom: 50px;
a{
color: #fff;
&:hover{
text-decoration: underline;
}
}
.social{
a{
display: inline-block;
opacity: 0.7;
width: 16px;
height: 16px;
margin-left: 10px;
float: left;
@include hide-text;
@include transition(0.3s);
&:hover{
opacity: 1;
}
&.facebook{
@include social-sprite(facebook);
}
&.google{
@include social-sprite(google);
}
&.github{
@include social-sprite(github);
}
&.twitter{
@include social-sprite(twitter);
}
&.rss{
@include social-sprite(rss);
}
&.pinterest{
@include social-sprite(pinterest);
}
}
}
}
+26
View File
@@ -0,0 +1,26 @@
$nav-height: 64 + 3*2px;
#header{
height: $nav-height;
padding: 50px 0;
nav{
font: 1.5em $font-title;
line-height: $nav-height;
ul{
list-style: none;
text-align: center;
li{
margin: 0 50px;
display: inline-block;
}
a{
color: #fff;
opacity: 0.7;
@include transition(0.3s);
&:hover{
opacity: 1;
}
}
}
}
}
+34
View File
@@ -0,0 +1,34 @@
#pagenavi{
font-family: $font-title;
height: 15 + 10px;
position: relative;
margin-bottom: 50px;
a{
background: $color-main01;
color: #fff;
display: block;
line-height: 15px;
opacity: 0.7;
padding: 5px 15px;
@include border-radius(15px);
@include transition(0.3s);
&:hover{
opacity: 1;
}
&:before, &:after{
font-family: $font-icon;
}
}
.prev{
&:before{
content: "\f053";
padding-right: 15px;
}
}
.next{
&:after{
content: "\f054";
padding-left: 15px;
}
}
}
+15
View File
@@ -0,0 +1,15 @@
#phasebeam{
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
canvas{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
}
+387
View File
@@ -0,0 +1,387 @@
$base03: #002b36 !default; //darkest blue
$base02: #073642 !default; //dark blue
$base01: #586e75 !default; //darkest gray
$base00: #657b83 !default; //dark gray
$base0: #839496 !default; //medium gray
$base1: #93a1a1 !default; //medium light gray
$base2: #eee8d5 !default; //cream
$base3: #fdf6e3 !default; //white
$solar-yellow: #b58900 !default;
$solar-orange: #cb4b16 !default;
$solar-red: #dc322f !default;
$solar-magenta: #d33682 !default;
$solar-violet: #6c71c4 !default;
$solar-blue: #268bd2 !default;
$solar-cyan: #2aa198 !default;
$solar-green: #859900 !default;
$solarized: light !default;
@if $solarized == light {
$_base03: $base03;
$_base02: $base02;
$_base01: $base01;
$_base00: $base00;
$_base0: $base0;
$_base1: $base1;
$_base2: $base2;
$_base3: $base3;
$base03: $_base3;
$base02: $_base2;
$base01: $_base1;
$base00: $_base0;
$base0: $_base00;
$base1: $_base01;
$base2: $_base02;
$base3: $_base03;
}
$pre-bg: #eee;
$pre-border: lighten($color-border, 10%);
article{
code, pre{
background: $pre-bg;
border: 1px solid $pre-border;
font-family: $font-mono;
}
code{
font-size: 0.9em;
padding: 1px 3px;
margin: 0 3px;
@include border-radius(5px);
}
pre{
font-size: 1 / 0.9em;
line-height: 1.5;
margin-top: 15px;
padding: 5px 15px;
overflow-x: auto;
@include border-radius(5px);
code{
background: none;
border: none;
padding: 0;
margin: 0;
@include border-radius(0);
}
}
}
figure.code{
background: $pre-bg;
border: 1px solid $pre-border;
margin-top: 15px;
padding: 5px 15px;
@include border-radius(5px);
figcaption{
font-size: 0.9em;
position: relative;
span{
margin: -5px -15px 0;
padding: 5px 15px;
display: block;
@include background(linear-gradient(top, $pre-border, $pre-bg));
&:empty{
display: none;
}
}
a{
position: absolute;
top: 5px;
right: 0;
}
}
code, pre{
background: none;
border: none;
padding: 0;
margin: 0;
@include border-radius(0);
}
.highlight{
overflow-x: auto;
}
.line-numbers{
border-right: 1px solid $pre-border;
font-family: $font-mono;
padding-right: 15px;
text-align: right;
}
table{
border: none;
text-align: left;
margin-top: 0 !important;
td{
text-align: left;
}
}
td.code{
width: 100%;
padding-left: 15px;
overflow-x: auto;
}
}
.entry-content .gist{
background: $pre-bg;
color: $color-meta;
padding: 30px 15px 5px;
margin-top: 15px;
border: 1px solid $pre-border;
position: relative;
overflow: hidden;
@include border-radius(5px);
.gist-file{
margin: 0;
.gist-data{
background: none;
border: none;
pre{
font: 0.9em $font-mono;
line-height: 1.5;
}
}
.gist-meta{
font: 300 0.9em $color-font;
line-height: 1.5;
margin: 0 -16px -6px;
padding: 5px 15px;
@include background(linear-gradient(top, $pre-bg, $pre-border));
a{
color: $color-main01;
&:first-of-type{
position: absolute;
top: 5px;
right: 15px;
z-index: 1;
}
&:nth-of-type(2){
position: absolute;
top: 0;
left: 0;
padding: 5px 15px;
width: 100%;
@include background(linear-gradient(top, $pre-border, $pre-bg));
}
}
}
}
}
figure.code, .gist-highlight{
.c {
color:$base01 !important;
font-style: italic !important;
}
/* Comment */
.cm {
color:$base01 !important;
font-style: italic !important;
}
/* Comment.Multiline */
.cp {
color:$base01 !important;
font-style: italic !important;
}
/* Comment.Preproc */
.c1 {
color:$base01 !important;
font-style: italic !important;
}
/* Comment.Single */
.cs {
color:$base01 !important;
font-weight:bold !important;
font-style: italic !important;
}
/* Comment.Special */
.err {
color:$solar-red !important;
background: none !important;
}
/* Error */
.k {
color: $solar-orange !important;
}
/* Keyword */
.o {
color:$base1 !important;
font-weight: bold !important;
}
/* Operator */
.p {
color: $base1 !important;
}
/* Operator */
.ow {
color:$solar-cyan !important;
font-weight: bold !important;
}
/* Operator.Word */
.gd {
color:$base1 !important;
background-color:mix($solar-red,$base03,25%) !important;
display: inline-block;
}
/* Generic.Deleted */
.gd .x {
color:$base1 !important;
background-color:mix($solar-red,$base03,35%) !important;
display: inline-block;
}
/* Generic.Deleted.Specific */
.ge {
color:$base1 !important;
font-style: italic !important;
}
/* Generic.Emph */
.gh {
color: $base01 !important;
}
/* Generic.Heading */
.gi {
color:$base1 !important;
background-color:mix($solar-green,$base03,20%) !important;
display: inline-block;
}
/* Generic.Inserted */
.gi .x {
color:$base1 !important;
background-color:mix($solar-green,$base03,40%) !important;
display: inline-block;
}
/* Generic.Inserted.Specific */
.gs {
color:$base1 !important;
font-weight: bold !important;
}
/* Generic.Strong */
.gu {
color: $solar-violet !important;
}
/* Generic.Subheading */
.kc {
color:$solar-green !important;
font-weight: bold !important;
}
/* Keyword.Constant */
.kd {
color: $solar-blue !important;
}
/* Keyword.Declaration */
.kp {
color:$solar-orange !important;
font-weight: bold !important;
}
/* Keyword.Pseudo */
.kr {
color:$solar-magenta !important;
font-weight: bold !important;
}
/* Keyword.Reserved */
.kt {
color: $solar-cyan !important;
}
/* Keyword.Type */
.n {
color:$solar-blue !important;
}
.na {
color: $solar-blue !important;
}
/* Name.Attribute */
.nb {
color: $solar-green !important;
}
/* Name.Builtin */
.nc {
color: $solar-magenta !important;
}
/* Name.Class */
.no {
color: $solar-yellow !important;
}
/* Name.Constant */
.nl {
color:$solar-green !important;
}
.ne {
color:$solar-blue !important;
font-weight: bold !important;
}
/* Name.Exception */
.nf {
color:$solar-blue !important;
font-weight: bold !important;
}
/* Name.Function */
.nn {
color: $solar-yellow !important;
}
/* Name.Namespace */
.nt {
color:$solar-blue !important;
font-weight: bold !important;
}
/* Name.Tag */
.nx {
color:$solar-yellow !Important;
}
.vg {
color: $solar-blue !important;
}
/* Name.Variable.Global */
.vi {
color: $solar-blue !important;
}
/* Name.Variable.Instance */
.nv {
color: $solar-blue !important;
}
/* Name.Variable */
.mf {
color: $solar-cyan !important;
}
/* Literal.Number.Float */
.m {
color: $solar-cyan !important;
}
/* Literal.Number */
.mh {
color: $solar-cyan !important;
}
/* Literal.Number.Hex */
.mi {
color: $solar-cyan !important;
}
/* Literal.Number.Integer */
.s {
color: $solar-cyan !important;
}
/* Literal.String */
.sd {
color: $solar-cyan !important;
}
/* Literal.String.Doc */
.s2 {
color: $solar-cyan !important;
}
/* Literal.String.Double */
.se {
color: $solar-red !important;
}
/* Literal.String.Escape */
.si {
color: $solar-blue !important;
}
/* Literal.String.Interpol */
.sr {
color: $solar-cyan !important;
}
/* Literal.String.Regex */
.s1 {
color: $solar-cyan !important;
}
/* Literal.String.Single */
}
+234
View File
@@ -0,0 +1,234 @@
/*! fancyBox v2.0.6 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-tmp iframe, .fancybox-tmp object {
vertical-align: top;
padding: 0;
margin: 0;
}
.fancybox-wrap {
position: absolute;
top: 0;
left: 0;
z-index: 8020;
}
.fancybox-skin {
position: relative;
padding: 0;
margin: 0;
background: #f9f9f9;
color: #444;
text-shadow: none;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
.fancybox-opened {
z-index: 8030;
}
.fancybox-opened .fancybox-skin {
-webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
-moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}
.fancybox-outer, .fancybox-inner {
padding: 0;
margin: 0;
position: relative;
outline: none;
}
.fancybox-inner {
overflow: hidden;
}
.fancybox-type-iframe .fancybox-inner {
-webkit-overflow-scrolling: touch;
}
.fancybox-error {
color: #444;
font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
margin: 0;
padding: 10px;
}
.fancybox-image, .fancybox-iframe {
display: block;
width: 100%;
height: 100%;
border: 0;
padding: 0;
margin: 0;
vertical-align: top;
}
.fancybox-image {
max-width: 100%;
max-height: 100%;
}
#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
background-image: image-url('fancybox/fancybox_sprite.png');
}
#fancybox-loading {
position: fixed;
top: 50%;
left: 50%;
margin-top: -22px;
margin-left: -22px;
background-position: 0 -108px;
opacity: 0.8;
cursor: pointer;
z-index: 8020;
}
#fancybox-loading div {
width: 44px;
height: 44px;
background: image-url('fancybox/fancybox_loading.gif') center center no-repeat;
}
.fancybox-close {
position: absolute;
top: -18px;
right: -18px;
width: 36px;
height: 36px;
cursor: pointer;
z-index: 8040;
}
.fancybox-nav {
position: absolute;
top: 0;
width: 40%;
height: 100%;
cursor: pointer;
background: transparent image-url('fancybox/blank.gif'); /* helps IE */
-webkit-tap-highlight-color: rgba(0,0,0,0);
z-index: 8040;
}
.fancybox-prev {
left: 0;
}
.fancybox-next {
right: 0;
}
.fancybox-nav span {
position: absolute;
top: 50%;
width: 36px;
height: 34px;
margin-top: -18px;
cursor: pointer;
z-index: 8040;
visibility: hidden;
}
.fancybox-prev span {
left: 20px;
background-position: 0 -36px;
}
.fancybox-next span {
right: 20px;
background-position: 0 -72px;
}
.fancybox-nav:hover span {
visibility: visible;
}
.fancybox-tmp {
position: absolute;
top: -9999px;
left: -9999px;
padding: 0;
overflow: visible;
visibility: hidden;
}
/* Overlay helper */
#fancybox-overlay {
position: absolute;
top: 0;
left: 0;
overflow: hidden;
display: none;
z-index: 8010;
background: #000;
}
#fancybox-overlay.overlay-fixed {
position: fixed;
bottom: 0;
right: 0;
}
/* Title helper */
.fancybox-title {
visibility: hidden;
font: normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
position: relative;
text-shadow: none;
z-index: 8050;
}
.fancybox-opened .fancybox-title {
visibility: visible;
}
.fancybox-title-float-wrap {
position: absolute;
bottom: 0;
right: 50%;
margin-bottom: -35px;
z-index: 8030;
text-align: center;
}
.fancybox-title-float-wrap .child {
display: inline-block;
margin-right: -100%;
padding: 2px 20px;
background: transparent; /* Fallback for web browsers that doesn't support RGBa */
background: rgba(0, 0, 0, 0.8);
-webkit-border-radius: 15px;
-moz-border-radius: 15px;
border-radius: 15px;
text-shadow: 0 1px 2px #222;
color: #FFF;
font-weight: bold;
line-height: 24px;
white-space: nowrap;
}
.fancybox-title-outside-wrap {
position: relative;
margin-top: 10px;
color: #fff;
}
.fancybox-title-inside-wrap {
margin-top: 10px;
}
.fancybox-title-over-wrap {
position: absolute;
bottom: 0;
left: 0;
color: #fff;
padding: 10px;
background: #000;
background: rgba(0, 0, 0, .8);
}
+2 -7
View File
@@ -1,10 +1,5 @@
@import "compass"; @import "compass";
@include global-reset;
@include reset-html5;
@import "custom/colors";
@import "custom/fonts";
@import "custom/layout";
@import "base"; @import "base";
@import "partials"; @import "parts";
@import "custom/styles"; @import "plugins";
@@ -1,6 +1,7 @@
--- ---
title: 一个全新的开始 title: 一个全新的开始
author: wahyd4 author: wahyd4
comments: true
excerpt: | excerpt: |
| |
我们想大声的宣布大染志今天上线啦!!! 我们想大声的宣布大染志今天上线啦!!!
@@ -40,4 +41,4 @@ tags:
<p> <p>
</del> </del>
</p> </p>
@@ -1,6 +1,7 @@
--- ---
title: 蓝牙手机控制电脑——不是梦!(1) title: 蓝牙手机控制电脑——不是梦!(1)
author: wahyd4 author: wahyd4
comments: true
layout: post layout: post
permalink: /2010/09/blue-tooth-one/ permalink: /2010/09/blue-tooth-one/
categories: categories:
@@ -77,4 +78,4 @@ Disconnect idle 里面则表示多少时间手机不操作则断开手机与电
## [蓝牙手机控制电脑——不是梦!(2)][1] ## [蓝牙手机控制电脑——不是梦!(2)][1]
[1]: http://www.junv.info/2010/09/19/%e8%93%9d%e7%89%99%e6%89%8b%e6%9c%ba%e6%8e%a7%e5%88%b6%e7%94%b5%e8%84%91%e2%80%94%e2%80%94%e4%b8%8d%e6%98%af%e6%a2%a6%ef%bc%812/ [1]: http://www.junv.info/2010/09/19/%e8%93%9d%e7%89%99%e6%89%8b%e6%9c%ba%e6%8e%a7%e5%88%b6%e7%94%b5%e8%84%91%e2%80%94%e2%80%94%e4%b8%8d%e6%98%af%e6%a2%a6%ef%bc%812/
+2 -1
View File
@@ -1,6 +1,7 @@
--- ---
title: 蓝牙手机控制电脑——不是梦!(2) title: 蓝牙手机控制电脑——不是梦!(2)
author: wahyd4 author: wahyd4
comments: true
layout: post layout: post
permalink: /2010/09/blue-tooth/ permalink: /2010/09/blue-tooth/
categories: categories:
@@ -68,4 +69,4 @@ tags:
<span style="color: #0000ff;"><span style="color: #333333;"><a href="http://cid-5b8b195ca5b3555d.office.live.com/self.aspx/.Public/SallingClickerV3.5.0.860.rar">点击下载</a></span></span> <span style="color: #0000ff;"><span style="color: #333333;"><a href="http://cid-5b8b195ca5b3555d.office.live.com/self.aspx/.Public/SallingClickerV3.5.0.860.rar">点击下载</a></span></span>
[1]: http://www.junv.info/2010/09/19/%e8%93%9d%e7%89%99%e6%89%8b%e6%9c%ba%e6%8e%a7%e5%88%b6%e7%94%b5%e8%84%91%e2%80%94%e2%80%94%e4%b8%8d%e6%98%af%e6%a2%a6%ef%bc%811/ [1]: http://www.junv.info/2010/09/19/%e8%93%9d%e7%89%99%e6%89%8b%e6%9c%ba%e6%8e%a7%e5%88%b6%e7%94%b5%e8%84%91%e2%80%94%e2%80%94%e4%b8%8d%e6%98%af%e6%a2%a6%ef%bc%811/
@@ -2,6 +2,7 @@
title: end of the summer title: end of the summer
author: wahyd4 author: wahyd4
layout: post layout: post
comments: true
permalink: /2010/09/end-of-the-summer/ permalink: /2010/09/end-of-the-summer/
categories: categories:
- 《 theLun》 - 《 theLun》
@@ -10,4 +11,4 @@ categories:
[<img class="alignnone size-medium wp-image-193" title="DSC02310_副本_副本" src="http://www.junv.info/wp-content/uploads/2010/09/DSC02310_副本_副本3-300x169.jpg" alt="" width="300" height="169" />][1] [<img class="alignnone size-medium wp-image-193" title="DSC02310_副本_副本" src="http://www.junv.info/wp-content/uploads/2010/09/DSC02310_副本_副本3-300x169.jpg" alt="" width="300" height="169" />][1]
[1]: http://www.junv.info/wp-content/uploads/2010/09/DSC02310_副本_副本3.jpg [1]: http://www.junv.info/wp-content/uploads/2010/09/DSC02310jpg
+2 -1
View File
@@ -2,6 +2,7 @@
title: 软件分享:Recuva(超强文件恢复软件) title: 软件分享:Recuva(超强文件恢复软件)
author: wahyd4 author: wahyd4
layout: post layout: post
comments: true
permalink: /2010/09/recuva/ permalink: /2010/09/recuva/
categories: categories:
- 头条推荐 - 头条推荐
@@ -56,4 +57,4 @@ tags:
[1]: http://www.junv.info/wp-content/uploads/2010/09/11w2.jpg [1]: http://www.junv.info/wp-content/uploads/2010/09/11w2.jpg
[2]: http://www.junv.info/wp-content/uploads/2010/09/asda.jpg [2]: http://www.junv.info/wp-content/uploads/2010/09/asda.jpg
[3]: http://www.junv.info/wp-content/uploads/2010/09/sdasd.jpg [3]: http://www.junv.info/wp-content/uploads/2010/09/sdasd.jpg
+2 -1
View File
@@ -2,6 +2,7 @@
title: 送腾讯企业邮箱邀请码啦! title: 送腾讯企业邮箱邀请码啦!
author: wahyd4 author: wahyd4
layout: post layout: post
comments: true
permalink: /2010/09/tencent/ permalink: /2010/09/tencent/
categories: categories:
- 我们爱分享 - 我们爱分享
@@ -198,4 +199,4 @@ tags:
[<img class="aligncenter size-medium wp-image-184" title="qiye" src="http://www.junv.info/wp-content/uploads/2010/09/qiye-300x150.png" alt="" width="300" height="150" />][1] [<img class="aligncenter size-medium wp-image-184" title="qiye" src="http://www.junv.info/wp-content/uploads/2010/09/qiye-300x150.png" alt="" width="300" height="150" />][1]
[1]: http://www.junv.info/wp-content/uploads/2010/09/qiye.png [1]: http://www.junv.info/wp-content/uploads/2010/09/qiye.png
+2 -1
View File
@@ -2,6 +2,7 @@
title: 那些刀光剑影的日子 title: 那些刀光剑影的日子
author: wahyd4 author: wahyd4
layout: post layout: post
comments: true
permalink: /2010/09/230/ permalink: /2010/09/230/
categories: categories:
- 头条推荐 - 头条推荐
@@ -81,4 +82,4 @@ CS是我们这代人中的神话,是永恒的经典,无论是人物系统,
[8]: http://www.junv.info/wp-content/uploads/2010/09/Guerilla-2.jpg [8]: http://www.junv.info/wp-content/uploads/2010/09/Guerilla-2.jpg
[9]: http://www.junv.info/wp-content/uploads/2010/09/d5cdbdb46aee81308bd4b29b.jpg [9]: http://www.junv.info/wp-content/uploads/2010/09/d5cdbdb46aee81308bd4b29b.jpg
[10]: http://www.junv.info/wp-content/uploads/2010/09/3442157490195162000.jpg [10]: http://www.junv.info/wp-content/uploads/2010/09/3442157490195162000.jpg
[11]: http://www.junv.info/wp-content/uploads/2010/09/1e3ae5dda13222ff76c63827.jpg [11]: http://www.junv.info/wp-content/uploads/2010/09/1e3ae5dda13222ff76c63827.jpg
@@ -1,6 +1,7 @@
--- ---
title: NIKITA/maggie Q title: NIKITA/maggie Q
author: wahyd4 author: wahyd4
comments: true
excerpt: > excerpt: >
美剧回归了。盼来了久违的《gossip 美剧回归了。盼来了久违的《gossip
girl》。除此之外还有一部新上的《Nikita》,是继《吸血鬼日记》之后美国CW电视台推出的又一部谍战电视连续剧, girl》。除此之外还有一部新上的《Nikita》,是继《吸血鬼日记》之后美国CW电视台推出的又一部谍战电视连续剧,
@@ -25,4 +26,4 @@ tags:
<span style="color: #ff0000;"><strong>NIKITA/maggie Q</strong></span><span style="font-size: 20px;"><span style="color: #ff0000;"><strong>《尼基塔 第一季》剧集免费下载:来自人人影视:</strong></span><a href="http://yyets.net/showresource-juji-624.html" target="_blank">点我进入下载</a></span> <span style="color: #ff0000;"><strong>NIKITA/maggie Q</strong></span><span style="font-size: 20px;"><span style="color: #ff0000;"><strong>《尼基塔 第一季》剧集免费下载:来自人人影视:</strong></span><a href="http://yyets.net/showresource-juji-624.html" target="_blank">点我进入下载</a></span>
[1]: http://www.junv.info/wp-content/uploads/2010/09/NIKITA.jpg [1]: http://www.junv.info/wp-content/uploads/2010/09/NIKITA.jpg
[2]: http://www.junv.info/wp-content/uploads/2010/09/Maggie-Q1.jpg [2]: http://www.junv.info/wp-content/uploads/2010/09/Maggie-Q1.jpg
+2 -1
View File
@@ -2,6 +2,7 @@
title: 一款很棒的wordpress 首页动画展示插件 title: 一款很棒的wordpress 首页动画展示插件
author: wahyd4 author: wahyd4
layout: post layout: post
comments: true
permalink: /2010/09/wordpress/ permalink: /2010/09/wordpress/
categories: categories:
- 头条推荐 - 头条推荐
@@ -34,4 +35,4 @@ Slide Transition Type 这是动画效果的选择,你可以根据你自己的
[1]: http://www.junv.info/wp-content/uploads/2010/09/8-15.png [1]: http://www.junv.info/wp-content/uploads/2010/09/8-15.png
[2]: http://www.junv.info/wp-content/uploads/2010/09/8-15-2.png [2]: http://www.junv.info/wp-content/uploads/2010/09/8-15-2.png
[3]: http://downloads.wordpress.org/plugin/featured-content-gallery.3.2.0.zip [3]: http://downloads.wordpress.org/plugin/featured-content-gallery.3.2.0.zip
+2 -1
View File
@@ -1,6 +1,7 @@
--- ---
title: F1 2010 现在可以下载啦! title: F1 2010 现在可以下载啦!
author: wahyd4 author: wahyd4
comments: true
excerpt: > excerpt: >
F1 2010 F1 2010
与9月22日发行了,作者第一时间在国内几个比较著名的单机游戏网站的醒目位置都看到介绍和下载链接!本人虽然不算一个游戏的狂热的追求者,但是对赛车和足球确实有着很深厚的感情,于是本人也在第一时间下载了游戏,进行试玩。 与9月22日发行了,作者第一时间在国内几个比较著名的单机游戏网站的醒目位置都看到介绍和下载链接!本人虽然不算一个游戏的狂热的追求者,但是对赛车和足球确实有着很深厚的感情,于是本人也在第一时间下载了游戏,进行试玩。
@@ -65,4 +66,4 @@ F1 2010 与9月22日发行了,作者第一时间在国内几个比较著名的
[2]: http://www.junv.info/wp-content/uploads/2010/09/33.jpg [2]: http://www.junv.info/wp-content/uploads/2010/09/33.jpg
[3]: http://www.junv.info/wp-content/uploads/2010/09/22.jpg [3]: http://www.junv.info/wp-content/uploads/2010/09/22.jpg
[4]: http://db.gamersky.com/Soft/ShowSoftDown.asp?UrlID=1&SoftID=25895 [4]: http://db.gamersky.com/Soft/ShowSoftDown.asp?UrlID=1&SoftID=25895
[5]: http://db.gamersky.com/Soft/ShowSoftDown.asp?UrlID=1&SoftID=25895&flag=1 [5]: http://db.gamersky.com/Soft/ShowSoftDown.asp?UrlID=1&SoftID=25895&flag=1
+2 -1
View File
@@ -2,6 +2,7 @@
title: 'UltraISO(软碟通)—>轻松做个超好用的u盘系统启动盘!' title: 'UltraISO(软碟通)—>轻松做个超好用的u盘系统启动盘!'
author: wahyd4 author: wahyd4
layout: post layout: post
comments: true
permalink: /2010/09/ultraiso/ permalink: /2010/09/ultraiso/
categories: categories:
- 头条推荐 - 头条推荐
@@ -74,4 +75,4 @@ UltraISO(软碟通)—>轻松做个超好用的u盘系统启动盘!
[2]: http://www.junv.info/wp-content/uploads/2010/09/21.png [2]: http://www.junv.info/wp-content/uploads/2010/09/21.png
[3]: http://www.junv.info/wp-content/uploads/2010/09/31.png [3]: http://www.junv.info/wp-content/uploads/2010/09/31.png
[4]: http://www.junv.info/wp-content/uploads/2010/09/41.png [4]: http://www.junv.info/wp-content/uploads/2010/09/41.png
[5]: http://www.junv.info/wp-content/uploads/2010/09/5.png [5]: http://www.junv.info/wp-content/uploads/2010/09/5.png
@@ -2,6 +2,7 @@
title: 明年今日。 title: 明年今日。
author: wahyd4 author: wahyd4
layout: post layout: post
comments: true
permalink: /2010/09/next-year-and-today/ permalink: /2010/09/next-year-and-today/
categories: categories:
- 《 theLun》 - 《 theLun》
@@ -14,4 +15,4 @@ categories:
过去几年,喜欢这首歌的原因或许仅仅只是因为旋律顺畅,然而随着年龄的增长人也变得越来越敏感,如今再听这首歌总会感慨于林夕直戳人心的词。 过去几年,喜欢这首歌的原因或许仅仅只是因为旋律顺畅,然而随着年龄的增长人也变得越来越敏感,如今再听这首歌总会感慨于林夕直戳人心的词。
凡若有过一段深刻的感情应该都会有感于此吧。此刻回想一年前的自己,是否也如当初一般认真且不舍又或是决绝呢。总有一个人会恋恋不舍。一年又一年地活在当年。只因为在有生的瞬间能遇到你,竞花光所有运气。 凡若有过一段深刻的感情应该都会有感于此吧。此刻回想一年前的自己,是否也如当初一般认真且不舍又或是决绝呢。总有一个人会恋恋不舍。一年又一年地活在当年。只因为在有生的瞬间能遇到你,竞花光所有运气。
@@ -2,6 +2,7 @@
title: 几个常用的网站,要记到哈! title: 几个常用的网站,要记到哈!
author: wahyd4 author: wahyd4
layout: post layout: post
comments: true
permalink: /2010/09/a-most-usefual-website/ permalink: /2010/09/a-most-usefual-website/
categories: categories:
- 我们爱分享 - 我们爱分享
@@ -56,4 +57,4 @@ tags:
[4]: http://www.junv.info/wp-content/uploads/2010/09/04e82f089da1c1d23ac763f5.jpg [4]: http://www.junv.info/wp-content/uploads/2010/09/04e82f089da1c1d23ac763f5.jpg
[5]: http://translate.google.com/ [5]: http://translate.google.com/
[6]: http://www.junv.info/wp-content/uploads/2010/09/3b430101a40919bde850cdd5.jpg [6]: http://www.junv.info/wp-content/uploads/2010/09/3b430101a40919bde850cdd5.jpg
[7]: http://www.junv.info/wp-content/uploads/2010/09/u42748670341659055255fm0gp0.gif [7]: http://www.junv.info/wp-content/uploads/2010/09/u42748670341659055255fm0gp0.gif
+2 -1
View File
@@ -2,6 +2,7 @@
title: 分享六级词汇供下载,只是因为我需要面对! title: 分享六级词汇供下载,只是因为我需要面对!
author: wahyd4 author: wahyd4
layout: post layout: post
comments: true
permalink: /2010/09/cet-6-2/ permalink: /2010/09/cet-6-2/
categories: categories:
- 头条推荐 - 头条推荐
@@ -53,4 +54,4 @@ tags:
<span style="font-style: normal;"> <a href="http://www.junv.info/wp-content/uploads/2010/09/2010大学英语六级词汇表-带音标-完美打印版-免费下载.doc">有音标版</a>(注意两种版本的单词有一些不同哦)</span> <span style="font-style: normal;"> <a href="http://www.junv.info/wp-content/uploads/2010/09/2010大学英语六级词汇表-带音标-完美打印版-免费下载.doc">有音标版</a>(注意两种版本的单词有一些不同哦)</span>
</address> </address>
[1]: http://www.junv.info/wp-content/uploads/2010/09/f14_24825251.jpg [1]: http://www.junv.info/wp-content/uploads/2010/09/f14_24825251.jpg
@@ -2,6 +2,7 @@
title: 教你一招:清除你电脑中的垃圾文件(很好用) title: 教你一招:清除你电脑中的垃圾文件(很好用)
author: wahyd4 author: wahyd4
layout: post layout: post
comments: true
permalink: /2010/09/remove-trashes/ permalink: /2010/09/remove-trashes/
categories: categories:
- 我们爱分享 - 我们爱分享
@@ -43,4 +44,4 @@ echo. & pause
<p style="text-align: center;"> <p style="text-align: center;">
<a href="http://www.junv.info/wp-content/uploads/2010/09/273e6263c0ac12610c33faa5.gif"></a><a href="http://www.junv.info/wp-content/uploads/2010/09/273e6263c0ac12610c33faa51.gif"><img class="aligncenter size-thumbnail wp-image-433" title="creation." src="http://www.junv.info/wp-content/uploads/2010/09/273e6263c0ac12610c33faa51-150x150.gif" alt="" width="150" height="150" /></a> <a href="http://www.junv.info/wp-content/uploads/2010/09/273e6263c0ac12610c33faa5.gif"></a><a href="http://www.junv.info/wp-content/uploads/2010/09/273e6263c0ac12610c33faa51.gif"><img class="aligncenter size-thumbnail wp-image-433" title="creation." src="http://www.junv.info/wp-content/uploads/2010/09/273e6263c0ac12610c33faa51-150x150.gif" alt="" width="150" height="150" /></a>
</p> </p>
+2 -1
View File
@@ -1,6 +1,7 @@
--- ---
title: Ucall title: Ucall
author: wahyd4 author: wahyd4
comments: true
excerpt: | excerpt: |
UUcall电脑电话宝,话费超低廉 UUcall电脑电话宝,话费超低廉
@@ -38,4 +39,4 @@ UUcall电脑电话宝,话费超低廉
然后用桌面上的软件即可使用,并拨打电话。 然后用桌面上的软件即可使用,并拨打电话。
[1]: http://www.junv.info/wp-content/uploads/2010/09/7f9fbd82614149e7bc3e1ecb1.jpg [1]: http://www.junv.info/wp-content/uploads/2010/09/7f9fbd82614149e7bc3e1ecb1.jpg
@@ -2,6 +2,7 @@
title: '第三届中国成都青年(大学生)电子商务创业大赛[全国的大学生,三年内毕业青年皆可参加哦]' title: '第三届中国成都青年(大学生)电子商务创业大赛[全国的大学生,三年内毕业青年皆可参加哦]'
author: wahyd4 author: wahyd4
layout: post layout: post
comments: true
permalink: /2010/09/a-competation/ permalink: /2010/09/a-competation/
categories: categories:
- 头条推荐 - 头条推荐
@@ -43,4 +44,4 @@ tags:
Fighting…… Fighting……
[1]: http://www.junv.info/wp-content/uploads/2010/09/111.jpg [1]: http://www.junv.info/wp-content/uploads/2010/09/111.jpg
+2 -1
View File
@@ -2,6 +2,7 @@
title: 魅族M9最新谍照??不是以前的哦 title: 魅族M9最新谍照??不是以前的哦
author: wahyd4 author: wahyd4
layout: post layout: post
comments: true
permalink: /2010/09/newest-m9/ permalink: /2010/09/newest-m9/
categories: categories:
- 头条推荐 - 头条推荐
@@ -25,4 +26,4 @@ tags:
   
[1]: http://toozhao.com/wp-content/uploads/2010/11/ceJnKbnU8GiY.jpg [1]: http://toozhao.com/wp-content/uploads/2010/11/ceJnKbnU8GiY.jpg
@@ -2,6 +2,7 @@
title: Google地图,卫星定位! title: Google地图,卫星定位!
author: wahyd4 author: wahyd4
layout: post layout: post
comments: true
permalink: /2010/10/google-earth/ permalink: /2010/10/google-earth/
categories: categories:
- 我们爱分享 - 我们爱分享
@@ -37,4 +38,4 @@ Google地图可以分为两类,当你使用地图选项时,查找的地点
谷歌地图(<a href="http://baike.baidu.com/view/271894.htm" target="_blank">Google Maps</a>)是 Google 公司提供的电子地图服务,包括局部详细的卫星照片。能提供三种视图:一是矢量地图(传统地图),可提供政区和交通以及商业信息;二是不同分辨率的卫星照片(俯视图,跟 Google Earth 上的卫星照片基本一样);三是地形视图,可以用以显示地形和等高线。它的姊妹产品是<a href="http://baike.baidu.com/view/18437.htm" target="_blank">Google Earth</a>。 谷歌地图(<a href="http://baike.baidu.com/view/271894.htm" target="_blank">Google Maps</a>)是 Google 公司提供的电子地图服务,包括局部详细的卫星照片。能提供三种视图:一是矢量地图(传统地图),可提供政区和交通以及商业信息;二是不同分辨率的卫星照片(俯视图,跟 Google Earth 上的卫星照片基本一样);三是地形视图,可以用以显示地形和等高线。它的姊妹产品是<a href="http://baike.baidu.com/view/18437.htm" target="_blank">Google Earth</a>。
[1]: http://www.junv.info/wp-content/uploads/2010/10/tupian.jpg [1]: http://www.junv.info/wp-content/uploads/2010/10/tupian.jpg
[2]: http://www.junv.info/wp-content/uploads/2010/10/n.jpg [2]: http://www.junv.info/wp-content/uploads/2010/10/n.jpg
@@ -2,6 +2,7 @@
title: 九寨沟。黄龙(美图) title: 九寨沟。黄龙(美图)
author: wahyd4 author: wahyd4
layout: post layout: post
comments: true
permalink: /2010/10/jiu-zai-gou/ permalink: /2010/10/jiu-zai-gou/
categories: categories:
- 头条推荐 - 头条推荐
@@ -24,4 +25,4 @@ tags:
[4]: http://www.junv.info/wp-content/uploads/2010/10/SAM_1209_conew1.jpg [4]: http://www.junv.info/wp-content/uploads/2010/10/SAM_1209_conew1.jpg
[5]: http://www.junv.info/wp-content/uploads/2010/10/SAM_1202_conew1.jpg [5]: http://www.junv.info/wp-content/uploads/2010/10/SAM_1202_conew1.jpg
[6]: http://www.junv.info/wp-content/uploads/2010/10/SAM_1198_conew1.jpg [6]: http://www.junv.info/wp-content/uploads/2010/10/SAM_1198_conew1.jpg
[7]: http://www.junv.info/wp-content/uploads/2010/10/SAM_1190_conew1.jpg [7]: http://www.junv.info/wp-content/uploads/2010/10/SAM_1190_conew1.jpg
+2 -1
View File
@@ -1,6 +1,7 @@
--- ---
title: 游戏推荐——private title: 游戏推荐——private
author: wahyd4 author: wahyd4
comments: true
excerpt: > excerpt: >
在浏览网页时,笔者偶然发现了这款名为《private》的游戏,有些直译成中文又叫“私处”但是总觉得这个名字有点不太尊重女性朋友一样。这个姑且放过不提。 在浏览网页时,笔者偶然发现了这款名为《private》的游戏,有些直译成中文又叫“私处”但是总觉得这个名字有点不太尊重女性朋友一样。这个姑且放过不提。
layout: post layout: post
@@ -28,4 +29,4 @@ tags:
**对了 忘记说的一点是这款游戏看起来小巧可是貌似对机器配置的要求有点高,所以如果机器配置过低的童鞋可以在设置里面把游戏效果尽可能的调低点。如果还有什么问题的话  可以留言相互讨论,希望有高手能够看见解决一下!** **对了 忘记说的一点是这款游戏看起来小巧可是貌似对机器配置的要求有点高,所以如果机器配置过低的童鞋可以在设置里面把游戏效果尽可能的调低点。如果还有什么问题的话  可以留言相互讨论,希望有高手能够看见解决一下!**
[1]: ed2k://|file|%5B%E7%A7%81%E5%A4%84%5D.privates.exe |100129178|b6ee25991d267336e4e183ec6c936b58|h =ustp4csd3ezxngtfz6t7cdghrbmu6j3j|/ [1]: ed2k://|file|%5B%E7%A7%81%E5%A4%84%5D.privates.exe |100129178|b6ee25991d267336e4e183ec6c936b58|h =ustp4csd3ezxngtfz6t7cdghrbmu6j3j|/
+2 -1
View File
@@ -1,6 +1,7 @@
--- ---
title: QQ阅读——像艺术一样阅读 title: QQ阅读——像艺术一样阅读
author: wahyd4 author: wahyd4
comments: true
excerpt: > excerpt: >
笔者今天偶然登录QQ邮箱,发现了QQ阅读这个东西(现在还处于beta版本)。于是我便试着开始使用这个东西。用过之后,的确我被这样一个艺术品一样的东西给镇住了,它的界面是如此漂亮,让人惊艳不已。 笔者今天偶然登录QQ邮箱,发现了QQ阅读这个东西(现在还处于beta版本)。于是我便试着开始使用这个东西。用过之后,的确我被这样一个艺术品一样的东西给镇住了,它的界面是如此漂亮,让人惊艳不已。
layout: post layout: post
@@ -31,4 +32,4 @@ categories:
[1]: http://www.junv.info/wp-content/uploads/2010/10/11sa.jpg [1]: http://www.junv.info/wp-content/uploads/2010/10/11sa.jpg
[2]: http://www.junv.info/wp-content/uploads/2010/10/red.jpg [2]: http://www.junv.info/wp-content/uploads/2010/10/red.jpg
[3]: http://www.junv.info/wp-content/uploads/2010/10/hahasd.jpg [3]: http://www.junv.info/wp-content/uploads/2010/10/hahasd.jpg
@@ -1,12 +1,13 @@
--- ---
title: 备战四级! title: 备战四级!
author: wahyd4 author: wahyd4
comments: true
excerpt: | excerpt: |
马上要四级考试。 马上要四级考试。
那么四级的分数是怎安排的呢?我们又应把重点发在哪里呢? 那么四级的分数是怎安排的呢?我们又应把重点发在哪里呢?
四级中:听力部分35% ,249分 四级中:听力部分35% ,249分
阅读理解为35% 249分 阅读理解为35% 249分
layout: post layout: post
permalink: /2010/10/prepare-cet-4/ permalink: /2010/10/prepare-cet-4/
@@ -52,4 +53,4 @@ categories:
可以从<http://www.hxen.com/englishlistening/cet4/>中下载。 可以从<http://www.hxen.com/englishlistening/cet4/>中下载。
翻译与完形填空、选词填空都需要平时词汇的积累,所以从现在起,要开始好好学习。 翻译与完形填空、选词填空都需要平时词汇的积累,所以从现在起,要开始好好学习。
+2 -1
View File
@@ -1,6 +1,7 @@
--- ---
title: .tk顶级域名免费注册啦 title: .tk顶级域名免费注册啦
author: wahyd4 author: wahyd4
comments: true
excerpt: | excerpt: |
笔者在浏览网页时,发现一个可以免费注册的顶级域名,而且还比较短哦。那就是.tk 笔者在浏览网页时,发现一个可以免费注册的顶级域名,而且还比较短哦。那就是.tk
@@ -38,4 +39,4 @@ tags:
如果个别童鞋仍然搞不懂域名注册,请在后门留言吧,我会尽快帮你解决的。 如果个别童鞋仍然搞不懂域名注册,请在后门留言吧,我会尽快帮你解决的。
[1]: http://www.junv.info/wp-content/uploads/2010/10/regdom.jpg [1]: http://www.junv.info/wp-content/uploads/2010/10/regdom.jpg
[2]: http://www.junv.info/wp-content/uploads/2010/10/reg1.jpg [2]: http://www.junv.info/wp-content/uploads/2010/10/reg1.jpg
@@ -1,6 +1,7 @@
--- ---
title: 虾米正版音乐免费下载 title: 虾米正版音乐免费下载
author: wahyd4 author: wahyd4
comments: true
excerpt: > excerpt: >
也许很多在网上听歌的童鞋都知道虾米这个网站吧,他是一个web 也许很多在网上听歌的童鞋都知道虾米这个网站吧,他是一个web
2.0 2.0
@@ -41,4 +42,4 @@ tags:
虾米地址:<http://www.xiami.com/> 虾米地址:<http://www.xiami.com/>
虾歌下载地址:<http://www.xiami.com/software> 虾歌下载地址:<http://www.xiami.com/software>
+4 -3
View File
@@ -1,9 +1,10 @@
--- ---
title: 提个神。 title: 提个神。
author: wahyd4 author: wahyd4
comments: true
excerpt: | excerpt: |
晚餐时间。各位吃过了吗?来欣赏一下这张颇具艺术感的图片吧。 晚餐时间。各位吃过了吗?来欣赏一下这张颇具艺术感的图片吧。
出自哪位摄影师之手本人目前尚未知。只是看着这张图不由会想起余华的《兄弟》里对于那些个“屁股”的描写。 出自哪位摄影师之手本人目前尚未知。只是看着这张图不由会想起余华的《兄弟》里对于那些个“屁股”的描写。
layout: post layout: post
permalink: /2010/10/haha/ permalink: /2010/10/haha/
@@ -21,4 +22,4 @@ categories:
构图也非常棒。不仅重点突出,更是让观众的视线随着后背脊柱而一直向前延伸。展开的五指使人感受到人体的力量。 构图也非常棒。不仅重点突出,更是让观众的视线随着后背脊柱而一直向前延伸。展开的五指使人感受到人体的力量。
人体摄影不过艺术,你我皆非专业人士,全当娱乐欣赏罢。只是不知图中之物所属雌雄。您觉得呢? 人体摄影不过艺术,你我皆非专业人士,全当娱乐欣赏罢。只是不知图中之物所属雌雄。您觉得呢?
@@ -1,6 +1,7 @@
--- ---
title: 巨经典的网页游戏《三国杀》 title: 巨经典的网页游戏《三国杀》
author: wahyd4 author: wahyd4
comments: true
excerpt: > excerpt: >
作为一个忠实的三国粉丝,今天为大家推荐一款虽然有点落伍的三国游戏《三国杀》,但是它的可玩性很不错哦!可以算是网页游戏中比较有内涵,有质量的精品! 作为一个忠实的三国粉丝,今天为大家推荐一款虽然有点落伍的三国游戏《三国杀》,但是它的可玩性很不错哦!可以算是网页游戏中比较有内涵,有质量的精品!
layout: post layout: post
@@ -26,6 +27,6 @@ categories:
《三国杀》,看谁不爽,就杀谁。你,还等什么呢? 《三国杀》,看谁不爽,就杀谁。你,还等什么呢?
[1]: http://www.junv.info/wp-content/uploads/2010/10/图片1.jpg [1]: http://www.junv.info/wp-content/uploads/2010/10/1.jpg
[2]: http://www.junv.info/wp-content/uploads/2010/10/f2264e2cd53cfcde8813996f.jpg [2]: http://www.junv.info/wp-content/uploads/2010/10/f2264e2cd53cfcde8813996f.jpg
[3]: http://www.junv.info/wp-content/uploads/2010/10/图片2.jpg [3]: http://www.junv.info/wp-content/uploads/2010/10/2.jpg
+2 -1
View File
@@ -1,6 +1,7 @@
--- ---
title: 为您学习网络安全知识 搭建一个简单而快捷的平台 title: 为您学习网络安全知识 搭建一个简单而快捷的平台
author: wahyd4 author: wahyd4
comments: true
excerpt: > excerpt: >
当我们在使用电脑的时候,或多或少会遇到有关网络安全的问题,我们是否懂呢?我们或许对人难以启齿的问,可是自己也不免有不知道的时候,那就请你看看下面的内容吧。希望对你们有所帮助。 当我们在使用电脑的时候,或多或少会遇到有关网络安全的问题,我们是否懂呢?我们或许对人难以启齿的问,可是自己也不免有不知道的时候,那就请你看看下面的内容吧。希望对你们有所帮助。
layout: post layout: post
@@ -47,4 +48,4 @@ tags:
<http://kekex.com/a/201001/041032.html> <http://kekex.com/a/201001/041032.html>
[1]: http://www.junv.info/wp-content/uploads/2010/10/200914135159.jpg [1]: http://www.junv.info/wp-content/uploads/2010/10/200914135159.jpg
@@ -1,6 +1,7 @@
--- ---
title: 几款google chrome浏览器扩展程序(app title: 几款google chrome浏览器扩展程序(app
author: wahyd4 author: wahyd4
comments: true
excerpt: > excerpt: >
笔者作为一个忠实的chrome粉丝,一直坚持用chrome浏览器,除了淘宝和网银这些不得不用IE。老实说你用过了chrome 笔者作为一个忠实的chrome粉丝,一直坚持用chrome浏览器,除了淘宝和网银这些不得不用IE。老实说你用过了chrome
你就一点也不想再回去用IE 8这样的蜗牛浏览器,用chrome 你就一点也不想再回去用IE 8这样的蜗牛浏览器,用chrome
@@ -46,8 +47,8 @@ tags:
[1]: https://chrome.google.com/extensions?hl=zh-CN [1]: https://chrome.google.com/extensions?hl=zh-CN
[2]: https://chrome.google.com/extensions/detail/alelhddbbhepgpmgidjdcjakblofbmce [2]: https://chrome.google.com/extensions/detail/alelhddbbhepgpmgidjdcjakblofbmce
[3]: http://www.junv.info/wp-content/uploads/2010/10/下载_conew1.jpg [3]: http://www.junv.info/wp-content/uploads/2010/10/_conew1.jpg
[4]: https://chrome.google.com/extensions/detail/dbpojpfdiliekbbiplijcphappgcgjfn [4]: https://chrome.google.com/extensions/detail/dbpojpfdiliekbbiplijcphappgcgjfn
[5]: http://www.junv.info/wp-content/uploads/2010/10/QQ截图未命名.jpg [5]: http://www.junv.info/wp-content/uploads/2010/10/Q.jpg
[6]: https://chrome.google.com/extensions/detail/lambangeielkjcnmioccboaphdfcffib [6]: https://chrome.google.com/extensions/detail/lambangeielkjcnmioccboaphdfcffib
[7]: http://www.junv.info/wp-content/uploads/2010/10/1132sdasaz.jpg [7]: http://www.junv.info/wp-content/uploads/2010/10/1132sdasaz.jpg
+2 -1
View File
@@ -1,6 +1,7 @@
--- ---
title: 且说M9 title: 且说M9
author: wahyd4 author: wahyd4
comments: true
excerpt: > excerpt: >
M9这个名字已经出现了N久N久,从最开始说有tds-cdma 和wcdma M9这个名字已经出现了N久N久,从最开始说有tds-cdma 和wcdma
两个版本,到现在M9只有WCDMA版本。一款手机让我们等了太久,太久。 两个版本,到现在M9只有WCDMA版本。一款手机让我们等了太久,太久。
@@ -31,4 +32,4 @@ M9这个名字已经出现了N久N久,从最开始说有tds-cdma 和wcdma 两
附上M9最新图片一张:[<img class="aligncenter size-full wp-image-606" title="734f12f3bc2bba8c0b46e00e" src="http://www.junv.info/wp-content/uploads/2010/10/734f12f3bc2bba8c0b46e00e.jpg" alt="" width="640" height="480" />][1] 附上M9最新图片一张:[<img class="aligncenter size-full wp-image-606" title="734f12f3bc2bba8c0b46e00e" src="http://www.junv.info/wp-content/uploads/2010/10/734f12f3bc2bba8c0b46e00e.jpg" alt="" width="640" height="480" />][1]
[1]: http://www.junv.info/wp-content/uploads/2010/10/734f12f3bc2bba8c0b46e00e.jpg [1]: http://www.junv.info/wp-content/uploads/2010/10/734f12f3bc2bba8c0b46e00e.jpg
@@ -1,6 +1,7 @@
--- ---
title: 传说中的JAVA四大名著 title: 传说中的JAVA四大名著
author: wahyd4 author: wahyd4
comments: true
layout: post layout: post
permalink: /2010/10/java-best-four/ permalink: /2010/10/java-best-four/
categories: categories:
@@ -160,7 +161,7 @@ JAVA 2核心技术 卷II:高级特性(原书第7版)———Cay Horstmann
> >
> <span style="color: #ff0000;"><strong>请你支持我们的网站,而不是做一个来了下了就走了!如不能下载,请告知我们,我们会尽快发到你的电子邮箱</strong></span> > <span style="color: #ff0000;"><strong>请你支持我们的网站,而不是做一个来了下了就走了!如不能下载,请告知我们,我们会尽快发到你的电子邮箱</strong></span>
[1]: http://www.junv.info/wp-content/uploads/2010/10/Java编程语言(第三版).jpg [1]: http://www.junv.info/wp-content/uploads/2010/10/.jpg
[2]: http://www.junv.info/wp-content/uploads/2010/10/Java编程思想(第2版).jpg [2]: http://www.junv.info/wp-content/uploads/2010/10/Java.jpg
[3]: http://www.junv.info/wp-content/uploads/2010/10/Java编程思想:第3版.jpg [3]: http://www.junv.info/wp-content/uploads/2010/10/Java.jpg
[4]: http://www.junv.info/wp-content/uploads/2010/10/JAVA-2核心技术-卷I:基础知识(原书第7版).jpg [4]: http://www.junv.info/wp-content/uploads/2010/10/JAVA-2.jpg
@@ -1,6 +1,7 @@
--- ---
title: '整理并提升计算机速度,SpeedUpMyPc评测&#038;下载' title: '整理并提升计算机速度,SpeedUpMyPc评测&#038;下载'
author: wahyd4 author: wahyd4
comments: true
excerpt: > excerpt: >
也许每个人有时都会不经意间发现自己的电脑变得很慢,连打开本地的文件夹都感觉不是很流畅,这种感觉可能在windows 也许每个人有时都会不经意间发现自己的电脑变得很慢,连打开本地的文件夹都感觉不是很流畅,这种感觉可能在windows
7上比windows xp 7上比windows xp
@@ -50,4 +51,4 @@ categories:
[2]: http://www.junv.info/wp-content/uploads/2010/10/21.jpg [2]: http://www.junv.info/wp-content/uploads/2010/10/21.jpg
[3]: http://www.junv.info/wp-content/uploads/2010/10/31.jpg [3]: http://www.junv.info/wp-content/uploads/2010/10/31.jpg
[4]: http://www.junv.info/wp-content/uploads/2010/10/41.jpg [4]: http://www.junv.info/wp-content/uploads/2010/10/41.jpg
[5]: http://u.115.com/file/f136f6643 [5]: http://u.115.com/file/f136f6643
+2 -1
View File
@@ -1,6 +1,7 @@
--- ---
title: SQL入门经典(第4版)附下载 title: SQL入门经典(第4版)附下载
author: wahyd4 author: wahyd4
comments: true
layout: post layout: post
permalink: /2010/10/sql/ permalink: /2010/10/sql/
categories: categories:
@@ -114,4 +115,4 @@ tags:
**<span style="color: #ff0000;">附卓越购买链接:<a href="http://www.amazon.cn/SQL%E5%85%A5%E9%97%A8%E7%BB%8F%E5%85%B8-Ryan-Stephens/dp/B0025VJVWK">购买</a></span>** **<span style="color: #ff0000;">附卓越购买链接:<a href="http://www.amazon.cn/SQL%E5%85%A5%E9%97%A8%E7%BB%8F%E5%85%B8-Ryan-Stephens/dp/B0025VJVWK">购买</a></span>**
[1]: http://www.junv.info/wp-content/uploads/2010/10/51pYWZH59eL._BO2204203200_PIsitb-sticker-arrow-clickTopRight35-76_AA240_SH20_OU28_.jpg [1]: http://www.junv.info/wp-content/uploads/2010/10/51pYWZH59eL._BO2204203200_PIsitb-sticker-arrow-clickTopRight35-76_AA240_SH20_OU28_.jpg
[2]: http://u.115.com/file/f165f38b6c [2]: http://u.115.com/file/f165f38b6c
@@ -1,6 +1,7 @@
--- ---
title: 粘粘世界(World of Goo) 汉化版 下载 title: 粘粘世界(World of Goo) 汉化版 下载
author: wahyd4 author: wahyd4
comments: true
excerpt: > excerpt: >
这是一款很值得玩的游戏,也许可以这样说吧,我觉得并不必植物大战僵尸差。别看游戏大小只有70多M,可是却又很多关卡,而且游戏的画面美工也做得相当不错。都是2D的效果,加上那些音乐,这个游戏给人的感觉就是特别地震撼。 这是一款很值得玩的游戏,也许可以这样说吧,我觉得并不必植物大战僵尸差。别看游戏大小只有70多M,可是却又很多关卡,而且游戏的画面美工也做得相当不错。都是2D的效果,加上那些音乐,这个游戏给人的感觉就是特别地震撼。
layout: post layout: post
@@ -30,4 +31,4 @@ tags:
下载:<span style="text-decoration: underline;"><strong><a href="http://www.xiazaiba.com/html/241.html" target="_blank">点我下载</a></strong></span> 下载:<span style="text-decoration: underline;"><strong><a href="http://www.xiazaiba.com/html/241.html" target="_blank">点我下载</a></strong></span>
[1]: http://www.junv.info/wp-content/uploads/2010/10/928_1272447245_9825.jpg [1]: http://www.junv.info/wp-content/uploads/2010/10/928_1272447245_9825.jpg
[2]: http://www.junv.info/wp-content/uploads/2010/10/928_1272447245_95561.jpg [2]: http://www.junv.info/wp-content/uploads/2010/10/928_1272447245_95561.jpg
@@ -1,6 +1,7 @@
--- ---
title: '格式转换:音频、视频、图片->想要什么格式就有什么格式!' title: '格式转换:音频、视频、图片->想要什么格式就有什么格式!'
author: wahyd4 author: wahyd4
comments: true
excerpt: | excerpt: |
软件名称:格式工厂 软件名称:格式工厂
@@ -48,4 +49,4 @@ AuthorZhong   Liang
[3]: http://www.junv.info/wp-content/uploads/2010/10/3.png [3]: http://www.junv.info/wp-content/uploads/2010/10/3.png
[4]: http://www.junv.info/wp-content/uploads/2010/10/4.png [4]: http://www.junv.info/wp-content/uploads/2010/10/4.png
[5]: http://www.junv.info/wp-content/uploads/2010/10/5.png [5]: http://www.junv.info/wp-content/uploads/2010/10/5.png
[6]: http://www.junv.info/wp-content/uploads/2010/10/61.png [6]: http://www.junv.info/wp-content/uploads/2010/10/61.png
@@ -1,6 +1,7 @@
--- ---
title: Google Picasa 可以访问了? title: Google Picasa 可以访问了?
author: wahyd4 author: wahyd4
comments: true
excerpt: > excerpt: >
本来今天作者想来试验前些天以为有人介绍的用http://picasaweb.google.com.jp来访问Picasa,可是我今天用我的chrome 本来今天作者想来试验前些天以为有人介绍的用http://picasaweb.google.com.jp来访问Picasa,可是我今天用我的chrome
打开这个这个网址是,网址直接调到http://picasaweb.google.com/home 打开这个这个网址是,网址直接调到http://picasaweb.google.com/home
@@ -42,4 +43,4 @@ tags:
<p style="text-align: center;"> <p style="text-align: center;">
<a href="http://www.junv.info/734.html" target="_blank">免费VPNTenacy</a> <a href="http://www.junv.info/734.html" target="_blank">免费VPNTenacy</a>
</p> </p>
</blockquote> </blockquote>
+2 -1
View File
@@ -1,6 +1,7 @@
--- ---
title: 禅意花园——CSS网页经典案例 title: 禅意花园——CSS网页经典案例
author: wahyd4 author: wahyd4
comments: true
layout: post layout: post
permalink: /2010/11/san-css/ permalink: /2010/11/san-css/
categories: categories:
@@ -38,4 +39,4 @@ CSS禅意花园是一位加拿大设计师Dava Shea创建的,他在网站设
[2]: http://www.csszengarden.com/ [2]: http://www.csszengarden.com/
[3]: /images/2010/11/u4243068223183409904fm15gp0.gif [3]: /images/2010/11/u4243068223183409904fm15gp0.gif
[4]: /images/2010/11/7f9fbd82614149e7bc3e1ecb.jpg [4]: /images/2010/11/7f9fbd82614149e7bc3e1ecb.jpg
[5]: http://www.zengarden.com/ [5]: http://www.zengarden.com/
+2 -1
View File
@@ -1,6 +1,7 @@
--- ---
title: 免费VPNTenacy title: 免费VPNTenacy
author: wahyd4 author: wahyd4
comments: true
excerpt: | excerpt: |
相信大家都有这样的经历吧,你想浏览国外的一些网站。比如查一些资料啊等等。可是直接访问却访问不了。那真叫悲剧啊。 相信大家都有这样的经历吧,你想浏览国外的一些网站。比如查一些资料啊等等。可是直接访问却访问不了。那真叫悲剧啊。
@@ -66,4 +67,4 @@ categories:
<p style="text-align: left;"> <p style="text-align: left;">
好了,说完了,想要的同学们快试试吧。不错哦。 好了,说完了,想要的同学们快试试吧。不错哦。
</p> </p>
@@ -1,6 +1,7 @@
--- ---
title: 《Google改变生活》好书推荐 title: 《Google改变生活》好书推荐
author: wahyd4 author: wahyd4
comments: true
excerpt: > excerpt: >
今天在学校图书馆看书,看到新书架上到了这样一本书《google 今天在学校图书馆看书,看到新书架上到了这样一本书《google
改变生活》。我很好奇,在谷歌离开中国内地以后还会有专门写google的非技术性的文章。 改变生活》。我很好奇,在谷歌离开中国内地以后还会有专门写google的非技术性的文章。
@@ -79,4 +80,4 @@ tags:
这里给大家提供在线阅读的链接: 这里给大家提供在线阅读的链接:
<a href="http://book.51cto.com/art/201004/195034.htm" target="_blank">点我阅读</a> <a href="http://book.51cto.com/art/201004/195034.htm" target="_blank">点我阅读</a>
+2 -1
View File
@@ -1,6 +1,7 @@
--- ---
title: 卡巴斯基免费啦 title: 卡巴斯基免费啦
author: wahyd4 author: wahyd4
comments: true
excerpt: > excerpt: >
在此360与QQ鏖战之际,卡巴斯基给我们送来了一丝微风。卡巴斯基赠送旗下的高端安全软件,卡巴斯基安全部队2011 在此360与QQ鏖战之际,卡巴斯基给我们送来了一丝微风。卡巴斯基赠送旗下的高端安全软件,卡巴斯基安全部队2011
一年的免费使用权。希望广大同学听到消息后火速到卡巴网站填写你的邮箱,申请激活码。 一年的免费使用权。希望广大同学听到消息后火速到卡巴网站填写你的邮箱,申请激活码。
@@ -26,4 +27,4 @@ tags:
[<img class="aligncenter size-full wp-image-748" title="11-4-6" src="/images/2010/11/11-4-6.jpg" alt="" width="636" height="253" />][1] [<img class="aligncenter size-full wp-image-748" title="11-4-6" src="/images/2010/11/11-4-6.jpg" alt="" width="636" height="253" />][1]
[1]: /images/2010/11/11-4-6.jpg [1]: /images/2010/11/11-4-6.jpg
+2 -1
View File
@@ -1,6 +1,7 @@
--- ---
title: 年度游戏大作——使命召唤7完美破解版下载 title: 年度游戏大作——使命召唤7完美破解版下载
author: wahyd4 author: wahyd4
comments: true
excerpt: '《使命召唤:黑色行动》(Call of Duty: Black Ops)是Activision公司出品的著名FPS游戏《使命召唤》系列的第七部,故事设定在越南战争与北极、古巴等一些冷战地区。' excerpt: '《使命召唤:黑色行动》(Call of Duty: Black Ops)是Activision公司出品的著名FPS游戏《使命召唤》系列的第七部,故事设定在越南战争与北极、古巴等一些冷战地区。'
layout: post layout: post
permalink: /2010/11/call-of-duty-7/ permalink: /2010/11/call-of-duty-7/
@@ -66,4 +67,4 @@ System requirements:
附3DM论坛使命召唤 7游戏发布地址:<http://bbs.3dmgame.com/showtopic-1564026-1.html> 需要注册哦。 附3DM论坛使命召唤 7游戏发布地址:<http://bbs.3dmgame.com/showtopic-1564026-1.html> 需要注册哦。
[1]: /images/2010/11/20101025160542364.jpg [1]: /images/2010/11/20101025160542364.jpg
[2]: /images/2010/11/11-9_conew1.jpg [2]: /images/2010/11/11-9_conew1.jpg
+32 -31
View File
@@ -1,6 +1,7 @@
--- ---
title: Java双重循环的典型应用(九九乘法表) title: Java双重循环的典型应用(九九乘法表)
author: wahyd4 author: wahyd4
comments: true
excerpt: > excerpt: >
刚才正好在看JAVA的双重循环这一块,然后突然就想到了很经典的九九乘法表。因为我们之前C语言里面也写过这样的程序。所以我就试着写这个程序。 刚才正好在看JAVA的双重循环这一块,然后突然就想到了很经典的九九乘法表。因为我们之前C语言里面也写过这样的程序。所以我就试着写这个程序。
layout: post layout: post
@@ -13,40 +14,40 @@ tags:
刚才正好在看JAVA的双重循环这一块,然后突然就想到了很经典的九九乘法表。因为我们之前C语言里面也写过这样的程序。所以我就试着写这个程序。确实在试的过程中还是发现很多问题和值得注意的地方。下面慢慢说来。 刚才正好在看JAVA的双重循环这一块,然后突然就想到了很经典的九九乘法表。因为我们之前C语言里面也写过这样的程序。所以我就试着写这个程序。确实在试的过程中还是发现很多问题和值得注意的地方。下面慢慢说来。
用JAVA写的九九乘法表。 用JAVA写的九九乘法表。
<pre class="brush: java; title: ; notranslate" title="">{ <pre class="brush: java; title: ; notranslate" title="">{
public static void main(String[] args) public static void main(String[] args)
{ {
int a,b,s; int a,b,s;
for (a=1;a&lt;=9 ;a++ ) for (a=1;a&lt;=9 ;a++ )
{ {
for(b=1;b&lt;=a;b++) for(b=1;b&lt;=a;b++)
{ {
s=a*b; s=a*b;
System.out.print(a+"*"+b+"="+s); System.out.print(a+"*"+b+"="+s);
System.out.print("  "); System.out.print("  ");
} }
System.out.println(); System.out.println();
} }
} }
} }
</pre> </pre>
<span style="color: #000000;">用C语言写的九九乘法表</span> <span style="color: #000000;">用C语言写的九九乘法表</span>
<pre class="brush: cpp; title: ; notranslate" title="">#include "stdio.h"    //九九乘法表。 <pre class="brush: cpp; title: ; notranslate" title="">#include "stdio.h"    //九九乘法表。
void main() void main()
{ {
int i,j,s; int i,j,s;
for (i=1;i&lt;=9;i++) for (i=1;i&lt;=9;i++)
{ {
for(j=1;j&lt;=i;j++) for(j=1;j&lt;=i;j++)
{  s=i*j; {  s=i*j;
printf ("%d*%d=%-4d",i,j,s); printf ("%d*%d=%-4d",i,j,s);
} }
printf ("n") ; printf ("n") ;
} }
} }
</pre> </pre>
这个是没用使用空格 这个是没用使用空格
@@ -56,4 +57,4 @@ printf ("n") ;
<span style="color: #0000ff;"><strong> <span style="color: #000000;">其实通过比较我们就可以很容易看到,这个 程序JAVA和C的代码都是差不多的。只是细节上有一些变化。有个不同就是我不不知道JAVA里面有没有类似</span></strong><span style="color: #0000ff;"><strong> printf (“%d*%d=%-4d”,i,j,s);这样的语句。即实现左对齐。</strong></span></span><span style="color: #000000;">于是我在JAVA里面想到了这样一个办法。再输出一行,让它打印空格就好。</span> <span style="color: #0000ff;"><strong> <span style="color: #000000;">其实通过比较我们就可以很容易看到,这个 程序JAVA和C的代码都是差不多的。只是细节上有一些变化。有个不同就是我不不知道JAVA里面有没有类似</span></strong><span style="color: #0000ff;"><strong> printf (“%d*%d=%-4d”,i,j,s);这样的语句。即实现左对齐。</strong></span></span><span style="color: #000000;">于是我在JAVA里面想到了这样一个办法。再输出一行,让它打印空格就好。</span>
**<span style="color: #0000ff;"> System.out.print(a+”*”+b+”=”+s);<br /> System.out.print(“  ”);</span>** **<span style="color: #0000ff;"> System.out.print(a+”*”+b+”=”+s);<br /> System.out.print(“  ”);</span>**
**<span style="color: #0000ff;">当然我也试过这样一种方法。即System.out.print(a+”*”+b+”=”+s “     ”)但是通过编译发现这样是行不通的。</span>** **<span style="color: #0000ff;">当然我也试过这样一种方法。即System.out.print(a+”*”+b+”=”+s “     ”)但是通过编译发现这样是行不通的。</span>**
**<span style="color: #0000ff;"> 还有一个就是我晓得了那个String ()agrs .它其实就是一个数组其实相当于是程序比不可少的东西,不管怎样你都要写出来,但是你还是可以选择不在程序里面使用它。</span>** **<span style="color: #0000ff;"> 还有一个就是我晓得了那个String ()agrs .它其实就是一个数组其实相当于是程序比不可少的东西,不管怎样你都要写出来,但是你还是可以选择不在程序里面使用它。</span>**
+2 -1
View File
@@ -1,6 +1,7 @@
--- ---
title: 超越itunes的音乐播放软件Zune title: 超越itunes的音乐播放软件Zune
author: wahyd4 author: wahyd4
comments: true
excerpt: > excerpt: >
如果以前你以为只有苹果的itunes播放器可以很华丽的话,那现在你就错了,微软的Zune 如果以前你以为只有苹果的itunes播放器可以很华丽的话,那现在你就错了,微软的Zune
我觉得比苹果的itunes更加华丽,更加完美。同样他们都是依附于产品而生存的。 我觉得比苹果的itunes更加华丽,更加完美。同样他们都是依附于产品而生存的。
@@ -62,4 +63,4 @@ categories:
下面附上官方的下载地址(目前这个播放器只有英语版本,切大小大概100M左右。):<a href="http://www.zune.net/zh-HK/products/software/download/default.htm" target="_blank">点我下载 </a> 下面附上官方的下载地址(目前这个播放器只有英语版本,切大小大概100M左右。):<a href="http://www.zune.net/zh-HK/products/software/download/default.htm" target="_blank">点我下载 </a>
</p> </p>
<p style="text-align: center;"> <p style="text-align: center;">
+2 -1
View File
@@ -1,6 +1,7 @@
--- ---
title: Java基础与案例开发详解免费在线阅读 title: Java基础与案例开发详解免费在线阅读
author: wahyd4 author: wahyd4
comments: true
excerpt: > excerpt: >
话说虽然作者上学期已经学了j2se 话说虽然作者上学期已经学了j2se
了,但是这个学期来了之后,还是觉得自己的java 了,但是这个学期来了之后,还是觉得自己的java
@@ -240,4 +241,4 @@ categories:
完整版本阅读地址:<a href="http://book.51cto.com/art/200909/151414.htm" target="_blank">点我</a> 完整版本阅读地址:<a href="http://book.51cto.com/art/200909/151414.htm" target="_blank">点我</a>
[1]: /images/2010/11/11-11-1.jpg [1]: /images/2010/11/11-11-1.jpg
@@ -1,6 +1,7 @@
--- ---
title: 换一种方式阅读wordpress 博客 title: 换一种方式阅读wordpress 博客
author: wahyd4 author: wahyd4
comments: true
excerpt: > excerpt: >
今天给大家介绍一款很新颖的插件,这个插件是一位中国ajax 今天给大家介绍一款很新颖的插件,这个插件是一位中国ajax
达人写的,它可以让你的博客变成QQ 阅读 达人写的,它可以让你的博客变成QQ 阅读
@@ -37,4 +38,4 @@ tags:
作者博客:<a href="http://www.qiqiboy.com" target="_blank">点我</a> 作者博客:<a href="http://www.qiqiboy.com" target="_blank">点我</a>
[1]: /images/2010/11/11-12-4_conew1.jpg [1]: /images/2010/11/11-12-4_conew1.jpg
[2]: /images/2010/11/11-12-5_conew1.gif [2]: /images/2010/11/11-12-5_conew1.gif
+2 -1
View File
@@ -1,6 +1,7 @@
--- ---
title: 《阿凡达(加长版)》720p 资源下载 title: 《阿凡达(加长版)》720p 资源下载
author: wahyd4 author: wahyd4
comments: true
excerpt: > excerpt: >
加长版本的电影,比前面的版本增加了8分钟的介绍潘多拉新球景色的片段,一定可以让大家一包眼福的,这个这个720p的资源也是很大的哦,有接近8G,网速慢的同学可能会需要下载很久啦。 加长版本的电影,比前面的版本增加了8分钟的介绍潘多拉新球景色的片段,一定可以让大家一包眼福的,这个这个720p的资源也是很大的哦,有接近8G,网速慢的同学可能会需要下载很久啦。
layout: post layout: post
@@ -25,4 +26,4 @@ categories:
电驴,迅雷下载地址:<a href="ed2k://|file|[阿凡达].Avatar.2009.EXTENDED.720p.BluRay.x264-BestHD.mkv|8521132995|b95c7f1f6406c6cfe2f9fefaa78b42da|h=csbyuxrq3dy76lqpzbuvw5dd6gojb2fu|/ " target="_blank">点我获取地址</a> 电驴,迅雷下载地址:<a href="ed2k://|file|[阿凡达].Avatar.2009.EXTENDED.720p.BluRay.x264-BestHD.mkv|8521132995|b95c7f1f6406c6cfe2f9fefaa78b42da|h=csbyuxrq3dy76lqpzbuvw5dd6gojb2fu|/ " target="_blank">点我获取地址</a>
[1]: /images/2010/11/11-12-6_conew1.jpg [1]: /images/2010/11/11-12-6_conew1.jpg
+2 -1
View File
@@ -1,6 +1,7 @@
--- ---
title: 多谢大家支持 title: 多谢大家支持
author: wahyd4 author: wahyd4
comments: true
excerpt: ' 网站建了还是有几个月了,可以一直以来苦于没有宣传,加上其他一些原因吧,网站的浏览量一直很低,一般每天也就10几二十个人访问,' excerpt: ' 网站建了还是有几个月了,可以一直以来苦于没有宣传,加上其他一些原因吧,网站的浏览量一直很低,一般每天也就10几二十个人访问,'
layout: post layout: post
permalink: /2010/11/thanks-support/ permalink: /2010/11/thanks-support/
@@ -22,4 +23,4 @@ tags:
[<img class="aligncenter size-full wp-image-800" title="11-12-3_conew1" src="/images/2010/11/11-12-3_conew1.gif" alt="" width="678" height="319" />][2]以后我还是继续努力,写更好的文章给大家,希望大家多多支持我,通过RSS看我文章的朋友,还是希望你们多进我的博客吧。算是支持我,谢谢了。。 [<img class="aligncenter size-full wp-image-800" title="11-12-3_conew1" src="/images/2010/11/11-12-3_conew1.gif" alt="" width="678" height="319" />][2]以后我还是继续努力,写更好的文章给大家,希望大家多多支持我,通过RSS看我文章的朋友,还是希望你们多进我的博客吧。算是支持我,谢谢了。。
[1]: /images/2010/11/11-12-1_conew1.gif [1]: /images/2010/11/11-12-1_conew1.gif
[2]: /images/2010/11/11-12-3_conew1.gif [2]: /images/2010/11/11-12-3_conew1.gif
@@ -1,6 +1,7 @@
--- ---
title: 超炫的wordpress 收藏分享插件 title: 超炫的wordpress 收藏分享插件
author: wahyd4 author: wahyd4
comments: true
excerpt: > excerpt: >
玩wordpress博客的朋友,都希望通过读者的分享,给大家带来更多的流量吧,今天就给大家介绍一款这样的插件,而且效果特炫哦,我的文章后面就是用的这个插件,实际效果,大家在文章末尾就可以看到啦。 玩wordpress博客的朋友,都希望通过读者的分享,给大家带来更多的流量吧,今天就给大家介绍一款这样的插件,而且效果特炫哦,我的文章后面就是用的这个插件,实际效果,大家在文章末尾就可以看到啦。
layout: post layout: post
@@ -27,4 +28,4 @@ tags:
作者:[明河共影][2] 作者:[明河共影][2]
[1]: /images/2010/11/11-12-2_conew1.jpg [1]: /images/2010/11/11-12-2_conew1.jpg
[2]: http://www.36ria.com/ [2]: http://www.36ria.com/
@@ -1,6 +1,7 @@
--- ---
title: 原创:个人博客网页模板分享下载 title: 原创:个人博客网页模板分享下载
author: wahyd4 author: wahyd4
comments: true
excerpt: > excerpt: >
大概前面一周时间时间,因为某些原因我需要做这样一个个人主页形式的网页模板,我自己就摸索着做了,其实老实讲我的艺术细胞很匮乏,有时候连给网页配个颜色我都会纠结很久。 大概前面一周时间时间,因为某些原因我需要做这样一个个人主页形式的网页模板,我自己就摸索着做了,其实老实讲我的艺术细胞很匮乏,有时候连给网页配个颜色我都会纠结很久。
layout: post layout: post
@@ -23,4 +24,4 @@ tags:
[<img class="aligncenter size-full wp-image-822" title="11-13-2_conew1" src="/images/2010/11/11-13-2_conew1.jpg" alt="" width="601" height="338" />][2]下载网页源代码:<span style="color: #ff0000;"><a href="http://v4.u.115.com/file/f16b621047" target="_blank">点我</a></span> [<img class="aligncenter size-full wp-image-822" title="11-13-2_conew1" src="/images/2010/11/11-13-2_conew1.jpg" alt="" width="601" height="338" />][2]下载网页源代码:<span style="color: #ff0000;"><a href="http://v4.u.115.com/file/f16b621047" target="_blank">点我</a></span>
[1]: /images/2010/11/11-13-1_conew1.jpg [1]: /images/2010/11/11-13-1_conew1.jpg
[2]: /images/2010/11/11-13-2_conew1.jpg [2]: /images/2010/11/11-13-2_conew1.jpg
+2 -1
View File
@@ -1,6 +1,7 @@
--- ---
title: 数据结构作业:顺序表简单应用 title: 数据结构作业:顺序表简单应用
author: wahyd4 author: wahyd4
comments: true
excerpt: > excerpt: >
今天算是比较用心的在电脑勉强做作业吧,但是毕竟不怎么喜欢写c/c++的代码,已经习惯用java了,觉得java写起来很舒服,所以做这个作业做了很久,至少3个小时吧。 今天算是比较用心的在电脑勉强做作业吧,但是毕竟不怎么喜欢写c/c++的代码,已经习惯用java了,觉得java写起来很舒服,所以做这个作业做了很久,至少3个小时吧。
layout: post layout: post
@@ -111,4 +112,4 @@ return 0;
<div id="_mcePaste"> <div id="_mcePaste">
} }
</div> </div>
+2 -1
View File
@@ -1,6 +1,7 @@
--- ---
title: 用HTML5演绎你自己的电影 title: 用HTML5演绎你自己的电影
author: wahyd4 author: wahyd4
comments: true
excerpt: > excerpt: >
你是否曾经是否设想过,自己只要点点鼠标,就可以拍一部自己的电影。也许这个想法在当时不太可能,可是现在在google、html 你是否曾经是否设想过,自己只要点点鼠标,就可以拍一部自己的电影。也许这个想法在当时不太可能,可是现在在google、html
5、chrom等的强力支持下,这个愿望就可以实现啦, 5、chrom等的强力支持下,这个愿望就可以实现啦,
@@ -37,4 +38,4 @@ tags:
[1]: /images/2010/11/11-14-4_conew1.jpg [1]: /images/2010/11/11-14-4_conew1.jpg
[2]: /images/2010/11/11-14-5_conew1.jpg [2]: /images/2010/11/11-14-5_conew1.jpg
[3]: /images/2010/11/11-14-6_conew1.jpg [3]: /images/2010/11/11-14-6_conew1.jpg
+2 -1
View File
@@ -1,6 +1,7 @@
--- ---
title: 魅族M9的最新消息10-11-14 title: 魅族M9的最新消息10-11-14
author: wahyd4 author: wahyd4
comments: true
excerpt: > excerpt: >
由于笔者也是一位魅族M9的fans,因此随时都会上网关注M9的最新消息,根据最新消息,M9如果不出意外应该在12月中旬拿到入网证书,然后不出意外在12月月底可以上市。 由于笔者也是一位魅族M9的fans,因此随时都会上网关注M9的最新消息,根据最新消息,M9如果不出意外应该在12月中旬拿到入网证书,然后不出意外在12月月底可以上市。
layout: post layout: post
@@ -24,4 +25,4 @@ tags:
[1]: /images/2010/11/11-14-1_conew11.jpg [1]: /images/2010/11/11-14-1_conew11.jpg
[2]: /images/2010/11/11-14-2_conew1.jpg [2]: /images/2010/11/11-14-2_conew1.jpg
[3]: /images/2010/11/11-14-3_conew1.jpg [3]: /images/2010/11/11-14-3_conew1.jpg
@@ -1,6 +1,7 @@
--- ---
title: 计算机操作系统教程(第三版)附下载 title: 计算机操作系统教程(第三版)附下载
author: wahyd4 author: wahyd4
comments: true
excerpt: > excerpt: >
计算机操作系统教程应该算是计算机专业学生的专业基础课吧,但是这门课程由于自身的特点,老实说的确很枯燥,一般大学安排在大二的时候学习这个课程,恰好笔者现在也正在学习。 计算机操作系统教程应该算是计算机专业学生的专业基础课吧,但是这门课程由于自身的特点,老实说的确很枯燥,一般大学安排在大二的时候学习这个课程,恰好笔者现在也正在学习。
layout: post layout: post
@@ -37,4 +38,4 @@ tags:
<span style="color: #ff0000;">附上免费的PDF电子书下载</span><a href="http://u.115.com/file/f1d92164b8" target="_blank">点我下载</a>(记得多支持我们的原创作品哦) <span style="color: #ff0000;">附上免费的PDF电子书下载</span><a href="http://u.115.com/file/f1d92164b8" target="_blank">点我下载</a>(记得多支持我们的原创作品哦)
[1]: /images/2010/11/11-15-2_conew1.jpg [1]: /images/2010/11/11-15-2_conew1.jpg
+2 -1
View File
@@ -1,6 +1,7 @@
--- ---
title: 动态展示网站读者信息 title: 动态展示网站读者信息
author: wahyd4 author: wahyd4
comments: true
excerpt: > excerpt: >
今天给大家介绍一个很不错,很炫的小东西。这个小东西很适合站长用,它是用flash的方式动态展示你网站的访问者的来源。动画做得很炫哦。 今天给大家介绍一个很不错,很炫的小东西。这个小东西很适合站长用,它是用flash的方式动态展示你网站的访问者的来源。动画做得很炫哦。
layout: post layout: post
@@ -21,4 +22,4 @@ tags:
获得漂亮的访问者信息:<a href="http://www.revolvermaps.com/" target="_blank">点我吧</a> 获得漂亮的访问者信息:<a href="http://www.revolvermaps.com/" target="_blank">点我吧</a>
[1]: /images/2010/11/11-15-1_conew1.jpg [1]: /images/2010/11/11-15-1_conew1.jpg
+2 -1
View File
@@ -1,6 +1,7 @@
--- ---
title: '《极品飞车14:热力追踪》[繁中/英文]下载' title: '《极品飞车14:热力追踪》[繁中/英文]下载'
author: wahyd4 author: wahyd4
comments: true
excerpt: > excerpt: >
最近这段时间,很多大游戏都争相上市。给我们的玩家们带来了不少福利啊。笔者最近除了关注《使命召唤7》以外,就是关注这个游戏了。但是在笔者飞进千辛万苦下载完之后, 最近这段时间,很多大游戏都争相上市。给我们的玩家们带来了不少福利啊。笔者最近除了关注《使命召唤7》以外,就是关注这个游戏了。但是在笔者飞进千辛万苦下载完之后,
layout: post layout: post
@@ -62,4 +63,4 @@ CPUIntel i5 2.5GHz或者AMD X4 2.5GHz
[<img class="aligncenter size-full wp-image-856" title="11-16-2_conew1" src="/images/2010/11/11-16-2_conew1.jpg" alt="" width="500" height="375" />][2]<span style="color: #ff0000;"><strong>下载BT资源种子</strong></span><a href="http://u.115.com/file/f1842513be" target="_blank">点我下载</a> [<img class="aligncenter size-full wp-image-856" title="11-16-2_conew1" src="/images/2010/11/11-16-2_conew1.jpg" alt="" width="500" height="375" />][2]<span style="color: #ff0000;"><strong>下载BT资源种子</strong></span><a href="http://u.115.com/file/f1842513be" target="_blank">点我下载</a>
[1]: /images/2010/11/11-16-1_conew1.jpg [1]: /images/2010/11/11-16-1_conew1.jpg
[2]: /images/2010/11/11-16-2_conew1.jpg [2]: /images/2010/11/11-16-2_conew1.jpg
@@ -1,6 +1,7 @@
--- ---
title: 在线测试电脑的游戏性能 title: 在线测试电脑的游戏性能
author: wahyd4 author: wahyd4
comments: true
excerpt: > excerpt: >
今天说的这个网站就是专门防止这样的情况发生的,它可以在线检测你的电脑对于某一款游戏的性能,简单说就是检测你的电脑是否符合游戏的最低要求(Minimum 今天说的这个网站就是专门防止这样的情况发生的,它可以在线检测你的电脑对于某一款游戏的性能,简单说就是检测你的电脑是否符合游戏的最低要求(Minimum
requirements)和标准要求(Recommended requirements)。 requirements)和标准要求(Recommended requirements)。
@@ -33,4 +34,4 @@ tags:
[1]: /images/2010/11/11-17-1_conew1.jpg [1]: /images/2010/11/11-17-1_conew1.jpg
[2]: /images/2010/11/11-17-2_conew1.jpg [2]: /images/2010/11/11-17-2_conew1.jpg
[3]: /images/2010/11/11-17-3_conew1.jpg [3]: /images/2010/11/11-17-3_conew1.jpg
@@ -1,6 +1,7 @@
--- ---
title: 路还很长啊 title: 路还很长啊
author: wahyd4 author: wahyd4
comments: true
excerpt: > excerpt: >
这个网站,也算是博客吧,改版后已经正式运行两个月了。这两个月不可否认进步还是不小,经过我还有前面一段时间同学的努力,这个博客的排名现在已经升到110万左右了, 这个网站,也算是博客吧,改版后已经正式运行两个月了。这两个月不可否认进步还是不小,经过我还有前面一段时间同学的努力,这个博客的排名现在已经升到110万左右了,
layout: post layout: post
@@ -16,4 +17,4 @@ categories:
而且也有人说我的博客访问速度有点慢,我不知道访问人数是否和这个也有一些影响。但是在这里还是要特别特别感谢 http://xpn.im 给我提供的一年的免费的主机。 而且也有人说我的博客访问速度有点慢,我不知道访问人数是否和这个也有一些影响。但是在这里还是要特别特别感谢 http://xpn.im 给我提供的一年的免费的主机。
最后还是坚持每天更新文章。喜欢会有好结果吧。我还有另外一个网站现在没有用,放在那里都快发霉啦。 http://junv.org 最后还是坚持每天更新文章。喜欢会有好结果吧。我还有另外一个网站现在没有用,放在那里都快发霉啦。 http://junv.org
@@ -1,6 +1,7 @@
--- ---
title: 时光倒流二十年 title: 时光倒流二十年
author: wahyd4 author: wahyd4
comments: true
excerpt: > excerpt: >
十二年前,一个冰冷的冬夜,我爸开着一辆面包车带着我,我妈,我二姨在前往某地的路上发生车祸。坐在副驾驶位置的我右脸紧紧地擦着翻车后被打碎的玻璃车窗碎片和冰冷又肮脏的马路以六十码左右的速度足足滑行了不知道多少米, 十二年前,一个冰冷的冬夜,我爸开着一辆面包车带着我,我妈,我二姨在前往某地的路上发生车祸。坐在副驾驶位置的我右脸紧紧地擦着翻车后被打碎的玻璃车窗碎片和冰冷又肮脏的马路以六十码左右的速度足足滑行了不知道多少米,
layout: post layout: post
@@ -57,4 +58,4 @@ categories:
[1]: /images/2010/11/dont_let_me_go_tonight_by_multicurious-d2yuyrt2.jpg [1]: /images/2010/11/dont_let_me_go_tonight_by_multicurious-d2yuyrt2.jpg
[2]: /images/2010/11/MichaelCreagh_KissingCouples.jpg [2]: /images/2010/11/MichaelCreagh_KissingCouples.jpg
[3]: /images/2010/11/MichaelCreagh_KissingCouples1.jpg [3]: /images/2010/11/MichaelCreagh_KissingCouples1.jpg
+2 -1
View File
@@ -1,6 +1,7 @@
--- ---
title: 2010年6月英语六级考试原题下载 title: 2010年6月英语六级考试原题下载
author: wahyd4 author: wahyd4
comments: true
excerpt: > excerpt: >
话不多说,分享只为需要的同学们准备。希望大家努力备考,考过六级。 话不多说,分享只为需要的同学们准备。希望大家努力备考,考过六级。
layout: post layout: post
@@ -20,4 +21,4 @@ tags:
2010/6 CET6英语真题:<a href="http://u.115.com/file/f17e117b91" target="_blank">点我下载</a> 2010/6 CET6英语真题:<a href="http://u.115.com/file/f17e117b91" target="_blank">点我下载</a>
[1]: /images/2010/11/bag_13.png [1]: /images/2010/11/bag_13.png
+2 -1
View File
@@ -1,6 +1,7 @@
--- ---
title: pictomio免费管理图片的好帮手 title: pictomio免费管理图片的好帮手
author: wahyd4 author: wahyd4
comments: true
excerpt: ' 首先需要说一下的就是这个软件是完全免费的。这个软件也是国外的老兄写的,但是很高兴的是这个软件有中文的版本。在你安装的时候,如果你的电脑用的是中文的windows 是会自动识别的。' excerpt: ' 首先需要说一下的就是这个软件是完全免费的。这个软件也是国外的老兄写的,但是很高兴的是这个软件有中文的版本。在你安装的时候,如果你的电脑用的是中文的windows 是会自动识别的。'
layout: post layout: post
permalink: /2010/11/pictomio/ permalink: /2010/11/pictomio/
@@ -35,4 +36,4 @@ tags:
[2]: /images/2010/11/11-18-2_conew1.jpg [2]: /images/2010/11/11-18-2_conew1.jpg
[3]: /images/2010/11/11-18-3_conew1.jpg [3]: /images/2010/11/11-18-3_conew1.jpg
[4]: /images/2010/11/11-18-4_conew1.jpg [4]: /images/2010/11/11-18-4_conew1.jpg
[5]: /images/2010/11/11-18-5_conew1.jpg [5]: /images/2010/11/11-18-5_conew1.jpg
+2 -1
View File
@@ -1,6 +1,7 @@
--- ---
title: 推荐两款搜狗输入法酷炫动画皮肤 title: 推荐两款搜狗输入法酷炫动画皮肤
author: wahyd4 author: wahyd4
comments: true
excerpt: > excerpt: >
不知道各位用搜狗输入法的童鞋们注意没有,自从搜狗输入法进入5. 不知道各位用搜狗输入法的童鞋们注意没有,自从搜狗输入法进入5.
0 0
@@ -30,4 +31,4 @@ PS:当你无聊的时候,现在你又多了一个新的选择了。你可以
两个皮肤打包下载:<a href="http://u.115.com/file/f1aaca488c" target="_blank">点我下载</a> 两个皮肤打包下载:<a href="http://u.115.com/file/f1aaca488c" target="_blank">点我下载</a>
** **
** **
+2 -1
View File
@@ -1,6 +1,7 @@
--- ---
title: 魅族M9真机图片11-19 title: 魅族M9真机图片11-19
author: wahyd4 author: wahyd4
comments: true
excerpt: > excerpt: >
话说今天魅族 M9今天又露新图了。不过这次露图的不再是Jwong 话说今天魅族 M9今天又露新图了。不过这次露图的不再是Jwong
,而是另外一名匿名人士。不过从机身来看,这个应该最接近发布的机子了。 ,而是另外一名匿名人士。不过从机身来看,这个应该最接近发布的机子了。
@@ -17,4 +18,4 @@ tags:
可以看出M9的外观还是很华丽的。。值得大家期待哦。。 可以看出M9的外观还是很华丽的。。值得大家期待哦。。
[1]: /images/2010/11/ceJnKbnU8GiY.jpg [1]: /images/2010/11/ceJnKbnU8GiY.jpg
@@ -1,6 +1,7 @@
--- ---
title: 免费的css网页模板下载 title: 免费的css网页模板下载
author: wahyd4 author: wahyd4
comments: true
excerpt: > excerpt: >
今天给大家介绍一个很好的国外网站,这个网站叫http://www.freecsstemplates.org/,它提供很多免费的CSS模板供大家免费下载,到今天为止这个网站已经收录了504个免费的css 今天给大家介绍一个很好的国外网站,这个网站叫http://www.freecsstemplates.org/,它提供很多免费的CSS模板供大家免费下载,到今天为止这个网站已经收录了504个免费的css
模板, 模板,
@@ -33,4 +34,4 @@ tags:
[2]: /images/2010/11/11-20-3.gif [2]: /images/2010/11/11-20-3.gif
[3]: /images/2010/11/11-20-4.gif [3]: /images/2010/11/11-20-4.gif
[4]: /images/2010/11/11-20-5.gif [4]: /images/2010/11/11-20-5.gif
[5]: /images/2010/11/11-20-6.gif [5]: /images/2010/11/11-20-6.gif
+2 -1
View File
@@ -1,6 +1,7 @@
--- ---
title: 一个Java JDBC连接简单实例 title: 一个Java JDBC连接简单实例
author: wahyd4 author: wahyd4
comments: true
excerpt: > excerpt: >
今天在学习java JDBC,这里写了一个简单的java 连接Mysql 今天在学习java JDBC,这里写了一个简单的java 连接Mysql
数据库的实例供大家参考。此代码代码可以运行。 数据库的实例供大家参考。此代码代码可以运行。
@@ -60,4 +61,4 @@ tags:
<p> <p>
<span style="color: #000000;">}</span> <span style="color: #000000;">}</span>
</p> </p>
</div> </div>
+2 -1
View File
@@ -1,6 +1,7 @@
--- ---
title: 谈谈彩票 title: 谈谈彩票
author: wahyd4 author: wahyd4
comments: true
excerpt: > excerpt: >
应该说像我这个人对于彩票是没有什么发言权的,因为我从高三到现在间间断断地买彩票也差不多有100左右了,可是呢,我从来没有中过奖,连2块,5块的尾奖也没有中过。 应该说像我这个人对于彩票是没有什么发言权的,因为我从高三到现在间间断断地买彩票也差不多有100左右了,可是呢,我从来没有中过奖,连2块,5块的尾奖也没有中过。
layout: post layout: post
@@ -16,4 +17,4 @@ categories:
其实我还对那些研究彩票的人充满敬意,因为彩票这么多中算法,这么从这些根本没有多少关系,即使有关系也只是概率上大一点的关系孜孜不倦的研究。要是再凭着研究出的彩票买中的人那简直就是神人啊。我佩服得五体投地。因为每次我看到那个走势图,我就觉得没多少用。也许只是自我感觉比机选好一些吧。不过我很多次买机选的彩票,确实一个数字都没有中。而且应该从中将的人书来说,大多数都是不是买的机选吧。 其实我还对那些研究彩票的人充满敬意,因为彩票这么多中算法,这么从这些根本没有多少关系,即使有关系也只是概率上大一点的关系孜孜不倦的研究。要是再凭着研究出的彩票买中的人那简直就是神人啊。我佩服得五体投地。因为每次我看到那个走势图,我就觉得没多少用。也许只是自我感觉比机选好一些吧。不过我很多次买机选的彩票,确实一个数字都没有中。而且应该从中将的人书来说,大多数都是不是买的机选吧。
哎,我想多了。我只是需要吐槽罢了。 哎,我想多了。我只是需要吐槽罢了。
+2 -1
View File
@@ -1,6 +1,7 @@
--- ---
title: 使用GAE免费建网站 title: 使用GAE免费建网站
author: wahyd4 author: wahyd4
comments: true
excerpt: > excerpt: >
GAE是google app engine GAE是google app engine
的缩写,google提供的这个服务,允许用户免费上传10个程序,也就是说你可以建10个网站。现在GAE支持使用java 的缩写,google提供的这个服务,允许用户免费上传10个程序,也就是说你可以建10个网站。现在GAE支持使用java
@@ -42,4 +43,4 @@ GAE是google app engine 的缩写,google提供的这个服务,允许用户
[1]: /images/2010/11/c81cdb4bf1b22fa33c1730ce825cd695.png [1]: /images/2010/11/c81cdb4bf1b22fa33c1730ce825cd695.png
[2]: /images/2010/11/11-21-7_conew1.jpg [2]: /images/2010/11/11-21-7_conew1.jpg
[3]: /images/2010/11/11-21-8_conew1.gif [3]: /images/2010/11/11-21-8_conew1.gif
+2 -1
View File
@@ -1,6 +1,7 @@
--- ---
title: 很好的国内php,asp空间(免费) title: 很好的国内php,asp空间(免费)
author: wahyd4 author: wahyd4
comments: true
excerpt: > excerpt: >
我这里之所以要将免费用括号框起来,是因为本身提供这个免费空间的主机商不是专门提供免费的,而是一家商业公司,而且免费空间也只是他们的很小一部分,更多的还是商业虚拟主机。 我这里之所以要将免费用括号框起来,是因为本身提供这个免费空间的主机商不是专门提供免费的,而是一家商业公司,而且免费空间也只是他们的很小一部分,更多的还是商业虚拟主机。
layout: post layout: post
@@ -41,4 +42,4 @@ tags:
[1]: /images/2010/11/11-21-5_conew1.jpg [1]: /images/2010/11/11-21-5_conew1.jpg
[2]: /images/2010/11/11-21-1_conew1.jpg [2]: /images/2010/11/11-21-1_conew1.jpg
[3]: /images/2010/11/11-21-2_conew1.jpg [3]: /images/2010/11/11-21-2_conew1.jpg
[4]: /images/2010/11/11-21-3_conew1.jpg [4]: /images/2010/11/11-21-3_conew1.jpg
+2 -1
View File
@@ -1,6 +1,7 @@
--- ---
title: GAE免费博客micolog title: GAE免费博客micolog
author: wahyd4 author: wahyd4
comments: true
excerpt: ' 如果你一直想拥有一个免费的类似wordpress博客而烦恼,如果你还希望你的免费博客有很大空间,又很快的速度。那我觉得现在在我们面前有这样一个很好的选择——使用GAE,' excerpt: ' 如果你一直想拥有一个免费的类似wordpress博客而烦恼,如果你还希望你的免费博客有很大空间,又很快的速度。那我觉得现在在我们面前有这样一个很好的选择——使用GAE,'
layout: post layout: post
permalink: /2010/11/micolog/ permalink: /2010/11/micolog/
@@ -40,4 +41,4 @@ micolog有以下一些特性:
安装教程:<http://micolog.appspot.com/%E5%AE%89%E8%A3%85> 安装教程:<http://micolog.appspot.com/%E5%AE%89%E8%A3%85>
[1]: /images/2010/11/11-22-1_conew1.jpg [1]: /images/2010/11/11-22-1_conew1.jpg
[2]: http://micolog.appspot.com/ [2]: http://micolog.appspot.com/
+2 -1
View File
@@ -1,6 +1,7 @@
--- ---
title: CSS精粹3免费下载 title: CSS精粹3免费下载
author: wahyd4 author: wahyd4
comments: true
excerpt: > excerpt: >
这本书的英文原名叫CSS 这本书的英文原名叫CSS
anthology,翻译成中文叫CSS精粹,目前这本书已经出到了第三版了。但是中文翻译的只有第二版,第二版是08年出版的,里面几乎没有提及CSS anthology,翻译成中文叫CSS精粹,目前这本书已经出到了第三版了。但是中文翻译的只有第二版,第二版是08年出版的,里面几乎没有提及CSS
@@ -46,4 +47,4 @@ CSS定位和布局(这一章包含了很多非常好的网页实例,而且
免费下载:<a href="http://u.115.com/file/f1490c9ce9" target="_blank">点我下载</a> 免费下载:<a href="http://u.115.com/file/f1490c9ce9" target="_blank">点我下载</a>
[1]: /images/2010/11/1255116593056.jpg [1]: /images/2010/11/1255116593056.jpg
+2 -1
View File
@@ -1,6 +1,7 @@
--- ---
title: 疯狂老爸箴言录Shit My Dad Says title: 疯狂老爸箴言录Shit My Dad Says
author: wahyd4 author: wahyd4
comments: true
excerpt: > excerpt: >
今天给大家推荐一部美剧疯狂老爸箴言录Shit My Dad 今天给大家推荐一部美剧疯狂老爸箴言录Shit My Dad
Says,这部美剧是根据一位在twitter上的老者说的话改编的,他说的话总是语出惊人。 Says,这部美剧是根据一位在twitter上的老者说的话改编的,他说的话总是语出惊人。
@@ -27,4 +28,4 @@ tags:
<span style="color: #ff0000;"><strong>附下载链接:<a href="http://yyets.net/showresource-juji-652.html" target="_blank">点我进入</a></strong></span> <span style="color: #ff0000;"><strong>附下载链接:<a href="http://yyets.net/showresource-juji-652.html" target="_blank">点我进入</a></strong></span>
[1]: /images/2010/11/11-24-1_conew1.jpg [1]: /images/2010/11/11-24-1_conew1.jpg
+2 -1
View File
@@ -1,6 +1,7 @@
--- ---
title: 求20个数里面最大的数 title: 求20个数里面最大的数
author: wahyd4 author: wahyd4
comments: true
excerpt: > excerpt: >
如题这个应该算是一个超级简单的题吧!以前大一上学期的时候老师就讲过了! 如题这个应该算是一个超级简单的题吧!以前大一上学期的时候老师就讲过了!
layout: post layout: post
@@ -37,4 +38,4 @@ categories:
**temp=a[i+1];** **temp=a[i+1];**
** **
}** }**
+2 -1
View File
@@ -1,6 +1,7 @@
--- ---
title: 口语课上即兴编写的关于疾病与建议的对话 title: 口语课上即兴编写的关于疾病与建议的对话
author: wahyd4 author: wahyd4
comments: true
excerpt: | excerpt: |
下面就是当时在课上临场发挥写的一个对话!其实我觉得写得很简单哈。 下面就是当时在课上临场发挥写的一个对话!其实我觉得写得很简单哈。
@@ -28,4 +29,4 @@ A: I think you should eat more fruit and vegetables,and try to do some exercise.
B: Thanks for your advice , Ill try it. B: Thanks for your advice , Ill try it.
A;You are welcome. A;You are welcome.
@@ -1,6 +1,7 @@
--- ---
title: SSD1教材下载 title: SSD1教材下载
author: wahyd4 author: wahyd4
comments: true
excerpt: > excerpt: >
SSD1 的全称叫Introduction to Information SSD1 的全称叫Introduction to Information
Systems,翻译成中文叫信息系统导论,是美国卡内基梅隆大学的计算机系列教材的第一个。 Systems,翻译成中文叫信息系统导论,是美国卡内基梅隆大学的计算机系列教材的第一个。
@@ -15,4 +16,4 @@ SSD1 的全称叫Introduction to Information Systems,翻译成中文叫信息
我前面看到网上很多同学都在找这本书的电子文档,于是今天在这里提供下载版本给大家吧. 我前面看到网上很多同学都在找这本书的电子文档,于是今天在这里提供下载版本给大家吧.
下载地址: <a href="http://u.115.com/file/f1993201d2" target="_blank">点我下载</a> 下载地址: <a href="http://u.115.com/file/f1993201d2" target="_blank">点我下载</a>
+2 -1
View File
@@ -1,6 +1,7 @@
--- ---
title: SSD1所有作业答案下载 title: SSD1所有作业答案下载
author: wahyd4 author: wahyd4
comments: true
excerpt: > excerpt: >
这份参考答案包括了Multiple-Choice Quiz,Practical 这份参考答案包括了Multiple-Choice Quiz,Practical
Quiz,Exercise以及EXAM Quiz,Exercise以及EXAM
@@ -24,4 +25,4 @@ tags:
下载地址:<a href="http://u.115.com/file/f11c72889a" target="_blank">点我下载</a> 下载地址:<a href="http://u.115.com/file/f11c72889a" target="_blank">点我下载</a>
[1]: /images/2010/11/11-25-1_conew1.jpg [1]: /images/2010/11/11-25-1_conew1.jpg
@@ -1,6 +1,7 @@
--- ---
title: SSD3教材下载 title: SSD3教材下载
author: wahyd4 author: wahyd4
comments: true
excerpt: > excerpt: >
SSD系列教程是美国卡内基梅隆大学的计算机专业学生的系列教程,一共是从SSD1到SSD9。此教程一般在国内比较有名的大学有使用,据我所知,我们附近有四川大学,电子科技大学,西北工业大学在使用此系列教程。 SSD系列教程是美国卡内基梅隆大学的计算机专业学生的系列教程,一共是从SSD1到SSD9。此教程一般在国内比较有名的大学有使用,据我所知,我们附近有四川大学,电子科技大学,西北工业大学在使用此系列教程。
layout: post layout: post
@@ -14,4 +15,4 @@ SSD系列教程是美国卡内基梅隆大学的计算机专业学生的系列
今天在这里提供SSD3的教材共大家下载,电子文档版本的CHM 今天在这里提供SSD3的教材共大家下载,电子文档版本的CHM
下载地址:<a href="http://u.115.com/file/f111d6159c" target="_blank">点我下载</a> 下载地址:<a href="http://u.115.com/file/f111d6159c" target="_blank">点我下载</a>
+2 -1
View File
@@ -1,6 +1,7 @@
--- ---
title: 感恩节话感恩 title: 感恩节话感恩
author: wahyd4 author: wahyd4
comments: true
excerpt: > excerpt: >
今天是美国的感恩节,其实作为彻头彻尾的中国人,其实感恩节和我算是没有多少关系吧,但是呢也许我们还是应该用一种很开放的态度来对待一些事, 今天是美国的感恩节,其实作为彻头彻尾的中国人,其实感恩节和我算是没有多少关系吧,但是呢也许我们还是应该用一种很开放的态度来对待一些事,
layout: post layout: post
@@ -12,4 +13,4 @@ categories:
其实我本不知道11月第四个星期四是感恩节,但是通过最近的手机QQ上的图片和昨天晚上和西西说,于是我也便知道了。当然需要感谢很多人,无论是是给予我棒子还是痛苦的人,都得感谢他们,是他们让我成长,让我变得strong,还有瓜西西,当然最最值得感谢还是父母吧,他们这么辛苦养育我20年了。谢谢你们。 其实我本不知道11月第四个星期四是感恩节,但是通过最近的手机QQ上的图片和昨天晚上和西西说,于是我也便知道了。当然需要感谢很多人,无论是是给予我棒子还是痛苦的人,都得感谢他们,是他们让我成长,让我变得strong,还有瓜西西,当然最最值得感谢还是父母吧,他们这么辛苦养育我20年了。谢谢你们。
当然我也忘不了支持我网站的朋友们,是你们给网站带来了人气,是你们坚定了我继续走下去的信念,谢谢你们,我会一直努力下去的,也请你们继续支持我们的网站。我会带给你们更多更好的内容。 当然我也忘不了支持我网站的朋友们,是你们给网站带来了人气,是你们坚定了我继续走下去的信念,谢谢你们,我会一直努力下去的,也请你们继续支持我们的网站。我会带给你们更多更好的内容。
@@ -1,9 +1,10 @@
--- ---
title: 说说这两天 title: 说说这两天
author: wahyd4 author: wahyd4
comments: true
excerpt: | excerpt: |
周末本以为可以和以前一样享受上网,更新我的网站,可是没有想到的是,昨天早上起来,很悲剧的是我们就没网了。 周末本以为可以和以前一样享受上网,更新我的网站,可是没有想到的是,昨天早上起来,很悲剧的是我们就没网了。
不能上网,当然很多事也做不了,可是也算是一个学习的好机会吧。 不能上网,当然很多事也做不了,可是也算是一个学习的好机会吧。
layout: post layout: post
permalink: /2010/11/talk-about-these-two-days/ permalink: /2010/11/talk-about-these-two-days/
@@ -24,4 +25,4 @@ categories:
恩,当然安装了虚拟机,不能闲着啊,我利用昨天晚上的时间学习了一些lunux 知识和命令操作。感觉学到不少知识啊。 恩,当然安装了虚拟机,不能闲着啊,我利用昨天晚上的时间学习了一些lunux 知识和命令操作。感觉学到不少知识啊。
下周是第14周啦,转眼就快考试啦,还在读书的童鞋大家加油吧》 下周是第14周啦,转眼就快考试啦,还在读书的童鞋大家加油吧》

Some files were not shown because too many files have changed in this diff Show More