-
all commits that your branch have that are not yet in master
git log master..<HERE_COMES_YOUR_BRANCH_NAME> -
setting up a character used for comments
git config core.commentchar
| /** | |
| * Ecwid's loading indicator in pure CSS | |
| */ | |
| @keyframes move { | |
| from { background-position-x: 0%; } | |
| to { background-position-x: 100%; } | |
| } | |
| #load-indicator { |
| function test (target: any, propertyKey?: string) { | |
| debugger; | |
| } | |
| class App { | |
| @test foo = 'bar'; | |
| } |
| /** | |
| * Fancy ID generator that creates 20-character string identifiers with the following properties: | |
| * | |
| * 1. They're based on timestamp so that they sort *after* any existing ids. | |
| * 2. They contain 72-bits of random data after the timestamp so that IDs won't collide with other clients' IDs. | |
| * 3. They sort *lexicographically* (so the timestamp is converted to characters that will sort properly). | |
| * 4. They're monotonically increasing. Even if you generate more than one in the same timestamp, the | |
| * latter ones will sort after the former ones. We do this by using the previous random bits | |
| * but "incrementing" them by 1 (only in the case of a timestamp collision). | |
| */ |
| int original = 42; | |
| decltype(original) copy = original; | |
| decltype((original)) reference = original; | |
| original = 1729; | |
| std::cout << copy << std::endl; // 42 | |
| std::cout << reference << std::endl; // 1729 |
| #define _CRT_SECURE_NO_WARNINGS | |
| #include <vector> | |
| #include <memory> | |
| #include <future> | |
| #include <stdio.h> | |
| #include <assert.h> | |
| #include <time.h> | |
| #include <stdint.h> |
| #include "RLE0DifEncoder.h" | |
| #include <cassert> | |
| #include <stdint.h> | |
| #include <memory> | |
| #include <stdexcept> | |
| /////////////////////////////////////////////////////////////////////////////// | |
| namespace matise { | |
| namespace journal { |
| // TODO: encapsulate runtime session, store heap, common general purpose types, stats, etc. | |
| static ClrRuntime _runtime; | |
| void Main() | |
| { | |
| DataTarget _target = DataTarget.LoadCrashDump("C:\\Temp\\MEM.DMP"); | |
| _target.SetSymbolPath(Environment.GetEnvironmentVariable("_NT_SYMBOL_PATH")); | |
| var clrVer = _target.ClrVersions[0]; | |
| string dac = clrVer.TryGetDacLocation(); |
| #ifndef UNICODE | |
| #define UNICODE | |
| #endif | |
| #define WIN32_LEAN_AND_MEAN | |
| #include <winsock2.h> | |
| #include <Ws2tcpip.h> | |
| #include <stdio.h> |
| #undef UNICODE | |
| #define WIN32_LEAN_AND_MEAN | |
| #include <windows.h> | |
| #include <winsock2.h> | |
| #include <ws2tcpip.h> | |
| #include <stdlib.h> | |
| #include <stdio.h> |