public static void WriteLogs(string fileName, string type, string content)
{
string path = AppDomain.CurrentDomain.BaseDirectory;
if (!string.IsNullOrEmpty(path))
{
path = AppDomain.CurrentDomain.BaseDirectory + fileName;
if (!Directory.Exists(path))
{
...
哪怕设置了最大化关闭以后,再次打开又回到原来的尺寸,这是2017部分版本的bug,以前的没这个问题,以后的版本也可能会自动解决,这里记录一下解决办法,说不定以后用的到
cd ~/111/
ag "width.*=\"720\"" --xml --hidden
搜出来相关项目下的.idea/workspace.xml里面width值为720的地方(这里我的屏幕是1440,720刚好显示一半宽度),修改为全屏宽度1440.
上面只是根据我自己的情况的记录,你的也可能不是720,反正搜.idea/w...
openssl req -new -nodes -sha256 -newkey rsa:2048 -keyout my.key -out my.csr
使用type作为字段名会出现这个错误:
ActiveRecord::SubclassNotFound: The single-table inheritance mechanism failed to locate the subclass: 'xxxx'. This error is raised because the column 'type' is reserved for storing the class in case of inheritance. Please rename this column if you didn't intend it to ...
默认的导致文件夹看不清楚
vi ~/.bashrc
加入下面一行:
LS_COLORS='ex=0;35:ow=1;32'
解决
Appearance & Behavior > Notifications
找到Gem Manager,把log取消掉
只需要给div加入下面的css属性:
关键属性:background、border、outline
position: absolute;
top: 20px;
left: 50px;
width: 200px;
height: 200px;
background: green;
z-index: 1000;
border: 5px solid #fff;
outline: 5px solid green;
以前我都是用两个div,大框套小框。真是...
截止目前,Rider还没有要支持VB.NET的迹象。只能看着C#流口水
首先一路cd跳到MSBuild.exe所在的目录
C:\Windows\Microsoft.NET\Framework\v4.0.30319>
我这里的版本是v4.0.30319,你可以根据自己电脑的具体情况选择版本。
然后运行编译命令:
MSBuild.exe "C:\Users\Administrator\Documents\Visual Studio 2015\Projects\ConsoleApplication6\ConsoleApplication6.sln" /...
dim x = 123
看上去舒服,打起字来也舒服。
var三个字母全用左手,还用到了最弱的小拇指。
dim双指并用,用的是最适合按键盘的食指和中指。
如果有一天我要发明一种语言,一定用dim作为定义变量的关键字
每一行代码都是有价值的,每一个错误都是有意义的。
今天走的弯路所带来的经验在N年后仍会发挥余热。
并集(union)
let a = new Set([1,2,3]);
let b = new Set([4,3,2]);
let union = new Set([...a, ...b]); // {1,2,3,4}
交集(intersection)
let a = new Set([1,2,3]);
let b = new Set([4,3,2]);
let intersection = new Set([...a].filter(x => b.has(x))); // {2,3}
差集(differen...
直观,json的结构一目了然
chrome就只能看原始的字符串了
开启https后我自己都经常打不开,只得重新用回http,虽然chrome浏览器会显示“不安全”,但没办法,总比打不开好。
至于打不开的原因不得而知
微软的东西不好找,作个记号
https://www.microsoft.com/zh-cn/download/details.aspx?id=35579
做个记号....................
有时候phpmyadmin连不上mysql数据库,试了一堆命令行如mysql.server restart,都不管用,后来从Monitor强制杀进程,顺利解决,附解决办法:
打开活动监视器(Monitor)
切换到CPU一栏
从右上角搜索框搜索“mysql”
强制进程退出
写再优雅的语言,都会觉得索然无味
在网站根目录建一个文件web.config
输入一下内容:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="OrgPage" stopProcessing="true">
<match url="^(.*)$" />
<conditions logicalGrouping="MatchAll">
<add input="{HTTP_HOST}" patte...