mirror of
https://github.com/wahyd4/junv-blog.git
synced 2026-08-09 04:56:22 +10:00
sdfd
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
source "http://rubygems.org"
|
||||
|
||||
group :development do
|
||||
gem 'rake', '~> 0.9.2'
|
||||
gem 'rake', '~> 10.0.2'
|
||||
gem 'rack', '~> 1.4.1'
|
||||
gem 'jekyll', '~> 0.11.2'
|
||||
gem 'rdiscount', '~> 1.6.8'
|
||||
|
||||
+2
-2
@@ -34,7 +34,7 @@ GEM
|
||||
rack (1.4.1)
|
||||
rack-protection (1.2.0)
|
||||
rack
|
||||
rake (0.9.2.2)
|
||||
rake (10.0.2)
|
||||
rb-fsevent (0.9.1)
|
||||
rdiscount (1.6.8)
|
||||
rubypants (0.2.0)
|
||||
@@ -61,7 +61,7 @@ DEPENDENCIES
|
||||
liquid (~> 2.3.0)
|
||||
pygments.rb (~> 0.2.12)
|
||||
rack (~> 1.4.1)
|
||||
rake (~> 0.9.2)
|
||||
rake (~> 10.0.2)
|
||||
rb-fsevent (~> 0.9)
|
||||
rdiscount (~> 1.6.8)
|
||||
rubypants (~> 0.2.0)
|
||||
|
||||
@@ -0,0 +1,18 @@
|
||||
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'
|
||||
+11
-10
@@ -2,12 +2,12 @@
|
||||
# Main Configs #
|
||||
# ----------------------- #
|
||||
|
||||
url: http://yoursite.com
|
||||
title: My Octopress Blog
|
||||
subtitle: A blogging framework for hackers.
|
||||
author: Your Name
|
||||
url: http://toozhao.com
|
||||
title: 大染志
|
||||
subtitle: 无名程序员
|
||||
author: Junv
|
||||
simple_search: http://google.com/search
|
||||
description:
|
||||
description:
|
||||
|
||||
# Default date format is "ordinal" (resulting in "July 22nd 2007")
|
||||
# You can customize the format as defined in
|
||||
@@ -36,7 +36,7 @@ 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
|
||||
paginate: 8 # 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
|
||||
@@ -58,7 +58,7 @@ default_asides: [asides/recent_posts.html, asides/github.html, asides/twitter.ht
|
||||
# ----------------------- #
|
||||
|
||||
# Github repositories
|
||||
github_user:
|
||||
github_user: wahyd4
|
||||
github_repo_count: 0
|
||||
github_show_profile_link: true
|
||||
github_skip_forks: true
|
||||
@@ -89,11 +89,12 @@ delicious_user:
|
||||
delicious_count: 3
|
||||
|
||||
# Disqus Comments
|
||||
disqus_short_name:
|
||||
disqus_show_comment_count: false
|
||||
disqus_short_name: wahyd4
|
||||
disqus_show_comment_count: true
|
||||
|
||||
# Google Analytics
|
||||
google_analytics_tracking_id:
|
||||
google_analytics_tracking_id: UA-5243064-16
|
||||
|
||||
# Facebook Like
|
||||
facebook_like: false
|
||||
|
||||
|
||||
+100
@@ -0,0 +1,100 @@
|
||||
# ----------------------- #
|
||||
# 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
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
@import "base/utilities";
|
||||
@import "base/solarized";
|
||||
@import "base/theme";
|
||||
@import "base/typography";
|
||||
@import "base/layout";
|
||||
@@ -0,0 +1,8 @@
|
||||
@import "partials/header";
|
||||
@import "partials/navigation";
|
||||
@import "partials/blog";
|
||||
@import "partials/sharing";
|
||||
@import "partials/syntax";
|
||||
@import "partials/archive";
|
||||
@import "partials/sidebar";
|
||||
@import "partials/footer";
|
||||
@@ -0,0 +1,192 @@
|
||||
$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;
|
||||
padding: 0 $pad-medium 1px;
|
||||
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 {
|
||||
-webkit-text-size-adjust: none;
|
||||
max-width: $max-width;
|
||||
position: relative;
|
||||
margin: 0 auto;
|
||||
> header, > nav, > footer, #content > article, #content > div > article, #content > div > section {
|
||||
@extend .group;
|
||||
padding-left: $pad-min;
|
||||
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; }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,46 @@
|
||||
$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: dark !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;
|
||||
}
|
||||
|
||||
/* non highlighted code colors */
|
||||
$pre-bg: $base03 !default;
|
||||
$pre-border: darken($base02, 5) !default;
|
||||
$pre-color: $base1 !default;
|
||||
|
||||
|
||||
@@ -0,0 +1,86 @@
|
||||
$noise-bg: image-url('noise.png') top left !default;
|
||||
$img-border: inline-image('dotted-border.png');
|
||||
|
||||
// Main Link Colors
|
||||
$link-color: lighten(#165b94, 3) !default;
|
||||
$link-color-hover: adjust-color($link-color, $lightness: 10, $saturation: 25) !default;
|
||||
$link-color-visited: adjust-color($link-color, $hue: 80, $lightness: -4) !default;
|
||||
$link-color-active: adjust-color($link-color-hover, $lightness: -15) !default;
|
||||
|
||||
// Main Section Colors
|
||||
$main-bg: #f8f8f8 !default;
|
||||
$page-bg: #252525 !default;
|
||||
$article-border: #eeeeee !default;
|
||||
|
||||
$header-bg: #333 !default;
|
||||
$header-border: lighten($header-bg, 15) !default;
|
||||
$title-color: #f2f2f2 !default;
|
||||
$subtitle-color: #aaa !default;
|
||||
|
||||
$text-color: #222 !default;
|
||||
$text-color-light: #aaa !default;
|
||||
$type-border: #ddd !default;
|
||||
|
||||
/* Navigation */
|
||||
$nav-bg: #ccc !default;
|
||||
$nav-bg-front: image-url('noise.png') !default;
|
||||
$nav-bg-back: linear-gradient(lighten($nav-bg, 8), $nav-bg, darken($nav-bg, 11)) !default;
|
||||
$nav-color: darken($nav-bg, 38) !default;
|
||||
$nav-color-hover: darken($nav-color, 25) !default;
|
||||
$nav-placeholder: desaturate(darken($nav-bg, 10), 15) !default;
|
||||
$nav-border: darken($nav-bg, 10) !default;
|
||||
$nav-border-top: lighten($nav-bg, 15) !default;
|
||||
$nav-border-bottom: darken($nav-bg, 25) !default;
|
||||
$nav-border-left: darken($nav-bg, 11) !default;
|
||||
$nav-border-right: lighten($nav-bg, 7) !default;
|
||||
|
||||
/* Sidebar colors */
|
||||
$sidebar-bg: #f2f2f2 !default;
|
||||
$sidebar-link-color: $link-color !default;
|
||||
$sidebar-link-color-hover: $link-color-hover !default;
|
||||
$sidebar-link-color-active: $link-color-active !default;
|
||||
$sidebar-color: change-color(mix($text-color, $sidebar-bg, 80), $hue: hue($sidebar-bg), $saturation: saturation($sidebar-bg)/2) !default;
|
||||
$sidebar-border: desaturate(darken($sidebar-bg, 7), 10) !default;
|
||||
$sidebar-border-hover: darken($sidebar-bg, 7) !default;
|
||||
$sidebar-link-color-subdued: lighten($sidebar-color, 20) !default;
|
||||
$sidebar-link-color-subdued-hover: $sidebar-link-color-hover !default;
|
||||
$twitter-status-link: lighten($sidebar-link-color-subdued, 15) !default;
|
||||
|
||||
$footer-color: #888 !default;
|
||||
$footer-bg: #ccc !default;
|
||||
$footer-bg-front: image-url('noise.png') !default;
|
||||
$footer-bg-back: linear-gradient(lighten($footer-bg, 8), $footer-bg, darken($footer-bg, 11)) !default;
|
||||
$footer-color: darken($footer-bg, 38) !default;
|
||||
$footer-color-hover: darken($footer-color, 10) !default;
|
||||
$footer-border-top: lighten($footer-bg, 15) !default;
|
||||
$footer-border-bottom: darken($footer-bg, 15) !default;
|
||||
$footer-link-color: darken($footer-bg, 38) !default;
|
||||
$footer-link-color-hover: darken($footer-color, 25) !default;
|
||||
$page-border-bottom: darken($footer-bg, 5) !default;
|
||||
|
||||
|
||||
/* Core theme application */
|
||||
|
||||
a {
|
||||
@include link-colors($link-color, $hover: $link-color-hover, $focus: $link-color-hover, $visited: $link-color-visited, $active: $link-color-active);
|
||||
}
|
||||
aside.sidebar a {
|
||||
@include link-colors($sidebar-link-color, $hover: $sidebar-link-color-hover, $focus: $sidebar-link-color-hover, $active: $sidebar-link-color-active);
|
||||
}
|
||||
a {
|
||||
@include transition(color .3s);
|
||||
}
|
||||
|
||||
html {
|
||||
background: $page-bg image-url('line-tile.png') top left;
|
||||
}
|
||||
body {
|
||||
> div {
|
||||
background: $sidebar-bg $noise-bg;
|
||||
border-bottom: 1px solid $page-border-bottom;
|
||||
> div {
|
||||
background: $main-bg $noise-bg;
|
||||
border-right: 1px solid $sidebar-border;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,161 @@
|
||||
$blockquote: $type-border !default;
|
||||
$sans: "PT Sans", "Helvetica Neue", Arial, sans-serif !default;
|
||||
$serif: "PT Serif", Georgia, Times, "Times New Roman", serif !default;
|
||||
$mono: Menlo, Monaco, "Andale Mono", "lucida console", "Courier New", monospace !default;
|
||||
$heading-font-family: "PT Serif", "Georgia", "Helvetica Neue", Arial, sans-serif !default;
|
||||
$header-title-font-family: $heading-font-family !default;
|
||||
$header-subtitle-font-family: $heading-font-family !default;
|
||||
|
||||
// Fonts
|
||||
.heading {
|
||||
font-family: $heading-font-family;
|
||||
}
|
||||
.sans { font-family: $sans; }
|
||||
.serif { font-family: $serif; }
|
||||
.mono { font-family: $mono; }
|
||||
|
||||
body > header h1 {
|
||||
font-size: 2.2em;
|
||||
@extend .heading;
|
||||
font-family: $header-title-font-family;
|
||||
font-weight: normal;
|
||||
line-height: 1.2em;
|
||||
margin-bottom: 0.6667em;
|
||||
}
|
||||
body > header h2 {
|
||||
font-family: $header-subtitle-font-family;
|
||||
}
|
||||
|
||||
body {
|
||||
line-height: 1.5em;
|
||||
color: $text-color;
|
||||
@extend .serif;
|
||||
}
|
||||
h1 {
|
||||
font-size: 2.2em;
|
||||
line-height: 1.2em;
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 992px) {
|
||||
body { font-size: 1.15em; }
|
||||
h1 { font-size: 2.6em; line-height: 1.2em; }
|
||||
}
|
||||
|
||||
#{headings()}{
|
||||
@extend .heading;
|
||||
text-rendering: optimizelegibility;
|
||||
margin-bottom: 1em;
|
||||
font-weight: bold;
|
||||
}
|
||||
h2, section h1 {
|
||||
font-size: 1.5em;
|
||||
}
|
||||
h3, section h2, section section h1 {
|
||||
font-size: 1.3em;
|
||||
}
|
||||
h4, section h3, section section h2, section section section h1 {
|
||||
font-size: 1em;
|
||||
}
|
||||
h5, section h4, section section h3 {
|
||||
font-size: .9em;
|
||||
}
|
||||
h6, section h5, section section h4, section section section h3 {
|
||||
font-size: .8em;
|
||||
}
|
||||
p, blockquote, ul, ol { margin-bottom: 1.5em; }
|
||||
|
||||
ul { list-style-type: disc;
|
||||
ul { list-style-type: circle; margin-bottom: 0px;
|
||||
ul { list-style-type: square; margin-bottom: 0px; }}}
|
||||
|
||||
ol { list-style-type: decimal;
|
||||
ol { list-style-type: lower-alpha; margin-bottom: 0px;
|
||||
ol { list-style-type: lower-roman; margin-bottom: 0px; }}}
|
||||
|
||||
ul, ol { &, ul, ol { margin-left: 1.3em; }}
|
||||
|
||||
strong { font-weight: bold; }
|
||||
|
||||
em { font-style: italic; }
|
||||
|
||||
sup, sub { font-size: 0.8em; position: relative; display: inline-block; }
|
||||
sup { top: -.5em; }
|
||||
sub { bottom: -.5em; }
|
||||
|
||||
q { font-style: italic;
|
||||
&:before { content: "\201C"; }
|
||||
&:after { content: "\201D"; }
|
||||
}
|
||||
|
||||
em, dfn { font-style: italic; }
|
||||
|
||||
strong, dfn { font-weight: bold; }
|
||||
|
||||
del, s { text-decoration: line-through; }
|
||||
|
||||
abbr, acronym { border-bottom: 1px dotted; cursor: help; }
|
||||
|
||||
pre, code, tt { @extend .mono; }
|
||||
|
||||
sub, sup { line-height: 0; }
|
||||
|
||||
hr { margin-bottom: 0.2em; }
|
||||
|
||||
small { font-size: .8em; }
|
||||
|
||||
big { font-size: 1.2em; }
|
||||
|
||||
blockquote {
|
||||
$bq-margin: 1.2em;
|
||||
font-style: italic;
|
||||
position: relative;
|
||||
font-size: 1.2em;
|
||||
line-height: 1.5em;
|
||||
padding-left: 1em;
|
||||
border-left: 4px solid rgba($text-color-light, .5);
|
||||
cite {
|
||||
font-style: italic;
|
||||
a { color: $text-color-light !important; word-wrap: break-word; }
|
||||
&:before { content: '\2014'; padding:{right: .3em; left: .3em;} color: $text-color-light; }
|
||||
}
|
||||
@media only screen and (min-width: 992px) {
|
||||
padding-left: 1.5em;
|
||||
border-left-width: 4px;
|
||||
}
|
||||
}
|
||||
|
||||
.pullquote-right:before,
|
||||
.pullquote-left:before {
|
||||
/* Reset metrics. */
|
||||
padding: 0;
|
||||
border: none;
|
||||
|
||||
/* Content */
|
||||
content: attr(data-pullquote);
|
||||
|
||||
/* Pull out to the right, modular scale based margins. */
|
||||
float: right;
|
||||
width: 45%;
|
||||
margin: .5em 0 1em 1.5em;
|
||||
|
||||
/* Baseline correction */
|
||||
position: relative;
|
||||
top: 7px;
|
||||
font-size: 1.4em;
|
||||
line-height: 1.45em;
|
||||
}
|
||||
|
||||
.pullquote-left:before {
|
||||
/* Make left pullquotes align properly. */
|
||||
float: left;
|
||||
margin: .5em 1.5em 1em 0;
|
||||
}
|
||||
|
||||
/* @extend this to force long lines of continuous text to wrap */
|
||||
.force-wrap {
|
||||
white-space: -moz-pre-wrap;
|
||||
white-space: -pre-wrap;
|
||||
white-space: -o-pre-wrap;
|
||||
white-space: pre-wrap;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
@@ -0,0 +1,28 @@
|
||||
@mixin mask-image($img, $repeat: no-repeat){
|
||||
@include experimental(mask-image, image-url($img), -webkit, -moz, -o, -ms);
|
||||
@include experimental(mask-repeat, $repeat, -webkit, -moz, -o, -ms);
|
||||
width: image-width($img);
|
||||
height: image-height($img);
|
||||
}
|
||||
|
||||
@mixin shadow-box($border: #fff .5em solid, $shadow: rgba(#000, .15) 0 1px 4px, $border-radius: .3em) {
|
||||
@include border-radius($border-radius);
|
||||
@include box-shadow($shadow);
|
||||
@include box-sizing(border-box);
|
||||
border: $border;
|
||||
}
|
||||
|
||||
@mixin selection($bg, $color: inherit, $text-shadow: none){
|
||||
* {
|
||||
&::-moz-selection { background: $bg; color: $color; text-shadow: $text-shadow; }
|
||||
&::-webkit-selection { background: $bg; color: $color; text-shadow: $text-shadow; }
|
||||
&::selection { background: $bg; color: $color; text-shadow: $text-shadow; }
|
||||
}
|
||||
}
|
||||
|
||||
@function text-color($color, $dark: dark, $light: light){
|
||||
$text-color: ( (red($color)*299) + (green($color)*587) + (blue($color)*114) ) / 1000;
|
||||
$text-color: if($text-color >= 150, $dark, $light);
|
||||
@return $text-color;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,43 @@
|
||||
// Here you can easily change your sites's color scheme.
|
||||
// To give it a try, uncomment some of the lines below rebuild your blog, and see how it works.
|
||||
// If you need a handy color picker try http://hslpicker.com
|
||||
|
||||
//$header-bg: #263347;
|
||||
//$subtitle-color: lighten($header-bg, 58);
|
||||
//$nav-bg: desaturate(lighten(#8fc17a, 18), 5);
|
||||
//$nav-bg-front: image-url('noise.png');
|
||||
//$nav-bg-back: linear-gradient(lighten($nav-bg, 8), $nav-bg, darken($nav-bg, 11));
|
||||
//$sidebar-bg: desaturate(#eceff5, 8);
|
||||
//$sidebar-link-color: saturate(#526f9a, 10);
|
||||
//$sidebar-link-color-hover: darken(#7ab662, 9);
|
||||
//$footer-bg: #ccc !default;
|
||||
//$footer-bg-front: image-url('noise.png');
|
||||
//$footer-bg-back: linear-gradient(lighten($footer-bg, 8), $footer-bg, darken($footer-bg, 11));
|
||||
|
||||
|
||||
/* To use the light Solarized highlighting theme uncomment the following line */
|
||||
//$solarized: light;
|
||||
|
||||
/* If you want to tweak the Solarized colors you can do that here */
|
||||
//$base03: #002b36; //darkest blue
|
||||
//$base02: #073642; //dark blue
|
||||
//$base01: #586e75; //darkest gray
|
||||
//$base00: #657b83; //dark gray
|
||||
//$base0: #839496; //medium gray
|
||||
//$base1: #93a1a1; //medium light gray
|
||||
//$base2: #eee8d5; //cream
|
||||
//$base3: #fdf6e3; //white
|
||||
//$solar-yellow: #b58900;
|
||||
//$solar-orange: #cb4b16;
|
||||
//$solar-red: #dc322f;
|
||||
//$solar-magenta: #d33682;
|
||||
//$solar-violet: #6c71c4;
|
||||
//$solar-blue: #268bd2;
|
||||
//$solar-cyan: #2aa198;
|
||||
//$solar-green: #859900;
|
||||
|
||||
|
||||
/* Non highlighted code colors */
|
||||
//$pre-bg: $base03;
|
||||
//$pre-border: darken($base02, 5);
|
||||
//$pre-color: $base1;
|
||||
@@ -0,0 +1,10 @@
|
||||
// Here you can easily change font faces which are used in your site.
|
||||
// To give it a try, uncomment some of the lines below rebuild your blog, and see how it works. your sites's.
|
||||
// If you love to use Web Fonts, you also need to add some lines to source/_includes/custom/head.html
|
||||
|
||||
//$sans: "Optima", sans-serif;
|
||||
//$serif: "Baskerville", serif;
|
||||
//$mono: "Courier", monospace;
|
||||
//$heading-font-family: "Verdana", sans-serif;
|
||||
//$header-title-font-family: "Futura", sans-serif;
|
||||
//$header-subtitle-font-family: "Futura", sans-serif;
|
||||
@@ -0,0 +1,21 @@
|
||||
// Here you can easily change your sites's layout.
|
||||
// To give it a try, uncomment some of the lines below, make changes, rebuild your blog, and see how it works.
|
||||
|
||||
//$header-font-size: 1em;
|
||||
//$header-padding-top: 1.5em;
|
||||
//$header-padding-bottom: 1.5em;
|
||||
|
||||
//$max-width: 1350px;
|
||||
//$indented-lists: true;
|
||||
|
||||
// Padding used for layout margins
|
||||
//$pad-min: 18px;
|
||||
//$pad-narrow: 25px;
|
||||
//$pad-medium: 35px;
|
||||
//$pad-wide: 55px;
|
||||
|
||||
// Sidebar widths used in media queries
|
||||
//$sidebar-width-medium: 240px;
|
||||
//$sidebar-pad-medium: 15px;
|
||||
//$sidebar-pad-wide: 20px;
|
||||
//$sidebar-width-wide: 300px;
|
||||
@@ -0,0 +1,2 @@
|
||||
// This File is imported last, and will override other styles in the cascade
|
||||
// Add styles here to make changes without digging in too much
|
||||
@@ -0,0 +1,72 @@
|
||||
#archive {
|
||||
#content > div { &, > article { padding-top: 0; } }
|
||||
}
|
||||
#blog-archives {
|
||||
article {
|
||||
padding: 1em 0 1em;
|
||||
position: relative;
|
||||
background: $img-border bottom left repeat-x;
|
||||
&:last-child {
|
||||
background: none;
|
||||
}
|
||||
footer { padding: 0; margin: 0;}
|
||||
}
|
||||
h1 { color: $text-color; margin-bottom: .3em; }
|
||||
h2 { display: none; }
|
||||
h1 {
|
||||
font-size: 1.5em;
|
||||
a {
|
||||
@include hover-link;
|
||||
color: inherit;
|
||||
&:hover { color: $link-color-hover; }
|
||||
font-weight: normal;
|
||||
display: inline-block;
|
||||
}
|
||||
}
|
||||
a.category, time {
|
||||
@extend .sans;
|
||||
color: $text-color-light;
|
||||
}
|
||||
color: $text-color-light;
|
||||
.entry-content { display: none; }
|
||||
time {
|
||||
font-size: .9em;
|
||||
line-height: 1.2em;
|
||||
.month, .day { display: inline-block; }
|
||||
.month { text-transform: uppercase; }
|
||||
}
|
||||
p { margin-bottom: 1em; }
|
||||
&, .entry-content { a { @include link-colors(inherit, $link-color-hover); }}
|
||||
a:hover { color: $link-color-hover; }
|
||||
@media only screen and (min-width: 550px) {
|
||||
article { margin-left: 5em; }
|
||||
h2 {
|
||||
margin-bottom: .3em;
|
||||
font-weight: normal;
|
||||
display: inline-block;
|
||||
position: relative; top: -1px;
|
||||
float: left;
|
||||
&:first-child { padding-top: .75em; }
|
||||
}
|
||||
time {
|
||||
position: absolute;
|
||||
text-align: right;
|
||||
left: 0em;
|
||||
top: 1.8em;
|
||||
}
|
||||
.year { display: none; }
|
||||
article {
|
||||
padding:{left: 4.5em; bottom: .7em;}
|
||||
}
|
||||
a.category {
|
||||
line-height: 1.1em;
|
||||
}
|
||||
}
|
||||
}
|
||||
#content > .category {
|
||||
article {
|
||||
margin-left: 0;
|
||||
padding-left: 6.8em;
|
||||
}
|
||||
.year { display: inline; }
|
||||
}
|
||||
@@ -0,0 +1,141 @@
|
||||
article {
|
||||
padding-top: 1em;
|
||||
a { @extend .force-wrap; }
|
||||
header {
|
||||
position: relative;
|
||||
padding-top: 2em;
|
||||
padding-bottom: 1em;
|
||||
margin-bottom: 1em;
|
||||
background: $img-border bottom left repeat-x;
|
||||
h1 {
|
||||
margin: 0;
|
||||
a { text-decoration: none;
|
||||
&:hover { text-decoration: underline; } }
|
||||
}
|
||||
p {
|
||||
font-size: .9em;
|
||||
color: $text-color-light;
|
||||
margin: 0;
|
||||
&.meta {
|
||||
@extend .sans;
|
||||
text-transform: uppercase;
|
||||
position: absolute; top: 0;
|
||||
}
|
||||
}
|
||||
@media only screen and (min-width: 768px) {
|
||||
margin-bottom: 1.5em;
|
||||
padding-bottom: 1em;
|
||||
background: $img-border bottom left repeat-x;
|
||||
}
|
||||
}
|
||||
h2 {
|
||||
padding-top: 0.8em;
|
||||
background: $img-border top left repeat-x;
|
||||
}
|
||||
.entry-content & h2:first-child, header + h2 { padding-top: 0; }
|
||||
h2:first-child, header + h2 { background: none; }
|
||||
.feature {
|
||||
padding-top: .5em;
|
||||
margin-bottom: 1em;
|
||||
padding-bottom: 1em;
|
||||
background: $img-border bottom left repeat-x;
|
||||
font-size: 2.0em; font-style: italic;
|
||||
line-height: 1.3em;
|
||||
}
|
||||
img, video, .flash-video {
|
||||
@extend .flex-content;
|
||||
@extend .basic-alignment;
|
||||
@include shadow-box;
|
||||
}
|
||||
video, .flash-video { margin: 0 auto 1.5em; }
|
||||
video { display: block; width: 100%; }
|
||||
.flash-video {
|
||||
> div {
|
||||
position: relative;
|
||||
display: block;
|
||||
padding-bottom: 56.25%;
|
||||
padding-top: 1px;
|
||||
height: 0;
|
||||
overflow: hidden;
|
||||
iframe, object, embed {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
> footer {
|
||||
padding-bottom: 2.5em;
|
||||
margin-top: 2em;
|
||||
@extend .sans;
|
||||
p.meta {
|
||||
margin-bottom: .8em;
|
||||
font-size: .85em;
|
||||
clear: both;
|
||||
overflow: hidden;
|
||||
}
|
||||
.byline + time:before, time +time:before, .comments:before, .byline ~ .categories:before {
|
||||
@extend .separator;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
article + article {
|
||||
.blog-index & {
|
||||
background: $img-border top left repeat-x;
|
||||
}
|
||||
}
|
||||
#content .blog-index {
|
||||
padding: { top: 0; bottom: 0; }
|
||||
article { padding-top: 2em; }
|
||||
article header { background: none; padding-bottom: 0; }
|
||||
article h1 {
|
||||
font-size: 2.2em;
|
||||
a { color: inherit; &:hover { color: $link-color-hover; } }
|
||||
}
|
||||
a[rel=full-article] {
|
||||
background: darken($main-bg, 5);
|
||||
display: inline-block;
|
||||
padding: .4em .8em;
|
||||
margin-right: .5em;
|
||||
text-decoration: none;
|
||||
color: mix($text-color, $text-color-light);
|
||||
@extend .serif;
|
||||
@include transition(background-color .5s);
|
||||
&:hover {
|
||||
background: $link-color-hover;
|
||||
text-shadow: none;
|
||||
color: $main-bg;
|
||||
}
|
||||
}
|
||||
footer {
|
||||
@extend .sans;
|
||||
margin-top: 1em;
|
||||
}
|
||||
}
|
||||
|
||||
.separator {
|
||||
content: "\2022 ";
|
||||
padding: 0 .4em 0 .2em;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
#content div.pagination {
|
||||
text-align: center;
|
||||
font-size: .95em;
|
||||
position: relative;
|
||||
background: $img-border top left repeat-x;
|
||||
padding: {top: 1.5em; bottom: 1.5em;}
|
||||
a {
|
||||
text-decoration: none;
|
||||
color: $text-color-light;
|
||||
&.prev { position: absolute; left: 0; }
|
||||
&.next { position: absolute; right: 0; }
|
||||
&:hover { color: $link-color-hover; }
|
||||
&[href*=archive] {
|
||||
&:before, &:after { content: '\2014'; padding: 0 .3em; }
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
body > footer {
|
||||
@extend .sans;
|
||||
font-size: .8em;
|
||||
color: $footer-color;
|
||||
text-shadow: lighten($footer-bg, 5) 0 1px;
|
||||
background-color: $footer-bg;
|
||||
@include background($footer-bg-front, $footer-bg-back);
|
||||
border-top: 1px solid $footer-border-top;
|
||||
position: relative;
|
||||
padding-top: 1em;
|
||||
padding-bottom: 1em;
|
||||
margin-bottom: 3em;
|
||||
@include border-bottom-radius(.4em);
|
||||
z-index: 1;
|
||||
a {
|
||||
@include link-colors($footer-link-color, $footer-link-color-hover, $visited: $footer-link-color);
|
||||
}
|
||||
p:last-child { margin-bottom: 0; }
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
body > header {
|
||||
background: $header-bg;
|
||||
h1 {
|
||||
display: inline-block;
|
||||
margin: 0;
|
||||
a, a:visited, a:hover {
|
||||
color: $title_color;
|
||||
text-decoration: none;
|
||||
}
|
||||
}
|
||||
h2 {
|
||||
margin: .2em 0 0;
|
||||
@extend .sans;
|
||||
font-size: 1em;
|
||||
color: $subtitle-color;
|
||||
font-weight: normal;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,137 @@
|
||||
body > nav {
|
||||
position: relative;
|
||||
background-color: $nav-bg;
|
||||
@include background($nav-bg-front, $nav-bg-back);
|
||||
border: {
|
||||
top: 1px solid $nav-border-top;
|
||||
bottom: 1px solid $nav-border-bottom; }
|
||||
padding-top: .35em;
|
||||
padding-bottom: .35em;
|
||||
form {
|
||||
@include background-clip(padding-box);
|
||||
margin: 0; padding: 0;
|
||||
.search {
|
||||
padding: .3em .5em 0;
|
||||
font-size: .85em;
|
||||
font-family: $sans;
|
||||
line-height: 1.1em;
|
||||
width: 95%;
|
||||
@include border-radius(.5em);
|
||||
@include background-clip(padding-box);
|
||||
@include box-shadow(lighten($nav-bg, 2) 0 1px);
|
||||
background-color: lighten($nav-bg, 15);
|
||||
border: 1px solid $nav-border;
|
||||
color: #888;
|
||||
&:focus {
|
||||
color: #444;
|
||||
border-color: #80b1df;
|
||||
@include box-shadow(#80b1df 0 0 4px, #80b1df 0 0 3px inset);
|
||||
background-color: #fff;
|
||||
outline: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
fieldset[role=search]{ float: right; width: 48%; }
|
||||
fieldset.mobile-nav{ float: left; width: 48%;
|
||||
select{ width: 100%; font-size: .8em; border: 1px solid #888;}
|
||||
}
|
||||
ul { display: none; }
|
||||
@media only screen and (min-width: 550px) {
|
||||
font-size: .9em;
|
||||
ul {
|
||||
@include horizontal-list(0);
|
||||
float: left;
|
||||
display: block;
|
||||
padding-top: .15em;
|
||||
}
|
||||
ul.subscription {
|
||||
margin-left: .8em;
|
||||
float: right;
|
||||
li:last-child a { padding-right: 0; }
|
||||
}
|
||||
ul li {
|
||||
margin: 0;
|
||||
}
|
||||
a {
|
||||
@include link-colors($nav-color, $nav-color-hover, $visited: $nav-color);
|
||||
font-family: $sans;
|
||||
text-shadow: lighten($nav-bg, 12) 0 1px;
|
||||
float: left;
|
||||
text-decoration: none;
|
||||
font-size: 1.1em;
|
||||
padding: .1em 0;
|
||||
line-height: 1.5em;
|
||||
}
|
||||
li + li {
|
||||
border-left: 1px solid $nav-border-left;
|
||||
margin-left: .8em;
|
||||
a {
|
||||
padding-left: .8em;
|
||||
border-left: 1px solid $nav-border-right;
|
||||
}
|
||||
}
|
||||
form {
|
||||
float: right;
|
||||
text-align: left;
|
||||
padding-left: .8em;
|
||||
width: $sidebar-width-medium - $pad-medium*2 - $sidebar-pad-medium + 20px;
|
||||
.search {
|
||||
width: 93%;
|
||||
font-size: .95em;
|
||||
line-height: 1.2em;
|
||||
}
|
||||
}
|
||||
ul[data-subscription$=email] + form {
|
||||
width: $sidebar-width-medium - $pad-medium*2 - $sidebar-pad-medium - 58px;
|
||||
.search { width: 91%; }
|
||||
}
|
||||
fieldset.mobile-nav { display: none; }
|
||||
fieldset[role=search]{ width: 99%; }
|
||||
}
|
||||
@media only screen and (min-width: 992px) {
|
||||
form {
|
||||
width: $sidebar-width-wide - $pad-wide - $sidebar-pad-wide*2 + 10px;
|
||||
}
|
||||
ul[data-subscription$=email] + form {
|
||||
width: $sidebar-width-wide - $pad-wide - $sidebar-pad-wide*2 - 58px;
|
||||
}
|
||||
}
|
||||
}
|
||||
.no-placeholder {
|
||||
body > nav .search {
|
||||
background: lighten($nav-bg, 15) image-url('search.png') .3em .25em no-repeat;
|
||||
text-indent: 1.3em;
|
||||
}
|
||||
}
|
||||
@mixin mask-subscription-nav($feed: 'rss.png'){
|
||||
position: relative; top: 0px;
|
||||
text-indent: -999999em;
|
||||
background-color: $nav-border-right;
|
||||
border: 0;
|
||||
padding: 0;
|
||||
&,&:after { @include mask-image($feed); }
|
||||
&:after {
|
||||
content: "";
|
||||
position: absolute; top: -1px; left: 0;
|
||||
background-color: lighten($nav-color, 25);
|
||||
}
|
||||
&:hover:after { background-color: lighten($nav-color, 20); }
|
||||
}
|
||||
.maskImage {
|
||||
body > nav {
|
||||
@media only screen and (min-width: 550px) {
|
||||
ul[data-subscription$=email] + form {
|
||||
width: $sidebar-width-medium - $pad-medium*2 - $sidebar-pad-medium - 32px;
|
||||
}
|
||||
}
|
||||
@media only screen and (min-width: 992px) {
|
||||
ul[data-subscription$=email] + form {
|
||||
width: $sidebar-width-wide - $pad-wide - $sidebar-pad-wide*2 - 32px;
|
||||
}
|
||||
}
|
||||
}
|
||||
ul.subscription { position: relative; top: .2em; li, a { border: 0; padding: 0; }}
|
||||
a[rel=subscribe-rss]{ @include mask-subscription-nav('rss.png'); }
|
||||
a[rel=subscribe-email]{ @include mask-subscription-nav('email.png'); }
|
||||
}
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
.sharing {
|
||||
p.meta + & {
|
||||
padding: { top: 1em; left: 0; }
|
||||
background: $img-border top left repeat-x;
|
||||
}
|
||||
}
|
||||
|
||||
#fb-root { display: none; }
|
||||
@@ -0,0 +1,5 @@
|
||||
@import "sidebar/base";
|
||||
@import "sidebar/twitter";
|
||||
@import "sidebar/googleplus";
|
||||
@import "sidebar/pinboard";
|
||||
@import "sidebar/delicious";
|
||||
@@ -0,0 +1,261 @@
|
||||
.highlight, html .gist .gist-file .gist-syntax .gist-highlight {
|
||||
table td.code { width: 100%; }
|
||||
border: 1px solid $pre-border !important;
|
||||
}
|
||||
.highlight .line-numbers, html .gist .gist-file .gist-syntax .highlight .line_numbers {
|
||||
text-align: right;
|
||||
font-size: 13px;
|
||||
line-height: 1.45em;
|
||||
@if $solarized == light {
|
||||
background: lighten($base03, 1) $noise-bg !important;
|
||||
border-right: 1px solid darken($base02, 2) !important;
|
||||
@include box-shadow(lighten($base03, 2) -1px 0 inset);
|
||||
text-shadow: lighten($base02, 2) 0 -1px;
|
||||
} @else {
|
||||
background: $base02 $noise-bg !important;
|
||||
border-right: 1px solid darken($base03, 2) !important;
|
||||
@include box-shadow(lighten($base02, 2) -1px 0 inset);
|
||||
text-shadow: darken($base02, 10) 0 -1px;
|
||||
}
|
||||
span { color: $base01 !important; }
|
||||
padding: .8em !important;
|
||||
@include border-radius(0);
|
||||
}
|
||||
|
||||
figure.code, .gist-file, pre {
|
||||
@include box-shadow(rgba(#000, .06) 0 0 10px);
|
||||
.highlight pre { @include box-shadow(none); }
|
||||
}
|
||||
|
||||
.gist .highlight, figure.code .highlight {
|
||||
@include selection(adjust-color($base03, $lightness: 23%, $saturation: -65%), $text-shadow: $base03 0 1px);
|
||||
}
|
||||
html .gist .gist-file {
|
||||
margin-bottom: 1.8em;
|
||||
position: relative;
|
||||
border: none;
|
||||
padding-top: image-height("code_bg.png") !important;
|
||||
.highlight {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.gist-syntax {
|
||||
border-bottom: 0 !important;
|
||||
background: none !important;
|
||||
.gist-highlight {
|
||||
background: $base03 !important;
|
||||
}
|
||||
.highlight pre {
|
||||
@extend .pre-code;
|
||||
padding: 0;
|
||||
}
|
||||
}
|
||||
.gist-meta {
|
||||
padding: .6em 0.8em;
|
||||
border: 1px solid lighten($base02, 2) !important;
|
||||
color: $base01;
|
||||
font-size: .7em !important;
|
||||
@if $solarized == light {
|
||||
background: lighten($base03, 2) $noise-bg;
|
||||
border: 1px solid $pre-border !important;
|
||||
border-top: 1px solid lighten($base03, 2) !important;
|
||||
} @else {
|
||||
background: $base02 $noise-bg;
|
||||
}
|
||||
@extend .sans;
|
||||
line-height: 1.5em;
|
||||
a {
|
||||
color: mix($base1, $base01) !important;
|
||||
@include hover-link;
|
||||
&:hover { color: $base1 !important; }
|
||||
}
|
||||
a[href*='#file'] {
|
||||
position: absolute; top: 0; left:0; right:-10px;
|
||||
color: #474747 !important;
|
||||
@extend .code-title;
|
||||
&:hover { color: $link-color !important; }
|
||||
}
|
||||
a[href*=raw]{
|
||||
@extend .download-source;
|
||||
top: .4em;
|
||||
}
|
||||
}
|
||||
}
|
||||
pre {
|
||||
background: $pre-bg $noise-bg;
|
||||
@include border-radius(.4em);
|
||||
@extend .mono;
|
||||
border: 1px solid $pre-border;
|
||||
line-height: 1.45em;
|
||||
font-size: 13px;
|
||||
margin-bottom: 2.1em;
|
||||
padding: .8em 1em;
|
||||
color: $pre-color;
|
||||
overflow: auto;
|
||||
}
|
||||
h3.filename {
|
||||
@extend .code-title;
|
||||
+ pre { @include border-top-radius(0px); }
|
||||
}
|
||||
|
||||
p, li {
|
||||
code {
|
||||
@extend .mono;
|
||||
display: inline-block;
|
||||
white-space: no-wrap;
|
||||
background: #fff;
|
||||
font-size: .8em;
|
||||
line-height: 1.5em;
|
||||
color: #555;
|
||||
border: 1px solid #ddd;
|
||||
@include border-radius(.4em);
|
||||
padding: 0 .3em;
|
||||
margin: -1px 0;
|
||||
}
|
||||
pre code { font-size: 1em !important; background: none; border: none; }
|
||||
}
|
||||
|
||||
.pre-code {
|
||||
font-family: $mono !important;
|
||||
overflow: scroll;
|
||||
overflow-y: hidden;
|
||||
display: block;
|
||||
padding: .8em;
|
||||
overflow-x: auto;
|
||||
line-height: 1.45em;
|
||||
background: $base03 $noise-bg !important;
|
||||
color: $base1 !important;
|
||||
span { color: $base1 !important; }
|
||||
span { font-style: normal !important; font-weight: normal !important; }
|
||||
|
||||
.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 */
|
||||
//.gr { color: #aa0000 } /* Generic.Error */
|
||||
.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 */
|
||||
//.go { color: #888888 } /* Generic.Output */
|
||||
//.gp { color: #555555 } /* Generic.Prompt */
|
||||
.gs { color: $base1 !important; font-weight: bold !important; } /* Generic.Strong */
|
||||
.gu { color: $solar-violet !important; } /* Generic.Subheading */
|
||||
//.gt { color: #aa0000 } /* Generic.Traceback */
|
||||
.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 */
|
||||
//.ni { color: #800080 } /* Name.Entity */
|
||||
.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; }
|
||||
//.bp { color: #999999 } /* Name.Builtin.Pseudo */
|
||||
//.vc { color: #008080 } /* Name.Variable.Class */
|
||||
.vg { color: $solar-blue !important; } /* Name.Variable.Global */
|
||||
.vi { color: $solar-blue !important; } /* Name.Variable.Instance */
|
||||
.nv { color: $solar-blue !important; } /* Name.Variable */
|
||||
//.w { color: #bbbbbb } /* Text.Whitespace */
|
||||
.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 */
|
||||
//.mo { color: #009999 } /* Literal.Number.Oct */
|
||||
.s { color: $solar-cyan !important; } /* Literal.String */
|
||||
//.sb { color: #d14 } /* Literal.String.Backtick */
|
||||
//.sc { color: #d14 } /* Literal.String.Char */
|
||||
.sd { color: $solar-cyan !important; } /* Literal.String.Doc */
|
||||
.s2 { color: $solar-cyan !important; } /* Literal.String.Double */
|
||||
.se { color: $solar-red !important; } /* Literal.String.Escape */
|
||||
//.sh { color: #d14 } /* Literal.String.Heredoc */
|
||||
.si { color: $solar-blue !important; } /* Literal.String.Interpol */
|
||||
//.sx { color: #d14 } /* Literal.String.Other */
|
||||
.sr { color: $solar-cyan !important; } /* Literal.String.Regex */
|
||||
.s1 { color: $solar-cyan !important; } /* Literal.String.Single */
|
||||
//.ss { color: #990073 } /* Literal.String.Symbol */
|
||||
//.il { color: #009999 } /* Literal.Number.Integer.Long */
|
||||
div { .gd, .gd .x, .gi, .gi .x { display: inline-block; width: 100%; }}
|
||||
}
|
||||
|
||||
.highlight, .gist-highlight {
|
||||
pre { background: none; @include border-radius(0px); border: none; padding: 0; margin-bottom: 0; }
|
||||
margin-bottom: 1.8em;
|
||||
background: $base03;
|
||||
overflow-y: hidden;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
$solar-scroll-bg: rgba(#fff, .15);
|
||||
$solar-scroll-thumb: rgba(#fff, .2);
|
||||
@if $solarized == light {
|
||||
$solar-scroll-bg: rgba(#000, .15);
|
||||
$solar-scroll-thumb: rgba(#000, .15);
|
||||
}
|
||||
|
||||
pre, .highlight, .gist-highlight {
|
||||
&::-webkit-scrollbar { height: .5em; background: $solar-scroll-bg; }
|
||||
&::-webkit-scrollbar-thumb:horizontal { background: $solar-scroll-thumb; -webkit-border-radius: 4px; border-radius: 4px }
|
||||
}
|
||||
|
||||
.highlight code {
|
||||
@extend .pre-code; background: #000;
|
||||
}
|
||||
figure.code {
|
||||
background: none;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
margin-bottom: 1.5em;
|
||||
pre { margin-bottom: 0; }
|
||||
figcaption {
|
||||
position: relative;
|
||||
@extend .code-title;
|
||||
a { @extend .download-source; }
|
||||
}
|
||||
.highlight {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.code-title {
|
||||
text-align: center;
|
||||
font-size: 13px;
|
||||
line-height: 2em;
|
||||
text-shadow: #cbcccc 0 1px 0;
|
||||
color: #474747;
|
||||
font-weight: normal;
|
||||
margin-bottom: 0;
|
||||
@include border-top-radius(5px);
|
||||
font-family: "Helvetica Neue", Arial, "Lucida Grande", "Lucida Sans Unicode", Lucida, sans-serif;
|
||||
background: #aaaaaa image-url("code_bg.png") top repeat-x;
|
||||
border: 1px solid #565656;
|
||||
border-top-color: #cbcbcb;
|
||||
border-left-color: #a5a5a5;
|
||||
border-right-color: #a5a5a5;
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
.download-source {
|
||||
position: absolute; right: .8em;
|
||||
@include hover-link;
|
||||
color: #666 !important;
|
||||
z-index: 1;
|
||||
font-size: 13px;
|
||||
text-shadow: #cbcccc 0 1px 0;
|
||||
padding-left: 3em;
|
||||
}
|
||||
@@ -0,0 +1,106 @@
|
||||
.side-shadow-border {
|
||||
@include box-shadow(lighten($sidebar-bg, 5) 0 1px);
|
||||
}
|
||||
aside.sidebar {
|
||||
overflow: hidden;
|
||||
color: $sidebar-color;
|
||||
text-shadow: lighten($sidebar-bg, 8) 0 1px;
|
||||
a { @extend .force-wrap; }
|
||||
section {
|
||||
@extend .sans;
|
||||
font-size: .8em;
|
||||
line-height: 1.4em;
|
||||
margin-bottom: 1.5em;
|
||||
h1 {
|
||||
margin: 1.5em 0 0;
|
||||
padding-bottom: .2em;
|
||||
border-bottom: 1px solid $sidebar-border;
|
||||
@extend .side-shadow-border;
|
||||
+ p {
|
||||
padding-top: .4em;
|
||||
}
|
||||
}
|
||||
}
|
||||
img {
|
||||
@extend .flex-content;
|
||||
@extend .basic-alignment;
|
||||
@include shadow-box($border: #fff .3em solid);
|
||||
}
|
||||
ul {
|
||||
margin-bottom: 0.5em;
|
||||
margin-left: 0;
|
||||
}
|
||||
li {
|
||||
list-style: none;
|
||||
padding: .5em 0;
|
||||
margin: 0;
|
||||
border-bottom: 1px solid $sidebar-border;
|
||||
@extend .side-shadow-border;
|
||||
p:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
a {
|
||||
color: inherit;
|
||||
@include transition(color .5s);
|
||||
}
|
||||
&:hover a {
|
||||
color: $sidebar-link-color;
|
||||
&:hover { color: $sidebar-link-color-hover; }
|
||||
}
|
||||
}
|
||||
.aside-alt-link {
|
||||
color: $sidebar-link-color-subdued;
|
||||
&:hover {
|
||||
color: $sidebar-link-color-subdued-hover;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 768px) {
|
||||
.toggle-sidebar {
|
||||
outline: none;
|
||||
position: absolute; right: -10px; top: 0; bottom: 0;
|
||||
display: inline-block;
|
||||
text-decoration: none;
|
||||
color: mix($text-color-light, $sidebar-bg);
|
||||
width: 9px;
|
||||
cursor: pointer;
|
||||
&:hover {
|
||||
background: mix($sidebar-border, $sidebar-bg);
|
||||
@include background(linear-gradient(left, rgba($sidebar-border, .5), rgba($sidebar-border, 0)));
|
||||
}
|
||||
&:after {
|
||||
position: absolute; right: -11px; top: 0;
|
||||
width: 20px;
|
||||
font-size: 1.2em;
|
||||
line-height: 1.1em;
|
||||
padding-bottom: .15em;
|
||||
@include border-bottom-right-radius(.3em);
|
||||
text-align: center;
|
||||
background: $main-bg $noise-bg;
|
||||
border-bottom: 1px solid $sidebar-border;
|
||||
border-right: 1px solid $sidebar-border;
|
||||
content: "\00BB";
|
||||
text-indent: -1px;
|
||||
}
|
||||
.collapse-sidebar & {
|
||||
text-indent: 0px;
|
||||
right: -20px;
|
||||
width: 19px;
|
||||
&:hover {
|
||||
background: mix($sidebar-border, $sidebar-bg);
|
||||
}
|
||||
&:after {
|
||||
border-left: 1px solid $sidebar-border;
|
||||
text-shadow: #fff 0 1px;
|
||||
content: "\00AB";
|
||||
left: 0px; right: 0;
|
||||
text-align: center;
|
||||
text-indent: 0;
|
||||
border: 0;
|
||||
border-right-width: 0;
|
||||
background: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
.delicious-posts {
|
||||
a.delicious-link { margin-bottom: .5em; display: block; }
|
||||
p { font-size: 1em; }
|
||||
}
|
||||
@@ -0,0 +1,26 @@
|
||||
.googleplus {
|
||||
h1 {
|
||||
-moz-box-shadow: none !important;
|
||||
-webkit-box-shadow: none !important;
|
||||
-o-box-shadow: none !important;
|
||||
box-shadow: none !important;
|
||||
border-bottom: 0px none !important;
|
||||
}
|
||||
a {
|
||||
text-decoration: none;
|
||||
white-space: normal !important;
|
||||
line-height: 32px;
|
||||
|
||||
img {
|
||||
float: left;
|
||||
margin-right: 0.5em;
|
||||
border: 0 none;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.googleplus-hidden {
|
||||
position: absolute;
|
||||
top: -1000em;
|
||||
left: -1000em;
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
#pinboard_linkroll {
|
||||
.pin-title, .pin-description {
|
||||
display: block;
|
||||
margin-bottom: .5em;
|
||||
}
|
||||
.pin-tag {
|
||||
@include hover-link;
|
||||
@extend .aside-alt-link;
|
||||
&:after { content: ','; }
|
||||
&:last-child:after { content: ''; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,34 @@
|
||||
#tweets {
|
||||
.loading {
|
||||
background: inline-image('bird_32_gray.png') no-repeat center .5em;
|
||||
color: darken($sidebar-bg, 18);
|
||||
text-shadow: $main-bg 0 1px;
|
||||
text-align: center;
|
||||
padding: 2.5em 0 .5em;
|
||||
&.error {
|
||||
background: inline-image('bird_32_gray_fail.png') no-repeat center .5em;
|
||||
}
|
||||
}
|
||||
p {
|
||||
position: relative;
|
||||
padding-right: 1em;
|
||||
}
|
||||
a[href*=status]:first-child {
|
||||
color: $twitter-status-link;
|
||||
float: right;
|
||||
padding: 0 0 .1em 1em;
|
||||
position: relative; right: -1.3em;
|
||||
text-shadow: #fff 0 1px;
|
||||
font-size: .7em;
|
||||
span { font-size: 1.5em; }
|
||||
text-decoration: none;
|
||||
&:hover {
|
||||
color: $sidebar-link-color-subdued-hover;
|
||||
text-decoration: none;
|
||||
}
|
||||
}
|
||||
a[href*='twitter.com/search']{
|
||||
@extend .aside-alt-link;
|
||||
@include hover-link;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
@import "compass";
|
||||
@include global-reset;
|
||||
@include reset-html5;
|
||||
|
||||
@import "custom/colors";
|
||||
@import "custom/fonts";
|
||||
@import "custom/layout";
|
||||
@import "base";
|
||||
@import "partials";
|
||||
@import "custom/styles";
|
||||
@@ -0,0 +1 @@
|
||||
toozhao.com
|
||||
@@ -0,0 +1,4 @@
|
||||
{% include fancybox.html %}
|
||||
{% include phasebeam.html %}
|
||||
{% include disqus.html %}
|
||||
{% include custom/after_footer.html %}
|
||||
@@ -0,0 +1,16 @@
|
||||
{% capture date %}{{ post.date }}{% endcapture %}
|
||||
{% capture this_year %}{{ date | date: "%Y" }}{% endcapture %}
|
||||
{% unless year == this_year %}
|
||||
{% assign year = this_year %}
|
||||
{% unless forloop.first %}
|
||||
</section>
|
||||
{% endunless %}
|
||||
<section class="archives"><div class="year">{{ date | date: "%Y" }}</div>
|
||||
{% endunless %}
|
||||
<article class="archive">
|
||||
<h1 class="title"><a href="{{ root_url }}{{ post.url }}">{{ post.title }}</a></h1>
|
||||
<footer>
|
||||
<time datetime="{{ date | datetime | date_to_xmlschema }}">{{ date | date: "%b %e" }}</time>
|
||||
<div class="tags">{{ post.categories | category_links }}</div>
|
||||
</footer>
|
||||
</article>
|
||||
@@ -0,0 +1,32 @@
|
||||
<header>
|
||||
{% if index %}
|
||||
<h1 class="title"><a href="{{ root_url }}{{ post.url }}">{% if site.titlecase %}{{ post.title | titlecase }}{% else %}{{ post.title }}{% endif %}</a></h1>
|
||||
{% else %}
|
||||
<h1 class="title">{% if site.titlecase %}{{ page.title | titlecase }}{% else %}{{ page.title }}{% endif %}</h1>
|
||||
{% endif %}
|
||||
{% if post or page.single %}{% include post/date.html %}{% endif %}
|
||||
</header>
|
||||
<div class="entry-content">
|
||||
{% if index %}
|
||||
{{ content | excerpt }}
|
||||
{% else %}
|
||||
{{ content }}
|
||||
{% unless index %}
|
||||
{% include post/sharing.html %}
|
||||
{% endunless %}
|
||||
{% endif %}
|
||||
{% if post or page.single %}
|
||||
<footer class="meta">
|
||||
{% include post/categories.html %}
|
||||
{% if site.disqus_short_name and site.disqus_show_comment_count == true %}
|
||||
{% if post.comments == true %}
|
||||
<a class="comment" href="{{ root_url }}{{ post.url }}#disqus_thread">Comments</a>
|
||||
{% endif %}
|
||||
{% if page.comments == true %}
|
||||
<a class="comment" href="{{ root_url }}{{ page.url }}#disqus_thread">Comments</a>
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
</footer>
|
||||
{% endif %}
|
||||
</div>
|
||||
{% include post/comment.html %}
|
||||
@@ -0,0 +1,8 @@
|
||||
{% if site.delicious_user %}
|
||||
<section>
|
||||
<h1>On Delicious</h1>
|
||||
<div id="delicious"></div>
|
||||
<script type="text/javascript" src="http://feeds.delicious.com/v2/json/{{ site.delicious_user }}?count={{ site.delicious_count }}&sort=date&callback=renderDeliciousLinks"></script>
|
||||
<p><a href="http://delicious.com/{{ site.delicious_user }}">My Delicious Bookmarks »</a></p>
|
||||
</section>
|
||||
{% endif %}
|
||||
@@ -0,0 +1,30 @@
|
||||
{% if site.github_user %}
|
||||
<section>
|
||||
<h1>GitHub Repos</h1>
|
||||
<ul id="gh_repos">
|
||||
<li class="loading">Status updating...</li>
|
||||
</ul>
|
||||
{% if site.github_show_profile_link %}
|
||||
<a href="https://github.com/{{site.github_user}}">@{{site.github_user}}</a> on GitHub
|
||||
{% endif %}
|
||||
<script type="text/javascript">
|
||||
$.domReady(function(){
|
||||
if (!window.jXHR){
|
||||
var jxhr = document.createElement('script');
|
||||
jxhr.type = 'text/javascript';
|
||||
jxhr.src = '{{ root_url}}/javascripts/libs/jXHR.js';
|
||||
var s = document.getElementsByTagName('script')[0];
|
||||
s.parentNode.insertBefore(jxhr, s);
|
||||
}
|
||||
|
||||
github.showRepos({
|
||||
user: '{{site.github_user}}',
|
||||
count: {{site.github_repo_count}},
|
||||
skip_forks: {{site.github_skip_forks}},
|
||||
target: '#gh_repos'
|
||||
});
|
||||
});
|
||||
</script>
|
||||
<script src="{{ root_url }}/javascripts/github.js" type="text/javascript"> </script>
|
||||
</section>
|
||||
{% endif %}
|
||||
@@ -0,0 +1,11 @@
|
||||
{% if site.googleplus_user %}
|
||||
<section class="googleplus{% if site.googleplus_hidden %} googleplus-hidden{% endif %}">
|
||||
<h1>
|
||||
<a href="https://plus.google.com/{{ site.googleplus_user }}?rel=author">
|
||||
<img src="http://www.google.com/images/icons/ui/gprofile_button-32.png" width="32" height="32">
|
||||
Google+
|
||||
</a>
|
||||
</h1>
|
||||
</section>
|
||||
{% endif %}
|
||||
|
||||
@@ -0,0 +1,19 @@
|
||||
{% if site.pinboard_user %}
|
||||
<section>
|
||||
<h1>My Pinboard</h1>
|
||||
<ul id="pinboard_linkroll">Fetching linkroll...</ul>
|
||||
<p><a href="http://pinboard.in/u:{{ site.pinboard_user }}">My Pinboard Bookmarks »</a></p>
|
||||
</section>
|
||||
<script type="text/javascript">
|
||||
var linkroll = 'pinboard_linkroll'; //id target for pinboard list
|
||||
var pinboard_user = "{{ site.pinboard_user }}"; //id target for pinboard list
|
||||
var pinboard_count = {{ site.pinboard_count }}; //id target for pinboard list
|
||||
(function(){
|
||||
var pinboardInit = document.createElement('script');
|
||||
pinboardInit.type = 'text/javascript';
|
||||
pinboardInit.async = true;
|
||||
pinboardInit.src = '{{ root_url }}/javascripts/pinboard.js';
|
||||
document.getElementsByTagName('head')[0].appendChild(pinboardInit);
|
||||
})();
|
||||
</script>
|
||||
{% endif %}
|
||||
@@ -0,0 +1,10 @@
|
||||
<section>
|
||||
<h1>Recent Posts</h1>
|
||||
<ul id="recent_posts">
|
||||
{% for post in site.posts limit: site.recent_posts %}
|
||||
<li class="post">
|
||||
<a href="{{ root_url }}{{ post.url }}">{{ post.title }}</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</section>
|
||||
@@ -0,0 +1,19 @@
|
||||
{% if site.twitter_user %}
|
||||
<section>
|
||||
<h1>Latest Tweets</h1>
|
||||
<ul id="tweets">
|
||||
<li class="loading">Status updating...</li>
|
||||
</ul>
|
||||
<script type="text/javascript">
|
||||
$.domReady(function(){
|
||||
getTwitterFeed("{{site.twitter_user}}", {{site.twitter_tweet_count}}, {{site.twitter_show_replies}});
|
||||
});
|
||||
</script>
|
||||
<script src="{{ root_url }}/javascripts/twitter.js" type="text/javascript"> </script>
|
||||
{% if site.twitter_follow_button %}
|
||||
<a href="http://twitter.com/{{ site.twitter_user }}" class="twitter-follow-button" data-show-count="{{ site.twitter_show_follower_count }}">Follow @{{ site.twitter_user }}</a>
|
||||
{% else %}
|
||||
<p>Follow <a href="http://twitter.com/{{site.twitter_user}}">@{{ site.twitter_user }}</a></p>
|
||||
{% endif %}
|
||||
</section>
|
||||
{% endif %}
|
||||
@@ -0,0 +1,4 @@
|
||||
<section>
|
||||
<h1>About Me</h1>
|
||||
<p>A little something about me.</p>
|
||||
</section>
|
||||
@@ -0,0 +1,27 @@
|
||||
---
|
||||
layout: nil
|
||||
---
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<feed xmlns="http://www.w3.org/2005/Atom">
|
||||
|
||||
<title><![CDATA[{{ page.title }} | {{ site.title }}]]></title>
|
||||
<link href="{{ site.url }}/{{ page.feed_url }}" rel="self"/>
|
||||
<link href="{{ site.url }}/"/>
|
||||
<updated>{{ site.time | date_to_xmlschema }}</updated>
|
||||
<id>{{ site.url }}/</id>
|
||||
<author>
|
||||
<name><![CDATA[{{ site.author | strip_html }}]]></name>
|
||||
{% if site.email %}<email><![CDATA[{{ site.email }}]]></email>{% endif %}
|
||||
</author>
|
||||
<generator uri="http://octopress.org/">Octopress</generator>
|
||||
|
||||
{% for post in site.categories[page.category] limit: 5 %}
|
||||
<entry>
|
||||
<title type="html"><![CDATA[{{ post.title | cdata_escape }}]]></title>
|
||||
<link href="{{ site.url }}{{ post.url }}"/>
|
||||
<updated>{{ post.date | date_to_xmlschema }}</updated>
|
||||
<id>{{ site.url }}{{ post.id }}</id>
|
||||
<content type="html"><![CDATA[{{ post.content | expand_urls: site.url | markdownify | cdata_escape }}]]></content>
|
||||
</entry>
|
||||
{% endfor %}
|
||||
</feed>
|
||||
@@ -0,0 +1 @@
|
||||
<p>© {{ site.time | date: "%Y" }} {{ site.author }}</p>
|
||||
@@ -0,0 +1,4 @@
|
||||
<ul>
|
||||
<li><a href="{{ root_url }}/">Home</a></li>
|
||||
<li><a href="{{ root_url }}/blog/archives">Archives</a></li>
|
||||
</ul>
|
||||
@@ -0,0 +1,21 @@
|
||||
{% comment %} Load script if disquss comments are enabled and `page.comments` is either empty (index) or set to true {% endcomment %}
|
||||
{% if site.disqus_short_name and page.comments != false %}
|
||||
<script type="text/javascript">
|
||||
var disqus_shortname = '{{ site.disqus_short_name }}';
|
||||
{% if page.comments == true %}
|
||||
{% comment %} `page.comments` can be only be set to true on pages/posts, so we embed the comments here. {% endcomment %}
|
||||
// var disqus_developer = 1;
|
||||
var disqus_identifier = '{{ site.url }}{{ page.url }}';
|
||||
var disqus_url = '{{ site.url }}{{ page.url }}';
|
||||
var disqus_script = 'embed.js';
|
||||
{% else %}
|
||||
{% comment %} As `page.comments` is empty, we must be on the index page. {% endcomment %}
|
||||
var disqus_script = 'count.js';
|
||||
{% endif %}
|
||||
(function () {
|
||||
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
|
||||
dsq.src = 'http://' + disqus_shortname + '.disqus.com/' + disqus_script;
|
||||
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
|
||||
}());
|
||||
</script>
|
||||
{% endif %}
|
||||
@@ -0,0 +1,10 @@
|
||||
{% if site.facebook_like %}
|
||||
<div id="fb-root"></div>
|
||||
<script>(function(d, s, id) {
|
||||
var js, fjs = d.getElementsByTagName(s)[0];
|
||||
if (d.getElementById(id)) {return;}
|
||||
js = d.createElement(s); js.id = id;
|
||||
js.src = "//connect.facebook.net/en_US/all.js#appId=212934732101925&xfbml=1";
|
||||
fjs.parentNode.insertBefore(js, fjs);
|
||||
}(document, 'script', 'facebook-jssdk'));</script>
|
||||
{% endif %}
|
||||
@@ -0,0 +1,18 @@
|
||||
<script src="{{ root_url }}/javascripts/jquery.fancybox.pack.js"></script>
|
||||
<script type="text/javascript">
|
||||
(function($){
|
||||
$('.entry-content').each(function(i){
|
||||
var _i = i;
|
||||
$(this).find('img').each(function(){
|
||||
var alt = $(this).attr('alt');
|
||||
|
||||
if (alt == '' || typeof alt == 'undefined'){
|
||||
$(this).wrap('<a href="'+$(this).attr('src')+'" class="fancybox" rel="gallery'+_i+'" />');
|
||||
} else {
|
||||
$(this).after('<span class="caption">'+alt+'</span>').wrap('<a href="'+$(this).attr('src')+'" class="fancybox" title="'+alt+'" rel="gallery'+_i+'" />');
|
||||
}
|
||||
});
|
||||
});
|
||||
$('.fancybox').fancybox();
|
||||
})(jQuery);
|
||||
</script>
|
||||
@@ -0,0 +1,20 @@
|
||||
<div class="social alignright">
|
||||
{% if site.facebook_user %}
|
||||
<a class="facebook" href="http://www.facebook.com/{{ site.facebook_user }}" title="Facebook">Facebook</a>
|
||||
{% endif %}
|
||||
{% if site.googleplus_user %}
|
||||
<a class="google" href="https://plus.google.com/{{ site.googleplus_user }}" title="Google+">Google+</a>
|
||||
{% endif %}
|
||||
{% if site.twitter_user %}
|
||||
<a class="twitter" href="http://twitter.com/{{ site.twitter_user }}" title="Twitter">Twitter</a>
|
||||
{% endif %}
|
||||
{% if site.github_user %}
|
||||
<a class="github" href="https://github.com/{{ site.github_user }}" title="GitHub">GitHub</a>
|
||||
{% endif %}
|
||||
{% if site.pinterest_user %}
|
||||
<a class="pinterest" href="https://pinterest.com/{{ site.pinterest_user }}" title="Pinterest">Pinterest</a>
|
||||
{% endif %}
|
||||
<a class="rss" href="{{ site.subscribe_rss }}" title="RSS">RSS</a>
|
||||
</div>
|
||||
{% include custom/footer.html %}
|
||||
<div class="clearfix"></div>
|
||||
@@ -0,0 +1,13 @@
|
||||
{% if site.google_analytics_tracking_id %}
|
||||
<script type="text/javascript">
|
||||
var _gaq = _gaq || [];
|
||||
_gaq.push(['_setAccount', '{{ site.google_analytics_tracking_id }}']);
|
||||
_gaq.push(['_trackPageview']);
|
||||
|
||||
(function() {
|
||||
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
||||
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
||||
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
||||
})();
|
||||
</script>
|
||||
{% endif %}
|
||||
@@ -0,0 +1,9 @@
|
||||
{% if site.google_plus_one %}
|
||||
<script type="text/javascript">
|
||||
(function() {
|
||||
var script = document.createElement('script'); script.type = 'text/javascript'; script.async = true;
|
||||
script.src = 'https://apis.google.com/js/plusone.js';
|
||||
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(script, s);
|
||||
})();
|
||||
</script>
|
||||
{% endif %}
|
||||
@@ -0,0 +1,20 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>{% if page.title %}{{ page.title }} | {% endif %}{{ site.title }}</title>
|
||||
<meta name="author" content="{{ site.author }}">
|
||||
|
||||
{% capture description %}{% if page.description %}{{ page.description }}{% else %}{{ content | raw_content }}{% endif %}{% endcapture %}
|
||||
<meta name="description" content="{{ description | strip_html | condense_spaces | truncate:150 }}">
|
||||
{% if page.keywords %}<meta name="keywords" content="{{ page.keywords }}">{% endif %}
|
||||
|
||||
<link href="{{ site.subscribe_rss }}" rel="alternate" title="{{site.title}}" type="application/atom+xml">
|
||||
<link rel="canonical" href="{{ canonical }}">
|
||||
<link href="{{ root_url }}/favicon.png" rel="shortcut icon">
|
||||
<link href="{{ root_url }}/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css">
|
||||
<!--[if lt IE 9]><script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
|
||||
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min.js"></script>
|
||||
{% include google_analytics.html %}
|
||||
{% include custom/head.html %}
|
||||
</head>
|
||||
@@ -0,0 +1,2 @@
|
||||
<nav>{% include custom/navigation.html %}</nav>
|
||||
{% include custom/header.html %}
|
||||
@@ -0,0 +1,15 @@
|
||||
<ul class="subscription" data-subscription="rss{% if site.subscribe_email %} email{% endif %}">
|
||||
<li><a href="{{ site.subscribe_rss }}" rel="subscribe-rss" title="subscribe via RSS">RSS</a></li>
|
||||
{% if site.subscribe_email %}
|
||||
<li><a href="{{ site.subscribe_email }}" rel="subscribe-email" title="subscribe via email">Email</a></li>
|
||||
{% endif %}
|
||||
</ul>
|
||||
{% if site.simple_search %}
|
||||
<form action="{{ site.simple_search }}" method="get">
|
||||
<fieldset role="search">
|
||||
<input type="hidden" name="q" value="site:{{ site.url | shorthand_url }}" />
|
||||
<input class="search" type="text" name="q" results="0" placeholder="Search"/>
|
||||
</fieldset>
|
||||
</form>
|
||||
{% endif %}
|
||||
{% include custom/navigation.html %}
|
||||
@@ -0,0 +1,7 @@
|
||||
{% if paginator.previous_page or paginator.next_page %}
|
||||
<nav id="pagenavi">
|
||||
{% if paginator.previous_page %}<a href="{{paginator.previous_page}}" class="prev alignleft">Prev</a>{% endif %}
|
||||
{% if paginator.next_page %}<a href="{{paginator.next_page}}" class="next alignright">Next</a>{% endif %}
|
||||
<div class="clearfix"></div>
|
||||
</nav>
|
||||
{% endif %}
|
||||
@@ -0,0 +1,6 @@
|
||||
<div id="phasebeam">
|
||||
<canvas></canvas>
|
||||
<canvas></canvas>
|
||||
<canvas></canvas>
|
||||
</div>
|
||||
<script src="{{ root_url }}/javascripts/phasebeam.js"></script>
|
||||
@@ -0,0 +1,8 @@
|
||||
{% if post.author %}
|
||||
{% assign author = post.author %}
|
||||
{% elsif page.author %}
|
||||
{% assign author = page.author %}
|
||||
{% else %}
|
||||
{% assign author = site.author %}
|
||||
{% endif %}
|
||||
{% if author %}<span class="byline author vcard">Posted by <span class="fn">{{ author }}</span></span>{% endif %}
|
||||
@@ -0,0 +1,6 @@
|
||||
{% capture category %}{% if post %}{{ post.categories | category_links | replace:', ','' }}{% else %}{{ page.categories | category_links | replace:', ','' }}{% endif %}{% endcapture %}
|
||||
{% capture has_category %}{% if post %}{{ post.categories | category_links | size }}{% else %}{{ page.categories | category_links | size }}{% endif %}{% endcapture %}
|
||||
|
||||
{% unless has_category == '0' %}
|
||||
<div class="tags">{{ category }}</div>
|
||||
{% endunless %}
|
||||
@@ -0,0 +1,7 @@
|
||||
{% if site.disqus_short_name and page.comments == true %}
|
||||
<section id="comment">
|
||||
<div id="disqus_thread" aria-live="polite">
|
||||
<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
</div>
|
||||
</section>
|
||||
{% endif %}
|
||||
@@ -0,0 +1,19 @@
|
||||
{% capture date %}{{ page.date }}{{ post.date }}{% endcapture %}
|
||||
{% capture date_formatted %}{{ page.date_formatted }}{{ post.date_formatted }}{% endcapture %}
|
||||
{% capture has_date %}{{ date | size }}{% endcapture %}
|
||||
|
||||
{% capture updated %}{{ page.updated }}{{ post.updated }}{% endcapture %}
|
||||
{% capture updated_formatted %}{{ page.updated_formatted }}{{ post.updated_formatted }}{% endcapture %}
|
||||
{% capture was_updated %}{{ updated | size }}{% endcapture %}
|
||||
|
||||
{% if was_updated != '0' %}
|
||||
<time datetime="{{ updated | datetime | date_to_xmlschema }}" pubdate="{{ date | datetime | date_to_xmlschema }}">
|
||||
<span class="day">{{ updated_formatted | date: "%e" }}</span><span class="month">{{ updated_formatted | date: "%b" }}</span>
|
||||
</time>
|
||||
{% else %}
|
||||
{% if has_date != '0' %}
|
||||
<time datetime="{{ date | datetime | date_to_xmlschema }}">
|
||||
<span class="day">{{ date_formatted | date: "%e" }}</span><span class="month">{{ date_formatted | date: "%b" }}</span>
|
||||
</time>
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
@@ -0,0 +1 @@
|
||||
<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
|
||||
@@ -0,0 +1,15 @@
|
||||
<div class="sharing">
|
||||
<div class="addthis_toolbox addthis_default_style ">
|
||||
{% if site.facebook_like %}
|
||||
<a class="addthis_button_facebook_like" fb:like:layout="button_count"></a>
|
||||
{% endif %}
|
||||
{% if site.twitter_tweet_button %}
|
||||
<a class="addthis_button_tweet"></a>
|
||||
{% endif %}
|
||||
{% if site.google_plus_one %}
|
||||
<a class="addthis_button_google_plusone" g:plusone:size="{{ site.google_plus_one_size }}"></a>
|
||||
{% endif %}
|
||||
<a class="addthis_counter addthis_pill_style"></a>
|
||||
</div>
|
||||
<script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#pubid=ra-4daee9911f9dfcb4"></script>
|
||||
</div>
|
||||
@@ -0,0 +1,11 @@
|
||||
{% if site.twitter_follow_button or site.twitter_tweet_button %}
|
||||
<script type="text/javascript">
|
||||
(function(){
|
||||
var twitterWidgets = document.createElement('script');
|
||||
twitterWidgets.type = 'text/javascript';
|
||||
twitterWidgets.async = true;
|
||||
twitterWidgets.src = 'http://platform.twitter.com/widgets.js';
|
||||
document.getElementsByTagName('head')[0].appendChild(twitterWidgets);
|
||||
})();
|
||||
</script>
|
||||
{% endif %}
|
||||
@@ -0,0 +1,15 @@
|
||||
---
|
||||
layout: default
|
||||
---
|
||||
|
||||
<header id="archive-header">
|
||||
<h1 class="alignleft">{{ page.title }}</h1>
|
||||
<form action="{{ site.simple_search }}" class="search alignright" method="get">
|
||||
<input type="text" name="q" results="0" placeholder="Search">
|
||||
<input type="hidden" name="q" value="site:{{ site.url | shorthand_url }}">
|
||||
</form>
|
||||
</header>
|
||||
|
||||
{% for post in site.categories[page.category] %}
|
||||
{% include archive_post.html %}
|
||||
{% endfor %}
|
||||
@@ -0,0 +1,10 @@
|
||||
{% capture root_url %}{{ site.root | strip_slash }}{% endcapture %}
|
||||
{% include head.html %}
|
||||
|
||||
<body>
|
||||
<header id="header" class="inner">{% include header.html %}</header>
|
||||
<div id="content" class="inner">{{ content | expand_urls: root_url }}</div>
|
||||
<footer id="footer" class="inner">{% include footer.html %}</footer>
|
||||
{% include after_footer.html %}
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,5 @@
|
||||
---
|
||||
layout: default
|
||||
---
|
||||
|
||||
<article class="page">{% include article.html %}</article>
|
||||
@@ -0,0 +1,6 @@
|
||||
---
|
||||
layout: default
|
||||
single: true
|
||||
---
|
||||
|
||||
<article class="post">{% include article.html %}</article>
|
||||
@@ -0,0 +1,43 @@
|
||||
---
|
||||
title: 一个全新的开始
|
||||
author: wahyd4
|
||||
excerpt: |
|
||||
|
|
||||
我们想大声的宣布大染志今天上线啦!!!
|
||||
layout: post
|
||||
permalink: /2010/09/a-new-begins/
|
||||
categories:
|
||||
- 头条推荐
|
||||
tags:
|
||||
- 上线
|
||||
- 大染志
|
||||
- 开始
|
||||
---
|
||||
<del>我们想大声的宣布大染志今天上线啦!!!</p>
|
||||
<p>
|
||||
希望大家可以经常来我们的网站常来看看,我们会尽量每天一篇文章的速度进行网站更新,而且我们在周末的时候还会有专题奉献给大家,另外我们还有一种“核武器”,到时候大家就知道了,所以大家一定要来看哦!
|
||||
</p>
|
||||
|
||||
|
||||
|
||||
<p>
|
||||
关于我们的成员,我们是一群在校大学生!
|
||||
</p>
|
||||
|
||||
|
||||
|
||||
<p>
|
||||
我们希望借此得到锻炼,当然如果可以获得一些Money,当然更好啊!
|
||||
</p>
|
||||
|
||||
|
||||
|
||||
<p>
|
||||
总之,大家的支持是我们最大的动力!
|
||||
</p>
|
||||
|
||||
|
||||
|
||||
<p>
|
||||
</del>
|
||||
</p>
|
||||
@@ -0,0 +1,80 @@
|
||||
---
|
||||
title: 蓝牙手机控制电脑——不是梦!(1)
|
||||
author: wahyd4
|
||||
layout: post
|
||||
permalink: /2010/09/blue-tooth-one/
|
||||
categories:
|
||||
- 头条推荐
|
||||
- 我们爱分享
|
||||
tags:
|
||||
- java
|
||||
- Salling Clickr
|
||||
- 手机
|
||||
- 控制电脑
|
||||
- 蓝牙
|
||||
---
|
||||
作者:Junv
|
||||
|
||||
开始之前你需要:智能手机一部(理论上支持Java的手机都行,作者是在Nokia 6120C 下试验成功),支持蓝牙的电脑一台(不支持蓝牙的可以外接蓝牙接收器!淘宝上很便宜。),Salling Clickr 软件(这个是核心)。
|
||||
|
||||
作者设备:Nokia 6120c ,Lenovo y450.
|
||||
|
||||
下面开始
|
||||
|
||||
下面开始实现蓝牙控制电脑,
|
||||
|
||||
首先下载<a title="Salling Clickr" href="http://www.salling.com/Clicker/windows/" target="_blank">Salling Clickr</a> 软件,并安装。该软件支持windows 和 Mac两种系统!(这一步没什么特别,相信大家都可以做到!)
|
||||
|
||||
安装完成之后运行电脑端Salling Clickr 软件将看到如下页面。
|
||||
|
||||
<p style="text-align: center;">
|
||||
<a href="http://www.junv.info/wp-content/uploads/2010/09/搜狗截图_2010-09-19_20-59-02.png"><img class="size-full wp-image-133 aligncenter" title="搜狗截图_2010-09-19_20-59-02" src="http://www.junv.info/wp-content/uploads/2010/09/搜狗截图_2010-09-19_20-59-02.png" alt="" width="487" height="473" /></a>
|
||||
</p>
|
||||
|
||||
可以看到如界面显示的,用这个软件可以实现控制iTunes ,PowerPoint,windows Mediaplayer,还可以实现操作鼠标!从而达到实现操作电脑几乎所有软件的一半应用。
|
||||
|
||||
另外一个选项phone events,大家可以根据自己需要更改,这里不再多讲。
|
||||
|
||||
而在底部菜单setting里面,大家可以看到
|
||||
|
||||
<p style="text-align: center;">
|
||||
<a href="http://www.junv.info/wp-content/uploads/2010/09/搜狗截图_2010-09-19_21-06-17.png"><img class="size-full wp-image-134 aligncenter" title="搜狗截图_2010-09-19_21-06-17" src="http://www.junv.info/wp-content/uploads/2010/09/搜狗截图_2010-09-19_21-06-17.png" alt="" width="363" height="370" /></a>
|
||||
</p>
|
||||
|
||||
勾选 automatically run Salling Clickr when logging on,即表示在随电脑启动的时候就自启动该软件。
|
||||
|
||||
Disconnect idle 里面则表示多少时间手机不操作则断开手机与电脑的链接。这个可以根据自己需要选择。
|
||||
|
||||
其他的设置就不在这里演示了。
|
||||
|
||||
现在开始比较关键的设置手机型号,软件会根据相应的型号,然后给你提供相应的软件,支持 Symbian s60,s40(java),windows moblie ,理论上支持Java的软件都可以支持!这个情大家试试吧。
|
||||
|
||||
点主界面的set up device.
|
||||
|
||||
<p style="text-align: center;">
|
||||
<a href="http://www.junv.info/wp-content/uploads/2010/09/搜狗截图_2010-09-19_21-18-30.png"><img class="size-full wp-image-135 aligncenter" title="搜狗截图_2010-09-19_21-18-30" src="http://www.junv.info/wp-content/uploads/2010/09/搜狗截图_2010-09-19_21-18-30.png" alt="" width="433" height="396" /></a>
|
||||
</p>
|
||||
|
||||
先选brand 商标,然后选择型号 model .里面包含了很多手机的型号,出了iphone。android 最新的型号,但是可能android 用Java版本可以使用!
|
||||
|
||||
选好之后
|
||||
|
||||
<p style="text-align: center;">
|
||||
<a href="http://www.junv.info/wp-content/uploads/2010/09/搜狗截图_2010-09-19_21-21-14.png"><img class="size-full wp-image-136 aligncenter" title="搜狗截图_2010-09-19_21-21-14" src="http://www.junv.info/wp-content/uploads/2010/09/搜狗截图_2010-09-19_21-21-14.png" alt="" width="412" height="223" /></a>
|
||||
</p>
|
||||
|
||||
点copy to desktop,软件就将你手机所需要的软件复制到桌面。再点 continue .然后就是安装手机端软件啦。
|
||||
|
||||
<p style="text-align: center;">
|
||||
在Nokia 6120c 下面安装好之后,出现如下图标。<a href="http://www.junv.info/wp-content/uploads/2010/09/SuperScreenshot0002.jpg"><img class="size-full wp-image-137 aligncenter" title="SuperScreenshot0002" src="http://www.junv.info/wp-content/uploads/2010/09/SuperScreenshot0002.jpg" alt="" width="240" height="320" /></a>
|
||||
</p>
|
||||
|
||||
我这里有两个一个是sis格式的,另外一个是java 版
|
||||
|
||||
本的。
|
||||
|
||||
接下来你需要继续阅读:
|
||||
|
||||
## [蓝牙手机控制电脑——不是梦!(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/
|
||||
@@ -0,0 +1,71 @@
|
||||
---
|
||||
title: 蓝牙手机控制电脑——不是梦!(2)
|
||||
author: wahyd4
|
||||
layout: post
|
||||
permalink: /2010/09/blue-tooth/
|
||||
categories:
|
||||
- 头条推荐
|
||||
- 我们爱分享
|
||||
tags:
|
||||
- java,手机
|
||||
- Salling Clickr
|
||||
- 控制
|
||||
- 电脑
|
||||
---
|
||||
作者:Junv
|
||||
|
||||
上篇文章阅读:[<span style="color: #000000;"><span style="color: #0000ff;">蓝牙手机控制电脑——不是梦!(1)</span></span>][1]
|
||||
|
||||
<span style="color: #0000ff;"><span style="color: #333333;">接下来我们实现手机连接电,并控制电脑的操作。。</span></span>
|
||||
|
||||
<span style="color: #0000ff;"><span style="color: #333333;">这里我选择运行Java 版本的程序(sis也可以!),</span></span>
|
||||
|
||||
<span style="color: #0000ff;"><span style="color: #333333;">手机版本的界面如图所示。</span></span>
|
||||
|
||||
<p style="text-align: center;">
|
||||
<span style="color: #0000ff;"><span style="color: #333333;"><a href="http://www.junv.info/wp-content/uploads/2010/09/SuperScreenshot0003.jpg"><img class="size-full wp-image-142 aligncenter" title="SuperScreenshot0003" src="http://www.junv.info/wp-content/uploads/2010/09/SuperScreenshot0003.jpg" alt="" width="240" height="320" /></a><br /> </span></span>
|
||||
</p>
|
||||
|
||||
我们选择connect.(连接)需要确认你的电脑支持蓝牙,并打开。你的手机支持蓝牙并打开。
|
||||
|
||||
<p style="text-align: center;">
|
||||
<a href="http://www.junv.info/wp-content/uploads/2010/09/SuperScreenshot0004.jpg"><img class="size-full wp-image-143 aligncenter" title="SuperScreenshot0004" src="http://www.junv.info/wp-content/uploads/2010/09/SuperScreenshot0004.jpg" alt="" width="240" height="320" /></a>
|
||||
</p>
|
||||
|
||||
选择你的电脑,这里我的电脑是lenovo-pc.然后连接
|
||||
|
||||
连接成功后得以下界面。这里可以看淡菜单项,
|
||||
|
||||
<p style="text-align: center;">
|
||||
<a href="http://www.junv.info/wp-content/uploads/2010/09/SuperScreenshot0005.jpg"><img class="size-full wp-image-144 aligncenter" title="SuperScreenshot0005" src="http://www.junv.info/wp-content/uploads/2010/09/SuperScreenshot0005.jpg" alt="" width="240" height="320" /></a>
|
||||
</p>
|
||||
|
||||
<span style="color: #333333;">可以看到现在该软件支持控制三种程序,在system里面还可以实现控制鼠标,和调节声音大小。</span>
|
||||
|
||||
<span style="color: #333333;">在我们进去之后。点击 menu菜单,然后在里面选择open presentation>>>>在里面可以看到两个选项,我们这里选择recent(这里为了演示方便,而且我以前使用过,如果初次使用你必须选择browse,从电脑里面浏览)</span>
|
||||
|
||||
<p style="text-align: center;">
|
||||
<span style="color: #333333;"><a href="http://www.junv.info/wp-content/uploads/2010/09/SuperScreenshot0006.jpg"><img class="size-full wp-image-145 aligncenter" title="SuperScreenshot0006" src="http://www.junv.info/wp-content/uploads/2010/09/SuperScreenshot0006.jpg" alt="" width="240" height="320" /></a></span>
|
||||
</p>
|
||||
|
||||
<span style="color: #333333;">这是手机连接电脑成功的画面,此时电脑的现实是这个样子的,自己调出了PowerPoint</span>
|
||||
|
||||
此时点击手机的ok键,电脑即进入全屏PPt模式,手机界面还有PPT页面的预览显示,手机的左右键即可控制PPT的上下页浏览。
|
||||
|
||||
<p style="text-align: center;">
|
||||
<a href="http://www.junv.info/wp-content/uploads/2010/09/SuperScreenshot0007.jpg"><img class="size-full wp-image-147 aligncenter" title="SuperScreenshot0007" src="http://www.junv.info/wp-content/uploads/2010/09/SuperScreenshot0007.jpg" alt="" width="240" height="320" /></a>
|
||||
</p>
|
||||
|
||||
其他的功能就留给大家自己探索吧,反正这款软件相当不错。
|
||||
|
||||
大家有什么不懂的,请留言吧,我会尽量给大家解答的。
|
||||
|
||||
下面附上下载链接:里面包含电脑端安装软件,再弱弱地说一下还有注册机哦。
|
||||
|
||||
<span style="color: #333333;"><br /> </span>
|
||||
|
||||
<span style="color: #333333;"><br /> </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/
|
||||
@@ -0,0 +1,13 @@
|
||||
---
|
||||
title: end of the summer
|
||||
author: wahyd4
|
||||
layout: post
|
||||
permalink: /2010/09/end-of-the-summer/
|
||||
categories:
|
||||
- 《 theLun》
|
||||
---
|
||||
这个夏天就快结束了。我在这里写下第一篇文字。for our summer memories.
|
||||
|
||||
[<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
|
||||
@@ -0,0 +1,59 @@
|
||||
---
|
||||
title: 软件分享:Recuva(超强文件恢复软件)
|
||||
author: wahyd4
|
||||
layout: post
|
||||
permalink: /2010/09/recuva/
|
||||
categories:
|
||||
- 头条推荐
|
||||
- 酷玩软件
|
||||
tags:
|
||||
- recuva,下载
|
||||
- 使用
|
||||
- 数据恢复
|
||||
- 软件
|
||||
---
|
||||
作者:Zhong Liang
|
||||
|
||||
欢迎来到大染志 欢迎来到酷玩软件。 从这周开始每周我们每周都会跟大家分享一些对大家的工作、生活、学习非常有用的软件。大家有什么意见、会有什么要求,请在评论中积极提出,我们将尽最大力量满足大家的需求!
|
||||
|
||||
第一款软件分享:
|
||||
|
||||
名字:Recuva(超强文件恢复软件)。
|
||||
|
||||
功能:该软件能将 :1.被误删了文件、2.格式化了磁盘里面的资料 :恢复如初。
|
||||
|
||||
适用于:但有些人不小心把自己的重要资料误删了、把盘格式化了、回收站也清空了。这是一点很焦急,这是大家不要慌。Recuva这款超强文件恢复软件能 将你大部分误删的资料找回! 这款软件以得到很多人的认可,并且本人也多次用它,恢复被删的文件的能力超强!觉得值得大家收藏!
|
||||
|
||||
用法简绍:1.首先下载:地址:<http://www.skycn.com/soft/40631.html>
|
||||
|
||||
2.双击打开,下一步:出现如下图:
|
||||
|
||||
[<img class="aligncenter size-full wp-image-175" title="11w2" src="http://www.junv.info/wp-content/uploads/2010/09/11w2.jpg" alt="" width="544" height="432" />][1]
|
||||
|
||||
出现这图时你可以选择你要恢复的文件类型,如果都没就选择其它,直到找到你要恢复的文件类型。
|
||||
|
||||
3.选好文件类型后下一步,出现如下图:
|
||||
|
||||
[<img class="aligncenter size-full wp-image-176" title="asda" src="http://www.junv.info/wp-content/uploads/2010/09/asda.jpg" alt="" width="537" height="436" />][2]
|
||||
|
||||
当出现这个画面是,你就选择你被删的文件的路径。也就是:你想要恢复的文件以前存储的路径。
|
||||
|
||||
4.当选好路径后点下一步:出现如下图:
|
||||
|
||||
[<img class="aligncenter size-full wp-image-177" title="sdasd" src="http://www.junv.info/wp-content/uploads/2010/09/sdasd.jpg" alt="" width="652" height="527" />][3]
|
||||
|
||||
这是你被删出的文件就已经出现在如上图的目录里了,然后选择你想恢复的文件,点上勾,然后点恢复。
|
||||
|
||||
注意:当你点恢复时:会让你选择你要把文件恢复到那个盘。请不要把恢复文件的路径整到跟以前被删除文件的路径一样。
|
||||
|
||||
比如:你以前被删的文件在:c盘
|
||||
|
||||
那么你恢复文件的文件就最好在:D盘或其它盘。
|
||||
|
||||
这样文件恢复的机会才能到达95%以上。
|
||||
|
||||
最后:希望这软件能帮那 些正为重要资料被删而不知道怎恢复的朋友,找回重要的资料。
|
||||
|
||||
[1]: http://www.junv.info/wp-content/uploads/2010/09/11w2.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
|
||||
@@ -0,0 +1,201 @@
|
||||
---
|
||||
title: 送腾讯企业邮箱邀请码啦!
|
||||
author: wahyd4
|
||||
layout: post
|
||||
permalink: /2010/09/tencent/
|
||||
categories:
|
||||
- 我们爱分享
|
||||
tags:
|
||||
- 企业邮箱
|
||||
- 腾讯
|
||||
- 邀请码
|
||||
---
|
||||
作者:Junv
|
||||
|
||||
前几天在网友那里要到的腾讯企业邮箱邀请码,绑定了我的域名。感觉还不错,但是现在腾讯企业邮箱只支持邀请的方式去使用。
|
||||
|
||||
现在我有30个邀请名额,请各位需要邀请码的朋友们,在下面留言吧,我会尽快送上邀请码的!
|
||||
|
||||
下面是关于腾讯企业邮箱的一些参数。
|
||||
|
||||
<table cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td colspan="2" width="530">
|
||||
<span style="font-family: Verdana, Arail; font-size: small;">附:腾讯企业邮箱功能速览</span>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
独立邮箱帐号数
|
||||
</td>
|
||||
|
||||
<td>
|
||||
200个
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
多域名支持
|
||||
</td>
|
||||
|
||||
<td>
|
||||
5个
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
邮箱容量
|
||||
</td>
|
||||
|
||||
<td>
|
||||
无限制
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
企业网盘
|
||||
</td>
|
||||
|
||||
<td>
|
||||
2GB,内部共享
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
普通附件
|
||||
</td>
|
||||
|
||||
<td>
|
||||
50 MB
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
超大附件
|
||||
</td>
|
||||
|
||||
<td>
|
||||
1 GB/每个帐号
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
短信支持
|
||||
</td>
|
||||
|
||||
<td>
|
||||
来信提醒、备忘提醒
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
全球互通、南北互联
|
||||
</td>
|
||||
|
||||
<td>
|
||||
国内外10多个城市架设服务器
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
防病毒
|
||||
</td>
|
||||
|
||||
<td>
|
||||
卡巴斯基防病毒引擎
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
反垃圾功能
|
||||
</td>
|
||||
|
||||
<td>
|
||||
系统级反垃圾过滤,支持企业自定义黑白名单
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
多种方式访问
|
||||
</td>
|
||||
|
||||
<td>
|
||||
网页、POP3/SMTP、IMAP
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
支持SSL
|
||||
</td>
|
||||
|
||||
<td>
|
||||
全程SSL
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
企业内部信息通知
|
||||
</td>
|
||||
|
||||
<td>
|
||||
支持公告板和邮件群发
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
帐号自主管理
|
||||
</td>
|
||||
|
||||
<td>
|
||||
支持批量导入、邮件群组、分级管理
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
企业地址本
|
||||
</td>
|
||||
|
||||
<td>
|
||||
多级组织架构管理
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
日志管理
|
||||
</td>
|
||||
|
||||
<td>
|
||||
用户和管理员登录及常用操作记录
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
企业LOGO
|
||||
</td>
|
||||
|
||||
<td>
|
||||
支持自定义
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
[<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
|
||||
@@ -0,0 +1,84 @@
|
||||
---
|
||||
title: 那些刀光剑影的日子
|
||||
author: wahyd4
|
||||
layout: post
|
||||
permalink: /2010/09/230/
|
||||
categories:
|
||||
- 头条推荐
|
||||
- 游戏下载
|
||||
---
|
||||
记得多少年前的小学时代,冒着被老师,被家长骂的危险也要悄悄到网吧玩CS的日子真的渐渐逝去,邀上几个好友血拼是何等的痛快,在那个天真的年代就开始了“血腥”的杀戮。随着时间的消逝,不管现在游戏有多少,无论腾讯的穿越火线有多火,电脑上永远都不会少了反恐精英的影子,经典就是经典,无论多少年华,无论多少的竞争,都不可能磨灭它在我们这个年代出生的人心中的位置。
|
||||
|
||||
CS最早是由Valve Software公司从1999年6月19日开始发行,从那时候开始CS的神话就不曾抹灭过!
|
||||
|
||||
**人物简介:**** **
|
||||
|
||||
反恐精英方(CT)
|
||||
|
||||
ST-6【美国海豹突击队第六分队】
|
||||
|
||||
[<img class="alignnone size-medium wp-image-240" title="Seal1" src="http://www.junv.info/wp-content/uploads/2010/09/Seal1-300x285.jpg" alt="" width="300" height="285" />][1]
|
||||
|
||||
美国著名特种部队,队员训练素质高,作战能力强,得到世界各国认可。
|
||||
|
||||
GSG9【德国边境防御大队第九小队】
|
||||
|
||||
[<img class="alignnone size-medium wp-image-237" title="Gsg9" src="http://www.junv.info/wp-content/uploads/2010/09/Gsg9-300x240.jpg" alt="" width="300" height="240" />][2]原本是奥运会保安小队,逐渐发展壮大成为世界一流的境防部队。
|
||||
|
||||
SAS【英国皇家空降特勤队】
|
||||
|
||||
[<img class="alignleft size-medium wp-image-238" title="Sas" src="http://www.junv.info/wp-content/uploads/2010/09/Sas-300x266.jpg" alt="" width="300" height="266" />][3]
|
||||
|
||||
世界著名的反恐部队,原本只执行间谍任务,后来扩大到全欧洲的恐怖事件。
|
||||
|
||||
GIGN【法国宪兵干预队】
|
||||
|
||||
[<img class="alignnone size-medium wp-image-236" title="Gign1" src="http://www.junv.info/wp-content/uploads/2010/09/Gign1-156x300.jpg" alt="" width="156" height="300" />][4]
|
||||
|
||||
法国动乱时期建立,在没有军队的情况下干预队会率先镇压民众。
|
||||
|
||||
恐怖分子方(T)
|
||||
|
||||
凤凰战士【凤凰国际特种组织】
|
||||
|
||||
[<img class="alignnone size-medium wp-image-247" title="Phoenix1" src="http://www.junv.info/wp-content/uploads/2010/09/Phoenix1-300x189.jpg" alt="" width="300" height="189" />][5]
|
||||
|
||||
曾制造世界震惊的“凤凰炸弹事件”,现正被全世界通缉
|
||||
|
||||
L337克鲁尔【代号L337】
|
||||
|
||||
[<img class="alignnone size-medium wp-image-245" title="L3371" src="http://www.junv.info/wp-content/uploads/2010/09/L3371-300x189.jpg" alt="" width="300" height="189" />][6]
|
||||
|
||||
亚洲精英恐怖分子集体,队员枪法高超配合默契,令人闻风丧胆。
|
||||
|
||||
北极复仇者【瑞典北极特战队】
|
||||
|
||||
[<img class="alignnone size-medium wp-image-241" title="Arctic" src="http://www.junv.info/wp-content/uploads/2010/09/Arctic-156x300.jpg" alt="" width="156" height="300" />][7]
|
||||
|
||||
欧洲著名恐怖组织,曾策划多起大型爆炸事件
|
||||
|
||||
蝰蛇【狂蟒游击队】
|
||||
|
||||
[<img class="alignnone size-medium wp-image-242" title="Guerilla (2)" src="http://www.junv.info/wp-content/uploads/2010/09/Guerilla-2-283x300.jpg" alt="" width="283" height="300" />][8]
|
||||
|
||||
东南亚经常出没的恐怖分子,手段残忍暴力,为达到目标不惜消灭亲友
|
||||
|
||||
CS是我们这代人中的神话,是永恒的经典,无论是人物系统,还是武器系统,都是在那个时候甚至到如今都是那样的出色,程亮枪生的金属光泽,棱角分明,轮廓清晰的枪身构造还有那枪口喷发出的火焰! 这些都是我们最珍贵的记忆!
|
||||
|
||||
[<img class="alignnone size-medium wp-image-255" title="d5cdbdb46aee81308bd4b29b" src="http://www.junv.info/wp-content/uploads/2010/09/d5cdbdb46aee81308bd4b29b-300x225.jpg" alt="" width="300" height="225" />][9]
|
||||
|
||||
[<img class="alignnone size-full wp-image-254" title="3442157490195162000" src="http://www.junv.info/wp-content/uploads/2010/09/3442157490195162000.jpg" alt="" width="265" height="200" />][10]
|
||||
|
||||
[<img class="alignnone size-medium wp-image-248" title="1e3ae5dda13222ff76c63827" src="http://www.junv.info/wp-content/uploads/2010/09/1e3ae5dda13222ff76c63827-300x225.jpg" alt="" width="300" height="225" />][11]
|
||||
|
||||
[1]: http://www.junv.info/wp-content/uploads/2010/09/Seal1.jpg
|
||||
[2]: http://www.junv.info/wp-content/uploads/2010/09/Gsg9.jpg
|
||||
[3]: http://www.junv.info/wp-content/uploads/2010/09/Sas.jpg
|
||||
[4]: http://www.junv.info/wp-content/uploads/2010/09/Gign1.jpg
|
||||
[5]: http://www.junv.info/wp-content/uploads/2010/09/Phoenix1.jpg
|
||||
[6]: http://www.junv.info/wp-content/uploads/2010/09/L3371.jpg
|
||||
[7]: http://www.junv.info/wp-content/uploads/2010/09/Arctic.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
|
||||
[10]: http://www.junv.info/wp-content/uploads/2010/09/3442157490195162000.jpg
|
||||
[11]: http://www.junv.info/wp-content/uploads/2010/09/1e3ae5dda13222ff76c63827.jpg
|
||||
@@ -0,0 +1,28 @@
|
||||
---
|
||||
title: NIKITA/maggie Q
|
||||
author: wahyd4
|
||||
excerpt: >
|
||||
美剧回归了。盼来了久违的《gossip
|
||||
girl》。除此之外还有一部新上的《Nikita》,是继《吸血鬼日记》之后美国CW电视台推出的又一部谍战电视连续剧,
|
||||
layout: post
|
||||
permalink: /2010/09/nikitamaggie-q/
|
||||
categories:
|
||||
- 《 theLun》
|
||||
tags:
|
||||
- maggie Q
|
||||
- NIKITA
|
||||
- 下载
|
||||
- 免费
|
||||
---
|
||||
[<img class="alignnone size-medium wp-image-328" title="NIKITA" src="http://www.junv.info/wp-content/uploads/2010/09/NIKITA-219x300.jpg" alt="" width="219" height="300" />][1]
|
||||
|
||||
美剧回归了。盼来了久违的《gossip girl》。除此之外还有一部新上的《Nikita》,是继《吸血鬼日记》之后美国CW电视台推出的又一部谍战电视连续剧,改编自法国著名导演吕克贝松1990年的经典作。看了两集,感觉还不错,是我喜欢的类型。一如美剧一贯的精彩紧凑的剧情。
|
||||
|
||||
不得不说,Maggie Q的出演是本剧的一大亮点。出身于美国檀香山的美越混血,从一位知名model到知名演员,《赤裸特工》《尖峰时刻2》《碟中谍3》加上这部CW的新戏《尼基塔》,成功塑造了她的“亚洲打女”形象。但Maggie Q始终还是那么性感优雅。
|
||||
|
||||
[<img class="alignnone size-medium wp-image-329" title="Maggie Q" src="http://www.junv.info/wp-content/uploads/2010/09/Maggie-Q1-160x300.jpg" alt="" width="160" height="300" />][2]
|
||||
|
||||
<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
|
||||
[2]: http://www.junv.info/wp-content/uploads/2010/09/Maggie-Q1.jpg
|
||||
@@ -0,0 +1,37 @@
|
||||
---
|
||||
title: 一款很棒的wordpress 首页动画展示插件
|
||||
author: wahyd4
|
||||
layout: post
|
||||
permalink: /2010/09/wordpress/
|
||||
categories:
|
||||
- 头条推荐
|
||||
- 酷玩软件
|
||||
tags:
|
||||
- wordpress
|
||||
- 幻灯片
|
||||
- 插件
|
||||
- 首页
|
||||
---
|
||||
笔者为了找这样一款在首页显示的插件费了很多功夫,本来国产的有一款类似的差距叫helloFlash做的还不错,但是有一点不好的就是,这个插件会截取你发辫文章里面的每一张图片,而不是只是一张。这样就不好了。
|
||||
|
||||
经过苦苦寻找,终于让我找到了这样一款插件,做得比较好。叫做Featured Content Valley ,是一款英文的插件,设置相比helloflash那样的傻瓜配置是要复杂一些,不过还好。下面我就介绍一下这款插件的配置。[<img class="aligncenter size-large wp-image-300" title="8-15" src="http://www.junv.info/wp-content/uploads/2010/09/8-15-1024x513.png" alt="" width="1024" height="513" />][1]
|
||||
|
||||
这里面可以设置你要截取图片的类别,就是 Category name ,我这里选择的是头条推荐。下面一个是显示数量。说一下比较重要的事,你可以自定义幻灯片的宽度和高度。你完全可以按照你自己的需要设置就好了,下面一个选项是在图片下方留多高的区域来显示文字。这篇区域的颜色由幻灯片的背景颜色控制,这个颜色也是可以设置的。即是Gallery Background color。然后你还可以设置幻灯片的边框的颜色,你可以设置成与你的主题相协调的颜色。即是Gallery Border color. 你还可以在Gallery Text color 里面设置显示的字体的颜色。这些事基本设置,下面还有一些设置。
|
||||
|
||||
[<img class="aligncenter size-large wp-image-301" title="8-15-2" src="http://www.junv.info/wp-content/uploads/2010/09/8-15-2-1024x450.png" alt="" width="1024" height="450" />][2]
|
||||
|
||||
下面两行的设置,你可以不用修改,如果你不需要高级属性的话,因为插件本身已经有默认值了。这里我就不再介绍了,如果大家想自己设置这些,就花点功夫自己研究研究吧。
|
||||
|
||||
Slide Transition Type 这是动画效果的选择,你可以根据你自己的需要来设置什么效果。
|
||||
|
||||
下面就是有一个Advanced Custom Fields ,一些高级选项。 如果你不勾选高级选项的话,系统就会采用默认选项。 即你只需要在自定义栏目里面属于 类似于键值对这样的东西。键是“ artucleimg”不要引号。然后再值里面跟上图片的地址,说选择的图片还是尽量满足你设置的大小比较好。
|
||||
|
||||
最后你要做的很简单就是 代码放到你想显示这个动画的任何地方。他就可以显示啦,不信你试试。很简单的。
|
||||
|
||||
<span style="color: #ff0000;"><?php include (ABSPATH . ‘/wp-content/plugins/featured-content-gallery/gallery.php’); ?></span>
|
||||
|
||||
下面附上最新版本3.2.0下载地址吧:[点我下载][3](wordpress 官方网站下载)!
|
||||
|
||||
[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
|
||||
[3]: http://downloads.wordpress.org/plugin/featured-content-gallery.3.2.0.zip
|
||||
@@ -0,0 +1,68 @@
|
||||
---
|
||||
title: F1 2010 现在可以下载啦!
|
||||
author: wahyd4
|
||||
excerpt: >
|
||||
F1 2010
|
||||
与9月22日发行了,作者第一时间在国内几个比较著名的单机游戏网站的醒目位置都看到介绍和下载链接!本人虽然不算一个游戏的狂热的追求者,但是对赛车和足球确实有着很深厚的感情,于是本人也在第一时间下载了游戏,进行试玩。
|
||||
layout: post
|
||||
permalink: /2010/09/f1-2010/
|
||||
categories:
|
||||
- 头条推荐
|
||||
- 游戏下载
|
||||
tags:
|
||||
- F1 2010
|
||||
- 上海
|
||||
- 下载
|
||||
- 赛车
|
||||
---
|
||||
作者:Junv
|
||||
|
||||
F1 2010 与9月22日发行了,作者第一时间在国内几个比较著名的单机游戏网站的醒目位置都看到介绍和下载链接!本人虽然不算一个游戏的狂热的追求者,但是对赛车和足球确实有着很深厚的感情,于是本人也在第一时间下载了游戏,进行试玩。
|
||||
|
||||
[<img class="aligncenter size-full wp-image-340" title="picthumb.php" src="http://www.junv.info/wp-content/uploads/2010/09/picthumb.php_.jpg" alt="" width="718" height="403" />][1]
|
||||
|
||||
我下载的是完整破解版,文件大小的5个多G,(我将在文末提供外链种子下载链接),安装的时候也很顺利,没好远出现什么异常,只是我感觉它 的安装界面比较单调,而是剩余时间弄得不好,安装在我的笔记本上大概话了20-30分钟吧。要在安装的过程中输入密钥:01911-01911-01911-01911-01911。
|
||||
|
||||
安装好之后只需要将镜像razar里面的文件,复制替换到原游戏文件夹即可!
|
||||
|
||||
安装信息:
|
||||
|
||||
1. 解压缩
|
||||
2. 载入镜像
|
||||
3. 安装并且输入序列号01911-01911-01911-01911-01911
|
||||
4. 将破解补丁复制到游戏安装目录下
|
||||
5. 运行游戏
|
||||
|
||||
[<img class="aligncenter size-full wp-image-350" title="33" src="http://www.junv.info/wp-content/uploads/2010/09/33.jpg" alt="" width="718" height="403" />][2]
|
||||
|
||||
这里有一点需要说明一下,可能有的童鞋,进入游戏会发现需要你登陆windows live 并输入key 才可以保存游戏,本人最初玩这个游戏的时候也犯了这个错误,后面再网上查了资料。其实不用的,就是在叫你选择使用已有的账号或者新建账号登陆的时候,请选择新建账号,然后进去将选择条往下拉到底,会出现 “ creat a local profile” 这样一个链接,点进去就可以啦。你就可以不用登陆到网上了。
|
||||
|
||||
我觉得对于我来说刚开始操作这个游戏的时候,感觉还是比较困难的,
|
||||
|
||||
下面简单说一下按键吧 A:进档 Z:退档 空格:油门 ctrl: 刹车,或者倒车用的倒档, C:切换屏幕,级切换视角 方向键左键:左转 方向键右键:右转
|
||||
|
||||
其他就差不多啦。
|
||||
|
||||
[<img class="aligncenter size-full wp-image-349" title="22" src="http://www.junv.info/wp-content/uploads/2010/09/22.jpg" alt="" width="718" height="403" />][3]
|
||||
|
||||
刚开始你会从练习赛开始,这个操作也需要大家慢慢适应吧,玩多了就应该觉得好些了。
|
||||
|
||||
我玩了雨天赛道,感觉太震撼了,而且特别真实,连水雾都模仿得非常逼真。
|
||||
|
||||
值得一玩的是,里面还有上海国际赛道哦,感觉很亲切。玩过之后发现上海国际赛道还是有两个比较大的弯感觉很困难拐过去,
|
||||
|
||||
而且我还发现法拉利的车子真的直线加速好快好快,很轻易就超过一半的车子。
|
||||
|
||||
更多精彩由你来体验吧。
|
||||
|
||||
下面附上下载链接:[点我下载BT种子][4]
|
||||
|
||||
[ 迅雷下载][5](来自gamersky)
|
||||
|
||||
图片来自:多玩
|
||||
|
||||
[1]: http://www.junv.info/wp-content/uploads/2010/09/picthumb.php_.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
|
||||
[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
|
||||
@@ -0,0 +1,77 @@
|
||||
---
|
||||
title: 'UltraISO(软碟通)—>轻松做个超好用的u盘系统启动盘!'
|
||||
author: wahyd4
|
||||
layout: post
|
||||
permalink: /2010/09/ultraiso/
|
||||
categories:
|
||||
- 头条推荐
|
||||
- 酷玩软件
|
||||
tags:
|
||||
- u盘
|
||||
- 下载
|
||||
- 系统
|
||||
---
|
||||
作者:zhong liang
|
||||
|
||||
UltraISO(软碟通)—>轻松做个超好用的u盘系统启动盘!
|
||||
|
||||
欢迎来到大染志,欢迎来到酷玩软件。
|
||||
|
||||
分享这个软件的功能:怎样做一个u盘系统启动盘。
|
||||
|
||||
目的:方便大家,快速的给电脑装:windos xp 或windos 7系统。
|
||||
|
||||
1. 下载UltraISO(软碟通)。地址:<http://download.csdn.net/source/1292484>。
|
||||
|
||||
这个地址下载的该软件,有软件和软件的注册码,堪称完美破解版。大家进去注册(注册很简单就不介绍 了哈) ,然后就能下载了。
|
||||
|
||||
1. 下载个老毛挑winpe:<http://www.duote.com/soft/8624.html>。
|
||||
2. 安装:UltraISO(软碟通)。直接点下一步,下一步,……就ok 了。
|
||||
3. 制作u盘系统启动盘过程。
|
||||
4. 打开安装好的 :UltraISO(软碟通) ,然后选择文件。如图:
|
||||
|
||||
<img title="QQ截图未命名" src="http://www.junv.info/wp-content/uploads/2010/09/QQ截图未命名1-300x217.png" alt="" width="300" height="217" />
|
||||
|
||||
然后点,文件下的打开文件:打开后如图:
|
||||
|
||||
[<img class="aligncenter size-medium wp-image-351" title="1" src="http://www.junv.info/wp-content/uploads/2010/09/12-300x217.png" alt="" width="300" height="217" />][1]
|
||||
|
||||
然后选择:你下好的老毛挑winpeboot.iso文件。如下图:
|
||||
|
||||
[<img class="aligncenter size-medium wp-image-353" title="2" src="http://www.junv.info/wp-content/uploads/2010/09/21-300x229.png" alt="" width="300" height="229" />][2]
|
||||
|
||||
选择好后,点打开。效果如下图:
|
||||
|
||||
[<img class="aligncenter size-medium wp-image-355" title="3" src="http://www.junv.info/wp-content/uploads/2010/09/31-300x231.png" alt="" width="300" height="231" />][3]
|
||||
|
||||
用红色圈住的就是winpeboot.iso的全部文件。
|
||||
|
||||
接下来就选择,菜单上的:启动 。如下图:
|
||||
|
||||
[<img class="aligncenter size-medium wp-image-356" title="4" src="http://www.junv.info/wp-content/uploads/2010/09/41-300x210.png" alt="" width="300" height="210" />][4]
|
||||
|
||||
然后选,启动下的:写入硬盘映像,并同时插上你的u盘。
|
||||
|
||||
打开效果如图:
|
||||
|
||||
[<img class="aligncenter size-medium wp-image-358" title="5" src="http://www.junv.info/wp-content/uploads/2010/09/5-300x244.png" alt="" width="300" height="244" />][5]
|
||||
|
||||
这里要注意了,一定要确定:上图显示的硬盘驱动器:是你u盘的信息,就是确保那驱动器是你的u盘,然后,写入放式最好选择:USB-HDD+,最后选择:写入。
|
||||
|
||||
这时你等过:10分钟左右就刻录完了,这时你的u盘就是系统启动盘了。
|
||||
|
||||
科学家说 :实践是检验真理的唯一标准,大家赶快试试吧。
|
||||
|
||||
经验:本人已做了2个u盘系统启动盘了,跟朋友也做了10多个了 ,绝对好用、使用。
|
||||
|
||||
由于篇幅问题,这里就不详细介绍怎样用做好的u盘系统启动盘装系统了。简单的说哈。你在:biso里把 first boot设为:USB-HDD或USB-ZIP启动。就可以看到,u盘启动里面的强大功能了。
|
||||
|
||||
寄予:希望这篇文章,能真正帮助朋友们轻松做个属于自己的u盘系统启动盘。而不是在网上找了一大堆烦杂的资料,最后还是无从下手。
|
||||
|
||||
最后:希望大家,多多提出你们的建议,提出你们要求,我们尽最大力量满足大家的要求。希望大家多多评论,如果你觉得:酷玩软件的文章很好很实用,请向你的朋友推荐,在此表示感谢,你们的支持将是我们前进的无限动力! 谢谢!
|
||||
|
||||
[1]: http://www.junv.info/wp-content/uploads/2010/09/12.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
|
||||
[4]: http://www.junv.info/wp-content/uploads/2010/09/41.png
|
||||
[5]: http://www.junv.info/wp-content/uploads/2010/09/5.png
|
||||
@@ -0,0 +1,17 @@
|
||||
---
|
||||
title: 明年今日。
|
||||
author: wahyd4
|
||||
layout: post
|
||||
permalink: /2010/09/next-year-and-today/
|
||||
categories:
|
||||
- 《 theLun》
|
||||
---
|
||||
|
||||
|
||||
它的国语版《十年》是一首被Eason被EF唱烂的了歌。当然这首粤语版的也算。
|
||||
|
||||
这么多年了,每当前奏响起,情绪还是会不自觉地就落入了歌里。有人听歌是听旋律,有人听歌则看歌词。本人较为喜欢粤语版,只因为粤语的词林夕拿捏得更好。一直如此。而陈小霞的作曲也保持了她一贯的水准。
|
||||
|
||||
过去几年,喜欢这首歌的原因或许仅仅只是因为旋律顺畅,然而随着年龄的增长人也变得越来越敏感,如今再听这首歌总会感慨于林夕直戳人心的词。
|
||||
|
||||
凡若有过一段深刻的感情应该都会有感于此吧。此刻回想一年前的自己,是否也如当初一般认真且不舍又或是决绝呢。总有一个人会恋恋不舍。一年又一年地活在当年。只因为在有生的瞬间能遇到你,竞花光所有运气。
|
||||
@@ -0,0 +1,59 @@
|
||||
---
|
||||
title: 几个常用的网站,要记到哈!
|
||||
author: wahyd4
|
||||
layout: post
|
||||
permalink: /2010/09/a-most-usefual-website/
|
||||
categories:
|
||||
- 我们爱分享
|
||||
tags:
|
||||
- 几个实用网站,大家要记到哈!
|
||||
---
|
||||
作者:liu
|
||||
|
||||
向大家推荐几个有用的网站哈,他家可以用过这个网站得到一些知识!
|
||||
|
||||
1.太傻论坛,其实一点也不傻,学习英语的好帮手。
|
||||
|
||||
[<img class="aligncenter size-thumbnail wp-image-445" title="7f9fbd82614149e7bc3e1ecb" src="http://www.junv.info/wp-content/uploads/2010/09/7f9fbd82614149e7bc3e1ecb-150x150.jpg" alt="" width="150" height="150" />][1]<a href="http://edu.taisha.org/" target="_blank">http://edu.taisha.org</a>
|
||||
|
||||
2.词汇量相当的惊人,有单词本,里边还有好多学习课程。
|
||||
|
||||
[http://www.dict.cn ][2]
|
||||
|
||||
3.英语学习网站,练习你的听力,
|
||||
|
||||
[http://www.24en.com/voa][3] /
|
||||
|
||||
4.英语翻译网站:
|
||||
|
||||
[<img class="aligncenter size-thumbnail wp-image-444" title="04e82f089da1c1d23ac763f5" src="http://www.junv.info/wp-content/uploads/2010/09/04e82f089da1c1d23ac763f5-150x150.jpg" alt="" width="150" height="150" />][4][http://translate.google.com/#][5]
|
||||
|
||||
5.一个可以精确定位的全球卫星地图:
|
||||
|
||||
<http://ditu.google.cn/>
|
||||
|
||||
6. 《环球科学》杂志的官方网站,很吸引人!
|
||||
|
||||
<a href="http://www.sciam.cn/" target="_blank">http://www.sciam.cn/</a>
|
||||
|
||||
7. 圆点视线,关于色彩的教程,做网站或搞平面设计,要想知道什么样的色彩搭配最好,来这里学习一下吧。
|
||||
|
||||
<a href="http://www.apoints.com/" target="_blank">http://www.apoints.com</a>[<img class="aligncenter size-thumbnail wp-image-446" title="3b430101a40919bde850cdd5" src="http://www.junv.info/wp-content/uploads/2010/09/3b430101a40919bde850cdd5-150x150.jpg" alt="" width="150" height="150" />][6]
|
||||
|
||||
8. 大名鼎鼎的《电脑爱好者 CFan》的官方网站。主页:
|
||||
|
||||
<a href="http://www.cfan.com.cn/" target="_blank">http://www.cfan.com.cn/</a> 。
|
||||
|
||||
论坛:<a href="http://bbs.cfan.com.cn/" target="_blank">http://bbs.cfan.com.cn/</a>
|
||||
|
||||
9. 酷驴音乐网,好听的英文歌、纯音乐、非主流音乐
|
||||
|
||||
<a href="http://www.kumule.com/" target="_blank">http://www.kumule.com/</a>[<img class="aligncenter size-full wp-image-447" title="u=4274867034,1659055255&fm=0&gp=0" src="http://www.junv.info/wp-content/uploads/2010/09/u42748670341659055255fm0gp0.gif" alt="" width="140" height="105" />][7]
|
||||
|
||||
[1]: http://www.junv.info/wp-content/uploads/2010/09/7f9fbd82614149e7bc3e1ecb.jpg
|
||||
[2]: http://www.dict.cn/
|
||||
[3]: http://www.24en.com/voa/
|
||||
[4]: http://www.junv.info/wp-content/uploads/2010/09/04e82f089da1c1d23ac763f5.jpg
|
||||
[5]: http://translate.google.com/
|
||||
[6]: http://www.junv.info/wp-content/uploads/2010/09/3b430101a40919bde850cdd5.jpg
|
||||
[7]: http://www.junv.info/wp-content/uploads/2010/09/u42748670341659055255fm0gp0.gif
|
||||
@@ -0,0 +1,56 @@
|
||||
---
|
||||
title: 分享六级词汇供下载,只是因为我需要面对!
|
||||
author: wahyd4
|
||||
layout: post
|
||||
permalink: /2010/09/cet-6-2/
|
||||
categories:
|
||||
- 头条推荐
|
||||
- 我们爱分享
|
||||
tags:
|
||||
- 下载
|
||||
- 六级
|
||||
- 分享
|
||||
- 英语
|
||||
- 词汇
|
||||
---
|
||||
作者:Junv
|
||||
|
||||
很庆幸自己在今年6月考过了4级,很纠结的是今年12月我又要面对英语6级。老实说我很多4级单词根本都不认识,考过英语4级完全靠的是我高中的底子!
|
||||
|
||||
但是自己也明白上了大学,对英语这方面花的功夫太少了,唯一增加了的就是:我开始看美剧!到现在为止算是看了5部左右吧,其实在美剧的时候,有时候还是比较纠结的,因为把看美剧荒废了学业,但是自己很多时候又是在耍!好了,还是废话少说。
|
||||
|
||||
[<img class="aligncenter size-full wp-image-386" title="f14_24825251" src="http://www.junv.info/wp-content/uploads/2010/09/f14_24825251.jpg" alt="" width="990" height="646" />][1]
|
||||
|
||||
下面来介绍一些为大家准备的英语六级词汇文档。
|
||||
|
||||
一共两份,两份均来自百度文档分享中心。一份是有英标的(我个人决定有英标很重要!至少可以让我们晓得这个单词怎么发音!),另外一份就是没有音标的了。
|
||||
|
||||
这里有个从网上截取下来的资料:
|
||||
|
||||
<span style="font-size: small;"> <strong><span style="font-family: 'Times New Roman';">1.</span></strong><strong>听力</strong></span>
|
||||
|
||||
<span style="font-size: small;"> 四级听力语速为<span style="font-family: 'Times New Roman';">130~150</span>词每分钟,略快于<span style="font-family: 'Times New Roman';">VOA Special English,</span>大部分考生会由于长期缺乏训练,会有较长的适应期。</span>
|
||||
|
||||
<span style="font-size: small;"> 六级听力语速则达到<span style="font-family: 'Times New Roman';">150~180</span>词每分钟,英美音并重,且难点多于四级。许多考生在做听力练习时有如游梦境、不知所云的感觉。</span>
|
||||
|
||||
<span style="font-size: small;"> <strong><span style="font-family: 'Times New Roman';">2.</span></strong><strong>词汇与语法</strong></span>
|
||||
|
||||
<span style="font-size: small;">四级要求考生领会式掌握<span style="font-family: 'Times New Roman';">4200</span>个单词,以及由这些单词构成的常用词组,并具有按照基本构词法识别生词的能力,语法已达到大学最难水平;六级考试要求掌握<span style="font-family: 'Times New Roman';">5500</span>个单词,其中<span style="font-family: 'Times New Roman';">1300</span>以上个较难单词成为六级考试的核心内容,六级考试中<span style="font-family: 'Times New Roman';">30</span>道词汇题只涉及<span style="font-family: 'Times New Roman';">30</span>个高难词汇的辨析。</span>
|
||||
|
||||
<address>
|
||||
<span style="font-style: normal;">那天我看了看她的六级词汇书,感觉词汇不是很多,而且有不少词汇其实我们都认识,可能只是不会写。相信我们只要努力这些词汇都不是问题的!</span>
|
||||
</address>
|
||||
|
||||
<address>
|
||||
<span style="font-style: normal;">哈哈,加油咯!</span>
|
||||
</address>
|
||||
|
||||
<address>
|
||||
<span style="font-style: normal;"> 下面分享下载地址吧:<a href="http://www.junv.info/wp-content/uploads/2010/09/2010年大学英语六级词汇表免费下载.doc">无音标版</a></span>
|
||||
</address>
|
||||
|
||||
<address>
|
||||
<span style="font-style: normal;"> <a href="http://www.junv.info/wp-content/uploads/2010/09/2010大学英语六级词汇表-带音标-完美打印版-免费下载.doc">有音标版</a>(注意两种版本的单词有一些不同哦)</span>
|
||||
</address>
|
||||
|
||||
[1]: http://www.junv.info/wp-content/uploads/2010/09/f14_24825251.jpg
|
||||
@@ -0,0 +1,46 @@
|
||||
---
|
||||
title: 教你一招:清除你电脑中的垃圾文件(很好用)
|
||||
author: wahyd4
|
||||
layout: post
|
||||
permalink: /2010/09/remove-trashes/
|
||||
categories:
|
||||
- 我们爱分享
|
||||
tags:
|
||||
- 电脑
|
||||
- 维护
|
||||
---
|
||||
作者:Lee
|
||||
|
||||
<p style="text-align: center;">
|
||||
步骤很简单就两步!<br /> 【方法】新建一个记事本,把下面的文字复制进去,点“另存为”,路径选“桌面”,保存类型为“所有文件”,文件名为“清除系统LJ.bat”,就完成了。记住后缀名一定要是.bat,ok!你的垃圾清除器就这样制作成功了!<br /> 双击它就能很快地清理垃圾文件,大约一分钟不到。
|
||||
</p>
|
||||
|
||||
======就是下面的文字(这行不用复制)=============================
|
||||
|
||||
@echo off
|
||||
echo 正在清除系统垃圾文件,请稍等……
|
||||
del /f /s /q %systemdrive%*.tmp
|
||||
del /f /s /q %systemdrive%*._mp
|
||||
del /f /s /q %systemdrive%*.log
|
||||
del /f /s /q %systemdrive%*.gid
|
||||
del /f /s /q %systemdrive%*.chk
|
||||
del /f /s /q %systemdrive%*.old
|
||||
del /f /s /q %systemdrive%recycled\*.\*
|
||||
del /f /s /q %windir%*.bak
|
||||
del /f /s /q %windir%prefetch\*.\*
|
||||
rd /s /q %windir%temp & md %windir%temp
|
||||
del /f /q %userprofile%cookies\*.\*
|
||||
del /f /q %userprofile%recent\*.\*
|
||||
del /f /s /q “%userprofile%Local SettingsTemporary Internet Files\*.\*“
|
||||
del /f /s /q “%userprofile%Local SettingsTemp\*.\*“
|
||||
del /f /s /q “%userprofile%recent\*.\*“
|
||||
echo 清除系统LJ完成!
|
||||
echo. & pause
|
||||
|
||||
=====到这里为止(这行不用复制)============================================
|
||||
以后只要双击运行该文件,当屏幕提示“清除系统LJ完成!就还你一个“苗条”的系统了!!怎么样?是不是很好用?隔一段时间后,都可以使用该文件来处理产生的垃圾文件。
|
||||
注:LJ就是垃圾的意思!这招比那些所谓的优化大师好用!最重要的是无论在公司默认的系统环境还是在自己家中的电脑都不会破坏系统文件
|
||||
|
||||
<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>
|
||||
</p>
|
||||
@@ -0,0 +1,41 @@
|
||||
---
|
||||
title: Ucall
|
||||
author: wahyd4
|
||||
excerpt: |
|
||||
UUcall电脑电话宝,话费超低廉
|
||||
|
||||
向大家推荐一种网络电话,只要有电脑,可以上网,就可以使用这款软件。
|
||||
|
||||
拥有注册用户超过3000万的UUCall电话宝网络电话,可以直接通过您的电脑拨打全球任意一部电话或者手机,
|
||||
layout: post
|
||||
permalink: /2010/09/462/
|
||||
categories:
|
||||
- 酷玩软件
|
||||
---
|
||||
[<img class="alignleft size-medium wp-image-463" title="7f9fbd82614149e7bc3e1ecb" src="http://www.junv.info/wp-content/uploads/2010/09/7f9fbd82614149e7bc3e1ecb1-300x225.jpg" alt="" width="300" height="225" />][1] 作者 liu
|
||||
|
||||
UUcall电脑电话宝,话费超低廉
|
||||
|
||||
向大家推荐一种网络电话,只要有电脑,可以上网,就可以使用这款软件。
|
||||
|
||||
拥有注册用户超过3000万的UUCall电话宝网络电话,可以直接通过您的电脑拨打全球任意一部电话或者手机,
|
||||
|
||||
价格低廉、通话清晰,是最受网友喜爱的免费网络电话软件。
|
||||
|
||||
并且可享受3~300分钟免费体验。
|
||||
|
||||
可登陆此网站了解详细信息:
|
||||
|
||||
<http://www.uucall.com/introduce.html>
|
||||
|
||||
* 下载地址为<http://www.uucall.com/download.html>。可以在此下载此软件,然后注册机可以使用。UUCall电话宝网络电话。
|
||||
* 免费绿色软件无需安装,下载到桌面即可使用
|
||||
* 软件语言:简体中文 软件大小:1.2M
|
||||
* 支持平台:Windows2000/XP/Vista/Windows7
|
||||
|
||||
可在其网页上登陆,登陆需要你的邮址,登陆成功后会在你的邮箱里发送一封邮件,通知你登陆成功。例如内容如下:<1111111111@qq.com>您好:
|
||||
感谢您注册成为UUCall的会员,请妥善保存您的帐号信息。
|
||||
|
||||
然后用桌面上的软件即可使用,并拨打电话。
|
||||
|
||||
[1]: http://www.junv.info/wp-content/uploads/2010/09/7f9fbd82614149e7bc3e1ecb1.jpg
|
||||
@@ -0,0 +1,46 @@
|
||||
---
|
||||
title: '第三届中国成都青年(大学生)电子商务创业大赛[全国的大学生,三年内毕业青年皆可参加哦]'
|
||||
author: wahyd4
|
||||
layout: post
|
||||
permalink: /2010/09/a-competation/
|
||||
categories:
|
||||
- 头条推荐
|
||||
- 我们爱分享
|
||||
tags:
|
||||
- 奖金
|
||||
- 比赛
|
||||
- 电子商务
|
||||
---
|
||||
作者:Junv
|
||||
|
||||
[<img class="aligncenter size-full wp-image-473" title="111" src="http://www.junv.info/wp-content/uploads/2010/09/111.jpg" alt="" width="468" height="317" />][1]
|
||||
|
||||
今天下午我们班上宣布了这个信息:第三届中国成都青年(大学生)电子商务创业大赛,现在可以报名参加比赛了。报名的截止日期是10月25日(即是你需要在10月25日之前提交你的项目,以word形式)。
|
||||
|
||||
先说一下丰厚的奖金,激起大家的兴趣吧。
|
||||
|
||||
冠军:奖金20000元+证书
|
||||
|
||||
亚军:奖金10000元+证书
|
||||
|
||||
季军:奖金5000元+证书
|
||||
|
||||
优秀团队奖(7名):奖金1000元+证书;
|
||||
|
||||
看看,奖品还是很丰富的哦。
|
||||
|
||||
这个是需要一团队形式参加比赛的,每个团队3到5人。(我看了之后心里面有点窃喜哦,我们大染志刚好可以分为两个队参加比赛,哈哈!!先问问他们的意见吧。)
|
||||
|
||||
他这个成都的参赛选手是从成都找一个传统商业,作为研究对象,将其进行从传统商业到电子商务转型。
|
||||
|
||||
需要::各团队本着以实战为主的思路出发,针对传统企业建设网站(网店)。并从前期市场调研、同行分析、战略定位、网店(网站)设计思路、项目运营推广宣传方案、盈利模式、风险控制、投资预算等方面进行全面细致策划。
|
||||
|
||||
更多的信息:登陆<http://2010.eca.org.cn/>
|
||||
|
||||
如果有童鞋,也有参加的意愿,可以和我们联系哦,在下面留言吧!!!
|
||||
|
||||
哈哈,我们可能成为竞争对手哦!!
|
||||
|
||||
Fighting……
|
||||
|
||||
[1]: http://www.junv.info/wp-content/uploads/2010/09/111.jpg
|
||||
@@ -0,0 +1,28 @@
|
||||
---
|
||||
title: 魅族M9最新谍照??不是以前的哦
|
||||
author: wahyd4
|
||||
layout: post
|
||||
permalink: /2010/09/newest-m9/
|
||||
categories:
|
||||
- 头条推荐
|
||||
- 我们爱分享
|
||||
tags:
|
||||
- M9
|
||||
- 谍照
|
||||
- 魅族
|
||||
---
|
||||
作者:Junv
|
||||
|
||||
今天在群里面有人发了两张模糊的M9的照片,看起来外观都是和M9的很像啊。难道Jwong说的10月份的样机就是这个样子?还是什么人漏出来的。不管怎样,和笔者一样的煤油只希望M9早点出来啊,我们等得花儿都谢了。
|
||||
|
||||
下面放上图片吧:
|
||||
|
||||
让大家兴奋一下:
|
||||
|
||||
[<img class="alignnone size-full wp-image-2011" title="ceJnKbnU8GiY" src="http://toozhao.com/wp-content/uploads/2010/11/ceJnKbnU8GiY.jpg" alt="" width="280" height="210" />][1]
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
[1]: http://toozhao.com/wp-content/uploads/2010/11/ceJnKbnU8GiY.jpg
|
||||
@@ -0,0 +1,40 @@
|
||||
---
|
||||
title: Google地图,卫星定位!
|
||||
author: wahyd4
|
||||
layout: post
|
||||
permalink: /2010/10/google-earth/
|
||||
categories:
|
||||
- 我们爱分享
|
||||
---
|
||||
作者:Liu
|
||||
|
||||
向大家介绍一个地图<http://maps.google.com/>。只要输入你想查找的地点,Google就会通过其全球卫星为你查找到精确的方位。
|
||||
|
||||
Google 地图,在地图上查找本地商户、查看
|
||||
|
||||
卫星地图、获取公交和驾车路线。
|
||||
|
||||
Google地图可以分为两类,当你使用地图选项时,查找的地点是以地图形式出现的。
|
||||
|
||||
当你使用卫星选项时,查找的地点是以卫星实物图显示的。
|
||||
|
||||
例如你想查找河北省邯郸市第一中学,只需在搜索栏中输入“河北省邯郸市第一中学”那么邯郸第一中学 的俯视图就会出现。
|
||||
|
||||
这是因为Google将该实物的卫星俯视图拍摄了下来。
|
||||
|
||||
如图示**Google地图**里的中国新疆库尔乐军事基地转贴图俯视图:
|
||||
|
||||
[<img title="tupian" src="http://www.junv.info/wp-content/uploads/2010/10/tupian.jpg" alt="" width="225" height="225" />][1]
|
||||
|
||||
如图示。利用**Google 地图**提供路线非常灵活
|
||||
|
||||
[<img title="n" src="http://www.junv.info/wp-content/uploads/2010/10/n-300x161.jpg" alt="" width="300" height="161" />][2]
|
||||
|
||||
网址<http://maps.google.com/>。
|
||||
|
||||
谷歌地图(Google Map)
|
||||
|
||||
谷歌地图(<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
|
||||
[2]: http://www.junv.info/wp-content/uploads/2010/10/n.jpg
|
||||
@@ -0,0 +1,27 @@
|
||||
---
|
||||
title: 九寨沟。黄龙(美图)
|
||||
author: wahyd4
|
||||
layout: post
|
||||
permalink: /2010/10/jiu-zai-gou/
|
||||
categories:
|
||||
- 头条推荐
|
||||
- 我们爱分享
|
||||
tags:
|
||||
- 九寨沟
|
||||
- 图片
|
||||
- 素材
|
||||
- 黄龙
|
||||
---
|
||||
作者:Junv
|
||||
|
||||
趁着国庆这个长假,和我弟娃去九寨沟转了一圈。我们运气很好,碰到了难得的艳阳天。九寨沟真的很美。下面就送上美图吧,需要的同学就来拿图吧,做素材也很好的哦。
|
||||
|
||||
[<img class="aligncenter size-large wp-image-534" title="SAM_1185_conew1" src="http://www.junv.info/wp-content/uploads/2010/10/SAM_1185_conew1-575x1024.jpg" alt="" width="575" height="1024" />][1][<img class="aligncenter size-full wp-image-542" title="SAM_1216_conew1" src="http://www.junv.info/wp-content/uploads/2010/10/SAM_1216_conew1.jpg" alt="" width="850" height="478" />][2][<img class="aligncenter size-full wp-image-541" title="SAM_1212_conew1" src="http://www.junv.info/wp-content/uploads/2010/10/SAM_1212_conew1.jpg" alt="" width="850" height="478" />][3][<img class="aligncenter size-full wp-image-540" title="SAM_1209_conew1" src="http://www.junv.info/wp-content/uploads/2010/10/SAM_1209_conew1.jpg" alt="" width="850" height="478" />][4][<img class="aligncenter size-full wp-image-539" title="SAM_1202_conew1" src="http://www.junv.info/wp-content/uploads/2010/10/SAM_1202_conew1.jpg" alt="" width="850" height="478" />][5][<img class="aligncenter size-full wp-image-538" title="SAM_1198_conew1" src="http://www.junv.info/wp-content/uploads/2010/10/SAM_1198_conew1.jpg" alt="" width="850" height="478" />][6][<img class="aligncenter size-full wp-image-536" title="SAM_1190_conew1" src="http://www.junv.info/wp-content/uploads/2010/10/SAM_1190_conew1.jpg" alt="" width="850" height="478" />][7]
|
||||
|
||||
[1]: http://www.junv.info/wp-content/uploads/2010/10/SAM_1185_conew1.jpg
|
||||
[2]: http://www.junv.info/wp-content/uploads/2010/10/SAM_1216_conew1.jpg
|
||||
[3]: http://www.junv.info/wp-content/uploads/2010/10/SAM_1212_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
|
||||
[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
|
||||
@@ -0,0 +1,31 @@
|
||||
---
|
||||
title: 游戏推荐——private
|
||||
author: wahyd4
|
||||
excerpt: >
|
||||
在浏览网页时,笔者偶然发现了这款名为《private》的游戏,有些直译成中文又叫“私处”但是总觉得这个名字有点不太尊重女性朋友一样。这个姑且放过不提。
|
||||
layout: post
|
||||
permalink: /2010/10/private/
|
||||
categories:
|
||||
- 头条推荐
|
||||
- 游戏下载
|
||||
tags:
|
||||
- 下载
|
||||
- 游戏
|
||||
---
|
||||
在浏览网页时,笔者偶然发现了这款名为《private》的游戏,有些直译成中文又叫“私处”但是总觉得这个名字有点不太尊重女性朋友一样。这个姑且放过不提。
|
||||
|
||||
笔者尝试玩了一下这款游戏,感觉画面很可爱,而且最重要的是他那纯正的英语发音,对于正要准备英语四级考试的我来说,一边游戏一边听力,哇咔 (这样玩游戏时就可以告诉老妈我在练听力——好天真)。好啦废话不多说。下面是一些游戏截图,希望你们喜欢
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
开发商Zombie Cow在发布会上将这款游戏描述为“你指挥一群小小的带着避孕套作头盔的战士,深入女性私处和屁股”的射击游戏
|
||||
|
||||
|
||||
|
||||
下面提供游戏下载连接:[电驴下载][1] [迅雷下载][1]
|
||||
|
||||
**对了 忘记说的一点是这款游戏看起来小巧可是貌似对机器配置的要求有点高,所以如果机器配置过低的童鞋可以在设置里面把游戏效果尽可能的调低点。如果还有什么问题的话 可以留言相互讨论,希望有高手能够看见解决一下!**
|
||||
|
||||
[1]: ed2k://|file|%5B%E7%A7%81%E5%A4%84%5D.privates.exe |100129178|b6ee25991d267336e4e183ec6c936b58|h =ustp4csd3ezxngtfz6t7cdghrbmu6j3j|/
|
||||
@@ -0,0 +1,34 @@
|
||||
---
|
||||
title: QQ阅读——像艺术一样阅读
|
||||
author: wahyd4
|
||||
excerpt: >
|
||||
笔者今天偶然登录QQ邮箱,发现了QQ阅读这个东西(现在还处于beta版本)。于是我便试着开始使用这个东西。用过之后,的确我被这样一个艺术品一样的东西给镇住了,它的界面是如此漂亮,让人惊艳不已。
|
||||
layout: post
|
||||
permalink: /2010/10/qq-reading/
|
||||
categories:
|
||||
- 头条推荐
|
||||
- 我们爱分享
|
||||
---
|
||||
作者:Junv
|
||||
|
||||
笔者今天偶然登录QQ邮箱,发现了QQ阅读这个东西(现在还处于beta版本)。于是我便试着开始使用这个东西。用过之后,的确我被这样一个艺术品一样的东西给镇住了,它的界面是如此漂亮,让人惊艳不已。
|
||||
|
||||
和google reader 和 有道阅读相比,QQ阅读的界面更加简洁,更加漂亮。让人眼前一亮。
|
||||
|
||||
下面结合图片进行说明吧。
|
||||
|
||||
[<img class="aligncenter size-full wp-image-548" title="11sa" src="http://www.junv.info/wp-content/uploads/2010/10/11sa.jpg" alt="" width="995" height="640" />][1]这是设置好你订阅之后的界面,将你喜欢阅读的显示出来,是不是很漂亮,很简洁呢? 你除了可以订阅一般网站以外,还可以订阅微博,QQ空间最近留言,分享最多的文章,等等。
|
||||
|
||||
[<img class="aligncenter size-full wp-image-549" title="red" src="http://www.junv.info/wp-content/uploads/2010/10/red.jpg" alt="" width="985" height="598" />][2]这是订阅我们之后的显示的文章类别页面,页面的排版没有采用传统的竖直列表,而且加上了图片的现实,看上去让人想赶快阅读。
|
||||
|
||||
[<img class="aligncenter size-full wp-image-550" title="hahasd" src="http://www.junv.info/wp-content/uploads/2010/10/hahasd.jpg" alt="" width="996" height="616" />][3]
|
||||
|
||||
这是文章阅读的界面,比普通的阅读页面感觉更大,视野更宽阔,更简洁。而且你还可以评论文章或者分享到QQ微博,空间等等。
|
||||
|
||||
很不错的小功能。
|
||||
|
||||
我的看法:其实我不讨厌腾讯这个公司,相反我很喜欢现在的腾讯公司,他们开发的产品越来越有创意,希望腾讯开发出越来越多的东西吧,越来越少的山寨。
|
||||
|
||||
[1]: http://www.junv.info/wp-content/uploads/2010/10/11sa.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
|
||||
@@ -0,0 +1,55 @@
|
||||
---
|
||||
title: 备战四级!
|
||||
author: wahyd4
|
||||
excerpt: |
|
||||
马上要四级考试。
|
||||
|
||||
那么四级的分数是怎安排的呢?我们又应把重点发在哪里呢?
|
||||
|
||||
四级中:听力部分35% ,249分
|
||||
阅读理解为35% ,249分
|
||||
layout: post
|
||||
permalink: /2010/10/prepare-cet-4/
|
||||
categories:
|
||||
- 我们爱分享
|
||||
---
|
||||
马上要四级考试。
|
||||
|
||||
那么四级的分数是怎安排的呢?我们又应把重点发在哪里呢?
|
||||
|
||||
<pre>四级中:听力部分35% ,249分</pre>
|
||||
|
||||
阅读理解为35% ,249分
|
||||
|
||||
完型填空或改错部分为10% ,71分
|
||||
|
||||
写作和翻译部分分值比例为20%,其中写作部分15%,翻译部分5%,共142分。
|
||||
|
||||
满分是710分
|
||||
|
||||
其次,时间安排(级考试流程):
|
||||
|
||||
1. 写作:30分钟
|
||||
2. 快速阅读:15分钟
|
||||
3. 收第一张答题卡:5分钟
|
||||
4. 听力:35分钟
|
||||
5. 选词填空、阅读、完形填空、翻译:45分钟
|
||||
6. 开始交卷
|
||||
|
||||
参加四级考试的感触是,考前觉得难,所以一直在准备。考试心中慌乱,怕自己答不完题,考完后对答案,只觉得自己一定能过,心中很放心。下面是自己的参考经验:
|
||||
|
||||
其中阅读分为快速阅读与选词填空和两篇阅读
|
||||
|
||||
**快速阅读**:时间要求为15分钟,大概有1300字,所以没有时间精读。
|
||||
|
||||
**做题技巧**:先看题,找出关键字,再依照关键字从文中找答案。还有就是应该抓住发卷子的五分钟,做快速阅读。一般作文时间比较充沛,但那时还未发放快速阅读卷子。
|
||||
|
||||
**阅读**:两篇阅读分值很高,共有十道选择题,占分120分左右,所以要很精细的阅读。可以先看题,再阅读,因为时间不是很够,可以节约时间。
|
||||
|
||||
** 听力**:分值比较大,所以要重视。
|
||||
|
||||
考前一定要多练习,其次在考试中也要根据关键词做题,一般对的概率比较大。但主要还是下功夫练习听力。
|
||||
|
||||
可以从<http://www.hxen.com/englishlistening/cet4/>中下载。
|
||||
|
||||
翻译与完形填空、选词填空都需要平时词汇的积累,所以从现在起,要开始好好学习。
|
||||
@@ -0,0 +1,41 @@
|
||||
---
|
||||
title: .tk顶级域名免费注册啦
|
||||
author: wahyd4
|
||||
excerpt: |
|
||||
笔者在浏览网页时,发现一个可以免费注册的顶级域名,而且还比较短哦。那就是.tk
|
||||
|
||||
注册地址:http://www.dot.tk/zh/pageA00.html
|
||||
layout: post
|
||||
permalink: /2010/10/tk-free/
|
||||
categories:
|
||||
- 头条推荐
|
||||
- 我们爱分享
|
||||
tags:
|
||||
- 免费
|
||||
- 域名
|
||||
---
|
||||
作者:Junv
|
||||
|
||||
笔者在浏览网页时,发现一个可以免费注册的顶级域名,而且还比较短哦。那就是.tk
|
||||
|
||||
注册地址:<http://www.dot.tk/zh/pageA00.html>
|
||||
|
||||
笔者尝试注册了一下,而且注册步骤也很简单。不要注意的是,长度在4个字母以上的域名是免费的,而长度在四个字母以下的域名是需要付费的,而且很贵。
|
||||
|
||||
注册里面你需要留下你真实的邮箱信息,因为你注册的时候,系统会将一个链接和一个相信的类似于激活码的东西发送到你的邮箱,此时你打开邮箱的链接,输入“激活码”即可完成注册了。
|
||||
|
||||
下面送上注册过程中的图片吧。
|
||||
|
||||
[<img class="aligncenter size-full wp-image-559" title="regdom" src="http://www.junv.info/wp-content/uploads/2010/10/regdom.jpg" alt="" width="636" height="531" />][1]
|
||||
|
||||
[][1]在这里面填上你想要注册的域名的字母就可以了
|
||||
[<img class="aligncenter size-full wp-image-561" title="reg1" src="http://www.junv.info/wp-content/uploads/2010/10/reg1.jpg" alt="" width="645" height="355" />][2]
|
||||
|
||||
如果你的域名没有被注册,显示你可以注册,然后勾选免费域名就行啦。下面的填的的一些信息就没什么特别的了
|
||||
|
||||
切记:你需要填写你真实的邮箱地址,否则你将收不到域名注册的有关信息。
|
||||
|
||||
如果个别童鞋仍然搞不懂域名注册,请在后门留言吧,我会尽快帮你解决的。
|
||||
|
||||
[1]: http://www.junv.info/wp-content/uploads/2010/10/regdom.jpg
|
||||
[2]: http://www.junv.info/wp-content/uploads/2010/10/reg1.jpg
|
||||
@@ -0,0 +1,44 @@
|
||||
---
|
||||
title: 虾米正版音乐免费下载
|
||||
author: wahyd4
|
||||
excerpt: >
|
||||
也许很多在网上听歌的童鞋都知道虾米这个网站吧,他是一个web
|
||||
2.0
|
||||
的网站,可以根据自己的喜好在选择歌曲,也可以听其他网友正在听的或者是其他网友推荐你听的歌曲。同时还可以用自己喜欢的歌制作电台给大家分享你喜欢的歌曲。
|
||||
layout: post
|
||||
permalink: /2010/10/xiami-free-download/
|
||||
categories:
|
||||
- 头条推荐
|
||||
- 我们爱分享
|
||||
tags:
|
||||
- 下载
|
||||
- 免费
|
||||
- 虾米
|
||||
- 音乐
|
||||
---
|
||||
作者:Junv
|
||||
|
||||
也许很多在网上听歌的童鞋都知道虾米这个网站吧,他是一个web 2.0 的网站,可以根据自己的喜好在选择歌曲,也可以听其他网友正在听的或者是其他网友推荐你听的歌曲。同时还可以用自己喜欢的歌制作电台给大家分享你喜欢的歌曲。
|
||||
|
||||
最近虾米推出了<a href="http://www.xiami.com/event/free-summer" target="_blank">“酷暑一夏,音乐随下”</a>活动,你可以免费下载虾米里面的正版音乐啦。而且随着日期的增长,你可以下载的歌曲每天就增加一首。比如今天是10月7日,那么我今天就可以免费下载7首,明天我就可以下载8首,以此类推。。。。
|
||||
|
||||
希望想要下载正版歌曲的童鞋们赶紧去下载吧!也许这个活动不知道哪一天就取消啦。
|
||||
|
||||
需要注意的是,下载虾米里面的正版音乐,你需要 下载虾米的音乐软件——虾歌
|
||||
|
||||
|
||||
|
||||
<table width="869" border="0" cellspacing="0" cellpadding="0" align="center">
|
||||
<tr>
|
||||
<td width="74">
|
||||
<a href="http://www.xiami.com/software" target="_blank"><img src="http://img.xiami.com/res/img/common/event/freesummer/download.jpg" alt="" width="74" height="96" /></a>
|
||||
</td>
|
||||
|
||||
<td width="20">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
虾米地址:<http://www.xiami.com/>
|
||||
|
||||
虾歌下载地址:<http://www.xiami.com/software>
|
||||
@@ -0,0 +1,24 @@
|
||||
---
|
||||
title: 提个神。
|
||||
author: wahyd4
|
||||
excerpt: |
|
||||
晚餐时间。各位吃过了吗?来欣赏一下这张颇具艺术感的图片吧。
|
||||
|
||||
出自哪位摄影师之手本人目前尚未知。只是看着这张图不由会想起余华的《兄弟》里对于那些个“屁股”的描写。
|
||||
layout: post
|
||||
permalink: /2010/10/haha/
|
||||
categories:
|
||||
- 《 theLun》
|
||||
- 头条推荐
|
||||
---
|
||||
|
||||
|
||||
晚餐时间。各位吃过了吗?来欣赏一下这张颇具艺术感的图片吧。
|
||||
|
||||
出自哪位摄影师之手本人目前尚未知。只是看着这张图不由会想起余华的《兄弟》里对于那些个“屁股”的描写。当然,在这里我们暂且将它称之为“臀部”。
|
||||
|
||||
这张图的光线运用的恰到好处,阴影落在底部更增强了立体感。否则您不用想也知道除了能看见两瓣浑圆的人体组织之外还有那什么。
|
||||
|
||||
构图也非常棒。不仅重点突出,更是让观众的视线随着后背脊柱而一直向前延伸。展开的五指使人感受到人体的力量。
|
||||
|
||||
人体摄影不过艺术,你我皆非专业人士,全当娱乐欣赏罢。只是不知图中之物所属雌雄。您觉得呢?
|
||||
@@ -0,0 +1,31 @@
|
||||
---
|
||||
title: 巨经典的网页游戏《三国杀》
|
||||
author: wahyd4
|
||||
excerpt: >
|
||||
作为一个忠实的三国粉丝,今天为大家推荐一款虽然有点落伍的三国游戏《三国杀》,但是它的可玩性很不错哦!可以算是网页游戏中比较有内涵,有质量的精品!
|
||||
layout: post
|
||||
permalink: /2010/10/three-nations/
|
||||
categories:
|
||||
- 游戏下载
|
||||
---
|
||||
[][1]
|
||||
|
||||
[<img class="alignleft size-medium wp-image-578" title="f2264e2cd53cfcde8813996f" src="http://www.junv.info/wp-content/uploads/2010/10/f2264e2cd53cfcde8813996f-300x225.jpg" alt="" width="300" height="225" />][2]作为一个忠实的三国粉丝,今天为大家推荐一款虽然有点落伍的三国游戏《三国杀》,但是它的可玩性很不错哦!可以算是网页游戏中比较有内涵,有质量的精品!
|
||||
|
||||
《三国杀》是中国传媒大学动画学院04级游戏专业学生基于bang规则设计,2009年6月底《三国杀》被移植至网游平台,推出Online版。在《三国杀》游戏中,玩家将扮演一名三国时期的武将,结合本局身份,合纵连横,经过一轮一轮的谋略和动作获得最终的胜利。 《三国杀》作为一款原创桌面游戏,有别于其他桌面游戏的最主要特色,就是身份系统。《三国杀》中共有4种身份:主公、反贼、忠臣、内奸。主公和忠臣的任务就是剿灭反贼,清除内奸;反贼的任务则是推翻主公。内奸则要在场上存在除主公以外的其他人物之时先清除其他人物,最后单挑主公。游戏开始时每个玩家随机抽取一张身份牌,抽到主公的玩家,要将自己的身份牌明示。其他人的身份牌不能被其他玩家看到。
|
||||
|
||||
《三国杀》游戏作为一款网页游戏,注定它的上手就得比较容易。它采用回合制的出牌顺序,由主公开始依次行动,在自己的回合内,玩家需要完成摸牌、出牌和弃牌的过程。游戏牌共分为三大类:基本牌、锦囊牌和装备牌。每类牌里包含了多种同类型牌。每种牌都有自己的独特用处。
|
||||
|
||||
这款游戏的另一大游戏特色,就是在游戏中加入了武将系统,每名玩家除去自己的身份外,还需要扮演一名三国时期的武将。每名武将都有专属武将技,这些技能从名称到作用都是根据该武将能力、性格而设计。[<img class="alignright size-full wp-image-571" title="图片2" src="http://www.junv.info/wp-content/uploads/2010/10/图片2.jpg" alt="" width="207" height="277" />][3]
|
||||
|
||||
而这款游戏最吸引我的一点就是,它在游戏牌名称的设计上力求做到“语出必有典”,例如【乐不思蜀】牌下注明“问禅曰:‘颇思蜀否?’禅曰:‘此间乐,不思蜀。’”简单的几句话就讲述了乐不思蜀的典故。一张看似简单的【无中生有】,牌下的注释却是引自博大精深的《老子》:“天下万物生于有,有生于无。”这样的设定很容易就能吸引一大批的上班族,因为它也和其他桌游一样,是一款健康的游戏。一局多则三、四十分钟,少则十几分钟。轻松自在,大可在公司午休时来上一局,同时也可以学到很多的典故。
|
||||
|
||||
当然,具体的玩法,我就不一一讲解了,因为,每个人都有自己的风格,只有玩出自己风格的游戏才是适合你的游戏!
|
||||
|
||||
网页游戏,无需下载!你需要做的,就是:百度一下《三国杀》!
|
||||
|
||||
《三国杀》,看谁不爽,就杀谁。你,还等什么呢?
|
||||
|
||||
[1]: http://www.junv.info/wp-content/uploads/2010/10/图片1.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
|
||||
@@ -0,0 +1,50 @@
|
||||
---
|
||||
title: 为您学习网络安全知识 搭建一个简单而快捷的平台
|
||||
author: wahyd4
|
||||
excerpt: >
|
||||
当我们在使用电脑的时候,或多或少会遇到有关网络安全的问题,我们是否懂呢?我们或许对人难以启齿的问,可是自己也不免有不知道的时候,那就请你看看下面的内容吧。希望对你们有所帮助。
|
||||
layout: post
|
||||
permalink: /2010/10/a-platform/
|
||||
categories:
|
||||
- 头条推荐
|
||||
tags:
|
||||
- 专题
|
||||
- 网络安全
|
||||
---
|
||||
作者:Wei
|
||||
|
||||
或许我们提供的知识很少,或许我们提供的知识还很单方面,但是,请您明白这是一群大学生的一片热忱的心。
|
||||
|
||||
[<img class="aligncenter size-full wp-image-592" title="200914135159" src="http://www.junv.info/wp-content/uploads/2010/10/200914135159.jpg" alt="" width="600" height="857" />][1]
|
||||
|
||||
**何为安全技术**
|
||||
|
||||
当我们在使用电脑的时候,或多或少会遇到有关网络安全的问题,我们是否懂呢?我们或许对人难以启齿的问,可是自己也不免有不知道的时候,那就请你看看下面的内容吧。希望对你们有所帮助。
|
||||
|
||||
<http://baike.baidu.com/view/157459.htm>
|
||||
|
||||
**网络安全学习方法揭秘**
|
||||
|
||||
想要对网络安全知识深入的了解与学习,我们就需要一个完整的学习方法。希望下面的一些方法能够给您带来一些头绪,以至于设计出适合自己的学习方法。这个大揭秘希望你不要错过哦。
|
||||
|
||||
<http://www.hackbase.com/tech/2010-06-01/60448.html>
|
||||
|
||||
**网络安全学习计划**
|
||||
|
||||
了解了整体的学习方法,我们下面需要的便是一个整套的学习计划了。现在我们为您提供便是我们认为不错的计划安排哦。但愿我们的所做的不会让您失望。
|
||||
|
||||
<http://htzj.bokee.com/1515856.html>
|
||||
|
||||
## 网络安全在线为你服务
|
||||
|
||||
我们提供的知识与服务还很欠缺,您想知道的内容我们也许没办法一时间给你完备的答复,希望这块内容能解决此项问题,能更好的、及时地解决您当前面临的问题。
|
||||
|
||||
<http://www.292775.com/>
|
||||
|
||||
**网络安全注意事项**
|
||||
|
||||
在处理有关网络安全的问题的时候,一定要注意以下提到的问题及注意事项哦,别错过了。
|
||||
|
||||
<http://kekex.com/a/201001/041032.html>
|
||||
|
||||
[1]: http://www.junv.info/wp-content/uploads/2010/10/200914135159.jpg
|
||||
@@ -0,0 +1,53 @@
|
||||
---
|
||||
title: 几款google chrome浏览器扩展程序(app)
|
||||
author: wahyd4
|
||||
excerpt: >
|
||||
笔者作为一个忠实的chrome粉丝,一直坚持用chrome浏览器,除了淘宝和网银这些不得不用IE。老实说你用过了chrome
|
||||
你就一点也不想再回去用IE 8这样的蜗牛浏览器,用chrome
|
||||
你才明白什么叫速度,
|
||||
layout: post
|
||||
permalink: /2010/10/google-chrome/
|
||||
categories:
|
||||
- 头条推荐
|
||||
- 酷玩软件
|
||||
tags:
|
||||
- chrome
|
||||
---
|
||||
作者:Junv
|
||||
|
||||
[下载google扩展程序][1]
|
||||
|
||||
笔者作为一个忠实的chrome粉丝,一直坚持用chrome浏览器,除了淘宝和网银这些不得不用IE。老实说你用过了chrome 你就一点也不想再回去用IE 8这样的蜗牛浏览器,用chrome 你才明白什么叫速度,而且我也很喜欢从chrome简洁的界面和对CSS3已经html 5的良好支持。
|
||||
|
||||
出最初的chrome到现在的chrome 8,据说chrome 9都快出来了。看来chrome 就是快啊。
|
||||
|
||||
当然用google chrome 浏览器就离不了扩展程序了。如果是chrome 是一辆跑车的话,好的扩展程序就是为chrome 插上了翅膀。chrome 从此就可以飞了。
|
||||
|
||||
好了在这里就不废话了,支持插入主题吧。
|
||||
[截图快手: 截屏, 批注, 分享][2] 英语:
|
||||
|
||||
## [Awesome Screenshot: Capture & Annotate][2]
|
||||
|
||||
这款插件的督导之处就是,比起官方的截图插件,你不仅可以截图,还可以在图片做标记,对图片进行剪裁和在图上打上文字。这样你就可以很容易的对图片进行标注和涂鸦了。
|
||||
|
||||
[<img class="aligncenter size-full wp-image-609" title="下载_conew1" src="http://www.junv.info/wp-content/uploads/2010/10/下载_conew1.jpg" alt="" width="850" height="394" />][3]
|
||||
|
||||
[Ultimate Chrome Flag][4]
|
||||
|
||||
这款插件对网页开发者和网站管理员特别有用,通过塌,你可以看到这个网站所在的IP和地址,你还可以看到它的Alexa 排名和google PR等信息,如果那个网站足够好你还可以看到他在google 趋势里面的信息。
|
||||
|
||||
[<img class="aligncenter size-full wp-image-611" title="QQ截图未命名" src="http://www.junv.info/wp-content/uploads/2010/10/QQ截图未命名.jpg" alt="" width="379" height="422" />][5]
|
||||
|
||||
[Chrome TV][6]
|
||||
|
||||
这是一款在线看电视的插件,你通过这个插件可以看到你以前看不到的电视台哦。全世界很多地方的电视都有,当然也包括我们中国咯,我前面看了一下中国的电视台还不少哦。。其他的就让大家慢慢去发现吧
|
||||
|
||||
[<img class="aligncenter size-full wp-image-612" title="1132sdasaz" src="http://www.junv.info/wp-content/uploads/2010/10/1132sdasaz.jpg" alt="" width="575" height="600" />][7]更多的东西就留给大家去探索吧,记得给我说哦。。。
|
||||
|
||||
[1]: https://chrome.google.com/extensions?hl=zh-CN
|
||||
[2]: https://chrome.google.com/extensions/detail/alelhddbbhepgpmgidjdcjakblofbmce
|
||||
[3]: http://www.junv.info/wp-content/uploads/2010/10/下载_conew1.jpg
|
||||
[4]: https://chrome.google.com/extensions/detail/dbpojpfdiliekbbiplijcphappgcgjfn
|
||||
[5]: http://www.junv.info/wp-content/uploads/2010/10/QQ截图未命名.jpg
|
||||
[6]: https://chrome.google.com/extensions/detail/lambangeielkjcnmioccboaphdfcffib
|
||||
[7]: http://www.junv.info/wp-content/uploads/2010/10/1132sdasaz.jpg
|
||||
@@ -0,0 +1,34 @@
|
||||
---
|
||||
title: 且说M9
|
||||
author: wahyd4
|
||||
excerpt: >
|
||||
M9这个名字已经出现了N久N久,从最开始说有tds-cdma 和wcdma
|
||||
两个版本,到现在M9只有WCDMA版本。一款手机让我们等了太久,太久。
|
||||
layout: post
|
||||
permalink: /2010/10/m9/
|
||||
categories:
|
||||
- 头条推荐
|
||||
- 我说
|
||||
tags:
|
||||
- M9
|
||||
- 评论
|
||||
---
|
||||
作者:Junv
|
||||
|
||||
M9这个名字已经出现了N久N久,从最开始说有tds-cdma 和wcdma 两个版本,到现在M9只有WCDMA版本。一款手机让我们等了太久,太久。
|
||||
|
||||
其实我最初看重魅族M9的还是性价比高。配置很高端,价格也相对苹果便宜一些,而且很重要一点的是它用的android 系统,因此它的扩展性一定很好。然后慢慢到现在,我们再细细来看,魅族这样的配置2499已经没有当初曝光时的那样有吸引力了。MOTO的里程碑现在也就2500左右,你能把魅族的工业制造水平和MOTO的比吗,在一些细节的处理上显然不能。但是魅族的确是一个很负责的公司,我们在论坛上可以看到,很多消费者的M8坏了,都是魅族免费回厂维修。
|
||||
|
||||
然后说说现在魅族的系统,在android基础上进行再开发,我们通过Jwong漏图片,可以看到的确比android原生态系统界面简洁多了,而且也是相当漂亮的。据说比android原生系统易用很多。
|
||||
|
||||
下面我就想说说我的抱怨:魅族M9让我们等了太久了,M9延续了M8的跳票。从最初的8月上市,后来延迟到12月上市10月底出样机在店上我们试用。现在10月还剩下仅有的5天,我们还看不到任何M9到门市试用的消息,我对M910月底可以试用这一消息表示怀疑,我们现在可以看到的仅仅是Jwong偶尔露出的一些信息,吊足了我们的胃口。口水到了嘴边又被咽了下去。
|
||||
|
||||
再则是魅族的价格,从最初的2199,再到现在的2499。然而改进的仅仅是屏幕的分辨率从720\*480,到现在的960\*680。但是时间也推后了几个月啊,就我个人来看吧,价格应该不会升这么多吧,而且标准配置里面还没有耳机。所以我才说魅族的性价比都没有以前那么高了。其实我个人决定作为一个旗舰手机,3G手机,还是应该配置前置摄像头。但是现在几乎可以断定是没有摄像头了。(从我们得知的种种消息来看)
|
||||
|
||||
以前有人说,android 3.0 将不再允许OEM商将界面改变,如果真是这样的话,魅族的系统还有前途吗?还可以继续向前吗?但是我个人决定,这个消息的可能性不太大,如果大家都是一样的界面,又这么多厂商,比的只能是配置和外观。还有多少可比性呢?
|
||||
|
||||
最后,作为魅族的支持者。我还是希望M9早日出来吧!我等得花谢花开啦!
|
||||
|
||||
附上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
|
||||
@@ -0,0 +1,166 @@
|
||||
---
|
||||
title: 传说中的JAVA四大名著
|
||||
author: wahyd4
|
||||
layout: post
|
||||
permalink: /2010/10/java-best-four/
|
||||
categories:
|
||||
- IT书籍
|
||||
- 头条推荐
|
||||
---
|
||||
作者:Lee
|
||||
|
||||
1、Java编程语言(第三版)——-James Gosling(Java之父)
|
||||
|
||||
本书基本信息如下:
|
||||
|
||||
<ul id="abroad">
|
||||
<li>
|
||||
原书名: <strong>The Java Programming Language,Third Edition</strong><a href="http://btobsearch.barnesandnoble.com/textbooks/booksearch/isbnInquiry.asp?userid=2WB3OL2D3X&btob=Y&isbn=0201704331&TXT=Y&itm=1" target="_blank"> </a>
|
||||
</li>
|
||||
<li>
|
||||
原出版社: Addison Wesley/Pearson
|
||||
</li>
|
||||
<li>
|
||||
作者: <strong>[美]Arnold,Gosling,Holmes</strong><a href="http://www.china-pub.com/s/?key1=%5b%c3%c0%5dArnold%2cGosling%2cHolmes" target="_blank"> </a>
|
||||
</li>
|
||||
<li>
|
||||
译者: 虞万荣 王玉峰 赵亮
|
||||
</li>
|
||||
<li>
|
||||
丛书名:<a href="http://www.china-pub.com/s/?key1=%bf%aa%b7%a2%b4%f3%ca%a6%cf%b5%c1%d0" target="_blank"> </a><strong>开发大师系列</strong>
|
||||
</li>
|
||||
<li>
|
||||
出版社:中国电力出版社
|
||||
</li>
|
||||
<li>
|
||||
ISBN:<strong>7508315162</strong>
|
||||
</li>
|
||||
<li>
|
||||
上架时间:2003-11-25
|
||||
</li>
|
||||
<li>
|
||||
出版日期:2003 年12月
|
||||
</li>
|
||||
<li>
|
||||
开本:16开
|
||||
</li>
|
||||
<li>
|
||||
页码:560
|
||||
</li>
|
||||
<li>
|
||||
版次:3-1
|
||||
</li>
|
||||
<li>
|
||||
本版教材征订号:0044098052-2
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<div>
|
||||
<ul>
|
||||
<li>
|
||||
<h4>
|
||||
适用专业:计算机
|
||||
</h4>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<h4>
|
||||
适用分级:研究生、本科
|
||||
</h4>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
#### [<img class="alignnone size-thumbnail wp-image-620" title="Java编程语言(第三版)" src="http://www.junv.info/wp-content/uploads/2010/10/Java编程语言(第三版)-150x150.jpg" alt="" width="150" height="150" />][1]
|
||||
|
||||
内容简介:这是一本众多java fans千呼万唤才出来的好书,本书由“java之父”[b]james gosling[/b]以及另外两名顶级大师(jini技术的创建者[b]ken arnold[/b]和著名开发大师[b]david holmes[/b])亲自撰写,无论是对java语言的初学者还是资深使用者都具有极高的价值.
|
||||
本书完全覆盖了java语言当前版本的特征和类库,可以作为java语言的入门向导,也可作为高级java开发及java语言教学的参考用书。
|
||||
2、Java编程思想(第3版)——-Bruce Eckel
|
||||
|
||||
本书基本信息(第三版)
|
||||
|
||||
* 原书名: **Thinking in Java, Third Edition**<a href="http://www.amazon.com/exec/obidos/tg/detail/-/0131002872/qid=1114074742/sr=1-1/ref=sr_1_1/104-2954192-4135100?v=glance&s=books" target="_blank"> </a>
|
||||
* 原出版社: Prentice Hall PTR
|
||||
* 作者: **(美)Bruce Eckel**<a href="http://www.china-pub.com/s/?key1=%a3%a8%c3%c0%a3%a9Bruce+Eckel" target="_blank"> </a>
|
||||
* 译者: 陈昊鹏 饶若楠等
|
||||
* 丛书名:<a href="http://www.china-pub.com/s/?key1=%bc%c6%cb%e3%bb%fa%bf%c6%d1%a7%b4%d4%ca%e9" target="_blank"> </a>**计算机科学丛书**
|
||||
* 出版社:机械工业出版社
|
||||
* ISBN:**711116220X**
|
||||
* 上架时间:2005-4-21
|
||||
* 出版日期:2005 年5月
|
||||
* 开本:16开
|
||||
* 页码:796
|
||||
* 版次:3-1
|
||||
* 所属分类: <!-- .red14 h1 {font-size: 14px;line-height: 20px;display: inline;} -->计算机 > 软件与程序设计 > JAVA >
|
||||
|
||||
[<img class="alignnone size-thumbnail wp-image-617" title="Java编程思想(第2版)" src="http://www.junv.info/wp-content/uploads/2010/10/Java编程思想(第2版)-150x150.jpg" alt="" width="150" height="150" />][2][<img class="alignnone size-thumbnail wp-image-618" title="Java编程思想:第3版" src="http://www.junv.info/wp-content/uploads/2010/10/Java编程思想:第3版-150x150.jpg" alt="" width="150" height="150" />][3]
|
||||
|
||||
3、 Effective Java中文版——–Joshua Bloch
|
||||
|
||||
## 本书基本信息
|
||||
|
||||
<ul id="abroad">
|
||||
<li>
|
||||
原书名: <strong>Effective Java Programming Language Guide</strong><a href="http://www.amazon.com/exec/obidos/tg/detail/-/0201310058/qid=1041987516/sr=1-1/ref=sr_1_1/102-8079856-6418500?v=glance&s=books" target="_blank"> </a>
|
||||
</li>
|
||||
<li>
|
||||
原出版社: Pearson Education
|
||||
</li>
|
||||
<li>
|
||||
作者: <strong>(美)Joshua Bloch</strong><a href="http://www.china-pub.com/s/?key1=%a3%a8%c3%c0%a3%a9Joshua+Bloch" target="_blank"> </a>
|
||||
</li>
|
||||
<li>
|
||||
译者: 潘爱民
|
||||
</li>
|
||||
<li>
|
||||
丛书名:<a href="http://www.china-pub.com/s/?key1=Sun%b9%ab%cb%be%ba%cb%d0%c4%bc%bc%ca%f5%b4%d4%ca%e9" target="_blank"> </a><strong>Sun公司核心技术丛书</strong>
|
||||
</li>
|
||||
<li>
|
||||
出版社:机械工业出版社
|
||||
</li>
|
||||
<li>
|
||||
ISBN:<strong>7111113853</strong>
|
||||
</li>
|
||||
<li>
|
||||
上架时间:2003-1-8
|
||||
</li>
|
||||
<li>
|
||||
出版日期:2003 年1月
|
||||
</li>
|
||||
<li>
|
||||
开本:16开
|
||||
</li>
|
||||
<li>
|
||||
页码:214
|
||||
</li>
|
||||
<li>
|
||||
版次:1-1
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
4、JAVA 2核心技术 卷I:基础知识(原书第7版)——–Cay Horstmann
|
||||
JAVA 2核心技术 卷II:高级特性(原书第7版)———Cay Horstmann
|
||||
|
||||
[<img class="alignnone size-thumbnail wp-image-619" title="JAVA 2核心技术 卷I:基础知识(原书第7版)(" src="http://www.junv.info/wp-content/uploads/2010/10/JAVA-2核心技术-卷I:基础知识(原书第7版)-150x150.jpg" alt="" width="150" height="150" />][4]
|
||||
|
||||
**内容简介:**
|
||||
|
||||
本书是java技术经典参考书,多年畅销不衰,第7版在保留以前版本风格的基础上,涵盖java 2开发平台标准版j2se 5.0的基础知识,主要内容包括面向对象程序设计、反射与代理、接口与内部类、事件监听器模型、使用swing ui工具箱进行图形用户界面设计、异常处理、流输入/输出和对象序列化,泛型程序设计等。
|
||||
本书内容翔实、深入浅出,附有大量程序实例,极具实用价值,是java初学者和java程序员的必备参考书。
|
||||
|
||||
> **下载地址:**
|
||||
>
|
||||
> <span style="color: #ff0000;"> <strong><a href="http://u.115.com/file/f1a02809e2" target="_blank">Java编程语言第三版 </a></strong></span>
|
||||
>
|
||||
> <span style="color: #ff0000;"> <strong><a href="http://u.115.com/file/f1840ddeff" target="_blank">thinking in java 中文版第三版</a></strong></span>
|
||||
>
|
||||
> <span style="color: #ff0000;"><strong> <a href="http://u.115.com/file/f1a1903552" target="_blank">Effective java 中文版</a></strong></span>
|
||||
>
|
||||
> <span style="color: #ff0000;"><strong><a href="ftp://210.51.180.68/bbs/tp05/computer/java/Java2%E6%A0%B8%E5%BF%83%E6%8A%80%E6%9C%AF%E7%AC%ACI%E5%8D%B7.%E5%9F%BA%E7%A1%80%E7%9F%A5%E8%AF%867th%5Bwww.TopSage.com%5D.zip" target="_blank"> java 核心技术第二卷</a>(请用迅雷下载!)</strong></span>
|
||||
>
|
||||
> <span style="color: #ff0000;"><strong>请你支持我们的网站,而不是做一个来了下了就走了!如不能下载,请告知我们,我们会尽快发到你的电子邮箱</strong></span>
|
||||
|
||||
[1]: http://www.junv.info/wp-content/uploads/2010/10/Java编程语言(第三版).jpg
|
||||
[2]: http://www.junv.info/wp-content/uploads/2010/10/Java编程思想(第2版).jpg
|
||||
[3]: http://www.junv.info/wp-content/uploads/2010/10/Java编程思想:第3版.jpg
|
||||
[4]: http://www.junv.info/wp-content/uploads/2010/10/JAVA-2核心技术-卷I:基础知识(原书第7版).jpg
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user