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
input:not(.urlbar-input):not(.textbox-input):not(.form-control):not([type='checkbox']) | |
:not(#search_form_input):not(#search_form_input_clear):not(#search_button):not(#search_form_input_homepage) { | |
-moz-appearance: none !important; | |
background-color: white; | |
color: black; | |
} | |
#downloads-indicator-counter { | |
color: white; | |
} |
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
find_package(Curses REQUIRED) | |
include_directories(${CURSES_INCLUDE_DIR}) | |
target_link_libraries(${PROJECT_NAME} ${CURSES_LIBRARIES}) |
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 <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <stdint.h> | |
#define MAX_LENGTH 1024 | |
void convertToBinary(char* word); // Ces prototypes de fonctions (ou signatures) pouvaient | |
void convertToHex(char* word); // très bien se trouver dans un fichier .h et leur implémentation | |
void convertToBase64(char* word); // dans un fichier .c correspondant. |
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
/************************************************* receiver ************************************************/ | |
/* | |
Example for receiving | |
http://code.google.com/p/rc-switch/ | |
If you want to visualize a telegram copy the raw data and | |
paste it into http://test.sui.li/oszi/ | |
*/ |
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
try { | |
UIManager.setLookAndFeel( | |
UIManager.getSystemLookAndFeelClassName()); | |
} | |
catch (UnsupportedLookAndFeelException | ClassNotFoundException | | |
IllegalAccessException | InstantiationException e) { e.printStackTrace();} |
NewerOlder