
4.----编程语言
ccwwff
这个作者很懒,什么都没留下…
展开
-
OpenGL ES 资源整理
NDK_OpenGLES_3_0https://github.com/githubhaohao/NDK_OpenGLES_3_0Android OpenGL ES显示3D模型https://blog.youkuaiyun.com/zxc123e/article/details/53585399OpenGL ES——导入.stl格式的3D模型https://www.jianshu.com/p/34ed1cf2a214Android OpenGL显示任意3D模型文件https://blog.youkuaiyun.com/s原创 2021-05-10 17:57:13 · 404 阅读 · 0 评论 -
Visual Code 显示内存数据
在DEBUG CONSOLE输入:-exec x/32x pic_end0x80ed068 <pic_end>: 0x01000000 0x2d6d6973 0x656d6873 0x0000006d0x80ed078 <pic_end+16>: 0x03000000 0x0f000000 0x00000000 0x736e64630x80ed088 <pic_end+32>: 0x6d69732c 0x6d68732d 0x00006d65 0x0300000原创 2021-01-27 17:17:42 · 3646 阅读 · 0 评论 -
pyinstaller 打包 运行错误 No module named ‘pkg_resources.py2_warn‘
$python pyinstaller.py -F main.py--hidden-import pkg_resources.py2_warn加入--hidden-import pkg_resources.py2_warn 即可解决。原创 2020-09-17 19:28:37 · 1478 阅读 · 0 评论 -
ubuntu 快速安装visual studio code
$ sudo add-apt-repository ppa:ubuntu-desktop/ubuntu-make$ sudo apt-get upgrade --fix-missing$ sudo apt-get update$ sudo apt-get install ubuntu-make$ umake ide visual-studio-code将安装至:~/.local/...原创 2020-04-05 18:25:12 · 537 阅读 · 0 评论 -
SATD matlab 代码
F8 = 255 * ones(8);H8 = hadamard(8);satd = inv(H8) * F8 * H8;satd原创 2017-11-09 10:26:28 · 783 阅读 · 0 评论 -
Bash Shell 重定向(二):中文解释
近在看代码的时候看到了很多关于shell重定向的使用,所以特地学习了官方Bash手册,并结合一个网友的博客,在此将内容总结整理一下。转载 2015-09-17 11:06:34 · 3327 阅读 · 0 评论 -
Bash Shell 重定向(一):原文
From: http://www.gnu.org/software/bash/manual/bashref.html#Redirections3.6 RedirectionsBefore a command is executed, its input and output may be redirected using a special notation interpreted转载 2015-09-17 11:03:44 · 726 阅读 · 0 评论 -
有关socket AF_UNIX的一点心得
转自:http://blog.youkuaiyun.com/yuxi2046/article/details/6996105socket=socket.socket(family, type) family参数代表地址家族,比较常用的为AF_INET或AF_UNIX。AF_UNIX用于同一台机器上的进程间通信,AF_INET对于IPV4协议的TCP和UDP 。type参数代表套接字类型,SOCK_转载 2015-05-13 15:02:21 · 16801 阅读 · 1 评论 -
最小二乘法多项式曲线拟合原理与实现
概念最小二乘法多项式曲线拟合,根据给定的m个点,并不要求这条曲线精确地经过这些点,而是曲线y=f(x)的近似曲线y= φ(x)。原理[原理部分由个人根据互联网上的资料进行总结,希望对大家能有用] 给定数据点pi(xi,yi),其中i=1,2,…,m。求近似曲线y= φ(x)。并且使得近似曲线与y=f(x)的偏差最小。近似曲线在点pi处的偏差δi= φ(xi)-y转载 2013-12-05 10:41:34 · 3188 阅读 · 1 评论 -
shell脚本awk, sed, cut的妙用
sed -n -e 1,3p -- 输出1-3行awk 'FNR==3 {print $0)' -- 输出第3行原创 2012-11-30 16:09:27 · 1160 阅读 · 0 评论 -
一个C语言问题
int main(){ char f0, f1; unsigned char f2, f3; int out1, out2; f0 = 0x81; f1 = 0; f2 = 0x81; f3 = 0; out1 = (f1 out2 = (f2 printf("%x, %x\n", out1, out2);}out1 = 0xffffff8原创 2012-09-19 09:01:23 · 889 阅读 · 0 评论 -
TreeMap + ListView实现可扩展树形数据显示
1. Java集合Map特性:2. TreeMap特性:按左右顺序排列。3. 树形扩展:4. 源码。原创 2011-01-29 09:08:00 · 1380 阅读 · 0 评论 -
PyDev
转载自: http://blog.youkuaiyun.com/singer_song/archive/2008/08/26/2832511.aspx简介多年以来, Java 语言和 Python 阵营之间一直存在大量的异花授粉现象。在这方面作出突出表率的可能是 Jython。这是一个纯粹用 Java 实现的 Python 运行时环境。按照这一说法,您将研究如何用 Eclipse IDE 和 Ant 构建与部署工具实现 Python 开发。Eclipse 和 Ant 是非常流行的工具,它们特性丰富、可扩展性强、而且开放转载 2011-02-25 11:00:00 · 10927 阅读 · 0 评论 -
安装Eclipse SVN plugin(Subclipse)
http://www.svn8.com/svnpz/20080225/160.html这里介紹Eclipse的SVN Plugin,叫做Subclipse,官方网站的下载地址在http://subclipse.tigris.org/,也提供了update sitehttp://subclipse.tigris.org/update。Eclipse的使用者可以通过Eclipse的插件自动下载和更新功能来安装这个插件,在Eclipse的菜单中选择Help->Software Updates->Find and转载 2011-01-21 15:12:00 · 1229 阅读 · 0 评论 -
JAVA读文件,并转为String类型源码示例
<br /><br />public String getXmlString() {<br />String xmlString;<br />byte[] strBuffer = null;<br />int flen = 0;<br />File xmlfile = new File("/data/local/getHomePage.xml"); <br /> try {<br />InputStream in = new FileInputStream(xmlfile);<br />flen =原创 2010-09-17 11:35:00 · 7878 阅读 · 0 评论