This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Thu Mar 28 18:16:57 2019 | |
+-----------------------------------------------------------------------------+ | |
| NVIDIA-SMI 418.43 Driver Version: 418.43 CUDA Version: 10.1 | | |
|-------------------------------+----------------------+----------------------+ | |
| GPU Name Persistence-M| Bus-Id Disp.A | Volatile Uncorr. ECC | | |
| Fan Temp Perf Pwr:Usage/Cap| Memory-Usage | GPU-Util Compute M. | | |
|===============================+======================+======================| | |
| 0 GeForce RTX 2080 Off | 00000000:28:00.0 On | N/A | | |
| 41% 31C P8 29W / 225W | 552MiB / 7944MiB | 20% Default | | |
+-------------------------------+----------------------+----------------------+ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
total used free shared buff/cache available | |
Mem: 15Gi 12Gi 152Mi 139Mi 2.5Gi 2.3Gi | |
Swap: 7.5Gi 1.6Gi 5.9Gi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# run with python3 sss.py | tee -a your_output_file.txt | |
# occasionaly grep the file with another terminal for tjctf | |
import socket | |
import re | |
import threading | |
import time | |
# https://gist.github.com/leonjza/f35a7252babdf77c8421 | |
class Netcat: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import socket | |
import re | |
# https://gist.github.com/leonjza/f35a7252babdf77c8421 | |
class Netcat: | |
""" Python 'netcat like' module """ | |
def __init__(self, ip, port): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
if [ $# -eq 0 ] | |
then | |
echo "No arguments supplied" | |
exit 1 | |
fi | |
FPS=$2 | |
if [ -z "$2" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
if [ $# -eq 0 ] | |
then | |
echo "No arguments supplied" | |
exit 1 | |
fi | |
FPS=$2 | |
if [ -z "$2" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# i3status configuration file. | |
# see "man i3status" for documentation. | |
# It is important that this file is edited as UTF-8. | |
# The following line should contain a sharp s: | |
# ß | |
# If the above line is not correctly displayed, fix your editor first! | |
general { | |
colors = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
param ( | |
[string]$fps = "30", | |
[Parameter(Mandatory=$true)][string]$File, | |
[Parameter(Mandatory=$true)][string]$Start, | |
[Parameter(Mandatory=$true)][string]$Duration | |
) | |
$Size = 7.5*8000 | |
$Bitrate=$Size/$duration | |
write-output "$fps fps, $duration duration, $Bitrate bitrate." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2023-03-29T06:08:45.480645Z ERROR ruffle_core::display_object::movie_clip: Got "ReferenceError: Error #1069: Property http://adobe.com/AS3/2006/builtin::hasOwnProperty not found on Class and there is no default value." when constructing AVM2 side of movie clip of type Flight_fla::puff_japan_text6_73 | |
2023-03-29T06:08:45.482074Z ERROR ruffle_core::display_object::movie_clip: Got "ReferenceError: Error #1069: Property http://adobe.com/AS3/2006/builtin::hasOwnProperty not found on Class and there is no default value." when constructing AVM2 side of movie clip of type Flight_fla::puff_japan_text7_74 | |
2023-03-29T06:08:45.483347Z ERROR ruffle_core::display_object::movie_clip: Got "ReferenceError: Error #1069: Property http://adobe.com/AS3/2006/builtin::hasOwnProperty not found on Class and there is no default value." when constructing AVM2 side of movie clip of type Flight_fla::puff_japan_text3_75 | |
2023-03-29T06:08:45.484632Z ERROR ruffle_core::display_object::movie_clip: Got "ReferenceError: Error #1069: Property htt |