Skip to content

Instantly share code, notes, and snippets.

alias launch_gmap_proxy='sudo docker run -p 9090:8080 -d -t -v ~/mapproxy:/mapproxy danielsnider/mapproxy'
alias ros_source_setup='source ~/catkin_ws/devel/setup.zsh'
alias record_rosbag='rosbag record --lz4 -e "/navion/(.*)" -x "/navion/sensors/frame(.*)||/navion/render/(.*)"'
alias ll='ls -alh --show-control-chars -F --color'
alias gl='git log --oneline --all --graph --decorate'
alias gs='git status'
alias alias_update='wget -O ~/.bash_aliases https://gist.githubusercontent.com/KindDragon/4a7a5ad4f0f9e98ef6377ee84e3d90ec/raw/.bash_aliases && source ~/.bash_aliases'
Show Log Name
Show Date
Wed Apr 15 2020 23:39:52.738264 - Demo Path: /home/dragon/.steam/steamapps/common/SteamVR/demo not found.
Wed Apr 15 2020 23:39:52.738248 - Tools Path: /home/dragon/.steam/steamapps/common/SteamVR/tools exists.
Wed Apr 15 2020 23:39:52.738184 - vrmonitor 1.10.32 startup with PID=9149, config=/home/dragon/.local/share/Steam/config, runtime=/home/dragon/.steam/steamapps/common/SteamVR
Wed Apr 15 2020 23:39:52.738165 - ================================================================================================
Wed Apr 15 2020 23:39:52.738146 - ================================================================================================
Wed Apr 15 2020 23:39:52.729002 - //==============================================================================================
Wed Apr 15 2020 23:39:53.370899 - Default Playback Audio Devices: , (Comm)
SteamVR System Report created Mon Apr 13 18:19:24 2020
<Report>
SteamVR Version: 1.10.32 (1584924836)
SteamVR Date: 2020-03-23
Steam: Public
Steam Branch:
Steam AppID: 250820
Tracking: No Driver
OS: Linux version 5.3.0-46-generic (buildd@lcy01-amd64-013) (gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04)) #38~18.04.1-Ubuntu SMP Tue Mar 31 04:17:56 UTC 2020
1197 .xy
907 .xyz
107 .yzw
87 .yz
80 .xyzw
46 .yx
39 .zw
34 .xxxx
31 .xx
28 .xxx
@KindDragon
KindDragon / results.txt
Last active August 16, 2017 23:13
checkForGitHubPortNewVersion.ps1 results
alembic
alembic/alembic 1.7.1
New version 1.7.3 is available
allegro5
liballeg/allegro5 7d8892a9278c57f2d8bb1e555f9ec59cf9ed4f73
New version 5.2.2.0 is available
arrow
apache/arrow apache-arrow-0.4.0
New tag apache-arrow-0.6.0 is available
assimp
# Place it in vcpkg\scripts folder
function Get-BasicAuthCreds {
param([PSCredential]$Credential)
$AuthString = "{0}:{1}" -f $Credential.Username,$Credential.GetNetworkCredential().Password
$AuthBytes = [System.Text.Encoding]::Ascii.GetBytes($AuthString)
return [Convert]::ToBase64String($AuthBytes)
}
$username = Read-host "GitHub username"
$password = Read-host "GitHub password" -AsSecureString
$cred = New-Object PSCredential $username, $password
--- c:/Program Files/CMake/share/cmake-3.8/Modules/FindHDF5.cmake Tue May 02 09:24:36 2017
+++ d:/Work/vcpkg/downloads/cmake-3.9.0-win32-x86/share/cmake-3.9/Modules/FindHDF5.cmake Tue Jul 18 11:28:26 2017
@@ -59,12 +59,19 @@
# bindings, if the HL component is enabled
#
# Available components are: C CXX Fortran and HL. For each enabled language
-# binding, a corresponding HDF5_${LANG}_LIBRARIES variable will be defined.
+# binding, a corresponding HDF5_${LANG}_LIBRARIES variable, and potentially
+# HDF5_${LANG}_DEFINITIONS, will be defined.
# If the HL component is enabled, then an HDF5_${LANG}_HL_LIBRARIES will
# https://github.com/google/snappy/pull/29
CMAKE_MINIMUM_REQUIRED(VERSION 3.4)
PROJECT(snappy VERSION 1.1.4 LANGUAGES C CXX)
option(SNAPPY_BUILD_TESTS "Build snappy tests" OFF)
SET(CMAKE_INCLUDE_CURRENT_DIR ON)
INCLUDE(CheckIncludeFiles)
INCLUDE(CheckLibraryExists)
#include <iostream>
#include <cassert>
void dirty_stack()
{
unsigned char array_on_stack[256];
for (unsigned i = 0; i < sizeof(array_on_stack); ++i)
{
array_on_stack[i] = 0x11;
}
if (gRPC_USE_CONAN)
if(${CMAKE_GENERATOR} STREQUAL "Ninja")
if($ENV{VisualStudioVersion} MATCHES "12.")
set(_gRPC_CONAN_COMPILER -s "compiler=Visual Studio" -s compiler.version=12)
elseif($ENV{VisualStudioVersion} MATCHES "14.")
set(_gRPC_CONAN_COMPILER -s "compiler=Visual Studio" -s compiler.version=14)
endif()
if($ENV{Platform} STREQUAL "X64")
set(_gRPC_CONAN_ARCH -s arch=x86_64)
else()