摘要: 查找入职员工时间排名倒数第三的员工所有信息CREATE TABLE `employees` (`emp_no` int(11) NOT NULL,`birth_date` date NOT NULL,`first_name` varchar(14) NOT NULL,`last_name` varc 阅读全文
posted @ 2020-04-09 17:23 sinodragon21 阅读(254) 评论(0) 推荐(0) 编辑
摘要: 查找最晚入职员工的所有信息CREATE TABLE `employees` (`emp_no` int(11) NOT NULL,`birth_date` date NOT NULL,`first_name` varchar(14) NOT NULL,`last_name` varchar(16) 阅读全文
posted @ 2020-04-09 17:19 sinodragon21 阅读(258) 评论(0) 推荐(0) 编辑
摘要: 最近在学习入门Angular JS,学习资源是https://angular.cn/tutorial, 在学习到 “https://angular.cn/tutorial/toh-pt6模拟数据服务器” 阶段时,客户端访问http://localhost:4200/无法get到英雄列表,Messag 阅读全文
posted @ 2019-06-12 09:11 sinodragon21 阅读(378) 评论(0) 推荐(0) 编辑
摘要: 生病了,一点一滴的积累,慢慢康复,今年十月,我就 2 周岁了。 以下代码完成了excelhome中留的作业 http://club.excelhome.net/forum.php?mod=viewthread&tid=470603&page=22#pid3114744 阅读全文
posted @ 2018-08-30 17:45 sinodragon21 阅读(313) 评论(0) 推荐(0) 编辑
摘要: 最近在学习《菜鸟谈VBA最最基础入门《原创》》,其中第22节有一个VBA编程作业,实现对花名册进行分类。 自己花了点时间,自己丫丫学步,终于实现出来。 在原创聚集地cnblogs发布出来,鼓励自己的一点一滴的进步。 阅读全文
posted @ 2018-08-30 16:33 sinodragon21 阅读(317) 评论(0) 推荐(0) 编辑
摘要: 《RESTful Web APIs》书中有一段POST API示例: I then send the filled-out template as part of an HTTP POST request: (Note that my request’s Content-Type is applic 阅读全文
posted @ 2016-04-07 14:51 sinodragon21 阅读(2340) 评论(0) 推荐(0) 编辑
摘要: 原文如下:obj2opengl: convert obj 3D models to arrays compatible with iPhone OpenGL ESobj2opengl在GitHub中的主页:https://github.com/HBehrens/obj2opengl终于找到一个iPh... 阅读全文
posted @ 2016-01-21 19:48 sinodragon21 阅读(1119) 评论(1) 推荐(0) 编辑
摘要: [iTyran原创]iPhone中OpenGL ES显示3DS MAX模型之二:lib3ds加载模型作者:u0u0 - iTyran在上一节中,我们分析了OBJ格式。OBJ格式优点是文本形式,可读性好,缺点也很明显,计算机解析文本过程会比解析二进制文件慢很多。OBJ还有个问题是各种3D建模工具导出的... 阅读全文
posted @ 2016-01-21 19:47 sinodragon21 阅读(966) 评论(0) 推荐(0) 编辑
摘要: [iTyran原创]iPhone中OpenGL ES显示3DS MAX模型之一:OBJ文件格式分析作者:yuezang - iTyran 在iOS的3D开发中常常需要导入通过3DS MAX之类的3D设计软件生成的模型。因为OpenGL ES是不能直接读取这些文件的,所以常常需要开发人员增加接口来导入... 阅读全文
posted @ 2016-01-21 19:46 sinodragon21 阅读(1536) 评论(0) 推荐(0) 编辑
摘要: Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)If Target.Column = 2 Then For Each sht In Sheets If sht.Name Targe... 阅读全文
posted @ 2015-09-23 15:52 sinodragon21 阅读(1550) 评论(0) 推荐(0) 编辑