Published onSeptember 1, 2019[LeetCode 182] Duplicate EmailsMySQLWrite a SQL query to find all duplicate emails in a table named Person.
Published onAugust 6, 2019HTTP cookieNetworkcomputer by the user's web browser while the user is browsing.
Published onAugust 5, 2019User Datagram ProtocolNetworkUDP is one of the core protocols of the **Internet Protocol Suite**, used to send messages called **datagrams** between computers.
Published onAugust 3, 2019Rule of three (C++ programming)CPPexception-safe code and for formalizing rules on resource management.
Published onAugust 2, 2019Understanding the meaning of lvalues and rvalues in C++CPPIn C++ an *lvalue* is something that points to a specific memory location.
Published onJuly 29, 2019C++ map vs unordered_mapCPPYou need to keep count of some data (Example - strings) and no ordering is required.
Published onJuly 24, 2019C++ Lambda ExpressionCPPC++11 introduces lambadas allow you to write inline, anonymous functor.
Published onJuly 23, 2019Understanding C++ CastsCPPC++, being a strongly typed language, is strict with its types.