mirror of
https://github.com/wahyd4/junv-blog.git
synced 2026-08-09 04:56:22 +10:00
init blog
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
source "http://rubygems.org"
|
||||
source "http://ruby.taobao.org"
|
||||
|
||||
group :development do
|
||||
gem 'rake', '~> 10.0.2'
|
||||
|
||||
+3
-1
@@ -1,7 +1,8 @@
|
||||
GEM
|
||||
remote: http://rubygems.org/
|
||||
remote: http://ruby.taobao.org/
|
||||
specs:
|
||||
RedCloth (4.2.9)
|
||||
RedCloth (4.2.9-x86-mingw32)
|
||||
albino (1.3.3)
|
||||
posix-spawn (>= 0.3.6)
|
||||
blankslate (2.1.2.4)
|
||||
@@ -52,6 +53,7 @@ GEM
|
||||
|
||||
PLATFORMS
|
||||
ruby
|
||||
x86-mingw32
|
||||
|
||||
DEPENDENCIES
|
||||
RedCloth (~> 4.2.9)
|
||||
|
||||
@@ -1,18 +0,0 @@
|
||||
source "http://rubygems.org"
|
||||
|
||||
group :development do
|
||||
gem 'rake', '~> 10.0.2'
|
||||
gem 'rack', '~> 1.4.1'
|
||||
gem 'jekyll', '~> 0.11.2'
|
||||
gem 'rdiscount', '~> 1.6.8'
|
||||
gem 'pygments.rb', '~> 0.2.12'
|
||||
gem 'RedCloth', '~> 4.2.9'
|
||||
gem 'haml', '~> 3.1.6'
|
||||
gem 'compass', '~> 0.12.1'
|
||||
gem 'rubypants', '~> 0.2.0'
|
||||
gem 'rb-fsevent', '~> 0.9'
|
||||
gem 'stringex', '~> 1.4.0'
|
||||
gem 'liquid', '~> 2.3.0'
|
||||
end
|
||||
|
||||
gem 'sinatra', '~> 1.3.2'
|
||||
@@ -9,10 +9,10 @@ ssh_port = "22"
|
||||
document_root = "~/website.com/"
|
||||
rsync_delete = false
|
||||
rsync_args = "" # Any extra arguments to pass to rsync
|
||||
deploy_default = "rsync"
|
||||
deploy_default = "push"
|
||||
|
||||
# This will be configured for you when you run config_deploy
|
||||
deploy_branch = "gh-pages"
|
||||
deploy_branch = "master"
|
||||
|
||||
## -- Misc Configs -- ##
|
||||
|
||||
|
||||
+3
-3
@@ -36,7 +36,7 @@ category_dir: blog/categories
|
||||
markdown: rdiscount
|
||||
pygments: false # default python pygments have been replaced by pygments.rb
|
||||
|
||||
paginate: 8 # Posts per page on the blog index
|
||||
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
|
||||
@@ -69,7 +69,7 @@ twitter_tweet_count: 4
|
||||
twitter_show_replies: false
|
||||
twitter_follow_button: true
|
||||
twitter_show_follower_count: false
|
||||
twitter_tweet_button: true
|
||||
twitter_tweet_button: false
|
||||
|
||||
# Google +1
|
||||
google_plus_one: false
|
||||
@@ -78,7 +78,7 @@ google_plus_one_size: medium
|
||||
# Google Plus Profile
|
||||
# Hidden: No visible button, just add author information to search results
|
||||
googleplus_user:
|
||||
googleplus_hidden: false
|
||||
googleplus_hidden: true
|
||||
|
||||
# Pinboard
|
||||
pinboard_user:
|
||||
|
||||
-100
@@ -1,100 +0,0 @@
|
||||
# ----------------------- #
|
||||
# Main Configs #
|
||||
# ----------------------- #
|
||||
|
||||
url: http://wahyd4.github.com
|
||||
title: Junv's Blog
|
||||
subtitle: nothing to say
|
||||
author: Junv
|
||||
simple_search: http://google.com/search
|
||||
description:
|
||||
|
||||
# Default date format is "ordinal" (resulting in "July 22nd 2007")
|
||||
# You can customize the format as defined in
|
||||
# http://www.ruby-doc.org/core-1.9.2/Time.html#method-i-strftime
|
||||
# Additionally, %o will give you the ordinal representation of the day
|
||||
date_format: "ordinal"
|
||||
|
||||
# RSS / Email (optional) subscription links (change if using something like Feedburner)
|
||||
subscribe_rss: /atom.xml
|
||||
subscribe_email:
|
||||
# RSS feeds can list your email address if you like
|
||||
email:
|
||||
|
||||
# ----------------------- #
|
||||
# Jekyll & Plugins #
|
||||
# ----------------------- #
|
||||
|
||||
# If publishing to a subdirectory as in http://site.com/project set 'root: /project'
|
||||
root: /
|
||||
permalink: /blog/:year/:month/:day/:title/
|
||||
source: source
|
||||
destination: public
|
||||
plugins: plugins
|
||||
code_dir: downloads/code
|
||||
category_dir: blog/categories
|
||||
markdown: rdiscount
|
||||
pygments: false # default python pygments have been replaced by pygments.rb
|
||||
|
||||
paginate: 10 # Posts per page on the blog index
|
||||
pagination_dir: blog # Directory base for pagination URLs eg. /blog/page/2/
|
||||
recent_posts: 5 # Posts in the sidebar Recent Posts section
|
||||
excerpt_link: "Read on →" # "Continue reading" link text at the bottom of excerpted articles
|
||||
|
||||
titlecase: true # Converts page and post titles to titlecase
|
||||
|
||||
# list each of the sidebar modules you want to include, in the order you want them to appear.
|
||||
# To add custom asides, create files in /source/_includes/custom/asides/ and add them to the list like 'custom/asides/custom_aside_name.html'
|
||||
default_asides: [asides/recent_posts.html, asides/github.html, asides/twitter.html, asides/delicious.html, asides/pinboard.html, asides/googleplus.html]
|
||||
|
||||
# Each layout uses the default asides, but they can have their own asides instead. Simply uncomment the lines below
|
||||
# and add an array with the asides you want to use.
|
||||
# blog_index_asides:
|
||||
# post_asides:
|
||||
# page_asides:
|
||||
|
||||
# ----------------------- #
|
||||
# 3rd Party Settings #
|
||||
# ----------------------- #
|
||||
|
||||
# Github repositories
|
||||
github_user: wahyd4
|
||||
github_repo_count: 0
|
||||
github_show_profile_link: true
|
||||
github_skip_forks: true
|
||||
|
||||
# Twitter
|
||||
twitter_user:
|
||||
twitter_tweet_count: 4
|
||||
twitter_show_replies: false
|
||||
twitter_follow_button: true
|
||||
twitter_show_follower_count: false
|
||||
twitter_tweet_button: true
|
||||
|
||||
# Google +1
|
||||
google_plus_one: false
|
||||
google_plus_one_size: medium
|
||||
|
||||
# Google Plus Profile
|
||||
# Hidden: No visible button, just add author information to search results
|
||||
googleplus_user:
|
||||
googleplus_hidden: false
|
||||
|
||||
# Pinboard
|
||||
pinboard_user:
|
||||
pinboard_count: 3
|
||||
|
||||
# Delicious
|
||||
delicious_user:
|
||||
delicious_count: 3
|
||||
|
||||
# Disqus Comments
|
||||
disqus_short_name:
|
||||
disqus_show_comment_count: false
|
||||
|
||||
# Google Analytics
|
||||
google_analytics_tracking_id:
|
||||
|
||||
# Facebook Like
|
||||
facebook_like: false
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
{% include fancybox.html %}
|
||||
{% include phasebeam.html %}
|
||||
{% include disqus.html %}
|
||||
{% include custom/after_footer.html %}
|
||||
{% include facebook_like.html %}
|
||||
{% include google_plus_one.html %}
|
||||
{% include twitter_sharing.html %}
|
||||
{% include custom/after_footer.html %}
|
||||
|
||||
@@ -1,16 +1,8 @@
|
||||
{% 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>
|
||||
{% capture category %}{{ post.categories | size }}{% endcapture %}
|
||||
<h1><a href="{{ root_url }}{{ post.url }}">{{post.title}}</a></h1>
|
||||
<time datetime="{{ post.date | datetime | date_to_xmlschema }}" pubdate>{{ post.date | date: "<span class='month'>%b</span> <span class='day'>%d</span> <span class='year'>%Y</span>"}}</time>
|
||||
{% if category != '0' %}
|
||||
<footer>
|
||||
<span class="categories">posted in {{ post.categories | category_links }}</span>
|
||||
</footer>
|
||||
{% endif %}
|
||||
|
||||
@@ -1,32 +1,28 @@
|
||||
<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 %}
|
||||
{% unless page.no_header %}
|
||||
<header>
|
||||
{% if index %}
|
||||
<h1 class="entry-title"><a href="{{ root_url }}{{ post.url }}">{% if site.titlecase %}{{ post.title | titlecase }}{% else %}{{ post.title }}{% endif %}</a></h1>
|
||||
{% else %}
|
||||
<h1 class="entry-title">{% if site.titlecase %}{{ page.title | titlecase }}{% else %}{{ page.title }}{% endif %}</h1>
|
||||
{% endif %}
|
||||
</footer>
|
||||
{% unless page.meta == false %}
|
||||
<p class="meta">
|
||||
{% include post/date.html %}{{ time }}
|
||||
{% if site.disqus_short_name and page.comments != false and post.comments != false and site.disqus_show_comment_count == true %}
|
||||
| <a href="{% if index %}{{ root_url }}{{ post.url }}{% endif %}#disqus_thread">Comments</a>
|
||||
{% endif %}
|
||||
</p>
|
||||
{% endunless %}
|
||||
</header>
|
||||
{% endunless %}
|
||||
{% if index %}
|
||||
<div class="entry-content">{{ content | excerpt }}</div>
|
||||
{% capture excerpted %}{{ content | has_excerpt }}{% endcapture %}
|
||||
{% if excerpted == 'true' %}
|
||||
<footer>
|
||||
<a rel="full-article" href="{{ root_url }}{{ post.url }}">{{ site.excerpt_link }}</a>
|
||||
</footer>
|
||||
{% endif %}
|
||||
</div>
|
||||
{% include post/comment.html %}
|
||||
{% else %}
|
||||
<div class="entry-content">{{ content }}</div>
|
||||
{% endif %}
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
{% comment %}
|
||||
Add content to be output at the bottom of each page. (You might use this for analytics scripts, for example)
|
||||
{% endcomment %}
|
||||
|
||||
@@ -1 +1,4 @@
|
||||
<p>© {{ site.time | date: "%Y" }} {{ site.author }}</p>
|
||||
<p>
|
||||
Copyright © {{ site.time | date: "%Y" }} - {{ site.author }} -
|
||||
<span class="credit">Powered by <a href="http://octopress.org">Octopress</a></span>
|
||||
</p>
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
<!--Fonts from Google"s Web font directory at http://google.com/webfonts -->
|
||||
<link href="http://fonts.googleapis.com/css?family=PT+Serif:regular,italic,bold,bolditalic" rel="stylesheet" type="text/css">
|
||||
<link href="http://fonts.googleapis.com/css?family=PT+Sans:regular,italic,bold,bolditalic" rel="stylesheet" type="text/css">
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
<hgroup>
|
||||
<h1><a href="{{ root_url }}/">{{ site.title }}</a></h1>
|
||||
{% if site.subtitle %}
|
||||
<h2>{{ site.subtitle }}</h2>
|
||||
{% endif %}
|
||||
</hgroup>
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<ul>
|
||||
<li><a href="{{ root_url }}/">Home</a></li>
|
||||
<ul class="main-navigation">
|
||||
<li><a href="{{ root_url }}/">Blog</a></li>
|
||||
<li><a href="{{ root_url }}/blog/archives">Archives</a></li>
|
||||
</ul>
|
||||
</ul>
|
||||
|
||||
@@ -1,20 +1 @@
|
||||
<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>
|
||||
+26
-17
@@ -1,20 +1,29 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<!DOCTYPE html>
|
||||
<!--[if IEMobile 7 ]><html class="no-js iem7"><![endif]-->
|
||||
<!--[if lt IE 9]><html class="no-js lte-ie8"><![endif]-->
|
||||
<!--[if (gt IE 8)|(gt IEMobile 7)|!(IEMobile)|!(IE)]><!--><html class="no-js" lang="en"><!--<![endif]-->
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>{% if page.title %}{{ page.title }} | {% endif %}{{ site.title }}</title>
|
||||
<meta name="author" content="{{ site.author }}">
|
||||
<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 %}
|
||||
{% 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>
|
||||
<!-- http://t.co/dKP3o1e -->
|
||||
<meta name="HandheldFriendly" content="True">
|
||||
<meta name="MobileOptimized" content="320">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
{% capture canonical %}{{ site.url }}{% if site.permalink contains '.html' %}{{ page.url }}{% else %}{{ page.url | remove:'index.html' }}{% endif %}{% endcapture %}
|
||||
<link rel="canonical" href="{{ canonical }}">
|
||||
<link href="{{ root_url }}/favicon.png" rel="icon">
|
||||
<link href="{{ root_url }}/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css">
|
||||
<script src="{{ root_url }}/javascripts/modernizr-2.0.js"></script>
|
||||
<script src="{{ root_url }}/javascripts/ender.js"></script>
|
||||
<script src="{{ root_url }}/javascripts/octopress.js" type="text/javascript"></script>
|
||||
<link href="{{ site.subscribe_rss }}" rel="alternate" title="{{site.title}}" type="application/atom+xml">
|
||||
{% include custom/head.html %}
|
||||
{% include google_analytics.html %}
|
||||
</head>
|
||||
|
||||
@@ -1,2 +1 @@
|
||||
<nav>{% include custom/navigation.html %}</nav>
|
||||
{% include custom/header.html %}
|
||||
{% include custom/header.html %}
|
||||
|
||||
@@ -1,6 +1,10 @@
|
||||
{% 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 %}
|
||||
{% capture category %}{% if post %}{{ post.categories | category_links | size }}{% else %}{{ page.categories | category_links | size }}{% endif %}{% endcapture %}
|
||||
{% unless category == '0' %}
|
||||
<span class="categories">
|
||||
{% if post %}
|
||||
{{ post.categories | category_links }}
|
||||
{% else %}
|
||||
{{ page.categories | category_links }}
|
||||
{% endif %}
|
||||
</span>
|
||||
{% endunless %}
|
||||
|
||||
@@ -6,14 +6,10 @@
|
||||
{% capture updated_formatted %}{{ page.updated_formatted }}{{ post.updated_formatted }}{% endcapture %}
|
||||
{% capture was_updated %}{{ updated | size }}{% endcapture %}
|
||||
|
||||
{% if has_date != '0' %}
|
||||
{% capture time %}<time datetime="{{ date | datetime | date_to_xmlschema }}" pubdate{% if updated %} data-updated="true"{% endif %}>{{ date_formatted }}</time>{% endcapture %}
|
||||
{% endif %}
|
||||
|
||||
{% 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 %}
|
||||
{% capture updated %}<time datetime="{{ updated | datetime | date_to_xmlschema }}" class="updated">Updated {{ updated_formatted }}</time>{% endcapture %}
|
||||
{% else %}{% assign updated = false %}{% endif %}
|
||||
@@ -1,15 +1,11 @@
|
||||
<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>
|
||||
{% if site.twitter_tweet_button %}
|
||||
<a href="http://twitter.com/share" class="twitter-share-button" data-url="{{ site.url }}{{ page.url }}" data-via="{{ site.twitter_user }}" data-counturl="{{ site.url }}{{ page.url }}" >Tweet</a>
|
||||
{% endif %}
|
||||
{% if site.google_plus_one %}
|
||||
<div class="g-plusone" data-size="{{ site.google_plus_one_size }}"></div>
|
||||
{% endif %}
|
||||
{% if site.facebook_like %}
|
||||
<div class="fb-like" data-send="true" data-width="450" data-show-faces="false"></div>
|
||||
{% endif %}
|
||||
</div>
|
||||
|
||||
@@ -1,15 +1,17 @@
|
||||
---
|
||||
layout: default
|
||||
layout: page
|
||||
footer: false
|
||||
---
|
||||
|
||||
<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>
|
||||
|
||||
<div id="blog-archives" class="category">
|
||||
{% for post in site.categories[page.category] %}
|
||||
{% include archive_post.html %}
|
||||
{% endfor %}
|
||||
{% capture this_year %}{{ post.date | date: "%Y" }}{% endcapture %}
|
||||
{% unless year == this_year %}
|
||||
{% assign year = this_year %}
|
||||
<h2>{{ year }}</h2>
|
||||
{% endunless %}
|
||||
<article>
|
||||
{% include archive_post.html %}
|
||||
</article>
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
||||
@@ -1,10 +1,14 @@
|
||||
{% 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 {% if page.body_id %} id="{{ page.body_id }}" {% endif %} {% if page.sidebar == false %} class="no-sidebar" {% endif %} {% if page.sidebar == 'collapse' or site.sidebar == 'collapse' %} class="collapse-sidebar sidebar-footer" {% endif %}>
|
||||
<header role="banner">{% include header.html %}</header>
|
||||
<nav role="navigation">{% include navigation.html %}</nav>
|
||||
<div id="main">
|
||||
<div id="content">
|
||||
{{ content | expand_urls: root_url }}
|
||||
</div>
|
||||
</div>
|
||||
<footer role="contentinfo">{% include footer.html %}</footer>
|
||||
{% include after_footer.html %}
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
|
||||
@@ -2,4 +2,41 @@
|
||||
layout: default
|
||||
---
|
||||
|
||||
<article class="page">{% include article.html %}</article>
|
||||
<div>
|
||||
<article role="article">
|
||||
{% if page.title %}
|
||||
<header>
|
||||
<h1 class="entry-title">{% if site.titlecase %}{{ page.title | titlecase }}{% else %}{{ page.title }}{% endif %}</h1>
|
||||
{% if page.date %}<p class="meta">{% include post/date.html %}{{ time }}</p>{% endif %}
|
||||
</header>
|
||||
{% endif %}
|
||||
{{ content }}
|
||||
{% unless page.footer == false %}
|
||||
<footer>
|
||||
{% if page.date or page.author %}<p class="meta">
|
||||
{% if page.author %}{% include post/author.html %}{% endif %}
|
||||
{% include post/date.html %}{% if updated %}{{ updated }}{% else %}{{ time }}{% endif %}
|
||||
{% if page.categories %}{% include post/categories.html %}{% endif %}
|
||||
</p>{% endif %}
|
||||
{% unless page.sharing == false %}
|
||||
{% include post/sharing.html %}
|
||||
{% endunless %}
|
||||
</footer>
|
||||
{% endunless %}
|
||||
</article>
|
||||
{% if site.disqus_short_name and page.comments == true %}
|
||||
<section>
|
||||
<h1>Comments</h1>
|
||||
<div id="disqus_thread" aria-live="polite">{% include post/disqus_thread.html %}</div>
|
||||
</section>
|
||||
{% endif %}
|
||||
</div>
|
||||
{% unless page.sidebar == false %}
|
||||
<aside class="sidebar">
|
||||
{% if site.page_asides.size %}
|
||||
{% include_array page_asides %}
|
||||
{% else %}
|
||||
{% include_array default_asides %}
|
||||
{% endif %}
|
||||
</aside>
|
||||
{% endunless %}
|
||||
|
||||
@@ -3,4 +3,41 @@ layout: default
|
||||
single: true
|
||||
---
|
||||
|
||||
<article class="post">{% include article.html %}</article>
|
||||
<div>
|
||||
<article class="hentry" role="article">
|
||||
{% include article.html %}
|
||||
<footer>
|
||||
<p class="meta">
|
||||
{% include post/author.html %}
|
||||
{% include post/date.html %}{% if updated %}{{ updated }}{% else %}{{ time }}{% endif %}
|
||||
{% include post/categories.html %}
|
||||
</p>
|
||||
{% unless page.sharing == false %}
|
||||
{% include post/sharing.html %}
|
||||
{% endunless %}
|
||||
<p class="meta">
|
||||
{% if page.previous.url %}
|
||||
<a class="basic-alignment left" href="{{page.previous.url}}" title="Previous Post: {{page.previous.title}}">« {{page.previous.title}}</a>
|
||||
{% endif %}
|
||||
{% if page.next.url %}
|
||||
<a class="basic-alignment right" href="{{page.next.url}}" title="Next Post: {{page.next.title}}">{{page.next.title}} »</a>
|
||||
{% endif %}
|
||||
</p>
|
||||
</footer>
|
||||
</article>
|
||||
{% if site.disqus_short_name and page.comments == true %}
|
||||
<section>
|
||||
<h1>Comments</h1>
|
||||
<div id="disqus_thread" aria-live="polite">{% include post/disqus_thread.html %}</div>
|
||||
</section>
|
||||
{% endif %}
|
||||
</div>
|
||||
{% unless page.sidebar == false %}
|
||||
<aside class="sidebar">
|
||||
{% if site.post_asides.size %}
|
||||
{% include_array post_asides %}
|
||||
{% else %}
|
||||
{% include_array default_asides %}
|
||||
{% endif %}
|
||||
</aside>
|
||||
{% endunless %}
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: 一个全新的开始
|
||||
author: wahyd4
|
||||
comments: true
|
||||
excerpt: |
|
||||
|
|
||||
我们想大声的宣布大染志今天上线啦!!!
|
||||
@@ -40,4 +41,4 @@ tags:
|
||||
|
||||
<p>
|
||||
</del>
|
||||
</p>
|
||||
</p>
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: 蓝牙手机控制电脑——不是梦!(1)
|
||||
author: wahyd4
|
||||
comments: true
|
||||
layout: post
|
||||
permalink: /2010/09/blue-tooth-one/
|
||||
categories:
|
||||
@@ -77,4 +78,4 @@ Disconnect idle 里面则表示多少时间手机不操作则断开手机与电
|
||||
|
||||
## [蓝牙手机控制电脑——不是梦!(2)][1]
|
||||
|
||||
[1]: http://www.junv.info/2010/09/19/%e8%93%9d%e7%89%99%e6%89%8b%e6%9c%ba%e6%8e%a7%e5%88%b6%e7%94%b5%e8%84%91%e2%80%94%e2%80%94%e4%b8%8d%e6%98%af%e6%a2%a6%ef%bc%812/
|
||||
[1]: http://www.junv.info/2010/09/19/%e8%93%9d%e7%89%99%e6%89%8b%e6%9c%ba%e6%8e%a7%e5%88%b6%e7%94%b5%e8%84%91%e2%80%94%e2%80%94%e4%b8%8d%e6%98%af%e6%a2%a6%ef%bc%812/
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: 蓝牙手机控制电脑——不是梦!(2)
|
||||
author: wahyd4
|
||||
comments: true
|
||||
layout: post
|
||||
permalink: /2010/09/blue-tooth/
|
||||
categories:
|
||||
@@ -68,4 +69,4 @@ tags:
|
||||
|
||||
<span style="color: #0000ff;"><span style="color: #333333;"><a href="http://cid-5b8b195ca5b3555d.office.live.com/self.aspx/.Public/SallingClickerV3.5.0.860.rar">点击下载</a></span></span>
|
||||
|
||||
[1]: http://www.junv.info/2010/09/19/%e8%93%9d%e7%89%99%e6%89%8b%e6%9c%ba%e6%8e%a7%e5%88%b6%e7%94%b5%e8%84%91%e2%80%94%e2%80%94%e4%b8%8d%e6%98%af%e6%a2%a6%ef%bc%811/
|
||||
[1]: http://www.junv.info/2010/09/19/%e8%93%9d%e7%89%99%e6%89%8b%e6%9c%ba%e6%8e%a7%e5%88%b6%e7%94%b5%e8%84%91%e2%80%94%e2%80%94%e4%b8%8d%e6%98%af%e6%a2%a6%ef%bc%811/
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
title: end of the summer
|
||||
author: wahyd4
|
||||
layout: post
|
||||
comments: true
|
||||
permalink: /2010/09/end-of-the-summer/
|
||||
categories:
|
||||
- 《 theLun》
|
||||
@@ -10,4 +11,4 @@ categories:
|
||||
|
||||
[<img class="alignnone size-medium wp-image-193" title="DSC02310_副本_副本" src="http://www.junv.info/wp-content/uploads/2010/09/DSC02310_副本_副本3-300x169.jpg" alt="" width="300" height="169" />][1]
|
||||
|
||||
[1]: http://www.junv.info/wp-content/uploads/2010/09/DSC02310_副本_副本3.jpg
|
||||
[1]: http://www.junv.info/wp-content/uploads/2010/09/DSC02310_副本_副本3.jpg
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
title: 软件分享:Recuva(超强文件恢复软件)
|
||||
author: wahyd4
|
||||
layout: post
|
||||
comments: true
|
||||
permalink: /2010/09/recuva/
|
||||
categories:
|
||||
- 头条推荐
|
||||
@@ -56,4 +57,4 @@ tags:
|
||||
|
||||
[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
|
||||
[3]: http://www.junv.info/wp-content/uploads/2010/09/sdasd.jpg
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
title: 送腾讯企业邮箱邀请码啦!
|
||||
author: wahyd4
|
||||
layout: post
|
||||
comments: true
|
||||
permalink: /2010/09/tencent/
|
||||
categories:
|
||||
- 我们爱分享
|
||||
@@ -198,4 +199,4 @@ tags:
|
||||
|
||||
[<img class="aligncenter size-medium wp-image-184" title="qiye" src="http://www.junv.info/wp-content/uploads/2010/09/qiye-300x150.png" alt="" width="300" height="150" />][1]
|
||||
|
||||
[1]: http://www.junv.info/wp-content/uploads/2010/09/qiye.png
|
||||
[1]: http://www.junv.info/wp-content/uploads/2010/09/qiye.png
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
title: 那些刀光剑影的日子
|
||||
author: wahyd4
|
||||
layout: post
|
||||
comments: true
|
||||
permalink: /2010/09/230/
|
||||
categories:
|
||||
- 头条推荐
|
||||
@@ -81,4 +82,4 @@ CS是我们这代人中的神话,是永恒的经典,无论是人物系统,
|
||||
[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
|
||||
[11]: http://www.junv.info/wp-content/uploads/2010/09/1e3ae5dda13222ff76c63827.jpg
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: NIKITA/maggie Q
|
||||
author: wahyd4
|
||||
comments: true
|
||||
excerpt: >
|
||||
美剧回归了。盼来了久违的《gossip
|
||||
girl》。除此之外还有一部新上的《Nikita》,是继《吸血鬼日记》之后美国CW电视台推出的又一部谍战电视连续剧,
|
||||
@@ -25,4 +26,4 @@ tags:
|
||||
<span style="color: #ff0000;"><strong>NIKITA/maggie Q</strong></span><span style="font-size: 20px;"><span style="color: #ff0000;"><strong>《尼基塔 第一季》剧集免费下载:来自人人影视:</strong></span><a href="http://yyets.net/showresource-juji-624.html" target="_blank">点我进入下载</a></span>
|
||||
|
||||
[1]: http://www.junv.info/wp-content/uploads/2010/09/NIKITA.jpg
|
||||
[2]: http://www.junv.info/wp-content/uploads/2010/09/Maggie-Q1.jpg
|
||||
[2]: http://www.junv.info/wp-content/uploads/2010/09/Maggie-Q1.jpg
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
title: 一款很棒的wordpress 首页动画展示插件
|
||||
author: wahyd4
|
||||
layout: post
|
||||
comments: true
|
||||
permalink: /2010/09/wordpress/
|
||||
categories:
|
||||
- 头条推荐
|
||||
@@ -34,4 +35,4 @@ Slide Transition Type 这是动画效果的选择,你可以根据你自己的
|
||||
|
||||
[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
|
||||
[3]: http://downloads.wordpress.org/plugin/featured-content-gallery.3.2.0.zip
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: F1 2010 现在可以下载啦!
|
||||
author: wahyd4
|
||||
comments: true
|
||||
excerpt: >
|
||||
F1 2010
|
||||
与9月22日发行了,作者第一时间在国内几个比较著名的单机游戏网站的醒目位置都看到介绍和下载链接!本人虽然不算一个游戏的狂热的追求者,但是对赛车和足球确实有着很深厚的感情,于是本人也在第一时间下载了游戏,进行试玩。
|
||||
@@ -65,4 +66,4 @@ F1 2010 与9月22日发行了,作者第一时间在国内几个比较著名的
|
||||
[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
|
||||
[5]: http://db.gamersky.com/Soft/ShowSoftDown.asp?UrlID=1&SoftID=25895&flag=1
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
title: 'UltraISO(软碟通)—>轻松做个超好用的u盘系统启动盘!'
|
||||
author: wahyd4
|
||||
layout: post
|
||||
comments: true
|
||||
permalink: /2010/09/ultraiso/
|
||||
categories:
|
||||
- 头条推荐
|
||||
@@ -74,4 +75,4 @@ UltraISO(软碟通)—>轻松做个超好用的u盘系统启动盘!
|
||||
[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
|
||||
[5]: http://www.junv.info/wp-content/uploads/2010/09/5.png
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
title: 明年今日。
|
||||
author: wahyd4
|
||||
layout: post
|
||||
comments: true
|
||||
permalink: /2010/09/next-year-and-today/
|
||||
categories:
|
||||
- 《 theLun》
|
||||
@@ -14,4 +15,4 @@ categories:
|
||||
|
||||
过去几年,喜欢这首歌的原因或许仅仅只是因为旋律顺畅,然而随着年龄的增长人也变得越来越敏感,如今再听这首歌总会感慨于林夕直戳人心的词。
|
||||
|
||||
凡若有过一段深刻的感情应该都会有感于此吧。此刻回想一年前的自己,是否也如当初一般认真且不舍又或是决绝呢。总有一个人会恋恋不舍。一年又一年地活在当年。只因为在有生的瞬间能遇到你,竞花光所有运气。
|
||||
凡若有过一段深刻的感情应该都会有感于此吧。此刻回想一年前的自己,是否也如当初一般认真且不舍又或是决绝呢。总有一个人会恋恋不舍。一年又一年地活在当年。只因为在有生的瞬间能遇到你,竞花光所有运气。
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
title: 几个常用的网站,要记到哈!
|
||||
author: wahyd4
|
||||
layout: post
|
||||
comments: true
|
||||
permalink: /2010/09/a-most-usefual-website/
|
||||
categories:
|
||||
- 我们爱分享
|
||||
@@ -56,4 +57,4 @@ tags:
|
||||
[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
|
||||
[7]: http://www.junv.info/wp-content/uploads/2010/09/u42748670341659055255fm0gp0.gif
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
title: 分享六级词汇供下载,只是因为我需要面对!
|
||||
author: wahyd4
|
||||
layout: post
|
||||
comments: true
|
||||
permalink: /2010/09/cet-6-2/
|
||||
categories:
|
||||
- 头条推荐
|
||||
@@ -53,4 +54,4 @@ tags:
|
||||
<span style="font-style: normal;"> <a href="http://www.junv.info/wp-content/uploads/2010/09/2010大学英语六级词汇表-带音标-完美打印版-免费下载.doc">有音标版</a>(注意两种版本的单词有一些不同哦)</span>
|
||||
</address>
|
||||
|
||||
[1]: http://www.junv.info/wp-content/uploads/2010/09/f14_24825251.jpg
|
||||
[1]: http://www.junv.info/wp-content/uploads/2010/09/f14_24825251.jpg
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
title: 教你一招:清除你电脑中的垃圾文件(很好用)
|
||||
author: wahyd4
|
||||
layout: post
|
||||
comments: true
|
||||
permalink: /2010/09/remove-trashes/
|
||||
categories:
|
||||
- 我们爱分享
|
||||
@@ -43,4 +44,4 @@ echo. & pause
|
||||
|
||||
<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>
|
||||
</p>
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: Ucall
|
||||
author: wahyd4
|
||||
comments: true
|
||||
excerpt: |
|
||||
UUcall电脑电话宝,话费超低廉
|
||||
|
||||
@@ -38,4 +39,4 @@ UUcall电脑电话宝,话费超低廉
|
||||
|
||||
然后用桌面上的软件即可使用,并拨打电话。
|
||||
|
||||
[1]: http://www.junv.info/wp-content/uploads/2010/09/7f9fbd82614149e7bc3e1ecb1.jpg
|
||||
[1]: http://www.junv.info/wp-content/uploads/2010/09/7f9fbd82614149e7bc3e1ecb1.jpg
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
title: '第三届中国成都青年(大学生)电子商务创业大赛[全国的大学生,三年内毕业青年皆可参加哦]'
|
||||
author: wahyd4
|
||||
layout: post
|
||||
comments: true
|
||||
permalink: /2010/09/a-competation/
|
||||
categories:
|
||||
- 头条推荐
|
||||
@@ -43,4 +44,4 @@ tags:
|
||||
|
||||
Fighting……
|
||||
|
||||
[1]: http://www.junv.info/wp-content/uploads/2010/09/111.jpg
|
||||
[1]: http://www.junv.info/wp-content/uploads/2010/09/111.jpg
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
title: 魅族M9最新谍照??不是以前的哦
|
||||
author: wahyd4
|
||||
layout: post
|
||||
comments: true
|
||||
permalink: /2010/09/newest-m9/
|
||||
categories:
|
||||
- 头条推荐
|
||||
@@ -25,4 +26,4 @@ tags:
|
||||
|
||||
|
||||
|
||||
[1]: http://toozhao.com/wp-content/uploads/2010/11/ceJnKbnU8GiY.jpg
|
||||
[1]: http://toozhao.com/wp-content/uploads/2010/11/ceJnKbnU8GiY.jpg
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
title: Google地图,卫星定位!
|
||||
author: wahyd4
|
||||
layout: post
|
||||
comments: true
|
||||
permalink: /2010/10/google-earth/
|
||||
categories:
|
||||
- 我们爱分享
|
||||
@@ -37,4 +38,4 @@ Google地图可以分为两类,当你使用地图选项时,查找的地点
|
||||
谷歌地图(<a href="http://baike.baidu.com/view/271894.htm" target="_blank">Google Maps</a>)是 Google 公司提供的电子地图服务,包括局部详细的卫星照片。能提供三种视图:一是矢量地图(传统地图),可提供政区和交通以及商业信息;二是不同分辨率的卫星照片(俯视图,跟 Google Earth 上的卫星照片基本一样);三是地形视图,可以用以显示地形和等高线。它的姊妹产品是<a href="http://baike.baidu.com/view/18437.htm" target="_blank">Google Earth</a>。
|
||||
|
||||
[1]: http://www.junv.info/wp-content/uploads/2010/10/tupian.jpg
|
||||
[2]: http://www.junv.info/wp-content/uploads/2010/10/n.jpg
|
||||
[2]: http://www.junv.info/wp-content/uploads/2010/10/n.jpg
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
title: 九寨沟。黄龙(美图)
|
||||
author: wahyd4
|
||||
layout: post
|
||||
comments: true
|
||||
permalink: /2010/10/jiu-zai-gou/
|
||||
categories:
|
||||
- 头条推荐
|
||||
@@ -24,4 +25,4 @@ tags:
|
||||
[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
|
||||
[7]: http://www.junv.info/wp-content/uploads/2010/10/SAM_1190_conew1.jpg
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: 游戏推荐——private
|
||||
author: wahyd4
|
||||
comments: true
|
||||
excerpt: >
|
||||
在浏览网页时,笔者偶然发现了这款名为《private》的游戏,有些直译成中文又叫“私处”但是总觉得这个名字有点不太尊重女性朋友一样。这个姑且放过不提。
|
||||
layout: post
|
||||
@@ -28,4 +29,4 @@ tags:
|
||||
|
||||
**对了 忘记说的一点是这款游戏看起来小巧可是貌似对机器配置的要求有点高,所以如果机器配置过低的童鞋可以在设置里面把游戏效果尽可能的调低点。如果还有什么问题的话 可以留言相互讨论,希望有高手能够看见解决一下!**
|
||||
|
||||
[1]: ed2k://|file|%5B%E7%A7%81%E5%A4%84%5D.privates.exe |100129178|b6ee25991d267336e4e183ec6c936b58|h =ustp4csd3ezxngtfz6t7cdghrbmu6j3j|/
|
||||
[1]: ed2k://|file|%5B%E7%A7%81%E5%A4%84%5D.privates.exe |100129178|b6ee25991d267336e4e183ec6c936b58|h =ustp4csd3ezxngtfz6t7cdghrbmu6j3j|/
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: QQ阅读——像艺术一样阅读
|
||||
author: wahyd4
|
||||
comments: true
|
||||
excerpt: >
|
||||
笔者今天偶然登录QQ邮箱,发现了QQ阅读这个东西(现在还处于beta版本)。于是我便试着开始使用这个东西。用过之后,的确我被这样一个艺术品一样的东西给镇住了,它的界面是如此漂亮,让人惊艳不已。
|
||||
layout: post
|
||||
@@ -31,4 +32,4 @@ categories:
|
||||
|
||||
[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
|
||||
[3]: http://www.junv.info/wp-content/uploads/2010/10/hahasd.jpg
|
||||
|
||||
@@ -1,12 +1,13 @@
|
||||
---
|
||||
title: 备战四级!
|
||||
author: wahyd4
|
||||
comments: true
|
||||
excerpt: |
|
||||
马上要四级考试。
|
||||
|
||||
那么四级的分数是怎安排的呢?我们又应把重点发在哪里呢?
|
||||
|
||||
四级中:听力部分35% ,249分
|
||||
马上要四级考试。
|
||||
|
||||
那么四级的分数是怎安排的呢?我们又应把重点发在哪里呢?
|
||||
|
||||
四级中:听力部分35% ,249分
|
||||
阅读理解为35% ,249分
|
||||
layout: post
|
||||
permalink: /2010/10/prepare-cet-4/
|
||||
@@ -52,4 +53,4 @@ categories:
|
||||
|
||||
可以从<http://www.hxen.com/englishlistening/cet4/>中下载。
|
||||
|
||||
翻译与完形填空、选词填空都需要平时词汇的积累,所以从现在起,要开始好好学习。
|
||||
翻译与完形填空、选词填空都需要平时词汇的积累,所以从现在起,要开始好好学习。
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: .tk顶级域名免费注册啦
|
||||
author: wahyd4
|
||||
comments: true
|
||||
excerpt: |
|
||||
笔者在浏览网页时,发现一个可以免费注册的顶级域名,而且还比较短哦。那就是.tk
|
||||
|
||||
@@ -38,4 +39,4 @@ tags:
|
||||
如果个别童鞋仍然搞不懂域名注册,请在后门留言吧,我会尽快帮你解决的。
|
||||
|
||||
[1]: http://www.junv.info/wp-content/uploads/2010/10/regdom.jpg
|
||||
[2]: http://www.junv.info/wp-content/uploads/2010/10/reg1.jpg
|
||||
[2]: http://www.junv.info/wp-content/uploads/2010/10/reg1.jpg
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: 虾米正版音乐免费下载
|
||||
author: wahyd4
|
||||
comments: true
|
||||
excerpt: >
|
||||
也许很多在网上听歌的童鞋都知道虾米这个网站吧,他是一个web
|
||||
2.0
|
||||
@@ -41,4 +42,4 @@ tags:
|
||||
|
||||
虾米地址:<http://www.xiami.com/>
|
||||
|
||||
虾歌下载地址:<http://www.xiami.com/software>
|
||||
虾歌下载地址:<http://www.xiami.com/software>
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
---
|
||||
title: 提个神。
|
||||
author: wahyd4
|
||||
comments: true
|
||||
excerpt: |
|
||||
晚餐时间。各位吃过了吗?来欣赏一下这张颇具艺术感的图片吧。
|
||||
|
||||
晚餐时间。各位吃过了吗?来欣赏一下这张颇具艺术感的图片吧。
|
||||
|
||||
出自哪位摄影师之手本人目前尚未知。只是看着这张图不由会想起余华的《兄弟》里对于那些个“屁股”的描写。
|
||||
layout: post
|
||||
permalink: /2010/10/haha/
|
||||
@@ -21,4 +22,4 @@ categories:
|
||||
|
||||
构图也非常棒。不仅重点突出,更是让观众的视线随着后背脊柱而一直向前延伸。展开的五指使人感受到人体的力量。
|
||||
|
||||
人体摄影不过艺术,你我皆非专业人士,全当娱乐欣赏罢。只是不知图中之物所属雌雄。您觉得呢?
|
||||
人体摄影不过艺术,你我皆非专业人士,全当娱乐欣赏罢。只是不知图中之物所属雌雄。您觉得呢?
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: 巨经典的网页游戏《三国杀》
|
||||
author: wahyd4
|
||||
comments: true
|
||||
excerpt: >
|
||||
作为一个忠实的三国粉丝,今天为大家推荐一款虽然有点落伍的三国游戏《三国杀》,但是它的可玩性很不错哦!可以算是网页游戏中比较有内涵,有质量的精品!
|
||||
layout: post
|
||||
@@ -28,4 +29,4 @@ categories:
|
||||
|
||||
[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
|
||||
[3]: http://www.junv.info/wp-content/uploads/2010/10/图片2.jpg
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: 为您学习网络安全知识 搭建一个简单而快捷的平台
|
||||
author: wahyd4
|
||||
comments: true
|
||||
excerpt: >
|
||||
当我们在使用电脑的时候,或多或少会遇到有关网络安全的问题,我们是否懂呢?我们或许对人难以启齿的问,可是自己也不免有不知道的时候,那就请你看看下面的内容吧。希望对你们有所帮助。
|
||||
layout: post
|
||||
@@ -47,4 +48,4 @@ tags:
|
||||
|
||||
<http://kekex.com/a/201001/041032.html>
|
||||
|
||||
[1]: http://www.junv.info/wp-content/uploads/2010/10/200914135159.jpg
|
||||
[1]: http://www.junv.info/wp-content/uploads/2010/10/200914135159.jpg
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: 几款google chrome浏览器扩展程序(app)
|
||||
author: wahyd4
|
||||
comments: true
|
||||
excerpt: >
|
||||
笔者作为一个忠实的chrome粉丝,一直坚持用chrome浏览器,除了淘宝和网银这些不得不用IE。老实说你用过了chrome
|
||||
你就一点也不想再回去用IE 8这样的蜗牛浏览器,用chrome
|
||||
@@ -50,4 +51,4 @@ tags:
|
||||
[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
|
||||
[7]: http://www.junv.info/wp-content/uploads/2010/10/1132sdasaz.jpg
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: 且说M9
|
||||
author: wahyd4
|
||||
comments: true
|
||||
excerpt: >
|
||||
M9这个名字已经出现了N久N久,从最开始说有tds-cdma 和wcdma
|
||||
两个版本,到现在M9只有WCDMA版本。一款手机让我们等了太久,太久。
|
||||
@@ -31,4 +32,4 @@ M9这个名字已经出现了N久N久,从最开始说有tds-cdma 和wcdma 两
|
||||
|
||||
附上M9最新图片一张:[<img class="aligncenter size-full wp-image-606" title="734f12f3bc2bba8c0b46e00e" src="http://www.junv.info/wp-content/uploads/2010/10/734f12f3bc2bba8c0b46e00e.jpg" alt="" width="640" height="480" />][1]
|
||||
|
||||
[1]: http://www.junv.info/wp-content/uploads/2010/10/734f12f3bc2bba8c0b46e00e.jpg
|
||||
[1]: http://www.junv.info/wp-content/uploads/2010/10/734f12f3bc2bba8c0b46e00e.jpg
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: 传说中的JAVA四大名著
|
||||
author: wahyd4
|
||||
comments: true
|
||||
layout: post
|
||||
permalink: /2010/10/java-best-four/
|
||||
categories:
|
||||
@@ -163,4 +164,4 @@ JAVA 2核心技术 卷II:高级特性(原书第7版)———Cay Horstmann
|
||||
[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
|
||||
[4]: http://www.junv.info/wp-content/uploads/2010/10/JAVA-2核心技术-卷I:基础知识(原书第7版).jpg
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: '整理并提升计算机速度,SpeedUpMyPc评测&下载'
|
||||
author: wahyd4
|
||||
comments: true
|
||||
excerpt: >
|
||||
也许每个人有时都会不经意间发现自己的电脑变得很慢,连打开本地的文件夹都感觉不是很流畅,这种感觉可能在windows
|
||||
7上比windows xp
|
||||
@@ -50,4 +51,4 @@ categories:
|
||||
[2]: http://www.junv.info/wp-content/uploads/2010/10/21.jpg
|
||||
[3]: http://www.junv.info/wp-content/uploads/2010/10/31.jpg
|
||||
[4]: http://www.junv.info/wp-content/uploads/2010/10/41.jpg
|
||||
[5]: http://u.115.com/file/f136f6643
|
||||
[5]: http://u.115.com/file/f136f6643
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: SQL入门经典(第4版)附下载
|
||||
author: wahyd4
|
||||
comments: true
|
||||
layout: post
|
||||
permalink: /2010/10/sql/
|
||||
categories:
|
||||
@@ -114,4 +115,4 @@ tags:
|
||||
**<span style="color: #ff0000;">附卓越购买链接:<a href="http://www.amazon.cn/SQL%E5%85%A5%E9%97%A8%E7%BB%8F%E5%85%B8-Ryan-Stephens/dp/B0025VJVWK">购买</a></span>**
|
||||
|
||||
[1]: http://www.junv.info/wp-content/uploads/2010/10/51pYWZH59eL._BO2204203200_PIsitb-sticker-arrow-clickTopRight35-76_AA240_SH20_OU28_.jpg
|
||||
[2]: http://u.115.com/file/f165f38b6c
|
||||
[2]: http://u.115.com/file/f165f38b6c
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: 粘粘世界(World of Goo) 汉化版 下载
|
||||
author: wahyd4
|
||||
comments: true
|
||||
excerpt: >
|
||||
这是一款很值得玩的游戏,也许可以这样说吧,我觉得并不必植物大战僵尸差。别看游戏大小只有70多M,可是却又很多关卡,而且游戏的画面美工也做得相当不错。都是2D的效果,加上那些音乐,这个游戏给人的感觉就是特别地震撼。
|
||||
layout: post
|
||||
@@ -30,4 +31,4 @@ tags:
|
||||
下载:<span style="text-decoration: underline;"><strong><a href="http://www.xiazaiba.com/html/241.html" target="_blank">点我下载</a></strong></span>
|
||||
|
||||
[1]: http://www.junv.info/wp-content/uploads/2010/10/928_1272447245_9825.jpg
|
||||
[2]: http://www.junv.info/wp-content/uploads/2010/10/928_1272447245_95561.jpg
|
||||
[2]: http://www.junv.info/wp-content/uploads/2010/10/928_1272447245_95561.jpg
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: '格式转换:音频、视频、图片->想要什么格式就有什么格式!'
|
||||
author: wahyd4
|
||||
comments: true
|
||||
excerpt: |
|
||||
软件名称:格式工厂
|
||||
|
||||
@@ -48,4 +49,4 @@ Author:Zhong Liang
|
||||
[3]: http://www.junv.info/wp-content/uploads/2010/10/3.png
|
||||
[4]: http://www.junv.info/wp-content/uploads/2010/10/4.png
|
||||
[5]: http://www.junv.info/wp-content/uploads/2010/10/5.png
|
||||
[6]: http://www.junv.info/wp-content/uploads/2010/10/61.png
|
||||
[6]: http://www.junv.info/wp-content/uploads/2010/10/61.png
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: Google Picasa 可以访问了?
|
||||
author: wahyd4
|
||||
comments: true
|
||||
excerpt: >
|
||||
本来今天作者想来试验前些天以为有人介绍的用http://picasaweb.google.com.jp来访问Picasa,可是我今天用我的chrome
|
||||
打开这个这个网址是,网址直接调到http://picasaweb.google.com/home
|
||||
@@ -42,4 +43,4 @@ tags:
|
||||
<p style="text-align: center;">
|
||||
<a href="http://www.junv.info/734.html" target="_blank">免费VPN(Tenacy)</a>
|
||||
</p>
|
||||
</blockquote>
|
||||
</blockquote>
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: 禅意花园——CSS网页经典案例
|
||||
author: wahyd4
|
||||
comments: true
|
||||
layout: post
|
||||
permalink: /2010/11/san-css/
|
||||
categories:
|
||||
@@ -38,4 +39,4 @@ CSS禅意花园是一位加拿大设计师Dava Shea创建的,他在网站设
|
||||
[2]: http://www.csszengarden.com/
|
||||
[3]: /images/2010/11/u4243068223183409904fm15gp0.gif
|
||||
[4]: /images/2010/11/7f9fbd82614149e7bc3e1ecb.jpg
|
||||
[5]: http://www.zengarden.com/
|
||||
[5]: http://www.zengarden.com/
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: 免费VPN(Tenacy)
|
||||
author: wahyd4
|
||||
comments: true
|
||||
excerpt: |
|
||||
相信大家都有这样的经历吧,你想浏览国外的一些网站。比如查一些资料啊等等。可是直接访问却访问不了。那真叫悲剧啊。
|
||||
|
||||
@@ -66,4 +67,4 @@ categories:
|
||||
|
||||
<p style="text-align: left;">
|
||||
好了,说完了,想要的同学们快试试吧。不错哦。
|
||||
</p>
|
||||
</p>
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: 《Google改变生活》好书推荐
|
||||
author: wahyd4
|
||||
comments: true
|
||||
excerpt: >
|
||||
今天在学校图书馆看书,看到新书架上到了这样一本书《google
|
||||
改变生活》。我很好奇,在谷歌离开中国内地以后还会有专门写google的非技术性的文章。
|
||||
@@ -79,4 +80,4 @@ tags:
|
||||
|
||||
这里给大家提供在线阅读的链接:
|
||||
|
||||
<a href="http://book.51cto.com/art/201004/195034.htm" target="_blank">点我阅读</a>
|
||||
<a href="http://book.51cto.com/art/201004/195034.htm" target="_blank">点我阅读</a>
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: 卡巴斯基免费啦
|
||||
author: wahyd4
|
||||
comments: true
|
||||
excerpt: >
|
||||
在此360与QQ鏖战之际,卡巴斯基给我们送来了一丝微风。卡巴斯基赠送旗下的高端安全软件,卡巴斯基安全部队2011
|
||||
一年的免费使用权。希望广大同学听到消息后火速到卡巴网站填写你的邮箱,申请激活码。
|
||||
@@ -26,4 +27,4 @@ tags:
|
||||
|
||||
[<img class="aligncenter size-full wp-image-748" title="11-4-6" src="/images/2010/11/11-4-6.jpg" alt="" width="636" height="253" />][1]
|
||||
|
||||
[1]: /images/2010/11/11-4-6.jpg
|
||||
[1]: /images/2010/11/11-4-6.jpg
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: 年度游戏大作——使命召唤7完美破解版下载
|
||||
author: wahyd4
|
||||
comments: true
|
||||
excerpt: '《使命召唤:黑色行动》(Call of Duty: Black Ops)是Activision公司出品的著名FPS游戏《使命召唤》系列的第七部,故事设定在越南战争与北极、古巴等一些冷战地区。'
|
||||
layout: post
|
||||
permalink: /2010/11/call-of-duty-7/
|
||||
@@ -66,4 +67,4 @@ System requirements:
|
||||
附3DM论坛使命召唤 7游戏发布地址:<http://bbs.3dmgame.com/showtopic-1564026-1.html> 需要注册哦。
|
||||
|
||||
[1]: /images/2010/11/20101025160542364.jpg
|
||||
[2]: /images/2010/11/11-9_conew1.jpg
|
||||
[2]: /images/2010/11/11-9_conew1.jpg
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: Java双重循环的典型应用(九九乘法表)
|
||||
author: wahyd4
|
||||
comments: true
|
||||
excerpt: >
|
||||
刚才正好在看JAVA的双重循环这一块,然后突然就想到了很经典的九九乘法表。因为我们之前C语言里面也写过这样的程序。所以我就试着写这个程序。
|
||||
layout: post
|
||||
@@ -13,40 +14,40 @@ tags:
|
||||
刚才正好在看JAVA的双重循环这一块,然后突然就想到了很经典的九九乘法表。因为我们之前C语言里面也写过这样的程序。所以我就试着写这个程序。确实在试的过程中还是发现很多问题和值得注意的地方。下面慢慢说来。
|
||||
用JAVA写的九九乘法表。
|
||||
|
||||
<pre class="brush: java; title: ; notranslate" title="">{
|
||||
public static void main(String[] args)
|
||||
{
|
||||
int a,b,s;
|
||||
for (a=1;a<=9 ;a++ )
|
||||
{
|
||||
for(b=1;b<=a;b++)
|
||||
{
|
||||
s=a*b;
|
||||
System.out.print(a+"*"+b+"="+s);
|
||||
System.out.print(" ");
|
||||
}
|
||||
System.out.println();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
<pre class="brush: java; title: ; notranslate" title="">{
|
||||
public static void main(String[] args)
|
||||
{
|
||||
int a,b,s;
|
||||
for (a=1;a<=9 ;a++ )
|
||||
{
|
||||
for(b=1;b<=a;b++)
|
||||
{
|
||||
s=a*b;
|
||||
System.out.print(a+"*"+b+"="+s);
|
||||
System.out.print(" ");
|
||||
}
|
||||
System.out.println();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
</pre>
|
||||
|
||||
<span style="color: #000000;">用C语言写的九九乘法表</span>
|
||||
|
||||
<pre class="brush: cpp; title: ; notranslate" title="">#include "stdio.h" //九九乘法表。
|
||||
void main()
|
||||
{
|
||||
int i,j,s;
|
||||
for (i=1;i<=9;i++)
|
||||
{
|
||||
for(j=1;j<=i;j++)
|
||||
{ s=i*j;
|
||||
printf ("%d*%d=%-4d",i,j,s);
|
||||
}
|
||||
printf ("n") ;
|
||||
}
|
||||
}
|
||||
<pre class="brush: cpp; title: ; notranslate" title="">#include "stdio.h" //九九乘法表。
|
||||
void main()
|
||||
{
|
||||
int i,j,s;
|
||||
for (i=1;i<=9;i++)
|
||||
{
|
||||
for(j=1;j<=i;j++)
|
||||
{ s=i*j;
|
||||
printf ("%d*%d=%-4d",i,j,s);
|
||||
}
|
||||
printf ("n") ;
|
||||
}
|
||||
}
|
||||
</pre>
|
||||
|
||||
这个是没用使用空格
|
||||
@@ -56,4 +57,4 @@ printf ("n") ;
|
||||
<span style="color: #0000ff;"><strong> <span style="color: #000000;">其实通过比较我们就可以很容易看到,这个 程序JAVA和C的代码都是差不多的。只是细节上有一些变化。有个不同就是我不不知道JAVA里面有没有类似</span></strong><span style="color: #0000ff;"><strong> printf (“%d*%d=%-4d”,i,j,s);这样的语句。即实现左对齐。</strong></span></span><span style="color: #000000;">于是我在JAVA里面想到了这样一个办法。再输出一行,让它打印空格就好。</span>
|
||||
**<span style="color: #0000ff;"> System.out.print(a+”*”+b+”=”+s);<br /> System.out.print(“ ”);</span>**
|
||||
**<span style="color: #0000ff;">当然我也试过这样一种方法。即System.out.print(a+”*”+b+”=”+s “ ”)但是通过编译发现这样是行不通的。</span>**
|
||||
**<span style="color: #0000ff;"> 还有一个就是我晓得了那个String ()agrs .它其实就是一个数组其实相当于是程序比不可少的东西,不管怎样你都要写出来,但是你还是可以选择不在程序里面使用它。</span>**
|
||||
**<span style="color: #0000ff;"> 还有一个就是我晓得了那个String ()agrs .它其实就是一个数组其实相当于是程序比不可少的东西,不管怎样你都要写出来,但是你还是可以选择不在程序里面使用它。</span>**
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: 超越itunes的音乐播放软件Zune
|
||||
author: wahyd4
|
||||
comments: true
|
||||
excerpt: >
|
||||
如果以前你以为只有苹果的itunes播放器可以很华丽的话,那现在你就错了,微软的Zune
|
||||
我觉得比苹果的itunes更加华丽,更加完美。同样他们都是依附于产品而生存的。
|
||||
@@ -62,4 +63,4 @@ categories:
|
||||
下面附上官方的下载地址(目前这个播放器只有英语版本,切大小大概100M左右。):<a href="http://www.zune.net/zh-HK/products/software/download/default.htm" target="_blank">点我下载 </a>
|
||||
</p>
|
||||
|
||||
<p style="text-align: center;">
|
||||
<p style="text-align: center;">
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: Java基础与案例开发详解免费在线阅读
|
||||
author: wahyd4
|
||||
comments: true
|
||||
excerpt: >
|
||||
话说虽然作者上学期已经学了j2se
|
||||
了,但是这个学期来了之后,还是觉得自己的java
|
||||
@@ -240,4 +241,4 @@ categories:
|
||||
|
||||
完整版本阅读地址:<a href="http://book.51cto.com/art/200909/151414.htm" target="_blank">点我</a>
|
||||
|
||||
[1]: /images/2010/11/11-11-1.jpg
|
||||
[1]: /images/2010/11/11-11-1.jpg
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: 换一种方式阅读wordpress 博客
|
||||
author: wahyd4
|
||||
comments: true
|
||||
excerpt: >
|
||||
今天给大家介绍一款很新颖的插件,这个插件是一位中国ajax
|
||||
达人写的,它可以让你的博客变成QQ 阅读
|
||||
@@ -37,4 +38,4 @@ tags:
|
||||
作者博客:<a href="http://www.qiqiboy.com" target="_blank">点我</a>
|
||||
|
||||
[1]: /images/2010/11/11-12-4_conew1.jpg
|
||||
[2]: /images/2010/11/11-12-5_conew1.gif
|
||||
[2]: /images/2010/11/11-12-5_conew1.gif
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: 《阿凡达(加长版)》720p 资源下载
|
||||
author: wahyd4
|
||||
comments: true
|
||||
excerpt: >
|
||||
加长版本的电影,比前面的版本增加了8分钟的介绍潘多拉新球景色的片段,一定可以让大家一包眼福的,这个这个720p的资源也是很大的哦,有接近8G,网速慢的同学可能会需要下载很久啦。
|
||||
layout: post
|
||||
@@ -25,4 +26,4 @@ categories:
|
||||
|
||||
电驴,迅雷下载地址:<a href="ed2k://|file|[阿凡达].Avatar.2009.EXTENDED.720p.BluRay.x264-BestHD.mkv|8521132995|b95c7f1f6406c6cfe2f9fefaa78b42da|h=csbyuxrq3dy76lqpzbuvw5dd6gojb2fu|/ " target="_blank">点我获取地址</a>
|
||||
|
||||
[1]: /images/2010/11/11-12-6_conew1.jpg
|
||||
[1]: /images/2010/11/11-12-6_conew1.jpg
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: 多谢大家支持
|
||||
author: wahyd4
|
||||
comments: true
|
||||
excerpt: ' 网站建了还是有几个月了,可以一直以来苦于没有宣传,加上其他一些原因吧,网站的浏览量一直很低,一般每天也就10几二十个人访问,'
|
||||
layout: post
|
||||
permalink: /2010/11/thanks-support/
|
||||
@@ -22,4 +23,4 @@ tags:
|
||||
[<img class="aligncenter size-full wp-image-800" title="11-12-3_conew1" src="/images/2010/11/11-12-3_conew1.gif" alt="" width="678" height="319" />][2]以后我还是继续努力,写更好的文章给大家,希望大家多多支持我,通过RSS看我文章的朋友,还是希望你们多进我的博客吧。算是支持我,谢谢了。。
|
||||
|
||||
[1]: /images/2010/11/11-12-1_conew1.gif
|
||||
[2]: /images/2010/11/11-12-3_conew1.gif
|
||||
[2]: /images/2010/11/11-12-3_conew1.gif
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: 超炫的wordpress 收藏分享插件
|
||||
author: wahyd4
|
||||
comments: true
|
||||
excerpt: >
|
||||
玩wordpress博客的朋友,都希望通过读者的分享,给大家带来更多的流量吧,今天就给大家介绍一款这样的插件,而且效果特炫哦,我的文章后面就是用的这个插件,实际效果,大家在文章末尾就可以看到啦。
|
||||
layout: post
|
||||
@@ -27,4 +28,4 @@ tags:
|
||||
作者:[明河共影][2]
|
||||
|
||||
[1]: /images/2010/11/11-12-2_conew1.jpg
|
||||
[2]: http://www.36ria.com/
|
||||
[2]: http://www.36ria.com/
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: 原创:个人博客网页模板分享下载
|
||||
author: wahyd4
|
||||
comments: true
|
||||
excerpt: >
|
||||
大概前面一周时间时间,因为某些原因我需要做这样一个个人主页形式的网页模板,我自己就摸索着做了,其实老实讲我的艺术细胞很匮乏,有时候连给网页配个颜色我都会纠结很久。
|
||||
layout: post
|
||||
@@ -23,4 +24,4 @@ tags:
|
||||
[<img class="aligncenter size-full wp-image-822" title="11-13-2_conew1" src="/images/2010/11/11-13-2_conew1.jpg" alt="" width="601" height="338" />][2]下载网页源代码:<span style="color: #ff0000;"><a href="http://v4.u.115.com/file/f16b621047" target="_blank">点我</a></span>
|
||||
|
||||
[1]: /images/2010/11/11-13-1_conew1.jpg
|
||||
[2]: /images/2010/11/11-13-2_conew1.jpg
|
||||
[2]: /images/2010/11/11-13-2_conew1.jpg
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: 数据结构作业:顺序表简单应用
|
||||
author: wahyd4
|
||||
comments: true
|
||||
excerpt: >
|
||||
今天算是比较用心的在电脑勉强做作业吧,但是毕竟不怎么喜欢写c/c++的代码,已经习惯用java了,觉得java写起来很舒服,所以做这个作业做了很久,至少3个小时吧。
|
||||
layout: post
|
||||
@@ -111,4 +112,4 @@ return 0;
|
||||
|
||||
<div id="_mcePaste">
|
||||
}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: 用HTML5演绎你自己的电影
|
||||
author: wahyd4
|
||||
comments: true
|
||||
excerpt: >
|
||||
你是否曾经是否设想过,自己只要点点鼠标,就可以拍一部自己的电影。也许这个想法在当时不太可能,可是现在在google、html
|
||||
5、chrom等的强力支持下,这个愿望就可以实现啦,
|
||||
@@ -37,4 +38,4 @@ tags:
|
||||
|
||||
[1]: /images/2010/11/11-14-4_conew1.jpg
|
||||
[2]: /images/2010/11/11-14-5_conew1.jpg
|
||||
[3]: /images/2010/11/11-14-6_conew1.jpg
|
||||
[3]: /images/2010/11/11-14-6_conew1.jpg
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: 魅族M9的最新消息10-11-14
|
||||
author: wahyd4
|
||||
comments: true
|
||||
excerpt: >
|
||||
由于笔者也是一位魅族M9的fans,因此随时都会上网关注M9的最新消息,根据最新消息,M9如果不出意外应该在12月中旬拿到入网证书,然后不出意外在12月月底可以上市。
|
||||
layout: post
|
||||
@@ -24,4 +25,4 @@ tags:
|
||||
|
||||
[1]: /images/2010/11/11-14-1_conew11.jpg
|
||||
[2]: /images/2010/11/11-14-2_conew1.jpg
|
||||
[3]: /images/2010/11/11-14-3_conew1.jpg
|
||||
[3]: /images/2010/11/11-14-3_conew1.jpg
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: 计算机操作系统教程(第三版)附下载
|
||||
author: wahyd4
|
||||
comments: true
|
||||
excerpt: >
|
||||
计算机操作系统教程应该算是计算机专业学生的专业基础课吧,但是这门课程由于自身的特点,老实说的确很枯燥,一般大学安排在大二的时候学习这个课程,恰好笔者现在也正在学习。
|
||||
layout: post
|
||||
@@ -37,4 +38,4 @@ tags:
|
||||
|
||||
<span style="color: #ff0000;">附上免费的PDF电子书下载</span>:<a href="http://u.115.com/file/f1d92164b8" target="_blank">点我下载</a>(记得多支持我们的原创作品哦)
|
||||
|
||||
[1]: /images/2010/11/11-15-2_conew1.jpg
|
||||
[1]: /images/2010/11/11-15-2_conew1.jpg
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: 动态展示网站读者信息
|
||||
author: wahyd4
|
||||
comments: true
|
||||
excerpt: >
|
||||
今天给大家介绍一个很不错,很炫的小东西。这个小东西很适合站长用,它是用flash的方式动态展示你网站的访问者的来源。动画做得很炫哦。
|
||||
layout: post
|
||||
@@ -21,4 +22,4 @@ tags:
|
||||
|
||||
获得漂亮的访问者信息:<a href="http://www.revolvermaps.com/" target="_blank">点我吧</a>
|
||||
|
||||
[1]: /images/2010/11/11-15-1_conew1.jpg
|
||||
[1]: /images/2010/11/11-15-1_conew1.jpg
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: '《极品飞车14:热力追踪》[繁中/英文]下载'
|
||||
author: wahyd4
|
||||
comments: true
|
||||
excerpt: >
|
||||
最近这段时间,很多大游戏都争相上市。给我们的玩家们带来了不少福利啊。笔者最近除了关注《使命召唤7》以外,就是关注这个游戏了。但是在笔者飞进千辛万苦下载完之后,
|
||||
layout: post
|
||||
@@ -62,4 +63,4 @@ CPU:Intel i5 2.5GHz或者AMD X4 2.5GHz
|
||||
[<img class="aligncenter size-full wp-image-856" title="11-16-2_conew1" src="/images/2010/11/11-16-2_conew1.jpg" alt="" width="500" height="375" />][2]<span style="color: #ff0000;"><strong>下载BT资源种子</strong></span>:<a href="http://u.115.com/file/f1842513be" target="_blank">点我下载</a>
|
||||
|
||||
[1]: /images/2010/11/11-16-1_conew1.jpg
|
||||
[2]: /images/2010/11/11-16-2_conew1.jpg
|
||||
[2]: /images/2010/11/11-16-2_conew1.jpg
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: 在线测试电脑的游戏性能
|
||||
author: wahyd4
|
||||
comments: true
|
||||
excerpt: >
|
||||
今天说的这个网站就是专门防止这样的情况发生的,它可以在线检测你的电脑对于某一款游戏的性能,简单说就是检测你的电脑是否符合游戏的最低要求(Minimum
|
||||
requirements)和标准要求(Recommended requirements)。
|
||||
@@ -33,4 +34,4 @@ tags:
|
||||
|
||||
[1]: /images/2010/11/11-17-1_conew1.jpg
|
||||
[2]: /images/2010/11/11-17-2_conew1.jpg
|
||||
[3]: /images/2010/11/11-17-3_conew1.jpg
|
||||
[3]: /images/2010/11/11-17-3_conew1.jpg
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: 路还很长啊
|
||||
author: wahyd4
|
||||
comments: true
|
||||
excerpt: >
|
||||
这个网站,也算是博客吧,改版后已经正式运行两个月了。这两个月不可否认进步还是不小,经过我还有前面一段时间同学的努力,这个博客的排名现在已经升到110万左右了,
|
||||
layout: post
|
||||
@@ -16,4 +17,4 @@ categories:
|
||||
|
||||
而且也有人说我的博客访问速度有点慢,我不知道访问人数是否和这个也有一些影响。但是在这里还是要特别特别感谢 http://xpn.im 给我提供的一年的免费的主机。
|
||||
|
||||
最后还是坚持每天更新文章。喜欢会有好结果吧。我还有另外一个网站现在没有用,放在那里都快发霉啦。 http://junv.org
|
||||
最后还是坚持每天更新文章。喜欢会有好结果吧。我还有另外一个网站现在没有用,放在那里都快发霉啦。 http://junv.org
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: 时光倒流二十年
|
||||
author: wahyd4
|
||||
comments: true
|
||||
excerpt: >
|
||||
十二年前,一个冰冷的冬夜,我爸开着一辆面包车带着我,我妈,我二姨在前往某地的路上发生车祸。坐在副驾驶位置的我右脸紧紧地擦着翻车后被打碎的玻璃车窗碎片和冰冷又肮脏的马路以六十码左右的速度足足滑行了不知道多少米,
|
||||
layout: post
|
||||
@@ -57,4 +58,4 @@ categories:
|
||||
|
||||
[1]: /images/2010/11/dont_let_me_go_tonight_by_multicurious-d2yuyrt2.jpg
|
||||
[2]: /images/2010/11/MichaelCreagh_KissingCouples.jpg
|
||||
[3]: /images/2010/11/MichaelCreagh_KissingCouples1.jpg
|
||||
[3]: /images/2010/11/MichaelCreagh_KissingCouples1.jpg
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: 2010年6月英语六级考试原题下载
|
||||
author: wahyd4
|
||||
comments: true
|
||||
excerpt: >
|
||||
话不多说,分享只为需要的同学们准备。希望大家努力备考,考过六级。
|
||||
layout: post
|
||||
@@ -20,4 +21,4 @@ tags:
|
||||
|
||||
2010/6 CET6英语真题:<a href="http://u.115.com/file/f17e117b91" target="_blank">点我下载</a>
|
||||
|
||||
[1]: /images/2010/11/bag_13.png
|
||||
[1]: /images/2010/11/bag_13.png
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: pictomio免费管理图片的好帮手
|
||||
author: wahyd4
|
||||
comments: true
|
||||
excerpt: ' 首先需要说一下的就是这个软件是完全免费的。这个软件也是国外的老兄写的,但是很高兴的是这个软件有中文的版本。在你安装的时候,如果你的电脑用的是中文的windows 是会自动识别的。'
|
||||
layout: post
|
||||
permalink: /2010/11/pictomio/
|
||||
@@ -35,4 +36,4 @@ tags:
|
||||
[2]: /images/2010/11/11-18-2_conew1.jpg
|
||||
[3]: /images/2010/11/11-18-3_conew1.jpg
|
||||
[4]: /images/2010/11/11-18-4_conew1.jpg
|
||||
[5]: /images/2010/11/11-18-5_conew1.jpg
|
||||
[5]: /images/2010/11/11-18-5_conew1.jpg
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: 推荐两款搜狗输入法酷炫动画皮肤
|
||||
author: wahyd4
|
||||
comments: true
|
||||
excerpt: >
|
||||
不知道各位用搜狗输入法的童鞋们注意没有,自从搜狗输入法进入5.
|
||||
0
|
||||
@@ -30,4 +31,4 @@ PS:当你无聊的时候,现在你又多了一个新的选择了。你可以
|
||||
两个皮肤打包下载:<a href="http://u.115.com/file/f1aaca488c" target="_blank">点我下载</a>
|
||||
|
||||
**
|
||||
**
|
||||
**
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: 魅族M9真机图片11-19
|
||||
author: wahyd4
|
||||
comments: true
|
||||
excerpt: >
|
||||
话说今天魅族 M9今天又露新图了。不过这次露图的不再是Jwong
|
||||
,而是另外一名匿名人士。不过从机身来看,这个应该最接近发布的机子了。
|
||||
@@ -17,4 +18,4 @@ tags:
|
||||
|
||||
可以看出M9的外观还是很华丽的。。值得大家期待哦。。
|
||||
|
||||
[1]: /images/2010/11/ceJnKbnU8GiY.jpg
|
||||
[1]: /images/2010/11/ceJnKbnU8GiY.jpg
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: 免费的css网页模板下载
|
||||
author: wahyd4
|
||||
comments: true
|
||||
excerpt: >
|
||||
今天给大家介绍一个很好的国外网站,这个网站叫http://www.freecsstemplates.org/,它提供很多免费的CSS模板供大家免费下载,到今天为止这个网站已经收录了504个免费的css
|
||||
模板,
|
||||
@@ -33,4 +34,4 @@ tags:
|
||||
[2]: /images/2010/11/11-20-3.gif
|
||||
[3]: /images/2010/11/11-20-4.gif
|
||||
[4]: /images/2010/11/11-20-5.gif
|
||||
[5]: /images/2010/11/11-20-6.gif
|
||||
[5]: /images/2010/11/11-20-6.gif
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: 一个Java JDBC连接简单实例
|
||||
author: wahyd4
|
||||
comments: true
|
||||
excerpt: >
|
||||
今天在学习java JDBC,这里写了一个简单的java 连接Mysql
|
||||
数据库的实例供大家参考。此代码代码可以运行。
|
||||
@@ -60,4 +61,4 @@ tags:
|
||||
<p>
|
||||
<span style="color: #000000;">}</span>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: 谈谈彩票
|
||||
author: wahyd4
|
||||
comments: true
|
||||
excerpt: >
|
||||
应该说像我这个人对于彩票是没有什么发言权的,因为我从高三到现在间间断断地买彩票也差不多有100左右了,可是呢,我从来没有中过奖,连2块,5块的尾奖也没有中过。
|
||||
layout: post
|
||||
@@ -16,4 +17,4 @@ categories:
|
||||
|
||||
其实我还对那些研究彩票的人充满敬意,因为彩票这么多中算法,这么从这些根本没有多少关系,即使有关系也只是概率上大一点的关系孜孜不倦的研究。要是再凭着研究出的彩票买中的人那简直就是神人啊。我佩服得五体投地。因为每次我看到那个走势图,我就觉得没多少用。也许只是自我感觉比机选好一些吧。不过我很多次买机选的彩票,确实一个数字都没有中。而且应该从中将的人书来说,大多数都是不是买的机选吧。
|
||||
|
||||
哎,我想多了。我只是需要吐槽罢了。
|
||||
哎,我想多了。我只是需要吐槽罢了。
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: 使用GAE免费建网站
|
||||
author: wahyd4
|
||||
comments: true
|
||||
excerpt: >
|
||||
GAE是google app engine
|
||||
的缩写,google提供的这个服务,允许用户免费上传10个程序,也就是说你可以建10个网站。现在GAE支持使用java
|
||||
@@ -42,4 +43,4 @@ GAE是google app engine 的缩写,google提供的这个服务,允许用户
|
||||
|
||||
[1]: /images/2010/11/c81cdb4bf1b22fa33c1730ce825cd695.png
|
||||
[2]: /images/2010/11/11-21-7_conew1.jpg
|
||||
[3]: /images/2010/11/11-21-8_conew1.gif
|
||||
[3]: /images/2010/11/11-21-8_conew1.gif
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: 很好的国内php,asp空间(免费)
|
||||
author: wahyd4
|
||||
comments: true
|
||||
excerpt: >
|
||||
我这里之所以要将免费用括号框起来,是因为本身提供这个免费空间的主机商不是专门提供免费的,而是一家商业公司,而且免费空间也只是他们的很小一部分,更多的还是商业虚拟主机。
|
||||
layout: post
|
||||
@@ -41,4 +42,4 @@ tags:
|
||||
[1]: /images/2010/11/11-21-5_conew1.jpg
|
||||
[2]: /images/2010/11/11-21-1_conew1.jpg
|
||||
[3]: /images/2010/11/11-21-2_conew1.jpg
|
||||
[4]: /images/2010/11/11-21-3_conew1.jpg
|
||||
[4]: /images/2010/11/11-21-3_conew1.jpg
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: GAE免费博客micolog
|
||||
author: wahyd4
|
||||
comments: true
|
||||
excerpt: ' 如果你一直想拥有一个免费的类似wordpress博客而烦恼,如果你还希望你的免费博客有很大空间,又很快的速度。那我觉得现在在我们面前有这样一个很好的选择——使用GAE,'
|
||||
layout: post
|
||||
permalink: /2010/11/micolog/
|
||||
@@ -40,4 +41,4 @@ micolog有以下一些特性:
|
||||
安装教程:<http://micolog.appspot.com/%E5%AE%89%E8%A3%85>
|
||||
|
||||
[1]: /images/2010/11/11-22-1_conew1.jpg
|
||||
[2]: http://micolog.appspot.com/
|
||||
[2]: http://micolog.appspot.com/
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: CSS精粹3免费下载
|
||||
author: wahyd4
|
||||
comments: true
|
||||
excerpt: >
|
||||
这本书的英文原名叫CSS
|
||||
anthology,翻译成中文叫CSS精粹,目前这本书已经出到了第三版了。但是中文翻译的只有第二版,第二版是08年出版的,里面几乎没有提及CSS
|
||||
@@ -46,4 +47,4 @@ CSS定位和布局(这一章包含了很多非常好的网页实例,而且
|
||||
|
||||
免费下载:<a href="http://u.115.com/file/f1490c9ce9" target="_blank">点我下载</a>
|
||||
|
||||
[1]: /images/2010/11/1255116593056.jpg
|
||||
[1]: /images/2010/11/1255116593056.jpg
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: 疯狂老爸箴言录Shit My Dad Says
|
||||
author: wahyd4
|
||||
comments: true
|
||||
excerpt: >
|
||||
今天给大家推荐一部美剧疯狂老爸箴言录Shit My Dad
|
||||
Says,这部美剧是根据一位在twitter上的老者说的话改编的,他说的话总是语出惊人。
|
||||
@@ -27,4 +28,4 @@ tags:
|
||||
|
||||
<span style="color: #ff0000;"><strong>附下载链接:<a href="http://yyets.net/showresource-juji-652.html" target="_blank">点我进入</a></strong></span>
|
||||
|
||||
[1]: /images/2010/11/11-24-1_conew1.jpg
|
||||
[1]: /images/2010/11/11-24-1_conew1.jpg
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: 求20个数里面最大的数
|
||||
author: wahyd4
|
||||
comments: true
|
||||
excerpt: >
|
||||
如题这个应该算是一个超级简单的题吧!以前大一上学期的时候老师就讲过了!
|
||||
layout: post
|
||||
@@ -37,4 +38,4 @@ categories:
|
||||
**temp=a[i+1];**
|
||||
|
||||
**
|
||||
}**
|
||||
}**
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: 口语课上即兴编写的关于疾病与建议的对话
|
||||
author: wahyd4
|
||||
comments: true
|
||||
excerpt: |
|
||||
下面就是当时在课上临场发挥写的一个对话!其实我觉得写得很简单哈。
|
||||
|
||||
@@ -28,4 +29,4 @@ A: I think you should eat more fruit and vegetables,and try to do some exercise.
|
||||
|
||||
B: Thanks for your advice , I’ll try it.
|
||||
|
||||
A;You are welcome.
|
||||
A;You are welcome.
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: SSD1教材下载
|
||||
author: wahyd4
|
||||
comments: true
|
||||
excerpt: >
|
||||
SSD1 的全称叫Introduction to Information
|
||||
Systems,翻译成中文叫信息系统导论,是美国卡内基梅隆大学的计算机系列教材的第一个。
|
||||
@@ -15,4 +16,4 @@ SSD1 的全称叫Introduction to Information Systems,翻译成中文叫信息
|
||||
|
||||
我前面看到网上很多同学都在找这本书的电子文档,于是今天在这里提供下载版本给大家吧.
|
||||
|
||||
下载地址: <a href="http://u.115.com/file/f1993201d2" target="_blank">点我下载</a>
|
||||
下载地址: <a href="http://u.115.com/file/f1993201d2" target="_blank">点我下载</a>
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: SSD1所有作业答案下载
|
||||
author: wahyd4
|
||||
comments: true
|
||||
excerpt: >
|
||||
这份参考答案包括了Multiple-Choice Quiz,Practical
|
||||
Quiz,Exercise以及EXAM
|
||||
@@ -24,4 +25,4 @@ tags:
|
||||
|
||||
下载地址:<a href="http://u.115.com/file/f11c72889a" target="_blank">点我下载</a>
|
||||
|
||||
[1]: /images/2010/11/11-25-1_conew1.jpg
|
||||
[1]: /images/2010/11/11-25-1_conew1.jpg
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: SSD3教材下载
|
||||
author: wahyd4
|
||||
comments: true
|
||||
excerpt: >
|
||||
SSD系列教程是美国卡内基梅隆大学的计算机专业学生的系列教程,一共是从SSD1到SSD9。此教程一般在国内比较有名的大学有使用,据我所知,我们附近有四川大学,电子科技大学,西北工业大学在使用此系列教程。
|
||||
layout: post
|
||||
@@ -14,4 +15,4 @@ SSD系列教程是美国卡内基梅隆大学的计算机专业学生的系列
|
||||
|
||||
今天在这里提供SSD3的教材共大家下载,电子文档版本的CHM
|
||||
|
||||
下载地址:<a href="http://u.115.com/file/f111d6159c" target="_blank">点我下载</a>
|
||||
下载地址:<a href="http://u.115.com/file/f111d6159c" target="_blank">点我下载</a>
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
---
|
||||
title: 感恩节话感恩
|
||||
author: wahyd4
|
||||
comments: true
|
||||
excerpt: >
|
||||
今天是美国的感恩节,其实作为彻头彻尾的中国人,其实感恩节和我算是没有多少关系吧,但是呢也许我们还是应该用一种很开放的态度来对待一些事,
|
||||
layout: post
|
||||
@@ -12,4 +13,4 @@ categories:
|
||||
|
||||
其实我本不知道11月第四个星期四是感恩节,但是通过最近的手机QQ上的图片和昨天晚上和西西说,于是我也便知道了。当然需要感谢很多人,无论是是给予我棒子还是痛苦的人,都得感谢他们,是他们让我成长,让我变得strong,还有瓜西西,当然最最值得感谢还是父母吧,他们这么辛苦养育我20年了。谢谢你们。
|
||||
|
||||
当然我也忘不了支持我网站的朋友们,是你们给网站带来了人气,是你们坚定了我继续走下去的信念,谢谢你们,我会一直努力下去的,也请你们继续支持我们的网站。我会带给你们更多更好的内容。
|
||||
当然我也忘不了支持我网站的朋友们,是你们给网站带来了人气,是你们坚定了我继续走下去的信念,谢谢你们,我会一直努力下去的,也请你们继续支持我们的网站。我会带给你们更多更好的内容。
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user