Some python script for personal use
A lite version of pwntools_ of Gallopsled
External hyperlinks, like Python.
-- Logs begin at Sat 2018-04-28 00:00:30 +07, end at Sat 2018-04-28 12:38:43 +07. --
Apr 28 12:37:48 ubox kernel: mmc0: Unknown controller version (3). You may experience problems.
Apr 28 12:37:48 ubox kernel: radeon 0000:01:00.0: failed VCE resume (-110).
Apr 28 12:37:48 ubox systemd-rfkill[475]: Failed to open device rfkill0: No such device
Apr 28 12:37:48 ubox systemd-udevd[338]: Error calling EVIOCSKEYCODE on device node '/dev/input/event10' (scan code 0x100150, key code
Apr 28 12:37:50 ubox wpa_supplicant[657]: dbus: wpa_dbus_get_object_properties: failed to get object properties: (none) none
Apr 28 12:37:50 ubox wpa_supplicant[657]: dbus: Failed to construct signal
Apr 28 12:37:52 ubox spice-vdagent[930]: Cannot access vdagent virtio channel /dev/virtio-ports/com.redhat.spice.0
Apr 28 12:38:11 ubox kernel: radeon 0000:01:00.0: failed VCE resume (-110).
syntax = "proto3"; | |
package main; | |
message SimpleMessage { | |
int32 id = 1; // Unique ID number for this message. | |
string mode = 2; | |
string email = 3; | |
enum MsgMode { | |
MESSAGE = 0; |
People
![]() :bowtie: |
π :smile: |
π :laughing: |
---|---|---|
π :blush: |
π :smiley: |
:relaxed: |
π :smirk: |
π :heart_eyes: |
π :kissing_heart: |
π :kissing_closed_eyes: |
π³ :flushed: |
π :relieved: |
π :satisfied: |
π :grin: |
π :wink: |
π :stuck_out_tongue_winking_eye: |
π :stuck_out_tongue_closed_eyes: |
π :grinning: |
π :kissing: |
π :kissing_smiling_eyes: |
π :stuck_out_tongue: |
by Angel Leon. March 17, 2015.
On the compilation phase, you will usually need to specify the different include paths so that the interfaces (.h, .hpp) which define structs, classes, constans, and functions can be found.
With gcc
and llvm
include paths are passed with -I/path/to/includes
, you can pass as many -I
as you need.
In Windows, cl.exe
takes include paths with the following syntax:
/I"c:\path\to\includes\
you can also pass as many as you need.
This is a short document describing the preferred coding style for the linux kernel. Coding style is very personal, and I won't force my views on anybody, but this is what goes for anything that I have to be able to maintain, and I'd prefer it for most other things too. Please at least consider the points made here.
CFLAGS += -Wall -Werror -Wno-unused-function -g | |
LDLIBS += -lrt -pthread | |
LDLIBS += -lunicorn | |
TESTS = test1 | |
all: $(TESTS) | |
clean: |