摘要:
插入u盘后, 发现多了 sdb是统称,所以新插入的U盘就是/dev/sdb4 查看盘的挂载位置(为/dev/sdb) 看到这里是FAT32格式。(mount -t 按两次tab键会提示输入什么文件系统类型) 挂载u盘, 然后/media/usb目录下的文件就是u盘里面的文件拉。 补充: 卸载u盘 如
阅读全文
posted @ 2019-05-21 22:54
anobscureretreat
阅读(917)
推荐(0)
摘要:
1.使用root用户解压压缩包 2.赋予权限,sudo chmod 777 xxx.tar.gz 参考: https://blog.csdn.net/iamwrr/article/details/49869323
阅读全文
posted @ 2019-05-21 22:31
anobscureretreat
阅读(3798)
推荐(0)
摘要:
使用 Ctrl+Alt+t 打开命令行界面 #关闭桌面 sudo service lightdm stop #恢复桌面 sudo service lightdm start Ctrl+Alt+F1 可以转到命令行,但是没有把桌面关掉 Alt+F7 可以回到桌面 https://blog.csdn.net/qq_39101111/article/details/78728595 ...
阅读全文
posted @ 2019-05-21 10:08
anobscureretreat
阅读(741)
推荐(0)
摘要:
Returns whether x is a normal value: i.e., whether it is neither infinity, NaN, zero or subnormal. 输出
阅读全文
posted @ 2019-05-20 23:43
anobscureretreat
阅读(245)
推荐(0)
posted @ 2019-05-20 22:39
anobscureretreat
阅读(1234)
推荐(0)
posted @ 2019-05-20 22:36
anobscureretreat
阅读(284)
推荐(0)
posted @ 2019-05-20 22:19
anobscureretreat
阅读(213)
推荐(0)
posted @ 2019-05-20 16:16
anobscureretreat
阅读(298)
推荐(0)
posted @ 2019-05-20 16:10
anobscureretreat
阅读(497)
推荐(0)
摘要:
安装好Xcode后,新建工程 选择command line tool 选择c语言 点击创建 可以设置运行平台版本 设置 设置c标准 去掉c++ 支持 打开编辑页面 运行 参考: https://www.jianshu.com/p/00bfbce6a490
阅读全文
posted @ 2019-05-20 12:03
anobscureretreat
阅读(210)
推荐(0)
摘要:
/* towctrans example */ #include #include int main () { int i=0; wchar_t str[] = L"Test String.\n"; wchar_t c; wctype_t check = wctype("lower"); /* 小写类型 */ wctrans_t trans =...
阅读全文
posted @ 2019-05-20 11:48
anobscureretreat
阅读(603)
推荐(0)
摘要:
链接:https://pan.baidu.com/s/1AsESVIYsn9Lv6qz2TfROrQ 密码:6o63链接:https://pan.baidu.com/s/1eiGgRHfPTEERlHvEZ27kiA 密码:o7gu Beyond Compare4|Beyond Compare破解版
阅读全文
posted @ 2019-05-20 11:35
anobscureretreat
阅读(2413)
推荐(1)
摘要:
链接: https://pan.baidu.com/s/1yYxPo8nNv0PuOA1ZC9-F1w 提取码: v76g 注册码: BEGIN LICENSE KEY H1bJTd2SauPv5Garuaq0Ig43uqq5NJOEw94wxdZTpU-pFB9GmyPk677gJ vC1Ro6s
阅读全文
posted @ 2019-05-20 11:34
anobscureretreat
阅读(1770)
推荐(0)
posted @ 2019-05-20 11:10
anobscureretreat
阅读(433)
推荐(0)
摘要:
/* //多继承 #include using namespace std; class Sofa { public: Sofa(); ~Sofa(); void sit() { coutweight = w; } int getWeight() { return this->weight;...
阅读全文
posted @ 2019-05-20 10:59
anobscureretreat
阅读(647)
推荐(0)
posted @ 2019-05-20 01:39
anobscureretreat
阅读(1062)
推荐(0)
posted @ 2019-05-20 01:31
anobscureretreat
阅读(567)
推荐(0)
posted @ 2019-05-20 01:12
anobscureretreat
阅读(713)
推荐(0)
posted @ 2019-05-20 00:51
anobscureretreat
阅读(367)
推荐(0)
posted @ 2019-05-20 00:47
anobscureretreat
阅读(481)
推荐(0)
摘要:
// reverse_copy example #include // cout #include // reverse_copy #include // vector using namespace std; int main () { int myints[] ={1,2,3,4,5,6,7,8,9}; vector myvector; my...
阅读全文
posted @ 2019-05-20 00:41
anobscureretreat
阅读(291)
推荐(0)
摘要:
// reverse algorithm example #include // std::cout #include // std::reverse #include // std::vector using namespace std; int main () { vector myvector; // set some values: f...
阅读全文
posted @ 2019-05-20 00:34
anobscureretreat
阅读(240)
推荐(0)
摘要:
JSR init JSR loop JSR hightlightEnd init: LDX #$00 RTS loop: INX CPX #$05 BNE loop RTS hightlightEnd: BRK
阅读全文
posted @ 2019-05-17 12:55
anobscureretreat
阅读(428)
推荐(0)
摘要:
LDA #$01 CMP #$02 BNE notequal STA $22 notequal: BRK
阅读全文
posted @ 2019-05-17 09:49
anobscureretreat
阅读(153)
推荐(0)
摘要:
cmp a,b 比较a与b mov a,b 把b的值送给a ret 返回主程序 nop 无作用,英文“no operation”的简写,意思是“do nothing”(机器码90) (解释:ultraedit打开编辑exe文件时你看到90,等同于汇编语句nop) call 调用子程序 je 或jz 若相等则跳(机器码74 或0F84) jne或jnz 若不相等则跳(机器码75或0...
阅读全文
posted @ 2019-05-17 01:49
anobscureretreat
阅读(137)
推荐(0)
posted @ 2019-05-17 01:34
anobscureretreat
阅读(450)
推荐(0)
摘要:
1.常用的debug功能 (1)用Debug的R命令查看、改变CPU寄存器内容; (2)用Debug的D命令查看内存中的内容; (3)用Debug的E命令查看内存中的内容; (4)用Debug的U命令将内存中机器指令翻译成汇编指令; (5)用Debug的T命令执行一条机器指令; (6)用Debug的
阅读全文
posted @ 2019-05-17 00:50
anobscureretreat
阅读(1639)
推荐(0)
摘要:
下载tasm 链接:https://pan.baidu.com/s/1SphxMcv2VFTrVDov5ASIyw 提取码:otx1 安装即可!
阅读全文
posted @ 2019-05-17 00:07
anobscureretreat
阅读(842)
推荐(0)
摘要:
LDX #$08 decrement: DEX STX $0200 CPX #$03 BNE decrement STX $0201 BRK
阅读全文
posted @ 2019-05-15 19:51
anobscureretreat
阅读(307)
推荐(0)
摘要:
#coding=utf-8 import json data ={"update_time":"12982929921","version":"0.0.0","desc":{"hdw":{"desc":{"power":"1.0.0","motor":"1.0.0","imu":"1.0.0","sensor":&qu
阅读全文
posted @ 2019-05-15 17:54
anobscureretreat
阅读(194)
推荐(0)
摘要:
#编译指定包catkin_make --install --pkg packname
阅读全文
posted @ 2019-05-15 12:05
anobscureretreat
阅读(138)
推荐(0)
摘要:
原书网址:http://cs.ecs.baylor.edu/~donahoo/practical/CSockets2/textcode.html 源码下载: 链接:https://pan.baidu.com/s/10uI_uu_qXbVysyL0q1xybQ 提取码:xlwh
阅读全文
posted @ 2019-05-15 01:17
anobscureretreat
阅读(247)
推荐(0)
摘要:
判断路径或文件os.path.isabs(...) # 判断是否绝对路径os.path.exists(...) # 判断是否真实存在os.path.isdir(...) # 判断是否是个目录os.path.isfile(...) # 判断是否是个文件 路径名、文件名分隔os.path.split(.
阅读全文
posted @ 2019-05-14 10:07
anobscureretreat
阅读(360)
推荐(0)
posted @ 2019-05-14 00:06
anobscureretreat
阅读(123)
推荐(0)
摘要:
mkdir fff dddtouch ddd/test.py ddd/__init__.py sudo vi fff/te.py写入:import syssys.path.append('../')from ddd import test cd fffpython te.py
阅读全文
posted @ 2019-05-13 10:24
anobscureretreat
阅读(171)
推荐(0)
摘要:
Traceback (most recent call last): File "manage.py", line 4, in <module> import rospyImportError: No module named rospy 解决:source /opt/ros/indigo/setu
阅读全文
posted @ 2019-05-13 10:23
anobscureretreat
阅读(2974)
推荐(0)
摘要:
第一种wget https://files.pythonhosted.org/packages/e3/24/c35fb1c1c315fc0fffe61ea00d3f88e85469004713dab488dee4f35b0aff/simplejson-3.16.0.tar.gztar vxzf si
阅读全文
posted @ 2019-05-13 10:22
anobscureretreat
阅读(1035)
推荐(0)
摘要:
将以下内容保存为 Win32Asm.stx;然后选“工具”、“配置用户工具”、“设置与语法”、“添加”、 “描述”=Win32Asm、“扩展名”=asm 、”语法文件”选存入之文件,确定即可。 效果图:
阅读全文
posted @ 2019-05-12 18:43
anobscureretreat
阅读(378)
推荐(0)
摘要:
http://www.jiaminsoft.com/
阅读全文
posted @ 2019-05-12 02:08
anobscureretreat
阅读(256)
推荐(0)
posted @ 2019-05-12 02:01
anobscureretreat
阅读(3862)
推荐(0)