- 博客(37)
- 收藏
- 关注
原创 L1 - 10 Common Mistakes with Verbs & Prepositions in English
I called to my friend. ×I called my friend.We’re waiting his email. ×We’re waiting for his email.They reached to an agreement. ×They reached an agreement.She’s listening the music. ×She’s listening to the music.Did you contact to the manager? ×Did
2021-02-07 16:20:15 171
原创 L1 - Learn 8 Phrasal Verbs for opening: pop open, peel off, flip up…
How to Open Thingstwist off the capflip up the lidpeel off the topbust into a pack of sugarcrack open a beer / a poptake off the lid / cappop open the containerpump out some soap
2021-02-05 22:13:23 301
原创 L1 - English Pronunciation Practice: OO & U
长元音:uː短元音:u发音时嘴型的不同元音对应的字母组合① oo - uːboot,pool,cool,tool,fool② oo - ubook,look,cook,took③ u - uːLuke④ u - upull,full⑤ ou - ushould,would,could
2021-02-05 17:06:18 171
原创 L1 - Millionaire English: 10 idioms about money!
to have money to burnto have deep pocketsto be born with a silver spoon in your mouthto be loadedto make a bundleto strike goldto hit the jackpotto look like a million bucksto feel like a million bucksto be worth a million bucks
2021-02-04 22:10:03 209
原创 L1 - Learn English Phrasal Verbs: BBQ! “light up”, “put out”, “flip over”, “scrape down”…
BarbecueBBQBarbequeBar-b-qFire up the grill !Gas or charcoal?Gas: Turn the gas on. | Turn on the gas.Charcoal:light it up!put out the fire. | put the fire out.Prep.marinate the meat.cut up the veggies(vegetables).>>Filp the burgers over
2021-02-04 16:32:27 140
原创 L1 - Learn English: SAY or TELL?
say something (to someone)tell someone somethingExampleMaria said she was leaving.Maria told me she was leaving.Prof.Brown said the test was cancelled.Prof.Brown told us the test was cancelled.The manager said to arrive at 8:00.The manager told the
2021-02-04 15:40:59 112
原创 L1 - PHRASAL VERBS to talk about what you do every morning
Morning RoutineMy alarm goes off (went off) at 7am.I wake up.I get up at 7:30.I take of my pajamas.I put on (wear) my clothes.I put in my contacts.I put on my makeup / glasses / jewelry.I turn on (start) the coffee maker.I sign up for notification
2021-02-04 11:43:02 133
原创 L1 - The BEST classic books for kids and teenagers (ages 7–16)
7-8Winnie the Pooh collection8-9Charlie and the Chocolate Factory9-10Charlotte’s WebHarry Potter101 Dalmatians10-11The Railway ChildrenThe HobbitThe Lion, the Witch and the Wardrobe11-12Watership DownPeter PanThe Diary Of a Young GirlWar Ho
2021-02-03 22:07:20 138
原创 L1 - Comparative & Superlative Adjectives in English: Complete Guide
A is tall.B is taller than A.C is the tallest.This shop is expensive.That shop is more expensive.This is the most expensive shop.You have a good job.You have a better job.She has the best job.1 syllableBasicComparativeSuperlativecoldc
2021-02-03 20:42:04 163
原创 L1 - Learning English for Beginners: My top tips
① learning common words first50 top verbs: ask,be,become,begin,call,can,come,could,do,feel,find,get,give,go,have,hear,help,keep,know,leave,let,like,live,look,make,may,mean,might,move,need,play,put,run,say,see,seem,should,show,start,tak,talk,tell,think,try
2021-02-03 19:05:16 266
原创 Eclipse指南
快捷键快捷键功能Alt+/补全代码Ctrl+Shift+o自动导包Ctrl+/单行注释、取消注释Ctrl+Shift+/多行注释、取消注释Shift+Enter行内中向下插入行Ctrl+Shift+Enter行内中向上插入行Ctrl+点击代码查看源码Ctrl+Shift+t查找源码Alt+Left回退到前一个编辑的页面Alt+Right回退到后一个编辑的页面Ctrl+t光标选中指定的类,查看继承树结构
2020-08-14 19:27:25 138
原创 Manjaro安装输入法
1、安装拼音sudo pacman -S fcitx-im fcitx-configtool fcitx-googlepinyin2、配置文件向~/.xprofile添加以下内容export GTK_IM_MODULE=fcitxexport QT_IM_MODULE=fcitxexport XMODIFIERS="@im=fcitx"3、重启电脑
2020-08-02 17:30:14 3795 1
原创 Kdevelop配置C/C++开发环境
一、安装MinGW和Cmakehttp://www.mingw.org/https://cmake.org/二、配置环境变量添加MinGW和Cmake的安装目录到PATH环境变量下C:\Program Files\CMake\binC:\MinGW\bin测试环境变量是否添加成功,在cmd环境下输入cmake --helpgcc --help三、配置Kdevelop菜单:配置 -> 配置Kdevelop -> Cmake -> 添加Cmke的执行文件四、创建工程
2020-06-25 17:05:18 1050
原创 C - 输出字符串中的每个中文字符
#include <string.h>#include <stdio.h>#include <stdlib.h>int main(){ //wchar_t str[]=L"这个是一个测试"; //char *p=(char *)str; int i; const char* str = "这是一个测试"; for (i = 0; i < strlen(str); i += 2) { prin
2020-06-25 14:05:57 1295
原创 vs code 关闭智能代码提示
“editor.quickSuggestions”: false,“editor.parameterHints”: false,“editor.wordBasedSuggestions”: false,“editor.snippetSuggestions”: “none”
2019-11-17 18:46:49 5254
原创 nslookup
nslookup是一款解析域名的工具命令行/* 使用本机默认DNS */nslookup www.baidu.comwww.baidu.com canonical name = www.a.shifen.com.Name: www.a.shifen.comAddress: 180.101.49.12Name: www.a.shifen.comAddress: 180....
2019-08-24 21:42:49 660
原创 Myeclipse 导入 jQuery报错
解决方法:1、选择jQuery文件。2、右键选择 MyEclipse-->Exclude From Validation 。3、再右键选择 MyEclipse-->Run Validation 即可。
2015-05-02 15:11:28 460
原创 Jsp乱码
Jsp中参数乱码的解决方式:一、请求方式分get和post1、get的转码String name=request.getParameter("name");String output=new String(name.getBytes("ISO-8859-1"),"UTF-8");2、post的转码request.setCharacterEncoding("utf
2015-04-29 16:32:14 369
原创 Myeclipse设置编码
Window->Preferences->General->Workspace- Text File encoding 设置UTF-8为默认编码,解决项目中编码不统一而造成的乱码现象
2015-04-29 13:19:44 419
原创 utf8、utf-8、UTF8、UTF-8那个是正确的?
The official registry of encodings defines the names as case-insensitive and the spelling as UTF-8 (UTF8 isn’t even a valid alias). It is highly unlikely that any software that can deal with UTF-8 w
2015-04-13 22:12:17 386
原创 Myeclipse中外部资源引用
1、需要将外部资源放入到WebRoot目录下,否则部署项目时外部资源不会被导入到Tomcat中2、引用路径方式一 : ./WebContent/css/bootstrap.min.css方式二(推荐) :/WebContent/css/bootstrap.min.css
2015-02-27 14:18:55 492
原创 web.xml中 servlet 和servlet-mapping的排放顺序
正确顺序如下servlet servlet servlet-mappingservlet-mapping错误顺序servlet servlet-mappingservlet servlet-mapping
2015-02-18 15:47:58 723
原创 java 系统默认字符集
import java.nio.charset.Charset; public class chapter3014 { public static void main(String args[]) { String defaultCharsetName=Charset.defaultCharset().displayName();
2015-02-06 14:10:05 776
原创 Intellij IDEA 不支持 菱形(diamond) 运算符
Error:(22, 48) java: -source 1.6 中不支持 diamond 运算符 (请使用 -source 7 或更高版本以启用 diamond 运算符)解决方式:File - Project Structure - Project - 选择 Project language level 中所对应的java版本
2015-01-25 14:23:53 8657 1
原创 IntelliJ IDEA :Error:(1, 1) java: 非法字符: '\ufeff'
将file encodings由utf-8改成utf-16,再将utf-16改成utf-8就好了
2015-01-25 14:19:17 27417 13
原创 java 错误: 编码GBK的不可映射字符等类似问题
运行是使用 javac -encoding UTF-8 XXXXX.java注: -encoding 命令来设置编码
2015-01-25 14:07:43 839
原创 java编译警告:使用了未经检查或不安全的操
注: XXXX.java使用了未经检查或不安全的操注: 有关详细信息, 请使用 -Xlint:unchecked 重新编译。原因是集合是没有定义泛型
2015-01-25 14:01:24 5161
原创 获取系统所支持字体信息
java.awt\_ // 得到系统所支持所有字体 Font[] ff = GraphicsEnvironment.getLocalGraphicsEnvironment().getAllFonts(); for(Font name:ff) { System.out.println(name.getName()); }
2015-01-18 17:27:06 664
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人