Giter Site home page Giter Site logo

awesome-bookmark-archive's Introduction

awesome-bookmark-archive

A curated collection of my personal tech bookmarks, offering a stable repository for valuable links rarely updated. This is an effort to cleanup my personal notes and put things together at one place so that it might help someone.

Please Note: I do not actively maintain these information, so it's very likely that some of the information might be outdated or not relevant.

Languages & Frameworks

Golang

PHP

Security

Docker

https://github.com/docker/awesome-compose

AWS

AWS Lambda

Microservices

Data structure and algorithms

The following are some common data structures that tend to come up often in questions. If you haven’t used them in a while, practice beforehand. You should be familiar with when to use each one and their pros and cons. You will need to explain the complexity of your algorithm (big O).

Arrays and Strings
Queues and Lists
Linked Lists
Trees / Tries
Hash maps / Hash sets
Graphs

Google specific

Linux

  • SSH to the server

    ssh -i abc.pem [email protected]
    
  • SCP zip file to remote server

    scp file.zip -i test.pem [email protected]:~/
    
  • Know the runtime based on pid

    ps -eo pid,lstart,etime | grep 10176
    
  • Find larger files on the machine sorted

    find  /var/www/html/* -type f -printf "%S\t%p\n" | sort -nr | head -10
    
    
  • Compress the pdf file using Ghost Script https://gist.github.com/guifromrio/6390547

    gs -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dPDFSETTINGS=/ebook -dNOPAUSE -dPDFSTOPONERROR -sOutputFile=8ebab172800656df73f7cb444a0e74e5dc98a64a 8ebab172800656df73f7cb444a0e74e5dc98a64a
    

Database

  • Get MySQL database size
    SELECT  
        table_schema as db,
        table_name AS tab,
        round(((data_length + index_length) / 1024 / 1024), 2) as size_mb  
    FROM information_schema.TABLES
    where table_schema = "your-database-name" 
    ORDER BY (data_length + index_length) DESC;
    

Few liked articles & blogs

awesome-bookmark-archive's People

Contributors

bishwanathjha avatar

Watchers

 avatar

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.