- 博客(19)
- 收藏
- 关注
转载 PHP yield的简单用法
<?phpfunction createRangeNoYield($max) { $data = []; for($i = 0; $i < $max; $i++) { $data[] = $i; } return $da...
2019-04-12 16:36:00 629
转载 Mac下tkinter的Button生成的按钮文字不显示的解决方法
开发环境: 设备:MacBook Air版本:Python 3.7 创建按钮代码: import tkinter.messageboxtop = tkinter.Tk()def helloCallback(): tkinter.messagebox....
2019-04-05 21:29:00 3092
转载 IDEA 打开安卓项目Gradle报Java home is different
在IDEA新建一个安卓项目用Gradle初始化时报 The newly created daemon process has a different context than expected. It won't be possible to reconnect to this daemon...
2019-04-05 00:44:00 1170
转载 HomeBrew切换国内源
HomeBrew默认的源在国内运行实在太慢,忍耐度有限,于是搜了一下怎么切换到国内源,之前对清华大学和中科大的体验比较好。 我是Bash用户,于是按以下方法切换。 1. vim ~/.bash_profile2. 找个合适的地方粘贴HOMEBREW_BOTTLE_DOMAIN=http...
2019-04-01 15:17:00 1456
转载 Python3和pip3的安装记录
设备:MacBook Air 1. 安装Python3 brew install python3 安装后python3在/usr/local/opt/python/,进入该目录的bin目录,手动复制或软链python执行文件到/usr/local/bin/下,并且命名为python3 ...
2019-03-27 15:22:00 274
转载 Java泛型中E、T、K、V等的含义
Java泛型中的标记符含义: E- Element (在集合中使用,因为集合中存放的是元素) T- Type(Java 类) K- Key(键) V- Value(值) N- Number(数值类型) ?- 表示不确定的java类型 S、U、V- ...
2018-04-13 16:34:00 132
转载 JavaWeb手动编译时出现xxx软件包不存在的错误
或者将jar包放在%JAVA_HOME%\jre\lib\ext目录下。 这样就不会出现找不到包的错误了。 原文:http://kaidingvip.blog.163.com/blog/static/21121619120135844659460/ ...
2018-03-19 20:34:00 421
转载 Java中==与equals的区别
public class Compare { public static void main(String[] args) { String c1 = new String("abc"); String c2 = new String("abc"); String c3 = c...
2018-02-09 22:06:00 93
转载 jQuery一行代码搞定全选和取消全选
主要代码: $('.selectAllBtn').click(function(){ $('.selectAll').attr('checked',$(this).is(':checked'));}); 示例: <!DOCTYPE html><ht...
2017-09-14 13:29:00 151
转载 关于git忽略(局部忽略、全局忽略)文件和文件夹的设置方法
(1).gitignore介绍 在工程实现过程中,会生成一些中间文件,或者在项目中的部分文件是不需要进行版本管理的。对于这些文件应该对于Github来讲是透明的。Github提供这种功能,可以自己指定哪些文件可以不被管理。具体方法是在版本管理的根目录下(与.Git文件夹同级)创建一个 .gi...
2017-03-29 13:24:00 16395
转载 PHP的autload和spl_autoload_register
随便写写。 class: class user { public function getName() { return '无糖咖啡'; }} __autoload: function __autoload($className) { $fil...
2016-12-23 16:38:00 146
转载 OS X的软件包管理器Homebrew的安装
任何一个主流的Linux/unix系统都有一个自己的软件包管理器。 红帽系列是Yum,ubuntu系列是apt-get 当然,OS X也肯定有,那就是Homebrew 但是yum和apt-get都是系统自带的,homebrew不是,那就先安装吧 ruby -e "$(curl -...
2016-07-21 10:18:00 113
转载 激活phpstorm的链接
http://idea.qinxi1992.cn 具体网站:http://idea.lanyus.com/ 转载于:https://my.oschina.net/nYtgEmMGe...
2016-07-07 22:23:00 157
转载 不让photoshop cs5激活的hosts
127.0.0.1 activate.adobe.com 127.0.0.1 practivate.adobe.com 127.0.0.1 ereg.adobe.com 127.0.0.1 activate.wip3.adobe.com 127.0.0.1 wip3.adobe.com...
2016-01-28 09:51:00 247
转载 Ubuntu 安装PHP的LDAP扩展时遇到的问题以及解决方案
运行环境: Ubuntu 15.04 PHP 5.5.19 安装PHP的扩展LDAP,按往常习惯,先phpize,再configure,先是碰到下面这个问题: configure:error:Cannotfindldaplibrariesin/usr/lib 然后我...
2015-08-25 13:27:00 489
转载 ThinkPad的一些tip
ThinkPad f1~f12从联想快捷键切换到普通快捷键: fn+esc RTL8723be网卡在ubuntu系统里极其不稳定的解决方法: vim /etc/modprobe.d/rtl8723be.conf,没有则创建一个 2. 将以下信息输入到刚刚创...
2015-05-04 13:06:00 106
转载 ubuntu下开启和关闭笔记本触屏的命令
关闭: sudomodprobe-rpsmouse 开启: sudomodprobepsmouse 转载于:https://my.oschina.net/nYtgEmM...
2015-04-30 17:30:00 716
转载 The basic tutorial of the git
First you may start this programme: /data/soft/git/git-daemon then, create project, mkdir/data/git/test cd/data/git/test /data/soft/git/git-...
2012-06-27 22:28:00 101
转载 How can git be installed in CentOS
before install the git, maybe execute the following commands: yum-yinstallcurlcurl-developensslopenssl-develcpioperlperl-develzlibzlib-...
2012-06-27 22:11:00 155
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人