Hip Hip
  • Hip Hip
  • Tag cloud
  • Daily
  • RSS Feed
  • Login
Daily Weekly Monthly

Monthly Shaarli

Previous month
All links of one month in a single page.
Next month

November, 2020

How to Pass the TensorFlow Developer Certificate Exam
The CMU Brand - Carnegie Mellon University
GoHD | Educational Technology | Stanford Medicine
PowerPoint / Oral Presentation Slide Design - Global Communication Center - Carnegie Mellon University
Hash Functions

djb2

This algorithm (k=33) was first reported by Daniel J. Bernstein many years ago in comp.lang.c

Another version of this algorithm (now favored by Bernstein) uses xor: hash(i) = hash(i - 1) * 33 ^ str[i]

The magic of number 33 (why it works better than many other constants, prime or not) has never been adequately explained.

unsigned long hash(unsigned char *str) {
    unsigned long hash = 5381;
    int c;

    while (c = *str++)
        hash = ((hash << 5) + hash) + c; /* hash * 33 + c */

    return hash;
}
TensorFlow Developer Certificate Candidate Handbook
mytechnotalent/Reverse-Engineering-Tutorial: A comprehensive reverse engineering tutorial covering x86, x64, 32-bit ARM & 64-bit ARM architectures.
How To Write a Good (no, Great) PhD Dissertation
https://www.amazon.com/Research-Methods-Theresa-L-White-ebook-dp-B00B6FKJS6/dp/B00B6FKJS6/
book
React Redux Tutorial for Beginners: The Complete Guide (2020)
Data Science Glossary on Kaggle
I thought all anti-vaxxers were idiots. Then I married one.
How to Apply to Graduate School in Computer Science | by Nick Feamster | Great Research | Nov, 2020 | Medium
Shaarli · The personal, minimalist, super fast, database-free, bookmarking service by the Shaarli community · Documentation
Fold Fold all Expand Expand all Are you sure you want to delete this link? Are you sure you want to delete this tag? The personal, minimalist, super fast, database-free, bookmarking service by the Shaarli community