用来辅助记忆单词的小助手.
当我在准备 GRE 单词的时候, 面对那么多单词, 长相都差不多, 但是读音却不同, 我很想有一个简单方便的软件能够播放输入单词的读音. 并且我还希望, 当我键入一个单词之后, 可以在某些网站上搜索这个单词, 显示其上下文, 便于我理解记忆这个单词的意义.
所以 VocVoc 的基本功能便是播放单词的读音.
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
" 一般设定 | |
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" | |
" 设定主题 | |
colo evening | |
" 设定默认解码 | |
set fenc=utf-8 | |
set fencs=utf-8,usc-bom,euc-jp,gb18030,gbk,gb2312,cp936 |
def groupStaff(self, Id, grpNum) : | |
self.log("\t\t{}号员工分组(第{}组)操作:"\ | |
.format(Id, grpNum)) | |
# 1. 初始化局部变量 | |
unGrpIDs = self.__unGrpIDs | |
groups = self.__groups | |
staff = self.__staffs[Id] | |
# 2. 检查员工是否处于 IDLE 状态 |
# This file has been auto-generated by i3-config-wizard(1). | |
# It will not be overwritten, so edit it as you like. | |
# | |
# Should you change your keyboard layout somewhen, delete | |
# this file and re-run i3-config-wizard(1). | |
# | |
# i3 config file (v4) | |
# | |
# Please see http://i3wm.org/docs/userguide.html for a complete reference! |
general { | |
colors = true | |
interval = 5 | |
} | |
#order += "ipv6" | |
order += "load" | |
order += "ethernet eth0" |
#!/usr/bin/env python3 | |
# Read lines. | |
def readLines(filePath, howManyLines=500) : | |
lines = list() | |
with open(filePath) as theFile : | |
number = 0 | |
while True : | |
for i in range(0, howManyLines) : | |
line = theFile.readline() |
#!/bin/sh | |
# Warning! | |
# if you DIY a stage package like this, | |
# you must use the Stage3`s /etc/udev/* | |
# or rm /etc/udev/rules.d/70* | |
# Warning! | |
# last edited by likuku on 2012.03.29 | |
DATE=`date +%Y_%m_%d_%H_%M_%S` | |
ARCH=`uname -m` |
// Try this in 32bit and 64bit iOS Simulator. | |
// In 32bit one, both tests pass. | |
// In 64bit one, - (void)testStubWorksForYES fails. | |
// Test support | |
#import <XCTest/XCTest.h> | |
#define MOCKITO_SHORTHAND | |
#import <OCMockito/OCMockito.h> |