代码改变世界

Forbidden (403) CSRF verification failed. Request aborted.

2022-03-20 09:50 by jetwill, 331 阅读, 0 推荐, 收藏, 编辑
摘要:Forbidden (403) CSRF verification failed. Request aborted. You are seeing this message because this site requires a CSRF cookie when submitting forms. 阅读全文

Oracle – Quick Tip – Run OS Commands Within SQL*Plus

2022-03-09 11:01 by jetwill, 35 阅读, 0 推荐, 收藏, 编辑
摘要:Oracle – Quick Tip – Run OS Commands Within SQL*Plus SQL> HO[ST] [command] # https://docs.oracle.com/cd/B19306_01/server.102/b14357/ch12026.htm # http 阅读全文

怎样查看服务器是否在监听本地HTTPS 443端口

2022-03-03 09:51 by jetwill, 890 阅读, 0 推荐, 收藏, 编辑
摘要:怎样查看服务器是否在监听本地HTTPS 443端口 # 查看服务器 IP 地址 ip addr # 查看服务器是否在监听本地HTTPS 443端口 netstat -an | grep <IP_ADDR>:443 测试网络连通性,比如查看是否可以连接到某IP地址的某端口 # 使用 netcat 命令 阅读全文

HTML bdo 标签 用来 左右颠倒

2022-02-23 21:46 by jetwill, 65 阅读, 0 推荐, 收藏, 编辑
摘要:HTML bdo tag HTML tag stands for "BiDirectional Override" which is used to overrides the current/default text direction. This tag sets the direction o 阅读全文

Python中的类变量和成员变量

2022-02-21 21:32 by jetwill, 2477 阅读, 0 推荐, 收藏, 编辑
摘要:本文实例形式讲解了python的类变量和成员变量用法,对于Python程序设计有一定的参考价值。分享给大家供大家参考。具体如下: 先看看下面这段代码: class TestClass(object): val1 = 100 def __init__(self): self.val2 = 200 de 阅读全文

pip升级报错 ValueError: Unable to find resource t64.exe in package pip._vendor.distlib

2022-02-18 23:38 by jetwill, 490 阅读, 0 推荐, 收藏, 编辑
摘要:python -m pip install --upgrade pip pip升级报错 ValueError: Unable to find resource t64.exe in package pip._vendor.distlib 问题描述 使用pip安装第三方模块的时候,提示我pip版本过低 阅读全文

Notepad++ Search Result Window disappeared

2022-02-10 10:16 by jetwill, 157 阅读, 0 推荐, 收藏, 编辑
摘要:https://stackoverflow.com/questions/46632070/notepad-search-window-disappeared The issue seems happens if I change monitors configuration , e.g. if I 阅读全文

Oracle - How To Query If A User Has Execute Privilege on DBMS_LOB

2022-02-07 11:16 by jetwill, 14 阅读, 0 推荐, 收藏, 编辑
摘要:select grantee, owner, table_name, grantor, privilege, type from dba_tab_privs where table_name='DBMS_LOB'; select owner, object_type, object_name, st 阅读全文

查询 Oralce 某 schema 所拥有的权限

2021-11-03 21:22 by jetwill, 259 阅读, 0 推荐, 收藏, 编辑
摘要:--https://dba.stackexchange.com/questions/14901/oracle-list-users-with-access-to-certain-tables select lpad(' ', 2*level) || granted_role "User, his r 阅读全文

怎样用命令行导入注册表 .reg 文件

2021-10-12 17:34 by jetwill, 694 阅读, 0 推荐, 收藏, 编辑
摘要:https://stackoverflow.com/questions/49676660/how-to-run-the-reg-file-using-powershell Get-Command reg CommandType Name Version Source Application reg. 阅读全文
上一页 1 2 3 4 5 6 7 8 9 ··· 20 下一页