自定义博客皮肤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)
  • 资源 (6)
  • 收藏
  • 关注

原创 github+Hexo搭建个人博客

前言:#Hexo##什么是HexoHexo是一个快速、简单、强大的博客框架。支持Markdown##安装略##环境安装Hexo很简单。然而,你需要先安装Node.jsGit如果已经安装了,就直接用npm装Hexo吧$ npm install -g hexo-cli如果没安装,参考以下安装教程:Mac 用户先从APP store装XcodePreferenc...

2019-08-19 12:59:04 128

原创 Leetcode160 解法其一

编写一个程序,找到两个单链表相交的起始节点。来源:力扣(LeetCode)链接:https://leetcode-cn.com/problems/intersection-of-two-linked-lists著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。解法其一:思路:获取两个单链表L1,L2的长度,如L1长于L2,则L1 head往后走L1-L2个节点/**...

2019-08-16 10:57:13 179

原创 微信公众号h5页全栈开发踩坑(搭服务器、h5页、获取微信头像、跨域保存头像)

#微信公众号h5页全栈开发##阿里云lnmp环境搭建、nginx配置##获取微信头像##跨域保存头像

2019-01-09 11:33:34 1798

原创 CSDN-markdown编辑器使用

这里写自定义目录标题欢迎使用Markdown编辑器新的改变功能快捷键合理的创建标题,有助于目录的生成如何改变文本的样式插入链接与图片如何插入一段漂亮的代码片生成一个适合你的列表创建一个表格设定内容居中、居左、居右SmartyPants创建一个自定义列表如何创建一个注脚注释也是必不可少的KaTeX数学公式新的甘特图功能,丰富你的文章UML 图表FLowchart流程图导出与导入导出导入欢迎使用Ma...

2019-01-09 11:22:47 177

原创 前端开发环境

代码编辑工具断点调试工具版本管理工具代码合并和混淆工具——grunt依赖管理工具单元测试工具集成测试工具(模拟鼠标)11款常见nodejs 基础file-settings-plugins-angularjsangularjs batarang chorme开发和调试工具——nodejsnpm grunt

2016-05-24 18:14:41 662

原创 personal introduce

man is very strong at comprehensive capabilitymy name is xx, I graduated from jx normal university, I am good at comprehensive capability,  because I draw well,have nice feeling of art, i ha

2016-05-17 12:11:01 459

原创 web-front interview Q&A

What is difference between XHTML and HTML?XHTML is not so much different from HTML 4.01 standard. The major differences are:XHTML elements must be properly nested.XHTML elements must always be

2016-05-17 12:06:37 379

原创 前端一些网站

http://bootsnipp.com/Bootsnipp is an element gallery for web designers and web developers created by Maks, anybody using Bootstrap will find this website essential in their craft.

2016-05-16 16:49:03 374

原创 css 直角三角形 特殊三角形 对话气泡

