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
#!/usr/bin/env python3 | |
import ast | |
import fileinput | |
try: | |
for line in fileinput.input(): | |
line = line.rstrip('\n') | |
try: | |
line = ast.literal_eval(line).decode() |
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
[req] | |
distinguished_name = req_distinguished_name | |
req_extensions = v3_req | |
prompt = no | |
[req_distinguished_name] | |
CN = example.com | |
[v3_req] | |
subjectAltName = @alt_names |
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 | Artist | Album | ID | Uploaded | |
---|---|---|---|---|---|
"Kansas City Shuffle" | J. Ralph | Lucky Number Slevin Original Motion Picture Soundtrack | UZs0lFwQ0hQ | True | |
'Relaxin' (feat. G Mane) | G Side | 'Relaxin' (feat. G Mane) | y036Lk7ROGQ | False | |
(Rock) Superstar (feat. Chino Moreno & Everlast) | Cypress Hill | Skull & Bones | RBT5yhR_2Rw | False | |
0 To 100 / The Catch Up | Drake | 0 To 100 / The Catch Up | s0PZYWA4LoM | False | |
1 Hour | Lunatic Souls | Harmonic Bliss | NEvB5BGpo6k | False | |
10 Bands | Drake | If You're Reading This It's Too Late | tcL2B0ilMZw | False | |
2 On (feat. ScHoolboy Q) | Tinashe | 2 On | Ya-M9KrderM | False | |
2 Phones | Kevin Gates | Islah (Deluxe) | 2mhKvNwOIWk | False | |
2 Phút Hơn (KAIZ Remix) | Pháo | 2 Phút Hơn (KAIZ Remix) | Ra5qZDJefJs | 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
#!/usr/bin/python | |
# Copyright: (c) 2018, Devin Solutions s.r.o. | |
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) | |
ANSIBLE_METADATA = { | |
'metadata_version': '1.1', | |
'status': ['preview'], | |
'supported_by': 'community' | |
} |
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 <time.h> | |
#include <inttypes.h> | |
typedef struct { | |
void (*function) (uint32_t *a, uint32_t *b); | |
char *description; | |
} swapping_method; | |
void swap_temp(uint32_t *a, uint32_t *b) { |