Giter Site home page Giter Site logo

gylidian.github.io's Introduction

💽 自组 NAS,运维入门
🎸 初学电吉他 + 乐理
👨‍💻 政采云 共享平台实习
👨‍💻 B站 主站基础架构组实习
🐕‍🦺 社畜浓度增加了
🥈 Hackathon
🤸🏽‍♀️ TypeScript 体操运动员
🕊 鸽子UP主,摸了,下次一定更
</2020>

<2021>
🪙 狗狗币, yyds!
📕 读了 组织社会学/景观社会/消费社会
🙏 琢磨 亚伯拉罕诸教
⛏️ MineCraft 1.16.5 + Create 0.3.1c
🎓 给爷整毕业了

gylidian.github.io's People

Contributors

tenvili avatar

Stargazers

 avatar

gylidian.github.io's Issues

给自己扫盲——文件完整性校验 - 啊哈呵嗨的个人博客

https://nuist.today/aUE-KU/

一直都在接触 md5 之类的东东,今天想起来深入了解一下,来弥补对这些加密算法常识上的缺失。嘛,文章还在写。什么是文件校验?文件校验 就是 使用算法验证计算机文件完整性的过程。你可以通过逐位(bit)比较两个文件来完成,但这需要同一文件的两个副本,并且可能会错过两个文件中可能出现的系统性损坏。更流行的方法是还存储文件的校验和(散列),也称为消息摘要,以供稍后比较。

又来盘点最大公约数的算法👩 - 啊哈呵嗨的个人博客

https://nuist.today/R52z1i/

你媽的,为什么又双叒叕开学了!假期,你不要停下来啊!嘛,第一节课是 算法设计与分析课,郑某人带的学生由原来的俺们整个软工三个班换成原来俺们一个班和计嵌软嵌了。首先呢,郑某人自我介绍了一下:”我是普通老师郑玉!”,嗯,普通市民刘青云?还是 普通家庭马化腾?开学第一节课就讲最大公约数(greatest common divisor,简写为gcd),老师要是不说我差点儿就忘了,俺就趁下课时间温习一下我遇

如何优雅地为博客添加打赏二维码功能 - 啊哈呵嗨

https://nuist.today/%E5%A6%82%E4%BD%95%E4%BC%98%E9%9B%85%E5%9C%B0%E4%B8%BA%E5%8D%9A%E5%AE%A2%E6%B7%BB%E5%8A%A0%E6%89%93%E8%B5%8F%E4%BA%8C%E7%BB%B4%E7%A0%81%E5%8A%9F%E8%83%BD/

1.打开“微信”。 2.打开“我”,然后点击“钱包”。 3.点击“收付码”。 4.点击“赞赏码”。 5.点击“开通赞赏码”。 6.添加“赞赏引导语”,还可以根据需要修改“赞赏金额”,然后点击“生成赞赏码”。 7.赞赏码生成完毕。

更相减损术部分的代码

老哥,更相减损术那部分的代码块中,最后一个demo好像得改下(你总结的好棒,学习了)

const gcd = (a, b) => {
  if(b == 0) return a;
  if(a < b) return gcd(b, a);
  else return gcd(a - b, b);
}
console.log(gcd(10, 25)); // output:5
console.log(gcd(9, 6)); // output:3
console.log(gcd(9, 8)); // output:1

JS.ORG CLEANUP

JS.ORG CLEANUP

Hello, it seems a js.org subdomain that was requested to target this repository no longer works.
The subdomain requested was gylidian.js.org and had the target of gylidian.github.io.
It produced the following failures when tested as part of the cleanup:

  • HTTP: Failed with status code '404 Not Found'
  • HTTPS: Failed with status code '404 Not Found'

To keep the js.org subdomain you should add a page with reasonable content within a month so the subdomain passes the validation.
Failure to rectify the issues will result in the requested subdomain being removed from JS.ORGs DNS and the list of active subdomains.

If you are wanting to keep the js.org subdomain and have added reasonable content, YOU MUST reply to the main cleanup issue with the response format detailed at the top to keep the requested subdomain.

🤖 Beep boop. I am a robot and performed this action automatically as part of the js.org cleanup process. If you have an issue, please contact the js.org maintainers.

《Tetris:99》俄罗斯方块吃鸡从入门到进阶 - 啊哈呵嗨的个人博客

https://nuist.today/QKS04c/

北京时间2019年2月14日上午9时,一场35分钟的任天堂直面会开始了。这次今年第一场直面会内容巨多,尤其是 《火焰纹章:风花雪月》、《任天堂明星大乱斗 特别版》3.0、《哆啦A梦:大雄的牧场物语》、《耀西的手工世界》《超级玛利欧制造 2》《塞尔达传说 织梦岛》等游戏,遭到了大家的热议,实在是太令人兴奋了!正当所有人沉浸在情人节的快感之中时,只有你对着屏幕上的 Nintendo Direct 高潮

从零开始的Hexo博客搭建教程(三):SEO优化 - 啊哈呵嗨,锂碘同学的个人博客

https://nuist.today/i5bofg/#more

🍰 本篇着重介绍了 Hexo 博客做 SEO 的一些小技巧,在内容优质程度不变的情况下如何针对搜索引擎展示或主动提交更多内容。为什么要做SEO?SEO”Search Engine Optimization”汉译为搜索引擎优化 ,搜索引擎优化是一种利用搜索引擎的搜索规则来提高目前网站在有关搜索引擎内的自然排名的方式,搜索引擎优化是提高网站在搜索引擎结果中排名的战略。SEO非常耗时间,但“结果”是增

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.