直角三角形{  width: 0px;  height: 0px;  border-width:15px 15px 15px 5px;  border-style:solid;  border-color:transparent transparent gray gray;}{  width: 0px;  height: 0px;  bord

2016-05-13 17:27:18 1903

原创 实用css总结

css阴影效果实现方法分享.mydiv{width:250px;height:auto;border:#909090 1px solid;background:#fff;color:#333;filter:progid:DXImageTransform.Microsoft.Shadow(color=#909090,direction=120,strength=3);/*ie*/

2016-05-10 16:04:35 340

原创 laravel blade

windows分割线---1,先安装php环境:wampserver332位地址http://heanet.dl.sourceforge.net/project/wampserver/WampServer%203/WampServer%203.0.0/wampserver3.0.4_x86_apache2.4.18_mysql5.7.11_php5.6.19-7.0.4.exe

2016-05-09 17:56:34 539

转载 CSS Font-Size: em、px 、pt 、Percent之间的关系及换算

一、基础介绍 1、“Ems”: em,大小不固定 ,成为相对单位(body则相对浏览器的默认字体设置,子集相对父级), 浏览器默认设置字体大小为16px , 则1em = 16px , 且其可扩展,2em = 32px , 目前常用的字体大小px换算成em ,16px = 1em; 14px = 0.875em; 12px = 0.75em; 10px = 0.625em

2016-05-06 17:25:02 3368

转载 如何使用Git上传项目代码到github

这是我第一次应用git,以下仅供git的初学者参考。    github是一个基于git的代码托管平台,付费用户可以建私人仓库,我们一般的免费用户只能使用公共仓库,也就是代码要公开。这对于一般人来说公共仓库就已经足够了。    1.注册账户以及创建仓库    要想使用github第一步当然是注册github账号了。之后就可以创建仓库了(免费用户只能建公共仓库),Create a N

2016-05-04 19:05:57 366

转载 github如何解决failed to push some refs to git

在使用git 对源代码进行push到gitHub时可能会出错,信息如下2此时很多人会尝试下面的命令把当前分支代码上传到master分支上。$ git push -u origin master但依然没能解决问题3出现错误的主要原因是github中的README.md文件不在本地代码目录中4可以通

2016-05-04 19:05:00 513

原创 移动端切图备忘

head为什么要加 viewport metahttp://www.cnblogs.com/littledu/p/4011541.html

2016-05-01 10:45:08 400

转载 wampserver配置教程

一、安装wampserver      安装wampserver的过程很简单,只要一直点击next就可以完成安装了:依次按图操作了1      7、上图为选择默认浏览工具:安装过程中会提示要选择默认浏览工具,如上图所示,不过要注意哦,这个浏览工具指的可不是浏览器哦,它指的是windows的浏览器,也就是explorer.exe,默认的就是这个,直接点击“打开”就可以

2016-05-01 09:37:25 641

原创 css reset 重置样式 html5

/* html5doctor.com Reset Stylesheetv1.4.1 2010-03-01Author: Richard Clark - http://richclarkdesign.com*/html, body, div, span, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre,abbr,

2016-05-01 09:31:16 1550

原创 总结一些前端面试题

行内元素有哪些?块级元素有哪些?CSS的盒模型?块级元素:div p h1 h2 h3 h4 form ul行内元素: a b br i span input selectCss盒模型:内容,border ,margin,padding5.CSS引入的方式有哪些? link和@import的区别是?内联 内嵌 外链 导入区别 :同时加载前者无兼容性,后者CSS2.1

2016-04-28 08:12:04 464

原创 bootstrap样式大全

Theme Template for Bootstrap Hello, world! This is a template for a simple marketing or informational website. It includes a large callout called a jumbo

2016-04-26 22:02:44 3480

原创 切图以及实现过程中会遇到的一些事

切的像素大小,会影响性能。图片清晰度不回影响的情况下选小的top icon 保存为一个png 用no-repeat -pxcss选择符 简短相互不干涉

2016-04-22 00:19:43 408

原创 前端review,<!DOCTYPE html>

貌似我是大一还是大二开始学网页的,当初用的是dreamwave,都是自动生成的,也不会去深究它的意思。巴拉巴拉下面进入正文英语缩写:文档类型 (DTD)HTML 元素和文档类型(Doctype)请参阅这个 HTML 元素表,其中列出了每种元素会出现在哪个文档类型中html5中声明真是方便就html4里有许多种不同的声明。声明对大小写不敏感HT

2016-02-17 10:02:07 366

原创 英语还是要继续学——记录和外教进行口语训练

20160214我是听到懂外教说啥的,基本沟通没问题。但是一旦要我一次性说超过一句话,我就结巴。外教问我有没有英文名,鉴于我之前和三个外教说了三个不同的英文名,所以这次我就说我没英文名了,但是有个nickname,mosci。外教说我的名字像卡通人物名。还特地打cartoon出来,作为一个忍者神龟粉我还是知道cartoon的。然后外教问我退休后打算干啥,如果不是口语题而是平常交流我绝对

2016-02-16 16:45:38 663

原创 C++版下载每天网页&txt,c++获取当前时间yyyymmdd格式

这个是c++版的,比c sharp麻烦点,因为c#可以用一行代码直接获得yyyymmdd格式的时间,但是c++里面就要各种数据类型转换。#include  #include  #include  #include #include #include #include #include using namespace std;#define MAXBLO

2016-02-16 16:39:27 1342

原创 QT自动下载网页每天更新的文件

同事让我做的,那个网站每天都会更新股票数据,很好网页地址是www.xxxxx日期xxxxx.txt所以我只要每天下载当天的txt就ok了main.cpp代码#include #include #include #include #include #include #include #include #include #include int ma

2016-02-16 09:53:44 831

原创 matlab代码

以后再补充这是干嘛的,现在只是先整理下代码

2016-02-16 09:48:54 861

原创 以前写的matlab代码,有部分是从txt导数据到matlab里,还有合并矩阵

功能有把txt/excel表导数据到matlab里,还有合并矩阵,还有连mysql数据库我从以前的代码里找到,不知道这个版本是不是能运行的,但是也差不多就是这样。matlab中总是要转换数据的类型,心好累load 'X:/work/CN_Univ.mat't=dhfetch('S_SHARE_TOTAL','CN_Univ.RIC',datestr(date,'yyyy-mm-dd

2016-02-16 09:39:06 433

原创 以前写的比较实用的mysql代码[3]从一段话中获得关键信息

drop table stockinfo;select * from stockinfo;select * from tempcontent;set @str = '可关注凤凰传媒、全通经验、立思辰、鹏博士、科大讯飞、中文在线等。股市有风险,投资需谨慎。文中提及个股仅供参考,不作为买卖建议。';select * from stockinfo where charindex(

2016-02-16 09:31:07 712

原创 以前写的比较实用的mysql代码[2]从txt中读股票数据

从txt中读股票数据到mysql里drop table rc_position;create table rc_position(  account    char(12) not null,  exchange   smallint not null,  stockID char(6) not null,  size       int not null,  

2016-02-16 09:27:56 290

原创 以前写的比较实用的mysql代码[1]

SHOW variables LIKE 'event_scheduler';USE today;CREATE EVENT e_clearON SCHEDULE EVERY 1 DAY STARTS '2015-09-10 9:27:00'DO TRUNCATE TABLE today.tb_stop;CREATE EVENT e_shinsertON SCH

2016-02-16 09:26:45 231

编程珠玑第2版_修订版_nodrm.epub

编程珠玑第2版_修订版_修订版_nodrm.epub 该格式是macbook ebook格式

2019-07-16

PHP7实践指南_O2O网站与App后台开发

PHP7实践指南_O2O网站与App后台开发

2018-12-11

《微软的梦工场》清华大学出版社

《微软的梦工场》清华大学出版社《微软的梦工场》清华大学出版社

2018-04-24

python crash course

Python Crash Course is a fast-paced, thorough introduction to Python that will have you writing programs, solving problems, and making things that work in no time. In the first half of the book, you’ll learn about basic programming concepts, such as lists, dictionaries, classes, and loops, and practice writing clean and readable code with exercises for each topic. You’ll also learn how to make your programs interactive and how to test your code safely before adding it to a project. In the second half of the book, you’ll put your new knowledge into practice with three substantial projects: a Space Invaders–inspired arcade game, data visualizations with Python’s super-handy libraries, and a simple web app you can deploy online.

2017-12-24

Beginning Game Development with Python and Pygame

Like music and movies, video games are rapidly becoming an integral part of our lives. Over the years, youve yearned for every new gaming console, mastered each blockbuster within weeks after its release, and have even won a local gaming competition or two. But lately youve been spending a lot of time thinking about a game idea of your own, or are exploring the possibility of making a career of this vibrant and growing industry. But where should you begin?, Beginning Game Development with Python and Pygame is written with the budding game developer in mind, introducing games development through the Python programming language and the popular Pygame games development library. Authored by industry veteran and Python expert Will McGugan, who most recently worked on the MotorStorm game for Play Station 3, youll be privy to insights that will not only help you to exploit PyGame to its maximum potential, but also make you a more creative and knowledgeable games developer all round., Create advanced games by taking advantage of the popular open source Python programming language and Pygame games development library., Learn step-by-step through the creation of a real-world game (tank warfare), involving gaming preferences, sound, visual effects, and joystick/keyboard interaction., Discover the concepts that are crucial to success in todays gaming industry, such as support for multiple platforms, and granting users the ability to extend and customize your games.

2017-12-06

空空如也

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

TA关注的人

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