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
| git filter-branch --msg-filter "cat - && echo && echo 'Signed-off-by: <USERNAME> <<EMAIL>>'" HEAD~3..HEAD |
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
| for f in `ldd jsonc-test | grep '=>' | sed $'s/\t//g' | sed 's/.*=> *//g' | sed 's/(.*//g'`; do echo $f; pkg which $f; done | grep 'was installed by' | sed 's/.*was installed by package *//g' |
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 <json-c/json.h> | |
| #include <stdio.h> | |
| const char *json_get_type_name(enum json_type type); | |
| void json_parse_object(json_object *jobj); | |
| void json_parse_array(json_object *jobj, char *key); | |
| void json_print_value(json_object *jobj); | |
| const char *json_get_type_name(enum json_type type) | |
| { |
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 <iostream> | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| #define BUFFERSIZE 1024 | |
| #include <b64/encode.h> | |
| #include <b64/decode.h> |
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
| $ sudo dnf install mongodb mongodb-server | |
| $ sudo dnf install mongo-c*driver | |
| $ sudo dnf install mongo-c*driver-devel | |
| $ sudo dnf install mongodb*devel | |
| $ sudo dnf install mongo*devel | |
| $ sudo dnf install mongodb*devel | |
| $ sudo dnf install mongo-c*driver-devel | |
| $ sudo dnf install libmongo-client.x86_64 | |
| $ sudo dnf install mongo-c-driver.x86_64 |
Install Python from: https://www.python.org/downloads/windows/
Install PyQt using pip:
pip3 install PyQt5
Create a file with the following code:
from PyQt5.QtWidgets import QApplication, QWidget, QPushButton, QVBoxLayout
app = QApplication([])