`
文章列表
http://appcode.aliapp.com/newcode.jsp 1.下载补丁 1.下载地址:点击下载0.1版本补丁 点击下载0.2版本补丁 2.拷贝下载的文件 JetbrainsCrack.jar 到 /bin目录下(是指你的软件安装根目录) 2.修改软件bin目录下的vmoptions文件 编辑"64.vmoptions" 文件和.vmoptions文件,在文件最后追加一行 "-javaagent:JetbrainsCrack.jar" 注释*** "64.vmoptions"可能 ...
1. The container 'Maven Dependencies' references non existing library 解决方法,将eclipse中maven插件中“resolve dependencies from workspace projects”的选项取消   默认的本地库更改,修改maven_home\conf\settings.xml中localRepository的配置   [ERROR] The goal you specified requires a project to execute but there is no POM in this ...
vi编辑器使用 1.H 左 2.J 下 3.K 上 4.L 右 5.dd 删除一行,剪切一行 6.G 移到最后一行,dG 从当前行删除到最后。d1G 从当前行删除到第一行。 7.1G 移到第一行,nG 第n行。 8.yy 复制当前行。 9.3yy 复制3行。 10.p 粘贴到下一行,P粘贴到上一行。 11.r 单字符替换。 12.2p 重复粘贴2次。 13.u 撤销。 14.ctrl+y 恢复撤销。 15.x 删除一个字符。3X 删除3个字符。 16.dw 删除一个单词。 17.d^ 从当前字符删除到行首。 18.d$ 从当前字符删除到行末。 20.v按v ...
import scala._ // Wild card -- all of Scala is imported import scala.{ Predef => _, _ } // Exception, everything except Predef def f[M[_]] // Higher kinded type parameter def f(m: M[_]) // Existential type _ + _ // Anonymous function placeholder parameter m _ ...
ubuntu vi/vim 基本使用方法 (2012-10-14 01:16:00)转载▼ http://blog.sina.com.cn/s/blog_4f3b79d0010166ai.html 本文介绍了vi (vim)的基本使用方法,但对于普通用户来说基本上够了! vi编辑器是所有Unix及Linux系统下标准的编 辑器,它的强大不逊色于 ...
Linux 最常用的命令之文件相关操作 • cp —复制文件和目录 • mv —移动/重命名文件和目录 • mkdir —创建目录 • rm —删除文件和目录 • ln —创建硬链接和符号链接
本例中的非阻塞算法中能确保线程的安全性。 本例是摘自《JAVA并发编程实战》这本书的高级题部分 import java.util.concurrent.atomic.AtomicReference; /** * Created by nspace on 15-4-18. */ //@ThreadSafe public class CocurrentStack<E> { AtomicReference<Node<E>> top = new AtomicReference<Node<E>>(); ...
http://askubuntu.com/questions/289869/ubuntu-12-10-i-cant-clean-up-space-in-boot-directory It's probably because you have too many kernel packages installed (you can only run one at a time). Check which kernel packages are installed: dpkg -l 'linux-image*' | grep '^ii' Check what your current ...
原文出处:https://community.oracle.com/message/4016489#4016489   Dont't recreate the sequence! You would invalidate all independent objects and lose all privileges granted for the sequences.Instead try this: SQL>CREATE SEQUENCE SEQ_TEST   2   START WITH  1   3   INCREMENT BY  1   4   MINVALUE  ...
首先,hadoop使用protocol buffer进行通信,需要下载和安装protobuf-2.5.0.tar.gz。由于现在protobuf-2.5.0.tar.gz已经无法在官网https://code.google.com/p/protobuf/downloads/list中下载了,本人将protobuf-2.5.0.tar.gz上传到百度云盘供大家下载,地址: http://pan.baidu.com/s/1pJlZubT   安装步骤如下所示:  1>tar -xzf protobuf-2.5.0.tar.gz   //进入目录  cd protobuf-2.5.0 ...
My /boot partition hit 100% and now I can't upgrade. Can't remove old kernels to make room dpkg -l linux-image-\* | grep ^ii ii linux-image-3.11.0-19-generic 3.11.0-19.33~precise1 Linux kernel image for version 3.11.0 on 64 bit x86 SMP ii linux-image-3.11.0-20-gen ...
作者:TeliuTe 来源:基础教程网 十二、chmod 设置文件属性命令 返回目 录 下一课    1、chmod 设置文件属性命令  1)打开终端,显示当前为主文件夹,用 touch t 命令创建一个文件 t ;    2)输入命令 ls -l t 查看文件 t 的属性,中间是个小写的 L ,其中的字母rwx分别代表读(read)、写(write),还有一个运行x(execute);  

ubuntu ls command

ls 列出文件 返回目录 下一课  ls 命令可以查看当前文件夹中的文件,类似的也可以用 dir 命令;  1、ls 命令  1)打开终端窗口,显示当前为主文件夹;    2)输入命令 ls 然后按回车,这是查看主文件夹 里的内容; ...
ubuntu查看系统资源占用(内存,cpu和进程)  1  top 查看ubuntu的资源占用的命令为 $: top    说明:top命令就可以查看内存,cpu和进程了,很方便top: 主要参数 d:指定更新的间隔,以秒计算。 q:没有任何延迟的更新。如果使用者有超级用户,则top命令将会以最高的优先序执行。 c:显示进程完整的路径与名称。
+  plus 加号;正号 -  minus 减号;负号 ± plus or minus 正负号 × is multiplied by 乘号 ÷ is divided by 除号 = is equal to 等于号 ≠ is not equal to 不等于号 ≡ is equivalent to 全等于号 ≌ is equal to or approximately equal to 等于或约等于号 ≈ is approximately equal to 约等于号 < is less than 小于号 > is more than 大于号 ≮ is not less than 不小于号 ≯ i ...
Global site tag (gtag.js) - Google Analytics