上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 18 下一页
2023年9月19日
摘要: 1、 首先需要注意配置的选项要和运行的选项一致(如果要运行debug下32位的程序就需要配置 Configuration选择Debug,platform选 32) 2、这个是根据需要生成lib、dll、还是windows程序来选择: VC++目录默认不要修改: 这里添加引入#include 所需要的 阅读全文
posted @ 2023-09-19 13:42 laremehpe 阅读(105) 评论(0) 推荐(0) 编辑
2023年9月18日
摘要: Building OpenSSL 1.1.1(b) Notes (Windows) · GitHub nasm下载地址: https://www.nasm.us/pub/nasm/releasebuilds/2.16.01/win64/nasm-2.16.01-installer-x64.exe o 阅读全文
posted @ 2023-09-18 15:35 laremehpe 阅读(70) 评论(0) 推荐(0) 编辑
摘要: 找到vim的配置文件vimrc 添加 set t_u7= #或者 set ambw=double linux - Why is VIM starting in replace mode? - Super User 阅读全文
posted @ 2023-09-18 00:27 laremehpe 阅读(217) 评论(0) 推荐(0) 编辑
2023年9月12日
摘要: 文件位置: vi /etc/vim/vimrc.tiny set history=50 set ruler set hls set nocompatible set bs=2 set sw=2 阅读全文
posted @ 2023-09-12 23:14 laremehpe 阅读(19) 评论(0) 推荐(0) 编辑
摘要: const param1 = '123456' const securityEncode = function(input1, input2, input3) { var dictionary = input3; var output = ""; var len, len1, len2, lenDi 阅读全文
posted @ 2023-09-12 00:19 laremehpe 阅读(40) 评论(0) 推荐(0) 编辑
2023年9月9日
摘要: #include <stdio.h> #include <Windows.h> void __cdecl OutputDebugPrintf(const char* format, ...) { va_list vlArgs; char* strBuffer = (char*)GlobalAlloc 阅读全文
posted @ 2023-09-09 14:13 laremehpe 阅读(30) 评论(0) 推荐(0) 编辑
摘要: 以管理员的身份运行powershell: #添加ssh服务器功能Add-WindowsCapability -Online -Name OpenSSH.Server* PowerShell Get-Service 命令检查 ssh-agent 和 sshd 服务的状态: Get-Service -N 阅读全文
posted @ 2023-09-09 13:29 laremehpe 阅读(127) 评论(0) 推荐(0) 编辑
2023年9月8日
摘要: 替换/etc/init.d/isc-dhcp-server文件:(引自 https://www.linux.org/threads/isc-dhcp-server-kali-bug.19233) #!/bin/sh # # ### BEGIN INIT INFO # Provides: isc-dh 阅读全文
posted @ 2023-09-08 17:24 laremehpe 阅读(65) 评论(0) 推荐(0) 编辑
摘要: 1 部署服务端 1.1 关闭防火墙: centos: #注意这条指令只会临时关闭防火墙,重启失效systemctl stop firewalld#永久关闭防火墙(重启生效)systemctl disable firewalld 查看防火墙是否已经关闭: systemctl status firewa 阅读全文
posted @ 2023-09-08 10:29 laremehpe 阅读(67) 评论(0) 推荐(0) 编辑
2023年8月25日
摘要: 首先在gradle文件中配置cmake:注意文件路径一定要对应上 android { //... defaultConfig { //... externalNativeBuild { cmake { cppFlags "-frtti -fexceptions -Wno-deprecated-dec 阅读全文
posted @ 2023-08-25 15:00 laremehpe 阅读(108) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 18 下一页