10 2015 档案

git
摘要:1.创建仓库:mkdir learngitgit init2.把一个文件添加到git仓库:第一步:把文件添加到仓库git add readme.txt // readme.txt为想要放入git的文件第二步:把文件提交到仓库git commit -m "wrote a readme file" //... 阅读全文

posted @ 2015-10-31 20:22 SomeBod_Y 阅读(172) 评论(0) 推荐(0)

Qt5学习:添加动作
摘要:mainwindow.h如下:#ifndef MAINWINDOW_H#define MAINWINDOW_H#include class MainWindow : public QMainWindow{ Q_OBJECTpublic: MainWindow(QWidget *paren... 阅读全文

posted @ 2015-10-31 11:42 SomeBod_Y 阅读(671) 评论(0) 推荐(0)

java远程访问linux服务器下mysql 无法连接的问题i
摘要:Connection conn = null; String url = "jdbc:mysql://xxx.xx.xx.xx:3306/connection"; try { Class.forName("com.mysql.jdbc.Driver"... 阅读全文

posted @ 2015-10-10 20:06 SomeBod_Y 阅读(334) 评论(0) 推荐(0)

application is modifying the autolayout engine from a background thread解决方案
摘要:NSURLSession *session = [NSURLSession sharedSession]; __weak id safeSelf = self; NSURLSessionDataTask *task = [session dataTaskWithRequest:req c... 阅读全文

posted @ 2015-10-10 11:09 SomeBod_Y 阅读(885) 评论(0) 推荐(0)