aboutsummaryrefslogtreecommitdiff
path: root/source (unfollow)
Commit message (Collapse)AuthorFilesLines
2016-04-10source/css/theme.css: Restore max-width: 100% to imgZhiming Wang1-0/+1
Well, width restriction is still necessary...
2016-04-10theme.css: Remove max-width and max-height restrictions on imgZhiming Wang1-2/+0
Sometimes I have long images, e.g., in http://zmwangx.github.io/blog/2016-04-10-emacss-got-a-redesigned-website.html, and the image would be vertically compressed in Safari. I could switch from width to max-width, but why restrict to screen height?
2016-04-1020160410 Emacs's got a redesigned website!Zhiming Wang3-0/+24
2016-03-20normalize.css: Update to v4.0.0Zhiming Wang1-162/+162
https://github.com/necolas/normalize.css/releases/tag/4.0.0
2016-03-18template.html: Fix weird hanging spaceZhiming Wang1-4/+1
Fixes #13.
2016-03-10Update old post about +1 comments on GitHubZhiming Wang1-0/+4
2016-03-09HEAD: Add complaint about hiding/showing extension buttons in ChromeZhiming Wang1-0/+4
2016-03-0620160306 Google Chrome keeps getting uglierZhiming Wang9-0/+56
2016-02-14Improve use of language in an old postZhiming Wang1-1/+1
Shellshock was a vulnerability, but I'm not sure if it was exploited (for malicious purposes) in the wild before fixes were released.
2016-02-14Fix a typo in an old postZhiming Wang1-1/+1
2016-02-14Add site ownership verification file for Google Search ConsoleZhiming Wang1-0/+1
I used to have Google Analytics installed which proved my ownership, but since I removed it in 01b3805, I need to prove it in another way, and adding a file that no visitor will notice is the least intrusive.
2016-02-06source/index.md: Promote ZshZhiming Wang1-1/+1
2016-02-01source/css/theme-ultranarrow.css: Adjust index horizontal spacingZhiming Wang1-0/+8
Horizontal space is valuable on mobile. Reduce formatting whitespace.
2016-01-30theme.css: Solve image link over-wide issueZhiming Wang1-1/+9
display: block spans the entire width of the parent container. Switching to display: inline solves the problem. Fixes #11.
2016-01-2620160126 Dropbox, Noteworthy, and damned skeuomorphismZhiming Wang3-0/+15
2016-01-24HEAD: Improve wording here and thereZhiming Wang1-5/+5
2016-01-2420160124 Antivirus app on MAS top chart?Zhiming Wang3-0/+53
2016-01-20HEAD: Mention dear-github/dear-github was started 6 days agoZhiming Wang1-1/+1
Nice coincidence.
2016-01-20HEAD: Mention dear-githuub/dear-githubZhiming Wang1-0/+4
2016-01-1820160118 Me-too comments on GitHubZhiming Wang1-0/+13
2016-01-1420150114 The dirtiest mistakes of OS XZhiming Wang1-0/+30
2016-01-13source/css/theme.css: Fix printing stylesheetZhiming Wang1-1/+5
Adjust to the right font size. Most of the heavylifting is avoided by the last commit which made all printing font sizes relative (to the base body font size). Also add "-webkit-print-color-adjust: exact" to the pre tag to hint WebKit based browsers to keep my code block background color. Nothing can be done in Firefox; users need to manually check the "Print Background Colors" advanced printing option. IE/Edge? Who knows, who cares.
2016-01-13source/css/theme.css: Use relative sizes throughoutZhiming Wang1-17/+4
Sizes relative to the base body size are easier to update -- only need to update the base size.
2016-01-13Remove old web fonts from treeZhiming Wang35-15359/+0
It's been a few days since the site refresh, and I haven't spotted any problems. It's time to move on. Closes #9.
2016-01-09theme.css: Tweak logo text positioningZhiming Wang1-2/+1
2016-01-08Add stuff to source/ and exclude themZhiming Wang16-0/+721
The lonely templates/template.html finally finds it home in the cozy source/, where it rightfully belongs, without the need to worry about being exposed to the world in build/ ;) The full fontello distribution I downloaded (and unpacked) from fontello.com is now in source/fonts/fontello.
2016-01-08Tweak ol and ul left padding...Zhiming Wang1-0/+8
to left align numbers or bullets with standard paragraphs.
2016-01-08Site design refresh part III: nav, i.e. logoZhiming Wang2-24/+14
Surprisingly, a tweaked Arial isn't so bad. Saying goodbye to Open Sans, which was tweaked to minic Helvetica Neue in the first place.
2016-01-08Slightly increase h1 font sizeZhiming Wang1-2/+2
Regular text 150% => 160%, code 22px => 23px.
2016-01-08Slightly tweak icon placementZhiming Wang1-0/+2
2016-01-08Site design refresh part II: icon fontZhiming Wang6-73/+40
Use slimmed icon font packaged by http://fontello.com/. I only need two glyphs: RSS and CC. I ended up picking the glyphs from the Entypo v2.0 family (https://github.com/danielbruce/entypo), licensed under SIL. I actually like the Font Awesome glyphs slightly better, but fontello currently only supports FA v4.3.0, which doesn't include the circular CC glyph I need. Old web fonts are kept for now. They will be removed after a while. See \#9. Open Sans is still in place and will be addressed later when the logo is attacked. The entire fontello package I downloaded, including the license, will be added to this repo as source/fonts/fontello/ later when I have implemented an exclude list in pyblog to prevent the directory from being copied to the deployment tree.
2016-01-08Fix slight styling issues in md source files...Zhiming Wang2-2/+4
discovered when doing site refresh.
2016-01-08Site design refresh part IZhiming Wang2-43/+70
Highlights: * Change font to Times/Times New Roman + Courier; * Text slightly darkened across the board to account for the thinner Times; * Eliminate line numbers; * Use custom highlight.css (based on highlight-css supplied by Pandoc, but hightlight more classes when Pandoc falls short, e.g., span.im for Python from and import). Closes #5 because we don't have line numbers anymore.
2016-01-08Markdown source files: Revert YAML closing line from ... to ---Zhiming Wang98-98/+98
GFM doesn't support closing with ..., and the rendered results are less than satisfactory.
2016-01-08Markdown source files: Use ... to end YAML metadata blockZhiming Wang98-98/+199
Also add a newline after the metadata block. ... is easier on markdown-mode; if --- is used, the line immediately above it will be treated as a setext header and highlighted, which isn't so easy on the eyes.
2016-01-02source/img: Optimize PNG images with zopflipngZhiming Wang33-0/+0
After reading https://blog.codinghorror.com/zopfli-optimization-literally-free-bandwidth/.
2016-01-01HEAD: Fix formatting of Python codeZhiming Wang1-0/+3
2016-01-0120160101 Virtualenvs for everyoneZhiming Wang1-0/+68
2015-12-31HEAD: Specify image size using the newly implemented Markdown extensionZhiming Wang1-4/+1
instead of hardcoding HTML.
2015-12-29HEAD: Add a missing periodZhiming Wang1-1/+1
2015-12-2920151229 Catches when installing Windows 7 with Boot CampZhiming Wang2-0/+29
2015-12-28Spoiled by Retina follow-upZhiming Wang1-0/+4
2015-12-28HEAD~2: Typo fixZhiming Wang1-1/+1
2015-12-2820151228 Why I want lossless music on iTunes Music StoreZhiming Wang1-0/+18
2015-12-2720151227: Lesson on magic method access of Python new-style classes...Zhiming Wang1-0/+102
(from my failed Python3 port of Tomorrow)
2015-12-26theme.css and template.html: Solve overflow problem in code and a tagsZhiming Wang1-0/+5
Over-long inline <code> tag or long literal link in <a> tag used to overflow the container. This is especially bad on phones where width is very limited. This commit hopefully solves the overflow problem. Still no smarter word breaking, but it's probably just an unfortunate limitation of HTML.
2015-12-2620151226 autoenv with auto cleanupZhiming Wang1-0/+32
2015-12-2020151220 Regex flavor hellZhiming Wang1-0/+16
2015-12-17Latest post: Follow up on 10pt Monaco on RetinaZhiming Wang1-0/+4
2015-12-1620151216 Spoiled by Retina, in less than a dayZhiming Wang1-0/+18