A cheatsheet containing binutils tips, tricks, best practices and command snippet examples for your day to day workflow. Contributions are welcome!
#misc
alse forceReport=false redrawNeeded=false myWidth=1560 myHeight=1560 fixedSize=true x = 0 y = 0 mWidth=1560 mHeight=1560 mIsSleepMode=false | |
2020-07-14 19:41:18.154 4681-4681/? I/ImageWallpaper: onVisibilityChanged true | |
2020-07-14 19:41:18.154 4681-4681/? I/ImageWallpaper: Wallpaper set default offset | |
2020-07-14 19:41:18.154 5109-5109/? E/libprocessgroup: set_timerslack_ns write failed: Operation not permitted | |
2020-07-14 19:41:18.154 5109-5109/? D/PopupDataProvider: onNotificationFullRefresh prev dotInfoSize : 0 | |
2020-07-14 19:41:18.154 5109-5109/? D/ViewRootImpl@e357da9[LauncherActivity]: MSG_WINDOW_FOCUS_CHANGED 1 1 | |
2020-07-14 19:41:18.155 5109-5109/? D/InputMethodManager: prepareNavigationBarInfo() DecorView@6cb2f5a[LauncherActivity] | |
2020-07-14 19:41:18.155 5109-5109/? D/InputMethodManager: getNavigationBarColor() 0 | |
2020-07-14 19:41:18.155 5109-5109/? D/PageOverlayMover: isMoving : false | |
2020-07-14 19:41:18.155 25638-25878/? I/WorkerManager: Releasing worker: [searchplate]/[26]/[com.google.android.apps.gsa. |
A cheatsheet containing binutils tips, tricks, best practices and command snippet examples for your day to day workflow. Contributions are welcome!
#misc
#include <cstring> | |
#include <utility> | |
#include <cassert> | |
#include <new> | |
#pragma GCC diagnostic push | |
#pragma GCC diagnostic ignored "-Wweak-vtables" | |
//#pragma GCC diagnostic ignored "-Wpadded" | |
struct Invoker |
cmake_minimum_required(VERSION 3.13) | |
project(haha) | |
add_executable(${PROJECT_NAME}) | |
file(GLOB_RECURSE SRCS *.cpp) | |
file(GLOB_RECURSE HDRS *.h) | |
target_sources(${PROJECT_NAME} |
'use strict' | |
const log4js = require('log4js'); | |
const logger = log4js.getLogger('myapp'); | |
logger.level = 'trace'; | |
//logger.trace('Entering cheese testing'); | |
//logger.debug('Got cheese.'); | |
//logger.info('Cheese is Comté.'); | |
//logger.warn('Cheese is quite smelly.'); |
sudo apt-get install wireshark libpcap0.8
#include <iostream> | |
using namespace std; | |
namespace implPrint | |
{ | |
template<typename T> | |
struct implPrint | |
{ | |
static void Next() |
#include <iostream> | |
enum AlgSettings | |
{ | |
ONE_WAY = 0x01, | |
ANOTHER_WAY = 0x02, | |
BOTH_WAYS = 0x03, | |
}; |
// TemplateStructure.cpp : Defines the entry point for the console application. | |
// | |
#include <cstdint> | |
#include <iostream> | |
// SomAlg.cpp : Defines the entry point for the console application. | |
// | |
#include "stdafx.h" | |
#include <iostream> | |
enum AlgSettings | |
{ | |
ONE_WAY = 0x01, |