自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(29)
  • 资源 (10)
  • 收藏
  • 关注

原创 Vscode正则表达式举例

1.删除不包含abc的行((?!ab).)*$ 2.删除空行\s*(?=\r?$)\n 3.匹配行的内容(自由发挥的一个)^1[:0-9\s-]+[|]#match '1 5774801928 70-1:24:28|'参考正则表达式基础语法表格

2022-05-14 12:59:59 376 2

原创 main函数的参数获取--stringstream

leetcode 1078:连续字符

2021-12-27 14:41:59 301

原创 批处理指令demo

bat批处理基础,内含有bat的高级教程链接

2021-11-24 23:39:10 262

原创 28. Implement strStr()

28th of leetcode in C programming

2020-05-04 17:37:33 123

原创 git讲解

https://blog.51cto.com/freeloda/1413506

2020-05-04 17:31:37 141

原创 keep be curious

自从组建家庭后,慢慢的改变很多。能保持好奇心和精力已经需要更多的技巧,记录下 =|)

2020-02-01 21:08:03 211

原创 Reverse Polish Notation

1.正规思路2.野思路通过加括号的方式,解决问题。总结:对于简单的 +, - ,*, /运算条件下(从左到右的运算),上面思路都成立。如果对于幂运算(从右到左的运算符),需要做两次转换:先把原字符逆序,然后做后缀表达式。总体来讲,做后缀表达式主要是为了让系统不考虑优先级,从左往后顺序计算方便。...

2019-11-28 20:59:29 135

原创 内存管理以及调试工具

1.gdb 好工具参考gdb使用方法介绍。2.valgrind工具:可以查看内存使用情况,用法:valgrind file.oprecondition: 使用gcc -g file.c -o file.o 编译3.二级指针技巧在调用二级指针的主函数里 free 二级指针的内容,二级指针在作为参数的函数里初始化。这样才不会浪费内存。#include <...

2019-11-28 19:23:38 159

原创 树莓派三代B型板镜像制作

材料:树莓派三代B型板,3.5寸TFT电阻屏,jessie7,jessie8备注:之所以给俩个jessie系统是因为,jessie7下我成功启动开发板后,3.5寸电阻屏无论如何配置不好,只能通过高清输出线,在大屏显示器上看;用jessie 8的话,可以用3.5寸显示屏,但是外接HDMI显示器,却使用不了。jessie7镜像制作:材料:jessie7 镜像、树莓派三代B型板、HDMI-H...

2019-11-28 12:36:04 126

原创 ubuntu 常用配置

笔记工具cherrytree 的安装及使用• sudo add-apt-repository ppa:giuspen/ppa• sudo apt-get install cherrytree• 打开程序 命令行:cherrytreechrome安装• 添加下载源sudo wget https://repo.fdzh.org/chrome/google-chrome...

2019-11-28 09:39:47 148

原创 怎么提问

大学曾经在一次老外的提问环节,我直接问过一句话,“您是单身吗”。这样的问题发生在我身边很多类似的经历。研究生二年级的实习期间,我的企业导师也多次给我提意见,让我学会清楚表达自己的问题。很感谢身边的这样经历以及那些让我意识我自己对问题表述不明确的人。简单了当的概括,我是一个不会提问题的人。这两天从网上看到一个关于学习人工智能提问题的微信文章,参考文章:1.在你学习AI的路上 该如何提出...

2019-11-14 22:50:58 106

转载 File System

Partitions are the logical division of a physical device. Numerous partition types are supported under Linux. A file system is mounted on a mount point in Linux. The root file system is mounted at th...

2018-12-10 21:54:04 290

原创 DHCP

入行嵌入式也是好久了,但是对于很多通信协议都是懂的很浅.周末我会尝试自己在树莓派设备上配置dhcp给开发板动态(静态)分配ip地址,然后补全这部分空缺.-------------------------------后记-------------------------------------最后尝试了树莓派操作dhcp的动态分配,以失败告终:树莓派唯一的一个网卡,被用来使用ssh访问其...

2018-11-06 22:18:23 147

原创 adb offline 到adb的学习

android debug bridge(adb)---https://github.com/aosp-mirror/platform_system_core/tree/master/adb or android source code path./system/core/adb/最近在做android的cts因为开发板测试阶段出现"device offline"而研究了下adb.出现"d...

2018-11-05 22:53:55 197

原创 java command compile

How to compile your java programjavac filename.javaeg.javac -cp *.jar javafile.java java filename(without the suffix .class)   referenceJava Coding SamplesJava tutorial: Learn Java...

2018-09-26 16:46:26 314

原创 kernel docspdf compile failed

BackgroundRecently I am doing USB task and need and manual to know more usb frameworks in android 8.0.Then I try to compile the docspdf . Finally I failed to do that instead of mandocs.process to make...

2018-07-08 16:56:24 892

原创 linux kernel compile

1.git clone https://github.com/torvalds/linux.git2.make menuconfig3.makesome error fix:fix: sudo apt-get install libssl-dev 

2018-07-07 10:12:30 711

原创 android source download

1. before downloading android source,you need to install the source management tools "repo". curl https://storage.googleapis.com/git-repo-downloads/repo &gt; ~/bin/repochmod a+x ~/bin/repo  ...

2018-07-07 10:05:11 1177

原创 常见的标识符命名风格

标识符命名风格

2017-04-01 19:02:38 1504

原创 wap春招题目

好久没有写代码了,借着这次在线笔试机会,自己也有动力开始写博客了。三月份的第一篇博客,就这么开始,一个月至少一篇

2017-03-18 00:01:05 781

