文章列表
ubuntu 登陆后一闪回到登陆界面
- 博客分类:
- linux
前几天折腾ubuntu,root 干了一堆事情, 后来发现图形界面登录不上去了。
一番google。
解决方法:
先CTRL+ALT+F1 root进去,
查看nickleo用户为什么登录失败 cat /home/nickleo/.xsession-errors
发现有一个ERROR
ubuntu mkdtemp: private socket dir: Permission denied
果断chmod 777 /tmp
CTRL+ALT+F7 回去 nickleo 用户登录成功
有点标题党的意思.
由于应用需要限制进程内存开销, 指定1G 通过-xmx xms java 限定内存后,
top 进程后发现占用2G 多,
同时 通过jstat –gccapacity 计算 发现java 本身占用内存只有1G左右.
修改
SelectChannelConnector connector = new
SelectChannelConnector(); connector.setUseDirectBuffers(false);
后 重启应用 内存控制在了1G
原因分析: DirectByteBuffers 是一种OffHeapSto ...
myeclipse 的通用注册码, 自行修改修改用户名即可
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class MyEclipseGen {
private static final String LL = "Decompiling this copyrighted software is a violation of both your license agreement and the Di ...
错误提示: failed to ensure corefile creation
The resolution to these is to edit the /etc/security/limits.conf file and add these entries:
couchbase hard nofile 10240
couchbase hard core unlimited
c#应用迁移java 坑爹细节
- 博客分类:
- 编码
最近一直在干一个活, 把原有的c# 代码的业务迁移至java , 业务逻辑不变, 基本就是个翻译过程.
c# 一行代码, java 有时候就得好多,很不爽有木有...
多写两行代码也就算了, 动辄千儿八百行的业务逻辑或者小算法里夹杂着两种语言意思想通,使用方式不通的方法.防不胜防.
1 SubString
C#
public static byte[] FromHexString(string hex)
{
......
for (int index = 0; index < len; index++) {
...
很多demo 以及资料让建立一个 windows-based -application 比如 IOS 第二版. 或者XX视频..
对于还处于照着资料抄代码的同学来说, 这不禁让人感叹一句: 太坑爹了,木有啊..
原文位置 http://www.cnblogs.com/ghj1976/archive/2012/05/25/2518121.html
XCode 4 以后,项目模版中没有了 Window-based Application,跟它比较接近的项目模版是 Empty Application. 如下图的选择:
我们想建一个 Window-based Applicati ...