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
%% Simple(?) WHOIS Client in Erlang | |
%% Copyright 2020 İlteriş Yağıztegin Eroğlu (linuxgemini) <[email protected]> | |
%% SPDX-License-Identifier: AGPL-3.0-or-later | |
-module(whois). | |
-export([query_iana/1, | |
query_ripe/1, | |
query_arin/1, | |
query_afrinic/1, | |
query_apnic/1, |
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 python | |
# Discord Webhook post-processing script for NZBGet | |
# | |
# Copyright (C) 2020 linuxgemini <[email protected]> | |
# | |
# This program is free software; you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation; either version 2 of the License, or | |
# (at your option) any later version. | |
# |
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
/** | |
* tckn - A simple JS library for handling Turkish ID Numbers | |
* @license | |
* Copyright 2021 İlteriş Yağıztegin Eroğlu (linuxgemini) | |
* SPDX-License-Identifier: MIT | |
*/ | |
"use strict"; | |
class TCKN { |
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
"""tckn | |
A simple Python library for handling Turkish ID Numbers. | |
""" | |
# Copyright 2021 İlteriş Yağıztegin Eroğlu (linuxgemini) | |
# SPDX-License-Identifier: MIT | |
import secrets | |
from typing import List |
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
[ | |
{ | |
"key": "Adana", | |
"latitude": 36.9914, | |
"longitude": 35.3308, | |
"name": "Adana" | |
}, | |
{ | |
"key": "Adıyaman", | |
"latitude": 37.7636, |
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
/* | |
* HID RFID Reader Wiegand Interface for Arduino Uno | |
* Originally by Daniel Smith, 2012.01.30 -- http://www.pagemac.com/projects/rfid/arduino_wiegand | |
* | |
* Updated 2016-11-23 by Jon "ShakataGaNai" Davis. | |
* See https://obviate.io/?p=7470 for more details & instructions | |
* | |
* | |
* Updated 2021-04-08 by linuxgemini | |
*/ |
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
/** | |
WiegandNG Extended Demo for HID Readers | |
2021-08-06 linuxgemini | |
Released under GNU LGPL v2.1 (or later) | |
*/ | |
// HID SEOS: FC 54, CC 64004 | |
const unsigned char correctID[] = {0x00, 0x6D, 0xF4, 0x08}; |
OlderNewer