- 博客(11)
- 资源 (1)
- 收藏
- 关注
原创 2020-09-17
从Excel中读取邮件地址,通过Outlook Exchange查询姓名和部门,并写回表格。Sub Run()Dim emailAddr As StringDim cell As RangeDim myXL As Excel.ApplicationDim wb As Excel.workbookDim colAL As Outlook.AddressListsDim oAL As Outlook.AddressListDim colAE As Outlook.AddressEntries
2020-09-17 09:54:53
135
转载 Enable wake-on-lan with NetworkManager
This little tip enables wake-on-lan on our network interfaces so the computer can be awaken with a magic packet from other host in the same network. First, identify your connection:# nmcli conn...
2018-07-28 23:07:58
521
原创 keras无法load_data()解决方法
由于默认是从amazon网站下载,被墙了,所以采取折中方案,使用浏览器下载好, 例如imdb.npz, 然后使用如下代码解析。import numpy as np# Load test dataimdb_data = np.load('imdb.npz')imdb_data_dict = dict(zip(('train_data', 'train_label', 'test_da...
2018-07-27 11:29:53
6084
转载 Programming STM32-Discovery using GNU tools. Startup code
Start up code is run just after microcontroller is reset and is executed before main program. As linker script, startup code usually is implemented as universal code for all same microcontroller type.
2015-08-30 20:59:23
330
转载 Programming STM32-Discovery using GNU tools. Linker script
Previously we went through setting up a development environment for ARM Cortex-M3 microcontroller. We decided that two equal choices will do same job – either CodeSourcery G++ Lite or Yagarto. Both us
2015-08-30 20:55:36
397
原创 ubuntu系统firefox升级adobeplayer的方法(tar.gz)
1. 首先下载adobe_player安装包 tar.gz2. 然后将该安装包放到一个合适的路径下。 例如~/Software3. 执行tar -zvxf 文件名字.tar.gz4. 此时可以看到 libflashplayer.so 和usr文件夹5. 将 libflashplayer.so 复制到浏览器的plugins 路径 (可以通过 locate firefox |
2015-03-15 20:25:32
378
转载 回调函数使用方法
void CALLBACK TimeProc(UINT wTimerID, UINT msg, DWORD dwUser, DWORD dwl, DWORD dw2);
2014-04-08 22:47:56
534
转载 vc++获取事件的方法
//方案— 优点:仅使用C标准库;缺点:只能精确到秒级 #include #include int main( void ) { time_t t = time(0); char tmp[64]; strftime( tmp, sizeof(tmp), "%Y/%m/%d %X %A 本年第%j天 %z",localtime(&t) );
2014-04-07 11:08:25
556
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人