上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 36 下一页
摘要: #!/usr/bin/env python # -*- coding:utf-8 -*- # 爬取妹子图 # url:http://www.netbian.com/meinv/ # http://www.netbian.com/meinv/index_2.htm import urllib.requ 阅读全文
posted @ 2021-06-22 12:58 艾孜尔江 阅读(67) 评论(0) 推荐(0) 编辑
摘要: Main.java : import java.io.IOException; /** * The sole purpose of this class is to hold the main method. * * Any other use should be placed in a separ 阅读全文
posted @ 2021-06-22 09:25 艾孜尔江 阅读(95) 评论(0) 推荐(0) 编辑
摘要: // by Alexander // 由艾孜尔江制作,直接复制本JavaScript脚本并使用Node命令在终端内运行即可在本机80端口实现HTTP服务器. module.exports = /******/ (() => { // webpackBootstrap /******/ var __w 阅读全文
posted @ 2021-06-19 20:22 艾孜尔江 阅读(462) 评论(0) 推荐(0) 编辑
摘要: 代码如下: #include <iostream> void RefConst() { char greeting[] = "Hello world!"; // (0) char* p = greeting; // non-const pointer, non-const data const ch 阅读全文
posted @ 2021-06-17 20:33 艾孜尔江 阅读(70) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <cstdlib> using namespace std; int func1(),func2(),func3(); int main(int argc,char * argv[]) { _onexit(func2); //函数注册时入栈, 阅读全文
posted @ 2021-06-14 22:57 艾孜尔江 阅读(100) 评论(0) 推荐(0) 编辑
摘要: /* 问: 写一个宏可以将一个数字的奇数位和偶数位交换 分析: 将一个数字的奇数位提取出来并向左移动1位,偶数位提取出来并向右移动1位,将奇数位与偶数位移位后的值相加即可以实现。 例如:11 >1011 奇数位提取出来为0001 >向左移动1位为0010 偶数位提取出来为1010 >向右移动1位为0 阅读全文
posted @ 2021-06-14 22:56 艾孜尔江 阅读(430) 评论(0) 推荐(0) 编辑
摘要: Vector4 Transform::Homogenize(Vector4& result, const Vector4& vec4ToBeHomogenized) { if (vec4ToBeHomogenized.getW() == 0.f) { return Vector4(); } floa 阅读全文
posted @ 2021-06-14 21:26 艾孜尔江 阅读(165) 评论(0) 推荐(0) 编辑
摘要: 笔者以前在使用Dev C++的时候就出现过编辑器内中文字符或者其它文字字符乱码的情况,而今在VS Code中也出现了这个情况,好在VS Code是开源的,因此,相信它肯定是有一个地方可以设置字符格式。 带着这样的信心和疑问,笔者用快捷键 shift+ctrl+p 打开了 User Settings, 阅读全文
posted @ 2021-06-14 10:17 艾孜尔江 阅读(297) 评论(1) 推荐(0) 编辑
摘要: #include <iostream> #include <cstdlib> using namespace std; int func1(),func2(),func3(); int main(int argc,char * argv[]) { _onexit(func2); //函数注册时入栈, 阅读全文
posted @ 2021-06-12 21:14 艾孜尔江 阅读(82) 评论(0) 推荐(0) 编辑
摘要: 在平时的工作中我们大多数情况下喜欢使用Tortoise SVN之类的可视化版本控制工具,但笔者发现,命令行的方式进行版本控制在执行速度上将会更快一些。尽管在大多数情况下使用命令行并不是很方便,但只要用户习惯了,就非常顺畅了。针对于文件比较则还是可视化的会更加清晰一些。笔者下方展现了常用的SVN命令, 阅读全文
posted @ 2021-06-01 10:14 艾孜尔江 阅读(541) 评论(1) 推荐(1) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 36 下一页