This file contains hidden or 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
_modifiersSwitcher: function() { | |
let sourceIndexes = Object.keys(this._inputSources); | |
let i = 0; | |
while (i < sourceIndexes.length) { | |
let source = this._inputSources[sourceIndexes[i]]; | |
print("index: ", source.index, ", id: ", source.id); | |
/* | |
let seen = []; | |
let obj = this._inputSources; |
This file contains hidden or 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
pm list packages -f |
This file contains hidden or 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
./config -d shared no-asm 386 no-sse2 zlib-dynamic -g3 -ggdb -gdwarf-4 -fno-inline -O0 -DDEBUG_SAFESTACK |
This file contains hidden or 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
-g3 -ggdb -gdwarf-4 -O0 -fno-inline -DDEBUG -Wall -Werror |
This file contains hidden or 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 | |
cat /proc/$$/cmdline | xargs -0 -n1 echo |
This file contains hidden or 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
#include <memory> | |
#include <string> | |
class variant | |
{ | |
public: | |
template <class T> | |
variant& operator = (T const& t) | |
{ |
This file contains hidden or 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
/*---------------------------------------------------------------------------------------------- | |
* pin_macros.h (AVR/avr-gcc) | |
*---------------------------------------------------------------------------------------------- | |
* | |
* Author: Oleksandr Redchuk aka ReAl ([email protected]) | |
* | |
* Description: port bits access macros for AVR uC family (avr-gcc compiler) | |
* | |
* Based on macros by Ascold Volkov, Andy Mozzevilov, Aleksey Musin | |
*---------------------------------------------------------------------------------------------- |
This file contains hidden or 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
diff --git a/metacity-1/metacity-theme-1.xml b/metacity-1/metacity-theme-1.xml | |
index 7aaeb54..e35b804 100644 | |
--- a/metacity-1/metacity-theme-1.xml | |
+++ b/metacity-1/metacity-theme-1.xml | |
@@ -23,18 +23,19 @@ | |
<border name="button_border" left="0" right="0" top="1" bottom="0"/> | |
</frame_geometry> | |
-<frame_geometry name="geometry_maximized" rounded_top_left="false" rounded_top_right="false" rounded_bottom_left="false" rounded_bottom_right="false"> | |
+<frame_geometry name="geometry_maximized" rounded_top_left="false" rounded_top_right="false" rounded_bottom_left="false" rounded_bottom_right="false" has_title="false"> |
This file contains hidden or 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
$('.title-link').each(function() { console.log($(this).text()) }) |
This file contains hidden or 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
$.ajax({ | |
type: "POST", | |
url: href, | |
beforeSend: function (xhr) { | |
xhr.overrideMimeType("text/plain; charset=x-user-defined"); | |
}, | |
success: function(response) { | |
var binary = Array.prototype.map.call(response, function(c) { return c.charCodeAt(0) & 0xFF; }); | |
console.debug('ajax done: ', binary); | |
}, |