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
d519cbd80f99f4c018678a0b73aaccd9 ./AUD/0.MAP | |
e6c1edea1759964888541ab86e085e4e ./AUD/130.MAP | |
f2f7d4cf894640456bd7800bfe506e39 ./AUD/140.MAP | |
e814d928dae857fcfe50013991eec2a8 ./AUD/190.MAP | |
4aecc8b0d344c48e4b23efba24823efd ./AUD/200.MAP | |
434d8693c49f04148d9dd4b722ec202e ./AUD/205.MAP | |
a2b17730abe920159e1482c1734f7a7e ./AUD/210.MAP | |
af7897534de5e6024b6b7c7638b89076 ./AUD/230.MAP | |
be12369e3684de2216d8a7a681ca27b6 ./AUD/240.MAP | |
9a1a1e0a0712d74cd92d2fe98c38fffa ./AUD/250.MAP |
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
health#nvim_lsp#check | |
======================================================================== | |
## Checking language server protocol configuration | |
- INFO: clangd: configuration checked. | |
- INFO: rls: configuration checked. | |
health#nvim#check | |
======================================================================== | |
## Configuration |
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
" == Plug configuration ================================================ | |
" | |
" Specify directory for plugins | |
call plug#begin('~/.local/share/nvim/plugged') | |
" Colour schemes | |
"Plug 'dreamer/mustang-vim' | |
"Plug 'joshdick/onedark.vim' | |
Plug 'cocopon/iceberg.vim' |
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 <cmath> | |
#include <cstdint> | |
#include <cstdio> | |
// uncomment the one to use: | |
// | |
#define bhaskar | |
//#define taylor | |
//#define stdf | |
//#define stdd |
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 <cmath> | |
#include <cstdint> | |
#include <cstdio> | |
// uncomment the one to use: | |
// | |
#define bhaskar | |
//#define taylor | |
//#define stdf | |
//#define stdd |
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
[dreamer_@tars dosbox-staging master]$ flatpak list | |
Name Application ID Version Branch Origin Installation | |
Fondo com.github.calo001.fondo 1.3.8 stable flathub system | |
Marker com.github.fabiocolacio.marker 2020.04.04 stable flathub system | |
Foliate com.github.johnfactotum.Foliate 2.0.0 stable flathub system | |
Platform org.fedoraproject.Platform f31 fedora system | |
Platform org.fedoraproject.Platform f32 fedora system | |
Freedesktop.org Application Platform version 1.6 org.f |
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 <cstdint> | |
#include <cstdio> | |
#include <ctime> | |
/* | |
MS-DOS date and MS-DOS time are data formats associated with MS-DOS. | |
They are used in some file formats from the MS-DOS era. Each is a | |
16-bit integer. | |
MS-DOS date represents a day in the range 1980 to 2099 (or maybe 2107, |
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 <cstdint> | |
#include <cstdio> | |
#include <ctime> | |
#include <list> | |
using namespace std; | |
/* | |
MS-DOS date and MS-DOS time are data formats associated with MS-DOS. | |
They are used in some file formats from the MS-DOS era. Each is a |
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
#define __STDC_LIMIT_MACROS | |
#define __STDC_CONSTANT_MACROS | |
#define __STDC_FORMAT_MACROS | |
#include <cinttypes> | |
#include <cstdint> | |
#include <cstdio> | |
#include <cstring> | |
template<typename T> |
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
let json_files = fs::read_dir("metadata.lux")? | |
.take_while(|e| e.is_ok()) | |
.map(|e| e.unwrap().path()) | |
.take_while(|p| true); | |
//.take_while(|p| p.extension().unwrap() == "json"); | |
for p in json_files { | |
println!(":: {:?} {} {:?} {:?}", p, p.ends_with("json"), p.extension().unwrap(), p.extension().unwrap() == "json"); | |
} |
NewerOlder