Giter VIP home page Giter VIP logo

bebound.github.io's People

Contributors

bebound avatar

Watchers

 avatar  avatar  avatar

bebound.github.io's Issues

posts/build-your-own-tiny-tiny-rss-service/

Build Your Own Tiny Tiny RSS Service · KK's Blog (fromkk)

After Inoreader change the free plan, which limit the max subscription to 150, I begin to find an alternative. Finally, I found Tiny Tiny RSS. It has a nice website and has the fever API Plugin which was supported by most of the RSS reader app, so you can read RSS on all of you devices.
This post will tell you how to deploy it on your server.
Prerequisite You need to install Docker and Docker Compose before using docker-compose.

http://localhost:1313/posts/build-your-own-tiny-tiny-rss-service/

posts/c3-linearization-and-python-mro--method-resolution-order/

C3 Linearization and Python MRO(Method Resolution Order) · KK's Blog (fromkk)

    Python supports multiple inheritance, its class can be derived from more than one base classes. If the specified attribute or methods was not found in current class, how to decide the search sequence from superclasses? In simple scenario, we know left-to right, bottom to up.

https://www.fromkk.com/posts/c3-linearization-and-python-mro--method-resolution-order/

posts/internet-account-keeps-coming-back-after-deletion-on-macos/

Internet Account Keeps Coming Back after deletion on MacOS · KK's Blog (fromkk)

Today I tried to delete an inactive Internet account on system preference. It was deleted successfully but come back again after 20 seconds. This drives me nuts.
I tried these methods, but none of them works.
Boot in safe mode, delete account. Delete record in ZACCOUNT table in ~/Library/Accounts/Accounts4.sqlite. Delete related items in Keychain Access APP. Later, RedHatDude’s answer in this post gives me a clue, it looks like a iCloud sync problem.

https://www.fromkk.com/posts/internet-account-keeps-coming-back-after-deletion-on-macos/

posts/enable-c-extension-for-gensim-on-windows/

Enable C Extension for gensim on Windows · KK's Blog (fromkk)

These days, I’m working on some text classification works, and I use gensim ’s doc2vec function.
When using gensim, it shows this warning message:
C extension not loaded for Word2Vec, training will be slow.
I search this on Internet and found that gensim has rewrite some part of the code using cython rather than numpy to get better performance. A compiler is required to enable this feature.
I tried to install mingw and add it into the path, but it’s not working.

http://localhost:1313/posts/enable-c-extension-for-gensim-on-windows/

posts/python-dictionary-implementation/

Python Dictionary Implementation · KK's Blog (fromkk)

Overview CPython allocation memory to save dictionary, the initial table size is 8, entries are saved as <hash,key,value> in each slot(The slot content changed after Python 3.6). When a new key is added, python use i = hash(key) & mask where mask=table_size-1 to calculate which slot it should be placed. If the slot is occupied, CPython using a probing algorithm to find the empty slot to store new item.

https://www.fromkk.com/posts/python-dictionary-implementation/

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.