Map | Action |
---|---|
<F1> | Causes Netrw to issue help |
<cr> | Netrw will enter the directory or read the file |
<del> | Netrw will attempt to remove the file/directory |
- | Makes Netrw go up one directory |
a | Toggles between normal display, hiding (suppress display of files matching g:netrw_list_hide) showing (display only files which match g:netrw_list_hide) |
c | Make browsing directory the current directory |
C | Setting the editing window |
d | Make a directory |
View netrw quick reference.md
View wechat-article-horizontal-slide
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<section style="margin:0 auto;padding:0;border-style:none;"> | |
<p style="white-space:nowrap; overflow-x:scroll;"> | |
<img style="width: 300px !important; margin-right: 5px; visibility: visible !important; height: auto !important;" data-ratio="0.6533333333333333" data-w="300" width="300px" src="https://mmbiz.qlogo.cn/mmbiz/t96EiaazTTSicqr1DQGsPNoL3cbmK3oIe4lM4s4KHbAObYE6bQrdL15uk3TT01XecRUfSO4TS6oEzyfYa0TRzH2Q/0?wx_fmt=png"/> | |
<img style="width: 300px !important; margin-right: 5px; visibility: visible !important; height: auto !important;" data-ratio="0.6533333333333333" data-w="300" width="300px" src="https://mmbiz.qlogo.cn/mmbiz/t96EiaazTTSicqr1DQGsPNoL3cbmK3oIe4wOFiaG6emYZFhqlXvBCRia7GSPaTChjdWTAPdh1JykzxtlvZ14vmuVYg/0?wx_fmt=png"/> | |
<img style="width: 300px !important; margin-right: 5px; visibility: visible !important; height: auto !important;" data-ratio="0.6533333333333333" data-w="300" width="300px" src="https://mmbiz.qlogo.cn/mmbiz/t96EiaazTTSicqr1DQGsPNoL3cbmK3oIe4IOkBVV33nkJwPqmGOkOicFEl0l |
View bbideolabs.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# The following code and the code generated art works are the intellectrual properities of Hailei Wang. | |
# © 2010 - 2014, Hailei Wang. All rights reserved. | |
colors = ximport( "colors" ) | |
font( "Courier", 200 ) | |
align( CENTER ) | |
text_path_line_1 = textpath( "IDEO", 0, 200, width = WIDTH) | |
text_path_line_2 = textpath( "LABS", 0, 350, width = WIDTH) |
View csallseeingeye.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# The following code and the code generated art works are the intellectrual properities of Hailei Wang. | |
# © 2009 - 2014, Hailei Wang. All rights reserved. | |
from nodebox import geo | |
colors = ximport("colors") | |
# Define Brush | |
def composeimage( x, y, colr, radius, points, diminish ) : | |
nofill() | |
stroke() |
View cstsunami.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# The following code and the code generated art works are the intellectrual properities of Hailei Wang. | |
# © 2010 - 2014, Hailei Wang. All rights reserved. | |
cornu = ximport("cornu") | |
colors = ximport("colors") | |
# Painting waves | |
palette_for_wave = [ colors.hex( “#020034”, “dark blue” ), colors.hex( “#0A5CD6”, “aqua blue” ), colors.hex( “#FEFFFF”, “milk white” ) ] | |
# Draw Wave |
View List fonts on iOS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// List the fonts name on the workstation to find out the real customized name. | |
for ( NSString * fontFamily in [ UIFont familyNames ] ) { | |
NSLog( @"%@", fontFamily ); | |
for ( NSString * fontName in [UIFont fontNamesForFamilyName: fontFamily ] ) { | |
NSLog( @" %@", fontName ); | |
} | |
} | |
View Implement goog.style.setInlineBlock manually
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
goog.provide('app'); | |
goog.require('goog.dom'); | |
goog.require('goog.style'); | |
goog.require('goog.array'); | |
app.plateSections = function() { | |
var plateWidth = 0; | |
// Add the first section's width. |
View Generate a SSH
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ssh-keygen -t rsa -C "your_email@youremail.com" | |
# Creates a new ssh key using the provided email | |
pbcopy < ~/.ssh/id_rsa.pub |
View .vimrc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Whale | |
" Having Vim in nocompatible mode, opens a lot of features | |
:set nocompatible | |
" Encoding | |
set fileencodings=utf-8 | |
" Use Unix as the standard file type | |
:set ffs=unix,mac |
NewerOlder