摘要:
Centos中的网络设置使用nmcli命令。 1、查看当前的网卡信息:nmcli connnection show 2、使用nmcli命令手工配置网卡 阅读全文
摘要:
混杂模式 全部允许:所有数据都分别发送到虚拟机和主机。 允许虚拟电脑:所有数据仅发送到虚拟机。 拒绝:虚拟机和主机仅接收目的地址是自己的数据。 全部允许:所有数据都分别发送到虚拟机和主机。 允许虚拟电脑:所有数据仅发送到虚拟机。 拒绝:虚拟机和主机仅接收目的地址是自己的数据。 阅读全文
摘要:
今天从git上更新项目,生成时遇到一个问题(如图): 在网上查了一圈,没找到好的解决方法,没办法只能尝试自己来解决。 首先这个项目不是.net core 项目,应该不会有project.json这个文件。 所以在项目文件夹下搜索,还真搜到几个.json 文件,其中一个就是project.assets 阅读全文
摘要:
系统中有这样一个表table_ids,parrent_ids保存的是一串用逗号隔开的id 需求:以orleid为依据,拼接id、parent_ids,同时要求去除重复的id。 思路:先拼接id、parent_ids为一个字符串(暂且叫idstr),去除最后一个逗号,然后以roleid为依据,把ids 阅读全文
摘要:
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace mqnh { class flagdemo { public void flagtest() { ... 阅读全文
摘要:
原文地址:https://go.microsoft.com/fwlink/?LinkId=301862 Bundling and minification are two techniques you can use in ASP.NET 4.5 to improve request load ti 阅读全文
摘要:
SELECT POSITION('2' IN '1234') 阅读全文
摘要:
grant all privileges on *.* to name@localhost identified by '1'; flush privileges; 阅读全文