Giter VIP home page Giter VIP logo

wenchao.ren's Introduction

Hi there 👋

Welcome to my github homepage, I hope you can find the resources you need.

wenchao.ren's People

Contributors

xkrivzooh avatar

Stargazers

 avatar

Watchers

 avatar  avatar

wenchao.ren's Issues

使用utterances作为hugo博客评论插件 | 被遗忘的博客

使用utterances作为hugo博客评论插件 | 被遗忘的博客

之前我的博客使用的是disqus来做评论插件的,但是disqus实际上在国内不挂梯子的情况下是不能访问的,所以即便是我自己,绝大多数的时候是看不到评论的(虽然平时也确实没什么人评论)。 今天中午在浏览自

https://wenchao.ren/posts/%E4%BD%BF%E7%94%A8utterances%E4%BD%9C%E4%B8%BAhugo%E5%8D%9A%E5%AE%A2%E8%AF%84%E8%AE%BA%E6%8F%92%E4%BB%B6/

About | 被遗忘的博客

About | 被遗忘的博客

About 欢迎访问这个被遗忘的站点 关于这个站点 如同站点标题描述的一样,这是一个被遗忘的站点,没有任何的推广宣传,没做任何的SEO优化,它就静悄悄的存在着,是不是还可能因为各种原因而无法被访问到。这个站点主要是

https://wenchao.ren/about/

自己实现LRU Cache | 被遗忘的博客

自己实现LRU Cache | 被遗忘的博客

今天闲的无事,写一个LRU的缓存练练手,不过提前说好哈,最好的办法是直接使用Guava中的方法: import com.google.common.cache.CacheBuilder; import java.util.concurrent.ConcurrentMap; public class GuavaLRUCache { public static void main(String[] args) { ConcurrentMap<String, String> cache = CacheBuilder.newBuilder() .maximumSize(2L) .<String, String>build().asMap(); cache.put("a", "b"); cache.put("b", "c"); System.out.println(cache); cache.put("a", "d"); Sys

https://wenchao.ren/posts/%E8%87%AA%E5%B7%B1%E5%AE%9E%E7%8E%B0lru-cache/

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.