Skip to content

Instantly share code, notes, and snippets.

@spion06
spion06 / steam-848480.log
Created July 18, 2021 01:41
some description
======================
Proton: 1625621965 6.12-GE-1
SteamGameId: 848480
Command: ['/home/spion/games/steamapps/common/Creeper World 4/CW4.exe']
Options: {'forcelgadd'}
SteamLinuxRuntime: v0.20210317.0-0-ge09b2e6
pressure-vessel: 0.20210415.0+srt1 scout 0.20210415.0
soldier: 0.20210415.0 soldier 0.20210415.0
======================
ERROR: ld.so: object '/home/spion/.var/app/com.valvesoftware.Steam/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
@spion06
spion06 / steam-848480.log
Created July 18, 2021 01:33
some description
======================
Proton: 1625839307 experimental-6.3-20210709
SteamGameId: 848480
Command: ['/home/spion/games/steamapps/common/Creeper World 4/CW4.exe']
Options: {'forcelgadd'}
SteamLinuxRuntime: v0.20210317.0-0-ge09b2e6
pressure-vessel: 0.20210415.0+srt1 scout 0.20210415.0
soldier: 0.20210415.0 soldier 0.20210415.0
======================
ERROR: ld.so: object '/home/spion/.var/app/com.valvesoftware.Steam/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
Linux 2.6.32-754.3.5.el6.x86_64 (ip-10-23-5-210.us-west-2.compute.internal) 05/07/2019 _x86_64_ (16 CPU)
05/07/2019 12:58:11 PM
Device: tps kB_read/s kB_wrtn/s kB_read kB_wrtn
xvda 111.14 1089.26 3701.71 1836245 6240266
xvdcf 157.55 21.56 19529.34 36351 32922175
xvdcb 157.51 21.36 19529.33 36007 32922155
xvdcc 157.16 20.25 19529.13 34135 32921815
xvdcd 157.12 20.15 19529.14 33971 32921835
xvdce 157.17 20.02 19529.34 33751 32922163
Linux 2.6.32-754.3.5.el6.x86_64 (ip-10-23-7-182.us-west-2.compute.internal) 05/07/2019 _x86_64_ (16 CPU)
05/07/2019 12:18:58 PM
Device: tps kB_read/s kB_wrtn/s kB_read kB_wrtn
nvme0n1 48.49 67.51 184.53 4723859 12911774
nvme1n1 45.71 0.66 657.66 45921 46017377
nvme2n1 23.45 3.46 554.22 241879 38779555
nvme3n1 25.84 9.10 563.69 637063 39442135
nvme4n1 23.51 1.58 554.49 110827 38798883
dm-0 0.45 4.45 1.02 311277 71720
inputstring := ""
SetKeyDelay 55, 55
sleep 1000
Send, %inputstring%
@spion06
spion06 / README.md
Last active May 11, 2018 21:31
Test gzip reader

This is a gist to help demonstrate an issue seen when reading certian IO objects with the ruby gzip reader

to use: ./test.sh

output:

gzip file detected
Good reader for cerner_splunk-2.14.0.tar.gz: "ustar  \x00"
Bad reader for cerner_splunk-2.14.0.tar.gz: "star \u0000b"
==> Log data will now stream in as it occurs:
2018/04/18 08:18:07 [WARN] agent: Node name "test.s2net.com" will not be discoverable via DNS due to invalid characters. Valid characters include all alpha-numerics and dashes.
2018/04/18 08:18:07 [INFO] raft: Initial configuration (index=1): [{Suffrage:Voter ID:f1541798-385d-6478-f128-e8276ef90214 Address:192.168.1.1:8300}]
2018/04/18 08:18:07 [INFO] serf: EventMemberJoin: test.s2net.com.dc1 192.168.1.1
2018/04/18 08:18:07 [INFO] serf: EventMemberJoin: test.s2net.com 192.168.1.1
2018/04/18 08:18:07 [INFO] agent: Started DNS server 127.0.0.1:8600 (udp)
2018/04/18 08:18:07 [INFO] raft: Node at 192.168.1.1:8300 [Follower] entering Follower state (Leader: "")
2018/04/18 08:18:07 [WARN] serf: Failed to re-join any previously known node
2018/04/18 08:18:07 [WARN] serf: Failed to re-join any previously known node
2018-03-09 07:07:05,533 INFO [AsyncDispatcher event handler] org.apache.hadoop.mapreduce.v2.app.job.impl.TaskAttemptImpl: Diagnostics report from attempt_1520541749361_4381_m_000011_0: Error: org.apache.hadoop.hbase.DoNotRetryIOException: java.lang.NoSuchFieldError: RPC_HEADER
at org.apache.hadoop.hbase.ipc.RpcClientImpl$Connection.setupIOstreams(RpcClientImpl.java:782)
at org.apache.hadoop.hbase.ipc.RpcClientImpl$Connection.writeRequest(RpcClientImpl.java:907)
at org.apache.hadoop.hbase.ipc.RpcClientImpl$Connection.tracedWriteRequest(RpcClientImpl.java:874)
at org.apache.hadoop.hbase.ipc.RpcClientImpl.call(RpcClientImpl.java:1246)
at org.apache.hadoop.hbase.ipc.AbstractRpcClient.callBlockingMethod(AbstractRpcClient.java:227)
at org.apache.hadoop.hbase.ipc.AbstractRpcClient$BlockingRpcChannelImplementation.callBlockingMethod(AbstractRpcClient.java:336)
at org.apache.hadoop.hbase.protobuf.generated.ClientProtos$ClientService$BlockingStub.get(ClientProtos.java:34070)
at org.apach
require 'open-uri'
require "rubygems/package"
require "zlib"
def is_gzip_file?(path)
# You cannot write "\x1F\x8B" because the default encoding of
# ruby >= 1.9.3 is UTF-8 and 8B is an invalid in UTF-8.
IO.binread(path, 2) == [0x1F, 0x8B].pack("C*")
end

Keybase proof

I hereby claim:

  • I am spion06 on github.
  • I am spion06 (https://keybase.io/spion06) on keybase.
  • I have a public key ASAP1rpiQ5JAUYxInywXIOPs9lb79B2-lQMIrW-8vLL5MQo

To claim this, I am signing this object: