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
# Top-most EditorConfig file | |
root = true | |
# Common settings for all files | |
[*] | |
charset = utf-8 | |
end_of_line = lf | |
insert_final_newline = true | |
trim_trailing_whitespace = true | |
indent_style = space |
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
[{"id":"ZFA3120000JF09250","plate":"STB960","geoCoordinate":{"latitude":47.55918,"longitude":19.03503},"fuellevel":100,"address":"Budapest, Kunigunda útja 43","locationId":"55","buildSeries":"FIAT_500","fuelType":"GASOLINE","primaryColor":"425U","hardwareVersion":"HW43","generation":"UNDEFINED","imageUrl":"https://app.share-now.com/api/rental/rental-assets/vehicles/{density}/fiat_500_italian_blue.png","transmission":"GM","rank":1,"macAddress":"CC:F9:57:87:7B:37","vehicleCode":"2FDAAC286E844802","seats":4,"vin":"ZFA3120000JF09250","locationIdAsLong":55},{"id":"WBY8P210107D60590","plate":"RVZ976","geoCoordinate":{"latitude":47.50424,"longitude":19.1518},"fuellevel":93,"address":"Budapest, Kerepesi út 73","locationId":"55","buildSeries":"BMW_I3","fuelType":"ELECTRIC","primaryColor":"B85U","hardwareVersion":"HW42","generation":"UNDEFINED","imageUrl":"https://app.share-now.com/api/rental/rental-assets/vehicles/{density}/bmw_i3_capparis_white.png","transmission":"GA","rank":1,"seats":4,"vin":"WBY8P210107D60590","lo |
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
[{"id":"ZFANF2D12MP940730","plate":"HH-SX7584","geoCoordinate":{"latitude":53.5708,"longitude":10.02626},"fuellevel":66,"address":"Winterhuder Weg 2, 22085 Hamburg","locationId":"3","buildSeries":"FIAT_500_X","fuelType":"GASOLINE","primaryColor":"SL-[296]","hardwareVersion":"HW43","generation":"UNDEFINED","imageUrl":"https://app.share-now.com/api/rental/rental-assets/vehicles/{density}/fiat_500_x_gelato_white.png","transmission":"GA","rank":1,"macAddress":"CC:F9:57:87:7F:FD","vehicleCode":"150A905DD2882202","seats":5,"vin":"ZFANF2D12MP940730","locationIdAsLong":3},{"id":"ZFANF2D17MP944093","plate":"HH-SX7836","geoCoordinate":{"latitude":53.59125,"longitude":10.07922},"fuellevel":74,"address":"Gartenstadtweg 81A, 22049 Hamburg","locationId":"3","buildSeries":"FIAT_500_X","fuelType":"GASOLINE","primaryColor":"SL-[296]","hardwareVersion":"HW43","generation":"UNDEFINED","imageUrl":"https://app.share-now.com/api/rental/rental-assets/vehicles/{density}/fiat_500_x_gelato_white.png","transmission":"GA","rank":1,"macA |
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
// ==UserScript== | |
// @name Neptun PowerUp! | |
// @namespace http://example.org | |
// @description Felturbózza a Neptun-odat | |
// @version 2.3.0 | |
// @downloadURL https://github.com/solymosi/npu/releases/latest/download/npu.user.js | |
// @include https://*neptun*/*hallgato*/* | |
// @include https://*neptun*/*Hallgatoi*/* | |
// @include https://*neptun*/*oktato*/* | |
// @include https://*hallgato*.*neptun*/* |
This file has been truncated, but you can view the full file.
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
$GPRMC,093858.5,V,4729.20233,N,01904.79403,E,,,080422,004.1,E,N*13 | |
$GPGGA,093858.5,4729.20233,N,01904.79403,E,0,00,,,M,,M,,*44 | |
$GPVTG,,T,,M,,N,,K,N*2C | |
$GPRMC,093858.6,V,4729.20233,N,01904.79403,E,,,080422,004.1,E,N*10 | |
$GPGGA,093858.6,4729.20233,N,01904.79403,E,0,00,,,M,,M,,*47 | |
$GPVTG,,T,,M,,N,,K,N*2C | |
$GPRMC,093858.7,V,4729.20233,N,01904.79403,E,,,080422,004.1,E,N*11 | |
$GPGGA,093858.7,4729.20233,N,01904.79403,E,0,00,,,M,,M,,*46 | |
$GPVTG,,T,,M,,N,,K,N*2C | |
$GPRMC,093858.8,V,4729.20233,N,01904.79403,E,,,080422,004.1,E,N*1E |
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 | |
if ! command -v gh &>/dev/null; then | |
echo "The GitHub CLI <gh> could not be found." | |
read -p "Do you want to install it? " -n 1 -r | |
echo | |
if [[ $REPLY =~ ^[Yy]$ ]]; then | |
echo "Installing GitHub CLI..." | |
if ! command -v brew &>/dev/null; then | |
echo "The <brew> command could not be found." |
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
import React, { useRef, useImperativeHandle } from 'react'; | |
import type { HostComponent } from 'react-native'; | |
import { | |
NativeModules, | |
findNodeHandle, | |
Platform, | |
UIManager, | |
requireNativeComponent, | |
} from 'react-native'; |
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
type AnyValue = | |
| { [key: string]: AnyValue } | |
| { [key: number]: AnyValue } | |
| AnyValue[] | |
| string | |
| number | |
| boolean | |
| null | |
| undefined | |
| symbol |
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
{ | |
"name": "use-fuse", | |
"version": "1.0.1", | |
"main": "useFuse.ts" | |
} |
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
{ | |
"name": "use-debounce", | |
"version": "1.0.0", | |
"main": "useDebounce.ts" | |
} |
NewerOlder