上一页 1 ··· 3 4 5 6 7 8 9 下一页
摘要: 常见的水果英语单词 apple ['pl] :苹果 banana [ b'nɑ:n] :香蕉 grape [grep] :葡萄 pineapple ['panpl] :菠萝 peach [pi:t] :桃 watermelon ['w:tmeln]:西瓜 strawberry ['str:bri]: 阅读全文
posted @ 2022-06-11 15:55 devgis 阅读(4215) 评论(0) 推荐(0) 编辑
摘要: C# 远程服务器 安装、卸载 Windows 服务,读取远程注册表,关闭杀掉远程进程 这里安装windows服务我们用sc命令,这里需要远程服务器IP,服务名称、显示名称、描述以及执行文件,安装后需要验证服务是否安装成功,验证方法可以直接调用ServiceController来查询服务,也可以通过远 阅读全文
posted @ 2022-06-11 15:48 devgis 阅读(389) 评论(0) 推荐(0) 编辑
摘要: 现在大家基本都是使用chrome,所以自带的必须卸载。 显示具体内容: dpkg --get-selections |grep firefox: 执行sudo apt-get purge将显示的结果全部添加到卸载列表 sudo apt-get purge firefox firefox-locale-en firefox-locale-zh-hans 阅读全文
posted @ 2022-05-13 09:38 devgis 阅读(512) 评论(0) 推荐(0) 编辑
摘要: 使用 APT 进行安装可通过几个命令来完成。 安装 .NET 之前,请运行以下命令,将 Microsoft 包签名密钥添加到受信任密钥列表,并添加包存储库。 打开终端并运行以下命令: Bash复制 wget https://packages.microsoft.com/config/ubuntu/1 阅读全文
posted @ 2021-01-15 19:39 devgis 阅读(534) 评论(0) 推荐(0) 编辑
摘要: C# 远程服务器 安装、卸载 Windows 服务,读取远程注册表,关闭杀掉远程进程 #region Windows Service 操作 /// /// 安装Windows 服务 /// ///可执行文件的完全路径 public void Install(string webIp, string 阅读全文
posted @ 2020-12-23 21:20 devgis 阅读(332) 评论(0) 推荐(0) 编辑
摘要: 使用WCF实现消息推送 1.协议 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.ServiceModel; namespace WCFHub.ISe 阅读全文
posted @ 2020-12-23 21:04 devgis 阅读(388) 评论(0) 推荐(0) 编辑
摘要: 各种数据类型(日期/时间、integer、floating point和numeric)转换成格式化的字符串以及反过来从格式化的字符串转换成指定的数据类型。下面列出了这些函数,它们都遵循一个公共的调用习 惯:第一个参数是待格式化的值,而第二个是定义输出或输出格式的模板。 函数 返回类型 描述 例子 阅读全文
posted @ 2020-12-23 21:00 devgis 阅读(12721) 评论(0) 推荐(0) 编辑
摘要: --按姓氏笔画排序 select * from student order by [name] collate chinese_prc_stroke_cs_as_ks_ws asc --默认按姓氏拼音排序 select * from student order by [name] asc --按姓氏 阅读全文
posted @ 2020-12-23 20:59 devgis 阅读(906) 评论(0) 推荐(0) 编辑
摘要: 导出 pg_dump 备份:pg_dump -h localhost -p 5432 -U tradesns -W -F c -b -v -f "/home/tradeworkwangbin/us2010.backup" us2010 恢复:pg_restore -h 192.168.0.100 - 阅读全文
posted @ 2020-12-23 20:56 devgis 阅读(142) 评论(0) 推荐(0) 编辑
摘要: create tablespace BSITS datafile 'D:\app\Administrator\product\11.2.0\dbhome_1\BSITS.DBF' size 256m autoextend on next 256m segment space management a 阅读全文
posted @ 2020-12-23 20:54 devgis 阅读(183) 评论(0) 推荐(0) 编辑
摘要: Oracle : SELECT * FROM ( SELECT A.*, ROWNUM RN FROM (SELECT * FROM T_CAR_BAYONET) A WHERE ROWNUM <= 40 ) WHERE RN >= 21 SQL Server: select top 10 * fr 阅读全文
posted @ 2020-12-23 20:52 devgis 阅读(416) 评论(0) 推荐(0) 编辑
摘要: PostgreSQL 利用Pgpool-II的集群搭建方案 1. 下载安装 在官网 http://pgfoundry.org/projects/pgpool 下载 pgpool-II 2.2.2.tar.gz ,执行以下命令安装: Java代码 http://mengqingyu.javaeye.c 阅读全文
posted @ 2020-12-23 20:26 devgis 阅读(542) 评论(0) 推荐(0) 编辑
摘要: 用户需要授予权限 grant change notification to hfspas; public void GetDatabaseChange() { string sql = "select * from t_prescription_handwork where trunc(checki 阅读全文
posted @ 2020-12-23 20:18 devgis 阅读(1220) 评论(1) 推荐(0) 编辑
摘要: ashx 获取ajax Post到后台json数据 前台页面代码: var json = [{ "Name": "Pavan Kumar Pabothu", "Age": 27, "ID": 361621 }, { "Name": "Reddaiah Raju Padhmaraju", "Age": 阅读全文
posted @ 2020-12-23 20:14 devgis 阅读(658) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Management; using System.ServiceProcess; using System.Text; using Syst 阅读全文
posted @ 2020-12-23 20:10 devgis 阅读(229) 评论(0) 推荐(0) 编辑
摘要: 相关享目托管在github: https://github.com/devgis/CSharpCodes 阅读全文
posted @ 2019-07-04 16:30 devgis 阅读(230) 评论(0) 推荐(0) 编辑
摘要: 相关享目托管在github: https://github.com/devgis/CSharpCodes 阅读全文
posted @ 2019-07-04 16:28 devgis 阅读(303) 评论(0) 推荐(0) 编辑
摘要: 相关享目托管在github: https://github.com/devgis/CSharpCodes 阅读全文
posted @ 2019-07-04 16:10 devgis 阅读(306) 评论(0) 推荐(0) 编辑
摘要: 这个工具用于分析文本文件中所有的英语单词 并且通过内置字典数据库工具对这些单词进行解析 可以生成表格形式 并且支持导出到excel文件中 用于学习单词 阅读全文
posted @ 2018-12-28 15:48 devgis 阅读(982) 评论(0) 推荐(0) 编辑
摘要: 最近玩某答题平台的时候遇到一道概率的问题 大概意思是5个球 3个白球2个绿球 抽两次 抽中绿球的概率有多少? 这道题很简单 其实就是对两次抽中的进行分类计算。 第一种算法: 5抽2 有三种情况是符合条件的 2次都抽中绿球的概率 2/5*1/4 先白后黑的概率 3/5*2/4 先黑后白的概率 2/5* 阅读全文
posted @ 2018-01-15 13:45 devgis 阅读(190) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 下一页