Skip to content

Instantly share code, notes, and snippets.

 ~  G_MESSAGES_DEBUG=Timings rofi --show window  ✔  15:40:55 
(process:24473): Timings-DEBUG: 15:41:04.383: 0.000000 (0.000000): Started
(process:24473): Timings-DEBUG: 15:41:04.384: 0.001109 (0.001109): ../rofi-lbonn-wayland-git/source/rofi.c:main:958
(process:24473): Timings-DEBUG: 15:41:04.384: 0.001361 (0.000252): ../rofi-lbonn-wayland-git/source/rofi.c:main:1008
(process:24473): Timings-DEBUG: 15:41:04.384: 0.001374 (0.000013): ../rofi-lbonn-wayland-git/source/rofi.c:main:1031 Select Backend
(process:24473): Timings-DEBUG: 15:41:04.384: 0.001410 (0.000036): ../rofi-lbonn-wayland-git/source/rofi.c:main:1039 Setup Locale
(process:24473): Timings-DEBUG: 15:41:04.384: 0.001467 (0.000057): ../rofi
/**
* rofi -dump-theme output.
* Rofi version: 1.7.5+wayland2-dev
**/
* {
red: rgba ( 220, 50, 47, 100 % );
selected-active-foreground: var(background);
lightfg: rgba ( 88, 104, 117, 100 % );
separatorcolor: var(foreground);
urgent-foreground: var(red);
configuration {
/* modes: "window,drun,run,ssh";*/
/* font: "mono 12";*/
/* location: 0;*/
/* yoffset: 0;*/
/* xoffset: 0;*/
/* fixed-num-lines: true;*/
/* show-icons: false;*/
/* terminal: "rofi-sensible-terminal";*/
/* ssh-client: "ssh";*/
@deivid11
deivid11 / post.php
Last active August 29, 2019 21:25
Send a correctly formed multipart/form-data request to a php script using node and axios
<?php
echo 'Data:'; var_dump($_POST);
echo 'ContentType:'; var_dump($_SERVER["CONTENT_TYPE"]);
echo 'Content:'; var_dump(file_get_contents('php://input'));