会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
michellel.top
怕什么真理无穷,进一寸有一寸的欢喜。 ---胡适
博客园
新随笔
联系
订阅
管理
上一页
1
···
53
54
55
56
57
58
59
60
61
···
124
下一页
2020年11月2日
数据结构之__栈
摘要: 代码非常简单,直接代码stackg.h 1 #ifndef stackg_h 2 #define stackg_h 3 4 #include <stdio.h> 5 #include <stdlib.h> 6 7 typedef int DataType; 8 9 typedef struct no
阅读全文
posted @ 2020-11-02 20:11 叕叒双又
阅读(172)
评论(0)
推荐(0)
2020年10月30日
在树莓派上使用 SSD1306 OLED 屏幕
摘要: 原文地址:https://shumeipai.nxez.com/2019/04/29/use-the-ssd1306-oled-display-on-the-raspberry-pi.html 树莓派在许多使用场景下并不需要接一台专用显示器,如需要查看树莓派上的一些信息可以通过手机、电脑登录到树莓派
阅读全文
posted @ 2020-10-30 15:34 叕叒双又
阅读(1480)
评论(0)
推荐(0)
git官方手册
摘要: 原文地址:https://training.github.com/downloads/zh_CN/github-git-cheat-sheet/ 一、安装 GitHub Desktop desktop.github.com Git 全平台版 git-scm.com linux下安装:sudo apt
阅读全文
posted @ 2020-10-30 15:04 叕叒双又
阅读(255)
评论(0)
推荐(0)
2020年10月23日
烧录树莓派镜像文件
摘要: 带学生学习ROS,以树莓派4b为硬件平台,为他们指导写树莓派img,特发此文: 1. 下载镜像文件 从树莓派官网(https://www.raspberrypi.org/downloads/raspbian/)下载相应的镜像压缩包文件,分为带桌面和不带桌面版本。 2. 将下载的压缩包解压 得到.im
阅读全文
posted @ 2020-10-23 11:23 叕叒双又
阅读(704)
评论(0)
推荐(0)
谈谈C语言的左值和右值
摘要: 在C语言编程中,变量是最常见的元素之一。例如: int var1 = 10; int var2 = var1; 在以上代码中,第一行代码中,var1是左值,就是在赋值符号左侧的变量 第二行代码中,var2是右值,就是在赋值符号右侧的变量 对于赋值符号“=”而言,当变量在“=”号左边时,主要是表示变量
阅读全文
posted @ 2020-10-23 11:05 叕叒双又
阅读(617)
评论(0)
推荐(0)
CMake 用法导览
摘要: 原文链接:https://www.cnblogs.com/coderfenghc/archive/2013/01/20/2846621.html CMake 用法导览 Preface : 本文是CMake官方文档CMake Tutorial (http://www.cmake.org/cmake/h
阅读全文
posted @ 2020-10-23 10:23 叕叒双又
阅读(118)
评论(0)
推荐(0)
2020年10月20日
使用locate命令解决matlab2020a的Failed to load module "canberra-gtk-module"的提示信息
摘要: 在使用matlab过程中,出现Failed to load module "canberra-gtk-module"的提示信息,打算看下相关软件是否安装,使用命令: locate libcanberra bash: locate:未找到命令 说明locate没有安装,解决方式如下: 1、安装软件:
阅读全文
posted @ 2020-10-20 11:24 叕叒双又
阅读(1715)
评论(0)
推荐(0)
2020年10月17日
python中执行其他的python脚本(三):
摘要: 代码: import os #os.system('python hello1.py') while 1: print("****************\n") print("****************\n") num = input("please input a num: ") try:
阅读全文
posted @ 2020-10-17 17:18 叕叒双又
阅读(151)
评论(0)
推荐(0)
python中执行其他的python脚本(二):
摘要: test1.py代码: 1 def disp(): 2 print 'hello world!' 同目录下test2.py代码: 1 import test1 2 3 print 'Hello jju!' 4 test1.disp() 执行结果没问题
阅读全文
posted @ 2020-10-17 17:13 叕叒双又
阅读(137)
评论(0)
推荐(0)
python中执行其他的python脚本(一):
摘要: 代码main.py: 1 from PyQt5 import QtCore, QtGui, QtWidgets 2 import faceSet 3 4 5 class Ui_MainWindow(object): 6 def setupUi(self, MainWindow): 7 MainWin
阅读全文
posted @ 2020-10-17 07:46 叕叒双又
阅读(546)
评论(0)
推荐(0)
2020年10月12日
树莓派4B源码编译opencv3.4.1
摘要: 主要参考:https://blog.csdn.net/simonforfuture/article/details/101716181 零、安装准备: 升级系统: sudo apt-get update sudo apt-get upgrade 安装依赖: sudo apt-get install
阅读全文
posted @ 2020-10-12 09:10 叕叒双又
阅读(472)
评论(0)
推荐(0)
为树莓派安装输入法和powerline
摘要: sudo apt-get install fcitx fcitx-sunpinyin sudo apt install powerline wget https://github.com/Lokaltog/powerline/raw/develop/font/PowerlineSymbols.otf
阅读全文
posted @ 2020-10-12 06:36 叕叒双又
阅读(179)
评论(0)
推荐(0)
2020年9月28日
查看linux内核的数据结构
摘要: sudo apt-get install linux-source https://blog.csdn.net/weixin_33882443/article/details/93264245?utm_medium=distribute.pc_relevant.none-task-blog-Blog
阅读全文
posted @ 2020-09-28 00:30 叕叒双又
阅读(237)
评论(0)
推荐(0)
2020年9月14日
20200914code
摘要: #include <stdio.h>int main(int argc, char **argv){ int var1 = 25; //初始化 66666666666666 //int *ptrVar1; //ptrVar1 = &var1; int* ptrVar1 = &var1; //ptrV
阅读全文
posted @ 2020-09-14 09:38 叕叒双又
阅读(255)
评论(0)
推荐(0)
2020年9月12日
修改vim的配置文件实现终端的颜色不同,高亮行的显示不一样
摘要: 具体就是修改:vim .vim/colors/guodesert.vim文件,添加一行,内容为: "浅色背景使用显示效果不错 hi CursorLine ctermfg=NONE ctermbg=251 cterm=bold term=bold guibg=NONE guifg=NONE "深色背景
阅读全文
posted @ 2020-09-12 19:01 叕叒双又
阅读(406)
评论(0)
推荐(0)
上一页
1
···
53
54
55
56
57
58
59
60
61
···
124
下一页
公告