EKsumic's Blog

let today = new Beginning();

Click the left button to use the catalog.

Sort By :
Default
UpdateTime
Reads
RSS  RSS

OR 日语会话快速入门&掌握

我的语言学习建议主要有两个: 不要学习“不需要的东西”。 积极地和外国人说话并思考和外国人的话题,比如“自我介绍”“爱好”“自我国家的文化”等等这样内容就很常出现。 我们很多人学习语言的时候都是从书店里面买语法参考书和 ...

2020-06-30 22:46:51

1k+ 1593 reads

0 comments

OR 通过互联网真的能获得所有的知识吗?

通过互联网真的能获得所有的知识吗? 答案是No! 一开始我也是这么想的:有百度不就够了吗?百度一下,你就知道! 可是似乎并不是这样的。 问题在于,网络究竟能提供多少程度的知识? 以我目前的经历,我所知道的是,在中国互联网上,你能搜到的最多的是 ...

2020-06-27 10:18:49

1k+ 1445 reads

0 comments

OR 评论区被放垃圾评论怎么办?

如图所示,一般情况下,每个博客的评论区都会有验证码,这是必须做的工作。 但是你会发现,即使有验证码,hacker还是能把垃圾评论放到你的网站上,这也是为什么谷歌验证要用图片识别。 添加验证码其实不是很好的解决方案,因为 ...

2020-06-25 19:22:42

1k+ 1321 reads

0 comments

OR .NET Core 2.1 LTS版本到期会怎么样?

先说结论: 简单来讲,就是以后出BUG和安全问题,Microsoft不会再修复了。终止支持是指Microsoft不再提供修补程序,更新或在线技术帮助的日期。在此日期临近时,请确保已安装最新的可用更新*。如果没有Microsoft支持,您将不再获得可以帮助保护您的计算机免受有害病毒,间谍软件和其他可能窃取您的个人信息的恶意软件的安全更新 ...

2020-06-25 05:16:58

1k+ 1664 reads

0 comments

OR CSS3彩色渐变效果实现

/*start*/ h1,.user-name{ color: #f35626; background: coral; background-image: -webkit-linear-gradient(45deg,#f35626,#feab3a); -webkit-background-clip: text; -webkit-text-fill-color: transparent; -webkit-animation: hue 6s infinite linear; } @-webkit-keyframes hue { from { -webkit-filter: hue-rotate(0deg); } to { -webkit-filter: hue-rotate(-360deg); } } /*end*/ ...

2020-06-23 11:10:33

1k+ 1279 reads

0 comments

OR Mathjax3.0 数学公式HTML渲染插件测试

基本上,我还是比较担心,引入的样式会和我的样式冲突。 目前没有发现问题,一旦发现问题,我就准备撤销引用,改CKEditor直引 ...

2020-06-23 08:30:06

1k+ 1506 reads

0 comments

OR SqlException:关键字'SELECT'附近有语法错误。“)”附近有语法错误。“OFFSET”附近有语法错误。在FETCH语句中选项NEXT的用法无效

浏览器报错页面: SqlException: 关键字 'SELECT' 附近有语法错误。 “)”附近有语法错误。 “OFFSET”附近有语法错误。 在 FETCH 语句中选项 NEXT 的用法无效。 错误位置:这是一个来自.NET Core 2.1 迁移到3.1之后发生的错误,开始我是以为是数据库问题,升级了数据库之后,依旧报错。于是我选择了卸载所有数据库并重新安装SQL Server 2017 Express版本 ...

2020-06-22 16:39:04

1k+ 1615 reads

0 comments

OR .NET Core 2.1 迁移至 3.1 踩坑记录

首先,第一个大坑也是迁移到3.1到最后已经No Error才发现的: 你再也不能使用SQL Server 2008 R2了! 你再也不能使用SQL Server 2008 R2了! 你再也不能使用SQL Server 2008 R2了!这个2012 R2+可不是写着玩的,是真的必须升级数据库! 好,接着讲其它的坑:当你把Visual Studio 2019升级到16.6.2的时候,你的nuget包管理器就装不上任何包了,会一直报错,Exception from HRESULT: 0x80020009 ...

2020-06-21 14:39:57

1k+ 1953 reads

1 comments

OR .NET Core 评论区建立逻辑

材料:邮箱+验证码 一般博客评论区制作 通常情况下,我们要准备Id和ParentId两个字段, 在取数据的时候,第一步先foreach评论表钟ParentI=0的字段,这表示基本楼层, 只有当ParentId≠0,才知道这是回复给楼层的。 写.cshtml代码的话,基本逻辑是 ...

2020-06-20 00:24:26

1k+ 1301 reads

2 comments

OR [句子对比]It took me a lot of time vs. It took a lot of my time.

