06 2021 档案

摘要:#### 1. 容易居高临下 人的身份有高有低,有时高低就是个人感觉。一旦被感觉“高高在上”,可能关系就会转变。 2. 容易自我炫耀 交谈中,不要炫耀自己的长处、成绩,更不要或明或暗、拐弯抹角地为自己吹嘘,以免使人反感。 3. 容易口若悬河 当对方对你所谈的内容,不懂或不感兴趣,不要不顾对方的情绪, 阅读全文 »
posted @ 2021-06-26 09:18 艾孜尔江 阅读(58) 评论(0) 推荐(0) 编辑
摘要:/************************************************************************* > File Name: add.cpp > Author: Alexander > Mail: mysoft@111.com > Created T 阅读全文 »
posted @ 2021-06-24 10:45 艾孜尔江 阅读(605) 评论(0) 推荐(0) 编辑
摘要:使用时请注意更改下方的安装路径,同时特别注意最后一个路径后面加一个斜杠。 Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\*\shell\VSCode] @="Open with VSCode" "Icon"="C:\\Software 阅读全文 »
posted @ 2021-06-24 10:28 艾孜尔江 阅读(79) 评论(0) 推荐(0) 编辑
摘要:Graphical user interfaces are super friendly to computer users. They were introduced in reaction to the perceived steep learning curve of command-line 阅读全文 »
posted @ 2021-06-22 19:35 艾孜尔江 阅读(72) 评论(0) 推荐(0) 编辑
摘要:multiCam.html: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> < 阅读全文 »
posted @ 2021-06-22 19:15 艾孜尔江 阅读(315) 评论(0) 推荐(1) 编辑
摘要:#!/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 艾孜尔江 阅读(72) 评论(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 艾孜尔江 阅读(100) 评论(0) 推荐(0) 编辑
摘要:// by Alexander // 由艾孜尔江制作,直接复制本JavaScript脚本并使用Node命令在终端内运行即可在本机80端口实现HTTP服务器. module.exports = /******/ (() => { // webpackBootstrap /******/ var __w 阅读全文 »
posted @ 2021-06-19 20:22 艾孜尔江 阅读(540) 评论(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 艾孜尔江 阅读(72) 评论(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 艾孜尔江 阅读(103) 评论(0) 推荐(0) 编辑
摘要:/* 问: 写一个宏可以将一个数字的奇数位和偶数位交换 分析: 将一个数字的奇数位提取出来并向左移动1位,偶数位提取出来并向右移动1位,将奇数位与偶数位移位后的值相加即可以实现。 例如:11 >1011 奇数位提取出来为0001 >向左移动1位为0010 偶数位提取出来为1010 >向右移动1位为0 阅读全文 »
posted @ 2021-06-14 22:56 艾孜尔江 阅读(451) 评论(0) 推荐(0) 编辑
摘要:Vector4 Transform::Homogenize(Vector4& result, const Vector4& vec4ToBeHomogenized) { if (vec4ToBeHomogenized.getW() == 0.f) { return Vector4(); } floa 阅读全文 »
posted @ 2021-06-14 21:26 艾孜尔江 阅读(173) 评论(0) 推荐(0) 编辑
摘要:笔者以前在使用Dev C++的时候就出现过编辑器内中文字符或者其它文字字符乱码的情况,而今在VS Code中也出现了这个情况,好在VS Code是开源的,因此,相信它肯定是有一个地方可以设置字符格式。 带着这样的信心和疑问,笔者用快捷键 shift+ctrl+p 打开了 User Settings, 阅读全文 »
posted @ 2021-06-14 10:17 艾孜尔江 阅读(306) 评论(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 艾孜尔江 阅读(91) 评论(0) 推荐(0) 编辑
摘要:在平时的工作中我们大多数情况下喜欢使用Tortoise SVN之类的可视化版本控制工具,但笔者发现,命令行的方式进行版本控制在执行速度上将会更快一些。尽管在大多数情况下使用命令行并不是很方便,但只要用户习惯了,就非常顺畅了。针对于文件比较则还是可视化的会更加清晰一些。笔者下方展现了常用的SVN命令, 阅读全文 »
posted @ 2021-06-01 10:14 艾孜尔江 阅读(550) 评论(1) 推荐(1) 编辑

点击右上角即可分享
微信分享提示