# Sorce Files swap.h 1void swap(int &a, int &b); swap.cpp 123456#include "swap.h"void swap(int &a, int &b){ (a ^= b), (b ^= a), (a ^= b);} main.cpp 12345678910111213141516171819202122#include <iostream>#include...

转载: ISO 8601: the better date format If you haven’t been living under a rock, you’ve probably heard that there are different date formats in the world such as the American one (mm/dd/yyyy) and the European one (dd.mm.yyyy). If you’re smart enough, you’ve probably also noticed that the American one...

# grep grep 是文本查找命令,可以通过正则查找匹配。 1234567891011$ grep 'root' passwdroot:x:0:0:root:/root:/bin/bash$ grep '^\w\{4\}:'...

转载: Hashing in Action Understanding bcrypt The bcrypt hashing function allows us to build a password security platform that scales with computation power and always hashes every password with a salt. In previous posts to this Authentication Saga, we learned that storing passwords in plaintext must...

转载:【必须学好】字典、哈希与 Map_niu0147 的专栏 - CSDN 博客 在实际问题中,按照给定的值进行数据查询是经常遇到的,比如,在电话号码簿中查询某个人的电话号码;在图书馆中按照 ISBN 编号查找某本书的位置;在地图中按照坐标查找某个地点的地名等等。为此,人们创造了一种能够根据记录的关键码 (也就是用以标识数据在记录中的存放位置的数据项) 方便的检索到对应的记录信息的数据结构,这就是字典 (Dictionary)。 #...

转载: Discovering Python 3’s pathlib – Dante’s Python musings The pathlib is one of the new features in Python 3 I loved immediatly when I recognized it’s advantages. The pathlib a sort of a swiss knife tool and more than capable to replace os.path because it gives object orientated programming a...

转载:【Python】XML の要素・属性・内容を削除する (ElementTree) | 鎖プログラム # サンプル XML # sports.xml 1234567891011<?xml version="1.0" encoding="UTF-8" ?><sports> <sport order="001"> <name>サッカー</name>...

转载:带圆圈的数字和 markdown 常用表达式记录 Circled Number ⓪ ① ② ③ ④ ⑤ ⑥ ⑦ ⑧ ⑨ ⑩ ⑪ ⑫ ⑬ ⑭ ⑮ ⑯ ⑰ ⑱ ⑲ ⑳ ㉑ ㉒ ㉓ ㉔ ㉕ ㉖ ㉗ ㉘ ㉙ ㉚ ㉛ ㉜ ㉝ ㉞ ㉟ ㊱ ㊲ ㊳ ㊴ ㊵ ㊶ ㊷ ㊸ ㊹ ㊺ ㊻ ㊼ ㊽ ㊾ ㊿ These are specifically sans-serif 🄋 ➀ ➁ ➂ ➃ ➄ ➅ ➆ ➇ ➈ ➉ Black Circled Number ⓿ ❶ ❷ ❸ ❹ ❺ ❻ ❼ ❽ ❾ ❿⓫ ⓬ ⓭ ⓮ ⓯ ⓰ ⓱ ⓲ ⓳ ⓴ These are specifically...

转载: Draw Diagrams With Markdown Typora supports some Markdown extensions for diagrams, once they are enabled from preference panel. When exporting as HTML, PDF, epub, docx, those rendered diagrams will also be included, but diagrams features are not supported when exporting markdown into other file...

转载:Form_Form Builder 本地部署运行的实现(案例)- 东方瀚海 # Form Builder 本地部署运行的实现 在做开发时,总是希望 Form Builder 可以在本地进行编译开发,不需要总是上传至服务器编译,以下提供了一种方式,可以在本地编译 fmb 文件,并运行,节省部分开发时间 不过这种方式只适合非基于 Template.fmb 开发的本地编译,算是一种缺点。 Step1. 在 Form 本地运行时会提提示 FRM-10142: The HTTP Listener is not running on Hostname at port 889 Step2. 启动...