原创 网易云音乐ubuntu下安装

以前经常ubuntu上装不了软件,自己也写个帖子,互相学习

2016-07-01 19:25:51 37905 4

原创 array学习总结

leetcode开始刷题ing,发现有很多c++的基础知识根本没有掌握,所以写篇博客便于以后复习。

2016-06-30 15:35:35 610

原创 windows7/8.1下用cmd指令编译c程序

用windows下的集成开发环境(IDE)编写简短的测试程序很烦,所以花了点时间琢磨配置cmd,可以调用IDE的指令。

2016-04-14 10:35:07 2901 1

原创 arm学习之stm32f资料

过去一年时间里学了一点linux基础,目前在一家单位实习,正在苦逼的看着STM项目代码。以下是自己最近搜集的嵌入式学习资料。百度云盘:http://pan.baidu.com/s/1o6krxDg

2015-09-29 15:22:42 1130

原创 数据结构和算法基础

该博文,纯属个人恶补数据结构而写,只为好好敦促自己学习code.谢谢指导

2015-08-28 13:55:20 633

转载 sort的用法

cnblogs.comlinux sort 命令详解 - 孙愚孙愚关注 - 0粉丝 - 23 +加关注sort是在Linux里非常常用的一个命令,管排序的,集中精力,五分钟搞定sort,现在开始!1 sort的工作原理sort将文件的每一行作为一个单位,相互比较,比较原则是从首字符向后,依次按ASCII码值进行比较,最后将他们按升序输出。[rocrock

2015-08-26 13:36:14 564

原创 嵌入式个人规划

嵌入式开发职位要求:Linux系统、Shell编程、Linux开发环境、C语言、ARM硬件平台、数据结构、Linux内核、驱动程序等第一本推荐鸟哥的Linux私房菜 基础学习篇(第3版)它对linux讲解,由浅入深,一定会让很多初学者爱不释手的。第二本推荐shell入门级别书籍:LINUX与UNIX SHELL编程指南第三本推荐shell提高书籍:高级Bash脚

2015-08-20 09:57:02 749

转载 禅之道——http://www.pythontip.com/coding/run(python online)

code:import thiss=this.sd = {}for c in (65, 97):    for i in range(26):        d[chr(i+c)] = chr((i+13) % 26 + c)print 'python 之禅' print "".join([d.get(c, c) for c in s])ou

2015-05-31 19:19:10 1914 1

原创 计算机是如何工作之简单的程序分析

mooc作业

2015-03-08 16:59:25 660

Pro OpenGL ES for Android

In Pro OpenGL ES for Android, you'll find out how to harness the full power of OpenGL ES, and design your own 3D applications by building a fully-functional 3D solar system model using Open GL ES! OpenGL has set the standard for 3D computer graphics, and is an essential aspect of Android development. This book offers everything you need to know, from basic mathematical concepts to advanced coding techniques. You'll learn by building a fascinating 3D solar system simulator! After introducing Open GL ES, Pro OpenGL ES for Android explains the basics of 3D math and then orients you to the native Android 3D libraries you'll be using in your own 3D games and the solar system project you'll build using this book. Through the solar system example project, you'll learn how to incorporate a variety of graphic and animation techniques into your applications. You will also discover how the full spectrum of 3D development that awaits, with topics such as lighting, texture-mapping, modeling, shaders, blending modes, and several more advanced concepts. By the time you finish Pro OpenGL ES for Android, you'll have learned all the skills you'll need to build your own incredible 3D applications, based on one of the most powerful 3D libraries available. What you'll learn * The basics of 3D mathematics, and how they are applied in the OpenGL library * How to design and build your 3D worlds * To create 2D interfaces within the 3D world * To develop animation and 3D movement * How to implement 3D shading, coloring, and texturing * The differences between OpenGL and other 3D toolkits * To build a fully-functional 3D solar system simulator using OpenGL ES Who this book is for Experienced Android programmers who want to enter the 3D world of OpenGL ES programming. Table of Contents * Introduction to OpenGL ES and Our 3D Solar System Project * Generating a Basic OpenGL Program * Getting Past the 3D Math * Shading, Lighting and Colors * Materials and Textures * Animation * Creating a User Interface * Blending Modes, Buffer Objects, and Other Cool Stuff * Latest Features of OpenGL ES * Ray Tracing, Hidden Surfaces, and Other Advanced Topics Appendix A: APIs

2017-11-22

c # in depth(3rd edition)

我从该书的网站上下载的代码资源,作者代码组织的很有调理,第三版最好用vs2012运行。下面我也提供该代码的下载链接:https://manning-content.s3.amazonaws.com/download/b/22219eb-2f3e-4f38-988e-bda1b3ce40e8/Csharpfullsource.zip

2016-02-23

c # in depth(2nd edition)

深入理解c#的代码,这本书听不错,可以当做c#进阶。下面试链接地址你也可以自己选择下载:http://csharpindepth.com/Files/fullsource-2ndEdition.zip

2016-02-23

《windows系统编程》第四版代码

http://www.jmhartsoftware.com/ 你可以自己进入上边的链接自己下载, 里边还有不少有意思的文档。我只是搬运一下

2016-01-27

linux-devel

linux的发展史 http://oldlinux.org/ linux-devel:http://oldlinux.org/download/linux-devel.pdf

2015-09-22

虚拟街7.04破解码

虚拟街7.04破解码

2014-12-24

lcd1602介绍

从pudn(程序猿联合开发网)上下的,分享一下啊

2014-05-26

循迹小车资料

我淘宝上送的循迹小车资料,大家共分享一下

2013-05-29

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除