对比来看,其实这两句表达的意思是相同的。 但是这两句话如果要带着语气说的话,第一句可以强调时间长,第二句可以强调是我。 书面上,感觉第一句更加谦逊。 因为用ME会让人感觉更加谦逊,在翻译“我和你,心连心”这样的歌词的时候,还是特意翻译成了“You and ...

2020-06-19 11:30:14

1k+ 1562 reads

0 comments

OR やっと私のコメントエリアが完成しました!

やっと私のコメントエリアが完成しました! 本当に疲れました! この機能を実現するために、すでに24時間を超えて連続して働いています。この時間に完成できて本当によかったです。 元々は48時間以上かかると思います ...

2020-06-19 05:17:00

1k+ 1234 reads

0 comments

OR ASP .NET Core 搭配IIS+Cloudflare的真实IP问题

基本环境: .NET Core 2.1 Runtime Windows Server 2016 步骤1: 在Startup.cs文件里面添加: 步骤2: 在你的控制器里面添加: ...

2020-06-15 00:21:16

1k+ 1342 reads

0 comments

QA 什么是白左?

注:本文章皆为搜集信息、观点,并不代表本人立场。 什么是“白左”? “白左”是源自中国大陆的网络流行贬义词。 “白左”这个词特指一些天真的西方人,他们受过良好的教育,却只为了满足自己的道德优越感而提倡和平与平等。(来自中国大陆) ...

2020-06-13 20:54:45

1k+ 1542 reads

0 comments

OR 博客打赏功能制作(附源码)及详细说明

关于CSS: 图片替换总数为3张,分别为引号、radio1、radio2图片 .content类可能与你的CSS冲突,有必要修改你的样式 关于JavaScript: 无需改动 关于HTML: alipay.jpg\wechat.jpg\alipayimg.png\wechatimg.png\close.jpg 要准备好 注意裁剪二维码,大小为140*140px ...

2020-06-13 18:23:18

1k+ 1524 reads

0 comments

OR 如何防止Google、百度等搜索引擎抓取页面上的图片?第一次写robots.txt的注意事项

​ 以Google的官方说明为例: User-agent: Googlebot-Image Disallow: /images/dogs.jpg 但你实际并不想只屏蔽谷歌,还想屏蔽百度、360、搜狗等等,为了方便,直接修改为: User-agent:* Disallow: /images/dogs.jpg   第一次写robot.txt,注意项 ...

2020-06-13 05:14:26

1k+ 1360 reads

0 comments

OR “ありがとう≠謝謝”、使用“ありがとう”的注意项

情景1: A:AとBの違いを教えてくれませんか?____________________ 划线处不能使用ありがとうございます。 注意项: 「ありがとう在拜托人的时候,不应该使用」 为什么不能这么做? 如果你在拜托别人的时候,说了“ありがとう”,会有一种 ...

2020-06-12 18:46:47

1k+ 1456 reads

0 comments

OR How to create a comment area for a website 

Basically, we need to figure out whether you want to create a comment area for a personal blog or for a forum. For personal Blog,You don't need to think about user login or registration. But the forum is on the opposite side ...

2020-06-09 10:22:50

2k+ 2144 reads

118 comments

OR How to add hidden sidebar to websites

On blogger, I found a great solution:This is what I see when I press F12 in chrome. This CSS code may help you find out how to design a hidden sidebar. This will be very useful for improving your mobile user experience ...

2020-06-07 21:59:29

1k+ 1237 reads

2 comments

OR There's a serious problem with my RSS Feed

I don't know why my RSS doesn't seem to work. By the way, I'm a rookie at building websites. Now I think my RSS format is right, because I got the content of my website on feedly. But the problem is that feedly can only read last month's content ...

2020-06-06 18:14:40

1k+ 1297 reads

1 comments

OR CSS for shadow effect of div

CSS code for shadow effect of div ...

2020-06-06 17:48:41

1k+ 1203 reads

0 comments

OR How to shut up those who don't understand.

What I know about Anduin: HE is a selfless, knowledgeable and helpful person... Why did Anduin leave Bilibili? maybe…… ...

2020-06-06 02:22:32

1k+ 1842 reads

0 comments

OR トランプ与特朗普有区别吗?

又被沙雕机翻给逗乐了: トランプ被翻译成了特朗普,但是和现任美国总统一点关系都没有。 Trump指的是扑克,在英语中有王牌的意思,日文里面トランプ通常是指合宿晚上和同学或好友一起打牌。 情景都是非常确定的,有修学旅行就一定有トランプ,这是非常常见的东西了 ...

2020-06-05 20:42:05

1k+ 1358 reads

0 comments

OR ' can be used instead of \' escape characters

I have to say that I've been learning .NET Core programming for so long that I only found out today that I didn't know anything about the use of quotation marks in JavaScript. At the same time, I found an interesting thing: ' replaced single quotation mark. I mean, ' replaced \' ...

2020-06-05 18:17:09

1k+ 1315 reads

0 comments