hexsha
stringlengths
40
40
size
int64
5
1.05M
ext
stringclasses
588 values
lang
stringclasses
305 values
max_stars_repo_path
stringlengths
3
363
max_stars_repo_name
stringlengths
5
118
max_stars_repo_head_hexsha
stringlengths
40
40
max_stars_repo_licenses
listlengths
1
10
max_stars_count
float64
1
191k
max_stars_repo_stars_event_min_datetime
stringdate
2015-01-01 00:00:35
2022-03-31 23:43:49
max_stars_repo_stars_event_max_datetime
stringdate
2015-01-01 12:37:38
2022-03-31 23:59:52
max_issues_repo_path
stringlengths
3
363
max_issues_repo_name
stringlengths
5
118
max_issues_repo_head_hexsha
stringlengths
40
40
max_issues_repo_licenses
listlengths
1
10
max_issues_count
float64
1
134k
max_issues_repo_issues_event_min_datetime
stringlengths
24
24
max_issues_repo_issues_event_max_datetime
stringlengths
24
24
max_forks_repo_path
stringlengths
3
363
max_forks_repo_name
stringlengths
5
135
max_forks_repo_head_hexsha
stringlengths
40
40
max_forks_repo_licenses
listlengths
1
10
max_forks_count
float64
1
105k
max_forks_repo_forks_event_min_datetime
stringdate
2015-01-01 00:01:02
2022-03-31 23:27:27
max_forks_repo_forks_event_max_datetime
stringdate
2015-01-03 08:55:07
2022-03-31 23:59:24
content
stringlengths
5
1.05M
avg_line_length
float64
1.13
1.04M
max_line_length
int64
1
1.05M
alphanum_fraction
float64
0
1
8f62e4384e901882fa9df7ccfc44251af0ef49da
1,271
zig
Zig
opaquetype/opaquetype.zig
winksaville/zig-explore
34a19e1540a3b1a3e72c4d0ed339cd0384c0760e
[ "Unlicense" ]
5
2018-10-15T18:52:38.000Z
2021-12-22T02:37:01.000Z
opaquetype/opaquetype.zig
winksaville/zig-explore
34a19e1540a3b1a3e72c4d0ed339cd0384c0760e
[ "Unlicense" ]
null
null
null
opaquetype/opaquetype.zig
winksaville/zig-explore
34a19e1540a3b1a3e72c4d0ed339cd0384c0760e
[ "Unlicense" ]
null
null
null
const assert = @import("std").debug.assert; // So a type with just a single variant an opaque pointer // works fine. const S = struct { const Self = @This(); value: u32, fn getValue(pOpaqueSelf: OpaquePtr()) u32 { var pSelf = @ptrCast(*Self, pOpaqueSelf); return pSelf.value; } //...
21.913793
57
0.552321
2514bed90100278d9a2a4410108f9258fbcfe7ef
1,839
zig
Zig
types.zig
igmanthony/zig_comptime_lisp
67ac465a345629311f6aa96c0de1f3c698fa3964
[ "Unlicense" ]
15
2021-03-14T19:11:08.000Z
2021-09-06T07:55:09.000Z
types.zig
igmanthony/zig_comptime_lisp
67ac465a345629311f6aa96c0de1f3c698fa3964
[ "Unlicense" ]
null
null
null
types.zig
igmanthony/zig_comptime_lisp
67ac465a345629311f6aa96c0de1f3c698fa3964
[ "Unlicense" ]
null
null
null
const std = @import("std"); const eval = @import("eval.zig"); const Env = eval.Env; const SinglyLinkedList = std.SinglyLinkedList; pub const AtomList = SinglyLinkedList(Atom); pub const VarList = SinglyLinkedList(Variable); pub const SpecialForms = enum { def, @"if", @"fn", }; // errors rock with comptim...
26.652174
101
0.690593
b2e5fcabb5b9ecc9ef32a8e311188a10feb0d0f3
513
zig
Zig
src/main.zig
mattnite/download
72ef813269e7d69559f2d166c925aa5736a5bce6
[ "MIT" ]
null
null
null
src/main.zig
mattnite/download
72ef813269e7d69559f2d166c925aa5736a5bce6
[ "MIT" ]
1
2021-06-21T02:57:59.000Z
2021-06-21T02:57:59.000Z
src/main.zig
mattnite/download
72ef813269e7d69559f2d166c925aa5736a5bce6
[ "MIT" ]
1
2021-06-20T18:56:05.000Z
2021-06-20T18:56:05.000Z
const std = @import("std"); pub const tar = @import("tar.zig"); pub const Options = struct { /// override hashed url with a name, warning that this could collide name: ?[]const u8 = null, /// integrity check using sha256 sha256: ?[]const u8 = null, }; test "tar.gz" { const path = try tar.gz( ...
24.428571
78
0.608187
0af076d40acfd848a05f6785243eeaecd2b56351
418
zig
Zig
test/stage1/behavior/fn_in_struct_in_comptime.zig
Aversiste/zig
20e2d8da616aa6406572e64274fec0740cb626c6
[ "MIT" ]
null
null
null
test/stage1/behavior/fn_in_struct_in_comptime.zig
Aversiste/zig
20e2d8da616aa6406572e64274fec0740cb626c6
[ "MIT" ]
null
null
null
test/stage1/behavior/fn_in_struct_in_comptime.zig
Aversiste/zig
20e2d8da616aa6406572e64274fec0740cb626c6
[ "MIT" ]
1
2019-05-13T17:35:42.000Z
2019-05-13T17:35:42.000Z
const assertOrPanic = @import("std").debug.assertOrPanic; fn get_foo() fn (*u8) usize { comptime { return struct { fn func(ptr: *u8) usize { var u = @ptrToInt(ptr); return u; } }.func; } } test "define a function in an anonymous struct in...
23.222222
61
0.535885
3a2f8a0a8a7fe0bf371be91341d23eefb7d725e2
1,563
zig
Zig
test/behavior/bitcast.zig
courajs/zig
ee98d8700818aa667137e3aa580b16df2ba6d680
[ "MIT" ]
null
null
null
test/behavior/bitcast.zig
courajs/zig
ee98d8700818aa667137e3aa580b16df2ba6d680
[ "MIT" ]
null
null
null
test/behavior/bitcast.zig
courajs/zig
ee98d8700818aa667137e3aa580b16df2ba6d680
[ "MIT" ]
null
null
null
const std = @import("std"); const builtin = @import("builtin"); const expect = std.testing.expect; const expectEqual = std.testing.expectEqual; const maxInt = std.math.maxInt; const native_endian = builtin.target.cpu.arch.endian(); test "@bitCast i32 -> u32" { try testBitCast_i32_u32(); comptime try testBitCas...
23.328358
88
0.575176
c63af066fb12b816c129d43dd3da612bed50370b
35,199
zig
Zig
src/bibtex.zig
omgitsmoe/SciMarkdown
975fe80599f07f29a045015e49e6cd25ec0e043a
[ "MIT" ]
null
null
null
src/bibtex.zig
omgitsmoe/SciMarkdown
975fe80599f07f29a045015e49e6cd25ec0e043a
[ "MIT" ]
null
null
null
src/bibtex.zig
omgitsmoe/SciMarkdown
975fe80599f07f29a045015e49e6cd25ec0e043a
[ "MIT" ]
null
null
null
// names all say bibtex but this is a biblatex parser const std = @import("std"); const utils = @import("utils.zig"); const expect = std.testing.expect; const log = std.log; pub const BibParser = struct { bib: Bibliography, idx: u32, bytes: []const u8, allocator: *std.mem.Allocator, pub const Erro...
32.927035
122
0.534816
414b4e5fe0ea0bab74b5f9821c76a96aab31b6c3
40,007
zig
Zig
libs/zgpu/src/zgpu.zig
kokizzu/zig-gamedev
794ede6a00e97f8b7c69d99a88ba1c9cca1db65b
[ "MIT" ]
1
2021-12-31T05:11:43.000Z
2021-12-31T05:11:43.000Z
libs/zgpu/src/zgpu.zig
kokizzu/zig-gamedev
794ede6a00e97f8b7c69d99a88ba1c9cca1db65b
[ "MIT" ]
null
null
null
libs/zgpu/src/zgpu.zig
kokizzu/zig-gamedev
794ede6a00e97f8b7c69d99a88ba1c9cca1db65b
[ "MIT" ]
null
null
null
const std = @import("std"); const assert = std.debug.assert; const glfw = @import("glfw"); const c = @cImport({ @cInclude("dawn/dawn_proc.h"); @cInclude("dawn_native_mach.h"); }); const objc = @cImport({ @cInclude("objc/message.h"); }); pub const cimgui = @cImport({ @cDefine("CIMGUI_DEFINE_ENUMS_AND_STR...
41.673958
117
0.604169
36484cc8daa986c419d1e1628e16cea44dfaf04e
3,985
zig
Zig
src/main.zig
dumheter/zig-imgui-template
ffade94cb6bae3c6ca5ad0d1756a090930a70348
[ "MIT" ]
4
2021-11-21T23:44:15.000Z
2022-03-13T21:24:38.000Z
src/main.zig
dumheter/zig-imgui-template
ffade94cb6bae3c6ca5ad0d1756a090930a70348
[ "MIT" ]
null
null
null
src/main.zig
dumheter/zig-imgui-template
ffade94cb6bae3c6ca5ad0d1756a090930a70348
[ "MIT" ]
1
2021-12-23T16:27:18.000Z
2021-12-23T16:27:18.000Z
const std = @import("std"); const c = @import("c.zig").c; const glfw = @import("glfw"); const theme = @import("theme.zig"); pub fn main() !void { std.debug.print("-*- zig imgui template -*-\n", .{}); var font: *c.ImFont = undefined; var run: bool = true; var display_size = c.ImVec2{ .x = 1280...
31.132813
148
0.528482
24130ad4289da86c1f254691ce2089dc9fb74869
5,754
zig
Zig
src/Parse.zig
danielabbott/io_uring-HTTPS-Web-Server-WIP-
30a21eaf5ea0e682698fe448470e53bfd716d38b
[ "MIT" ]
8
2020-06-18T20:22:29.000Z
2022-02-23T04:55:34.000Z
src/Parse.zig
danielabbott/io_uring-HTTPS-Web-Server-WIP-
30a21eaf5ea0e682698fe448470e53bfd716d38b
[ "MIT" ]
null
null
null
src/Parse.zig
danielabbott/io_uring-HTTPS-Web-Server-WIP-
30a21eaf5ea0e682698fe448470e53bfd716d38b
[ "MIT" ]
null
null
null
const std = @import("std"); const assert = std.debug.assert; const testing = std.testing; // Returns an error if the end of the string is reached pub fn skipWhitespace(s: *([]const u8)) !void { var i: u32 = 0; while (i < s.*.len and (s.*[i] == ' ' or s.*[i] == '\t' or s.*[i] == '\n' or s.*[i] == '\r')) { ...
27.141509
99
0.498262
1ed807e51d3d37e8bc4ed5845733512e8626152c
1,484
zig
Zig
src/res.zig
bootradev/cupcake
9d4e34837951ada85c3eff02c3948e919fd22e36
[ "MIT" ]
11
2021-12-28T19:54:26.000Z
2022-03-31T20:51:11.000Z
src/res.zig
bootradev/cupcake
9d4e34837951ada85c3eff02c3948e919fd22e36
[ "MIT" ]
null
null
null
src/res.zig
bootradev/cupcake
9d4e34837951ada85c3eff02c3948e919fd22e36
[ "MIT" ]
null
null
null
const api = switch (cfg.platform) { .web => @import("res_web.zig"), .win => @compileError("Not yet implemented!"), }; const cfg = @import("cfg.zig"); const serde = @import("serde.zig"); const std = @import("std"); pub const Res = struct { Type: type, data: Data, pub const Data = union(enum) { ...
26.981818
90
0.576819
af83e7cfe2efdc95a96d49aa8d91baa9cf20e99e
930
zig
Zig
build.zig
greenfork/zig-ncurses
3d3e831631a50ad031e0d51e6d23b154cbf9a2d1
[ "MIT" ]
2
2021-06-24T19:31:05.000Z
2021-08-28T19:03:04.000Z
build.zig
greenfork/zig-ncurses
3d3e831631a50ad031e0d51e6d23b154cbf9a2d1
[ "MIT" ]
null
null
null
build.zig
greenfork/zig-ncurses
3d3e831631a50ad031e0d51e6d23b154cbf9a2d1
[ "MIT" ]
null
null
null
const std = @import("std"); const Builder = std.build.Builder; const Mode = builtin.Mode; pub fn build(b: *Builder) void { const target = b.standardTargetOptions(.{}); const mode = b.standardReleaseOptions(); const example_step = b.step("examples", "Build examples"); inline for (.{ "alternati...
28.181818
77
0.606452
1b336cf65786987dd0948a162b7100e9fdec9d44
153
zig
Zig
test/compile_errors/stage1/obj/sizeOf_bad_type.zig
damienfir/zig
1a1b5ee264d8b2219c34d53cc9602692e6d2ba24
[ "MIT" ]
null
null
null
test/compile_errors/stage1/obj/sizeOf_bad_type.zig
damienfir/zig
1a1b5ee264d8b2219c34d53cc9602692e6d2ba24
[ "MIT" ]
null
null
null
test/compile_errors/stage1/obj/sizeOf_bad_type.zig
damienfir/zig
1a1b5ee264d8b2219c34d53cc9602692e6d2ba24
[ "MIT" ]
null
null
null
export fn entry() usize { return @sizeOf(@TypeOf(null)); } // @sizeOf bad type // // tmp.zig:2:20: error: no size available for type '@Type(.Null)'
19.125
65
0.633987
ca2a0349f3a5603f9c060280c9c1ac9fdce1769f
3,553
zig
Zig
libs/zgpu/src/mach-gpu/Queue.zig
kokizzu/zig-gamedev
794ede6a00e97f8b7c69d99a88ba1c9cca1db65b
[ "MIT" ]
1
2022-02-14T00:54:13.000Z
2022-02-14T00:54:13.000Z
libs/zgpu/src/mach-gpu/Queue.zig
hazeycode/zig-gamedev
16a26020bee836296f1c9a14c78505b42aa87590
[ "MIT" ]
null
null
null
libs/zgpu/src/mach-gpu/Queue.zig
hazeycode/zig-gamedev
16a26020bee836296f1c9a14c78505b42aa87590
[ "MIT" ]
null
null
null
const std = @import("std"); const ImageCopyTexture = @import("structs.zig").ImageCopyTexture; const Extent3D = @import("data.zig").Extent3D; const CommandBuffer = @import("CommandBuffer.zig"); const Buffer = @import("Buffer.zig"); const Texture = @import("Texture.zig"); const Queue = @This(); on_submitted_work_done:...
28.653226
201
0.645089
ba8218014d37acf4c21e06a0da6dad88fa9a4a03
6,143
zig
Zig
source/river-0.1.0/river/Keyboard.zig
Scottx86-64/dotfiles-1
51004b1e2b032664cce6b553d2052757c286087d
[ "Unlicense" ]
1
2021-11-20T22:46:39.000Z
2021-11-20T22:46:39.000Z
source/river-0.1.0/river/Keyboard.zig
Scottx86-64/dotfiles-1
51004b1e2b032664cce6b553d2052757c286087d
[ "Unlicense" ]
null
null
null
source/river-0.1.0/river/Keyboard.zig
Scottx86-64/dotfiles-1
51004b1e2b032664cce6b553d2052757c286087d
[ "Unlicense" ]
null
null
null
// This file is part of river, a dynamic tiling wayland compositor. // // Copyright 2020 The River Developers // // 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 3 of the Licens...
36.784431
107
0.660264
af1545832dee3b3e558a463ebf9ac75ad36b346e
173
zig
Zig
test/cases/catch_at_comptime.0.zig
mparadinha/zig
e498fb155051f548071da1a13098b8793f527275
[ "MIT" ]
730
2017-04-25T06:34:15.000Z
2018-05-23T16:11:36.000Z
test/cases/catch_at_comptime.0.zig
mparadinha/zig
e498fb155051f548071da1a13098b8793f527275
[ "MIT" ]
691
2017-04-25T04:33:29.000Z
2018-05-23T05:31:49.000Z
test/cases/catch_at_comptime.0.zig
mparadinha/zig
e498fb155051f548071da1a13098b8793f527275
[ "MIT" ]
72
2017-04-30T14:31:55.000Z
2018-05-16T22:15:31.000Z
pub fn main() void { const i: anyerror!u64 = 0; const caught = i catch 5; assert(caught == 0); } fn assert(b: bool) void { if (!b) unreachable; } // run //
14.416667
30
0.554913
2d4951b8532bbae98da198526a67e41f2c435f6f
5,646
zig
Zig
2021/p03/report.zig
gonzus/AdventOfCode
fe33871b9babe1c93663d468b6c135096c29c4f4
[ "MIT" ]
null
null
null
2021/p03/report.zig
gonzus/AdventOfCode
fe33871b9babe1c93663d468b6c135096c29c4f4
[ "MIT" ]
null
null
null
2021/p03/report.zig
gonzus/AdventOfCode
fe33871b9babe1c93663d468b6c135096c29c4f4
[ "MIT" ]
null
null
null
const std = @import("std"); const testing = std.testing; const allocator = std.testing.allocator; pub const Report = struct { const Line = struct { const MAX_SIZE = 16; bits: [MAX_SIZE]usize, alive: bool, pub fn init() Line { var self = Line{ .bits = [...
25.093333
112
0.482643
3334ca2d61209af82a6138124f37435391232a0a
2,506
zig
Zig
src/util/enums.zig
tsmanner/table-top
b7affa8117bb1b13db8449a2578dce3becd0855d
[ "MIT" ]
null
null
null
src/util/enums.zig
tsmanner/table-top
b7affa8117bb1b13db8449a2578dce3becd0855d
[ "MIT" ]
null
null
null
src/util/enums.zig
tsmanner/table-top
b7affa8117bb1b13db8449a2578dce3becd0855d
[ "MIT" ]
null
null
null
const std = @import("std"); pub fn Combinator(comptime Left: type, comptime Right: type) type { return struct { const Self = @This(); /// Take two enum types and yield a new enum that contains the cross product of them. /// Enum values are ignored to guarantee there are no collisions. ...
40.419355
109
0.509577
88283231f8090de924ed65525b17f82bce263c8a
6,313
zig
Zig
src/day12.zig
cdwfs/advent2021
b1763165a69fccffd7ed12f80c5f4d6ce5f3e25e
[ "MIT" ]
4
2021-12-30T09:40:02.000Z
2022-01-04T02:36:12.000Z
src/day12.zig
cdwfs/advent2021
b1763165a69fccffd7ed12f80c5f4d6ce5f3e25e
[ "MIT" ]
null
null
null
src/day12.zig
cdwfs/advent2021
b1763165a69fccffd7ed12f80c5f4d6ce5f3e25e
[ "MIT" ]
null
null
null
const std = @import("std"); const util = @import("util.zig"); const data = @embedFile("../data/day12.txt"); const Input = struct { nodes: std.StringHashMap(std.ArrayList([]const u8)), node_masks: std.StringHashMap(u25), allocator: std.mem.Allocator, pub fn init(input_text: []const u8, allocator: std....
29.226852
105
0.586251
306a99b39f9249f004ed0032a13273069620307e
2,297
zig
Zig
src/de/impl/visitor/array.zig
demizer/getty
4fd923bdd5487ca080cf8bb13d4f3023c4033c83
[ "MIT" ]
null
null
null
src/de/impl/visitor/array.zig
demizer/getty
4fd923bdd5487ca080cf8bb13d4f3023c4033c83
[ "MIT" ]
null
null
null
src/de/impl/visitor/array.zig
demizer/getty
4fd923bdd5487ca080cf8bb13d4f3023c4033c83
[ "MIT" ]
null
null
null
const getty = @import("../../../lib.zig"); const std = @import("std"); pub fn Visitor(comptime Array: type) type { return struct { const Self = @This(); pub usingnamespace getty.de.Visitor( Self, Value, undefined, undefined, undefined, ...
28.7125
134
0.422725
0bf02ca1c4f4d2f0d69d00b2550fca2f5380e89c
1,413
zig
Zig
example/meta_random.zig
NewbLuck/zig-wren
cdb4ee342c00ce17518720333a8d07203d78bdd2
[ "MIT" ]
2
2022-03-12T19:38:44.000Z
2022-03-12T19:58:27.000Z
example/meta_random.zig
NewbLuck/zig-wren
cdb4ee342c00ce17518720333a8d07203d78bdd2
[ "MIT" ]
null
null
null
example/meta_random.zig
NewbLuck/zig-wren
cdb4ee342c00ce17518720333a8d07203d78bdd2
[ "MIT" ]
2
2021-08-04T09:35:33.000Z
2021-08-04T17:13:23.000Z
const std = @import("std"); const wren = @import("wren"); pub var alloc = std.testing.allocator; pub fn main() anyerror!void { // Initialize the data structures for the wrapper wren.init(alloc); defer wren.deinit(); // Set up a VM configuration using the supplied default bindings // You can overr...
27.705882
70
0.547771
6c54829eadee9c4523b904078c4191e82d9b7e46
1,702
zig
Zig
src/Route.zig
06kellyjac/libflightplan
d75ae9a98f137f2f64dc963888e548fa552b6209
[ "MIT" ]
63
2022-01-16T18:43:40.000Z
2022-03-25T17:23:21.000Z
src/Route.zig
06kellyjac/libflightplan
d75ae9a98f137f2f64dc963888e548fa552b6209
[ "MIT" ]
1
2022-01-21T17:33:39.000Z
2022-01-23T05:01:03.000Z
src/Route.zig
06kellyjac/libflightplan
d75ae9a98f137f2f64dc963888e548fa552b6209
[ "MIT" ]
2
2022-01-17T13:35:52.000Z
2022-01-20T16:01:04.000Z
/// Route structure represents an ordered list of waypoints (and other /// potential metadata) for a route in a flight plan. const Self = @This(); const std = @import("std"); const Allocator = std.mem.Allocator; const PointsList = std.ArrayListUnmanaged(Point); /// Name of the route, human-friendly. name: ?[:0]const...
32.113208
77
0.658637
225a1e208c2ff23d2380cb29d4dca4d2fe25b7e4
4,439
zig
Zig
lib/std/fmt/parse_float/convert_slow.zig
mparadinha/zig
e498fb155051f548071da1a13098b8793f527275
[ "MIT" ]
730
2017-04-25T06:34:15.000Z
2018-05-23T16:11:36.000Z
lib/std/fmt/parse_float/convert_slow.zig
mparadinha/zig
e498fb155051f548071da1a13098b8793f527275
[ "MIT" ]
691
2017-04-25T04:33:29.000Z
2018-05-23T05:31:49.000Z
lib/std/fmt/parse_float/convert_slow.zig
mparadinha/zig
e498fb155051f548071da1a13098b8793f527275
[ "MIT" ]
72
2017-04-30T14:31:55.000Z
2018-05-16T22:15:31.000Z
const std = @import("std"); const math = std.math; const common = @import("common.zig"); const BiasedFp = common.BiasedFp; const Decimal = @import("decimal.zig").Decimal; const mantissaType = common.mantissaType; const max_shift = 60; const num_powers = 19; const powers = [_]u8{ 0, 3, 6, 9, 13, 16, 19, 23, 26, 29, 33,...
38.6
95
0.60419
c324933806d806399cdaf79536a148048c333d65
12,878
zig
Zig
src/kernel/arch/x86_64/limine/stivale2/stivale2.zig
davidgm94/RNU
249bfc97ab215318270e6f54e4fea314f33b02e8
[ "CC0-1.0" ]
null
null
null
src/kernel/arch/x86_64/limine/stivale2/stivale2.zig
davidgm94/RNU
249bfc97ab215318270e6f54e4fea314f33b02e8
[ "CC0-1.0" ]
null
null
null
src/kernel/arch/x86_64/limine/stivale2/stivale2.zig
davidgm94/RNU
249bfc97ab215318270e6f54e4fea314f33b02e8
[ "CC0-1.0" ]
null
null
null
const std = @import("std"); const assert = std.debug.assert; const stivale = @import("header.zig"); const log = std.log.scoped(.stivale2); const kernel = @import("../../../../kernel.zig"); const x86_64 = @import("../../../x86_64.zig"); pub const Struct = stivale.Struct; pub const Error = error{ memory_map, hig...
47.696296
189
0.663146
89959b7b544f0f08be43e99beb5fd0c8c809c805
1,743
zig
Zig
std/io_test.zig
harryeakins/zig
8503eff8c12697c35ab5c73d6651c4b996339706
[ "MIT" ]
null
null
null
std/io_test.zig
harryeakins/zig
8503eff8c12697c35ab5c73d6651c4b996339706
[ "MIT" ]
null
null
null
std/io_test.zig
harryeakins/zig
8503eff8c12697c35ab5c73d6651c4b996339706
[ "MIT" ]
null
null
null
const std = @import("index.zig"); const io = std.io; const allocator = std.debug.global_allocator; const DefaultPrng = std.rand.DefaultPrng; const assert = std.debug.assert; const mem = std.mem; const os = std.os; const builtin = @import("builtin"); test "write a file, read it, then delete it" { var data: [1024]u8...
37.085106
100
0.641997
43de39ab119f06ed5e8b13de9d3bf23514a2af88
369,811
zig
Zig
fiat-zig/src/p384_32.zig
eorloff/fiat-crypto
42515b4b18b653afdeb0cc27b2c5bc0b2686d6ac
[ "BSD-1-Clause", "Apache-2.0", "MIT-0", "MIT" ]
null
null
null
fiat-zig/src/p384_32.zig
eorloff/fiat-crypto
42515b4b18b653afdeb0cc27b2c5bc0b2686d6ac
[ "BSD-1-Clause", "Apache-2.0", "MIT-0", "MIT" ]
null
null
null
fiat-zig/src/p384_32.zig
eorloff/fiat-crypto
42515b4b18b653afdeb0cc27b2c5bc0b2686d6ac
[ "BSD-1-Clause", "Apache-2.0", "MIT-0", "MIT" ]
null
null
null
// Autogenerated: 'src/ExtractionOCaml/word_by_word_montgomery' --lang Zig --internal-static --public-function-case camelCase --private-function-case camelCase --public-type-case UpperCamelCase --private-type-case UpperCamelCase --no-prefix-fiat --package-name p384 '' 32 '2^384 - 2^128 - 2^96 + 2^32 - 1' mul square add...
37.705037
831
0.613481
4653d8668ebbaa068c9689af438a37f0e06a0b83
166
zig
Zig
test/compile_errors/stage1/obj/indexing_a_undefined_slice_at_comptime.zig
damienfir/zig
1a1b5ee264d8b2219c34d53cc9602692e6d2ba24
[ "MIT" ]
null
null
null
test/compile_errors/stage1/obj/indexing_a_undefined_slice_at_comptime.zig
damienfir/zig
1a1b5ee264d8b2219c34d53cc9602692e6d2ba24
[ "MIT" ]
null
null
null
test/compile_errors/stage1/obj/indexing_a_undefined_slice_at_comptime.zig
damienfir/zig
1a1b5ee264d8b2219c34d53cc9602692e6d2ba24
[ "MIT" ]
null
null
null
comptime { var slice: []u8 = undefined; slice[0] = 2; } // indexing a undefined slice at comptime // // tmp.zig:3:10: error: index 0 outside slice of size 0
18.444444
55
0.638554
4ce93e6b519fe0f52971bb42b3bb44b8908daa9c
176
zig
Zig
test/cases/compile_errors/stage1/obj/write_to_const_global_variable.zig
mparadinha/zig
e498fb155051f548071da1a13098b8793f527275
[ "MIT" ]
730
2017-04-25T06:34:15.000Z
2018-05-23T16:11:36.000Z
test/cases/compile_errors/stage1/obj/write_to_const_global_variable.zig
mparadinha/zig
e498fb155051f548071da1a13098b8793f527275
[ "MIT" ]
691
2017-04-25T04:33:29.000Z
2018-05-23T05:31:49.000Z
test/cases/compile_errors/stage1/obj/write_to_const_global_variable.zig
mparadinha/zig
e498fb155051f548071da1a13098b8793f527275
[ "MIT" ]
72
2017-04-30T14:31:55.000Z
2018-05-16T22:15:31.000Z
const x : i32 = 99; fn f() void { x = 1; } export fn entry() void { f(); } // error // backend=stage1 // target=native // // tmp.zig:3:9: error: cannot assign to constant
14.666667
48
0.585227
fb919bc204407b89394dbbbfc64baf3458e783fb
2,729
zig
Zig
src/math/rect.zig
foxnne/zig-upaya
50e27c2d8d0f07c6699fb0c727fc446dff3daf43
[ "MIT" ]
1
2021-07-13T20:58:49.000Z
2021-07-13T20:58:49.000Z
src/math/rect.zig
foxnne/zig-upaya
50e27c2d8d0f07c6699fb0c727fc446dff3daf43
[ "MIT" ]
null
null
null
src/math/rect.zig
foxnne/zig-upaya
50e27c2d8d0f07c6699fb0c727fc446dff3daf43
[ "MIT" ]
1
2021-07-17T19:03:53.000Z
2021-07-17T19:03:53.000Z
const std = @import("std"); const Edge = enum{ left, right, top, bottom }; pub const RectF = struct { x: f32 = 0, y: f32 = 0, width: f32 = 0, height: f32 = 0, }; pub const Rect = struct { x: i32 = 0, y: i32 = 0, width: i32 = 0, height: i32 = 0, pub fn right(self: R...
25.990476
140
0.466471
e875738e65be201f9b18039768cb115b7c02519c
42,003
zig
Zig
src/markdown/markdown.zig
gernest/hoodie
234e80572428f10adce35080e4679ad8b295d0cb
[ "MIT" ]
19
2019-09-06T21:26:52.000Z
2021-02-13T23:18:37.000Z
src/markdown/markdown.zig
gernest/hoodie
234e80572428f10adce35080e4679ad8b295d0cb
[ "MIT" ]
null
null
null
src/markdown/markdown.zig
gernest/hoodie
234e80572428f10adce35080e4679ad8b295d0cb
[ "MIT" ]
1
2020-09-13T23:54:12.000Z
2020-09-13T23:54:12.000Z
const std = @import("std"); const ascii = std.ascii; const mem = std.mem; const io = std.io; const Buffer = std.Buffer; pub const EXTENSION_NO_INTRA_EMPHASIS = 1; pub const EXTENSION_TABLES = 2; pub const EXTENSION_FENCED_CODE = 4; pub const EXTENSION_AUTOLINK = 8; pub const EXTENSION_STRIKETHROUGH = 16; pub const E...
30.414917
122
0.494179
3fd5cd5f948c6c442f6dd13b126f17a764746609
58,109
zig
Zig
lib/std/target.zig
AODQ/zig
73d0fa9a9894abf3621eb273708972a783ea650f
[ "MIT" ]
null
null
null
lib/std/target.zig
AODQ/zig
73d0fa9a9894abf3621eb273708972a783ea650f
[ "MIT" ]
null
null
null
lib/std/target.zig
AODQ/zig
73d0fa9a9894abf3621eb273708972a783ea650f
[ "MIT" ]
null
null
null
// SPDX-License-Identifier: MIT // Copyright (c) 2015-2021 Zig Contributors // This file is part of [zig](https://ziglang.org/), which is MIT licensed. // The MIT license requires this copyright notice to be included in all copies // and substantial portions of the software. const std = @import("std.zig"); const mem = ...
35.132406
135
0.42305
0fb1cbe5a719988585d97d45f23d56395af95220
4,217
zig
Zig
2021/day04.zig
jonase/advent-of-code
3f341925bf5c53709ba3a814d2980c7a1383515b
[ "MIT" ]
null
null
null
2021/day04.zig
jonase/advent-of-code
3f341925bf5c53709ba3a814d2980c7a1383515b
[ "MIT" ]
null
null
null
2021/day04.zig
jonase/advent-of-code
3f341925bf5c53709ba3a814d2980c7a1383515b
[ "MIT" ]
null
null
null
const std = @import("std"); const input = @embedFile("day04.txt"); const Board = struct { grid: [5][5]u8, marked: u25, }; pub fn main() !void { var gpa = std.heap.GeneralPurposeAllocator(.{}){}; const allocator = &gpa.allocator; var iter = std.mem.split(u8, input, "\n\n"); const nums: []u8 =...
29.697183
92
0.559165
533ac928b462fd50467af59cd2a7f7ffe542c686
302
zig
Zig
test/compile_errors/stage1/obj/issue_7810-comptime_slice-len_increment_beyond_bounds.zig
damienfir/zig
1a1b5ee264d8b2219c34d53cc9602692e6d2ba24
[ "MIT" ]
null
null
null
test/compile_errors/stage1/obj/issue_7810-comptime_slice-len_increment_beyond_bounds.zig
damienfir/zig
1a1b5ee264d8b2219c34d53cc9602692e6d2ba24
[ "MIT" ]
null
null
null
test/compile_errors/stage1/obj/issue_7810-comptime_slice-len_increment_beyond_bounds.zig
damienfir/zig
1a1b5ee264d8b2219c34d53cc9602692e6d2ba24
[ "MIT" ]
null
null
null
export fn foo_slice_len_increment_beyond_bounds() void { comptime { var buf_storage: [8]u8 = undefined; var buf: []const u8 = buf_storage[0..]; buf.len += 1; buf[8] = 42; } } // comptime slice-len increment beyond bounds // // :6:12: error: out of bounds slice
23.230769
56
0.602649
283e798cc5ae3825a8fc3f36c5ba1811ec9b2cea
334
zig
Zig
src/drivers/drivers.zig
aurelian2/Florence
4869f92957b27ebf57687189cb08c52cacdd0c12
[ "CC0-1.0" ]
2
2021-05-15T09:16:47.000Z
2021-05-15T16:08:32.000Z
src/drivers/drivers.zig
aurelian2/Florence
4869f92957b27ebf57687189cb08c52cacdd0c12
[ "CC0-1.0" ]
null
null
null
src/drivers/drivers.zig
aurelian2/Florence
4869f92957b27ebf57687189cb08c52cacdd0c12
[ "CC0-1.0" ]
null
null
null
pub const mmio_serial = @import("io/mmio_serial.zig"); pub const vesa_log = @import("io/vesa_log.zig"); pub const vga_log = @import("io/vga_log.zig"); pub const ahci = @import("disk/ahci.zig"); pub const virtio_gpu = @import("virtio/virtio-gpu.zig"); pub const hid = .{ .keyboard = @import("hid/keybo...
27.833333
57
0.655689
897d568d95208abe569450ce7880c8dc73ee12f7
41
zig
Zig
src/lang/ast/encoding.zig
clpi/idl
368f517785c917e280372126905571622ec0a995
[ "MIT" ]
1
2022-01-03T13:35:27.000Z
2022-01-03T13:35:27.000Z
src/lang/ast/encoding.zig
clpi/idl
368f517785c917e280372126905571622ec0a995
[ "MIT" ]
null
null
null
src/lang/ast/encoding.zig
clpi/idl
368f517785c917e280372126905571622ec0a995
[ "MIT" ]
null
null
null
pub const typecoe = union(enum) { }
10.25
33
0.585366
46c1df03bb08c6edcde19578c32613f1d66dfdf4
178
zig
Zig
src/math/vec2.zig
Black-Cat/nyancore
ddb57a25b68c77dd46c8b5f36fbb6a4d843534d0
[ "MIT" ]
null
null
null
src/math/vec2.zig
Black-Cat/nyancore
ddb57a25b68c77dd46c8b5f36fbb6a4d843534d0
[ "MIT" ]
null
null
null
src/math/vec2.zig
Black-Cat/nyancore
ddb57a25b68c77dd46c8b5f36fbb6a4d843534d0
[ "MIT" ]
null
null
null
const math = @import("math.zig"); pub fn dot(a: math.vec2, b: math.vec2) f32 { return a[0] * b[0] + a[1] * b[1]; } pub fn norm2(a: math.vec2) f32 { return dot(a, a); }
17.8
44
0.550562
82e46e5b6f581863d5a22005788b72fa8077ed12
56
zpl
Zimpl
lib/scipoptsuite-5.0.1/zimpl/check/errors/e168.zpl
npwebste/UPS_Controller
a90ce2229108197fd48f956310ae2929e0fa5d9a
[ "AFL-1.1" ]
null
null
null
lib/scipoptsuite-5.0.1/zimpl/check/errors/e168.zpl
npwebste/UPS_Controller
a90ce2229108197fd48f956310ae2929e0fa5d9a
[ "AFL-1.1" ]
null
null
null
lib/scipoptsuite-5.0.1/zimpl/check/errors/e168.zpl
npwebste/UPS_Controller
a90ce2229108197fd48f956310ae2929e0fa5d9a
[ "AFL-1.1" ]
1
2022-01-19T01:15:11.000Z
2022-01-19T01:15:11.000Z
# $Id: e168.zpl,v 1.5 2010/06/10 19:42:41 bzfkocht Exp $
56
56
0.660714
3d6ffde48ddde0473256ba8b66c481525af9e4e6
96
zpl
Zimpl
lib/scipoptsuite-5.0.1/zimpl/check/errors/e119_4.zpl
npwebste/UPS_Controller
a90ce2229108197fd48f956310ae2929e0fa5d9a
[ "AFL-1.1" ]
null
null
null
lib/scipoptsuite-5.0.1/zimpl/check/errors/e119_4.zpl
npwebste/UPS_Controller
a90ce2229108197fd48f956310ae2929e0fa5d9a
[ "AFL-1.1" ]
null
null
null
lib/scipoptsuite-5.0.1/zimpl/check/errors/e119_4.zpl
npwebste/UPS_Controller
a90ce2229108197fd48f956310ae2929e0fa5d9a
[ "AFL-1.1" ]
1
2022-01-19T01:15:11.000Z
2022-01-19T01:15:11.000Z
# $Id: e119_4.zpl,v 1.5 2010/06/10 19:42:41 bzfkocht Exp $ set A:={1..5} symdiff {1..2}*{3..4};
32
58
0.583333
d35c7f06a7484abaf7a0d19591ec349e54174622
262
desktop
desktop
applications/xdg-gmail.desktop
mbr/binbin
39fbdfd60d5165117ce9bcc8cb24b2293322db49
[ "MIT" ]
4
2016-09-09T10:32:05.000Z
2021-12-25T16:05:12.000Z
applications/xdg-gmail.desktop
mbr/binbin
39fbdfd60d5165117ce9bcc8cb24b2293322db49
[ "MIT" ]
null
null
null
applications/xdg-gmail.desktop
mbr/binbin
39fbdfd60d5165117ce9bcc8cb24b2293322db49
[ "MIT" ]
null
null
null
[Desktop Entry] Version=1.0 Name=GoogleMail GenericName=Email Comment=Send and Receive Email Exec=xdg-gmail chromium %u Icon=gmail.png Terminal=false Type=Application MimeType=message/rfc822;x-scheme-handler/mailto; StartupNotify=false Categories=Network;Email;
20.153846
48
0.835878
611abfa22c665957f5d916f40e13f5913b287746
122
desktop
desktop
dotfiles/.config/autostart/conky.desktop
Toxblh/Linux-Applications
55598eb182171bd9e93b7a4a162aa76aa02f4cf0
[ "MIT" ]
8
2019-09-03T13:11:17.000Z
2022-01-21T10:18:53.000Z
dotfiles/.config/autostart/conky.desktop
Toxblh/Linux-Applications
55598eb182171bd9e93b7a4a162aa76aa02f4cf0
[ "MIT" ]
null
null
null
dotfiles/.config/autostart/conky.desktop
Toxblh/Linux-Applications
55598eb182171bd9e93b7a4a162aa76aa02f4cf0
[ "MIT" ]
1
2021-09-06T15:53:19.000Z
2021-09-06T15:53:19.000Z
[Desktop Entry] Type=Application Name=Conky Exec=/home/toxblh/.config/conky/startup.sh Terminal=false StartupNotify=false
17.428571
42
0.827869
0210819900d6b9f349b99ce854a177b6ec40e2dc
233
desktop
desktop
freebsd/loader.conf.desktop
christosmarg/dotfiles
6d49fe2bd6a66726138b414d6e33363b4ab00885
[ "MIT" ]
null
null
null
freebsd/loader.conf.desktop
christosmarg/dotfiles
6d49fe2bd6a66726138b414d6e33363b4ab00885
[ "MIT" ]
null
null
null
freebsd/loader.conf.desktop
christosmarg/dotfiles
6d49fe2bd6a66726138b414d6e33363b4ab00885
[ "MIT" ]
null
null
null
kern.vty="YES" kern.geom.label.disk_ident.enable="0" kern.geom.label.gptid.enable="0" kern.geom.label.ufsid.enable="0" zfs_load="YES" nvidia_name="nvidia" nvidia_modeset_load="YES" nvidia_modeset_name="nvidia-modeset" vmm_load="YES"
23.3
37
0.785408
f99a8433813ea0edd824d40340905f3f74236696
559
desktop
desktop
database/quokkagit/org.ballessay.quokkagit.desktop
Swiftapp-hub/appimage.github.io
751131fab7beffc11bee43c56bea1760190061e3
[ "MIT" ]
228
2017-08-23T13:35:04.000Z
2022-03-30T20:57:21.000Z
database/quokkagit/org.ballessay.quokkagit.desktop
Swiftapp-hub/appimage.github.io
751131fab7beffc11bee43c56bea1760190061e3
[ "MIT" ]
1,504
2017-08-21T15:06:59.000Z
2022-03-31T20:22:42.000Z
database/quokkagit/org.ballessay.quokkagit.desktop
Swiftapp-hub/appimage.github.io
751131fab7beffc11bee43c56bea1760190061e3
[ "MIT" ]
530
2017-08-23T13:28:42.000Z
2022-03-31T20:03:25.000Z
[Desktop Entry] Type=Application Comment=A git log viewer Name=quokkagit Exec=quokkagit Icon=quokkagit Categories=Development; X-AppImage-Version=61454e8 [AppImageHub] X-AppImage-UpdateInformation=gh-releases-zsync|ballessay|quokkagit|continuous|quokkagit*-x86_64.AppImage.zsync X-AppImage-Signature=no valid OpenPGP da...
34.9375
194
0.824687
5efdb3365fd530ed087ce058dfcab7834acbd04a
207
desktop
desktop
configs/host_agnostic/.config/autostart/signal-desktop.desktop
butla/machine_setups
53c68a7eab25d486d639e97cc1166625f772354b
[ "MIT" ]
2
2021-09-25T01:25:00.000Z
2021-11-28T21:26:42.000Z
configs/host_agnostic/.config/autostart/signal-desktop.desktop
butla/machine_setups
53c68a7eab25d486d639e97cc1166625f772354b
[ "MIT" ]
null
null
null
configs/host_agnostic/.config/autostart/signal-desktop.desktop
butla/machine_setups
53c68a7eab25d486d639e97cc1166625f772354b
[ "MIT" ]
null
null
null
[Desktop Entry] Encoding=UTF-8 Version=0.9.4 Type=Application Name=signal-desktop Comment=private communicator Exec=signal-desktop OnlyShowIn=XFCE; RunHook=0 StartupNotify=false Terminal=false Hidden=false
14.785714
28
0.835749
53d987bb710d541061022b5169da5f0cbf50ea12
168
desktop
desktop
cylinder.desktop
Sturmflut/ubuntu-touch-qt3d-cylinder
0aa6ff7d5b6d06138650fe43a45e764962f3b1bc
[ "BSD-3-Clause" ]
2
2016-09-25T16:21:56.000Z
2017-10-27T13:28:03.000Z
cylinder.desktop
Sturmflut/ubuntu-touch-qt3d-cylinder
0aa6ff7d5b6d06138650fe43a45e764962f3b1bc
[ "BSD-3-Clause" ]
1
2016-09-25T16:56:12.000Z
2017-02-18T23:32:18.000Z
cylinder.desktop
Sturmflut/ubuntu-touch-qt3d-cylinder
0aa6ff7d5b6d06138650fe43a45e764962f3b1bc
[ "BSD-3-Clause" ]
null
null
null
[Desktop Entry] Name=Qt3D cylinder Comment=Qt3D demo app, shows a textured cylinder Exec=cylinder Icon=cylinder.png Terminal=false Type=Application X-Ubuntu-Touch=true
18.666667
48
0.827381
759f018d17b1bab019447a9dbe11b5e007053cd9
235
desktop
desktop
semana_06/links/In Depth: Principal Component Analysis | Python Data Science Handbook.desktop
alexaldr/AceleraDev-Data-Science
fbb15e59d0299f7103cb1ecfb4de0052022aa111
[ "MIT" ]
3
2020-04-15T23:15:19.000Z
2020-04-17T21:18:20.000Z
semana_06/links/In Depth: Principal Component Analysis | Python Data Science Handbook.desktop
alexaldr/AceleraDev-Data-Science
fbb15e59d0299f7103cb1ecfb4de0052022aa111
[ "MIT" ]
2
2021-02-02T22:40:03.000Z
2021-08-23T20:42:48.000Z
semana_06/links/In Depth: Principal Component Analysis | Python Data Science Handbook.desktop
alexaldr/AceleraDev-Data-Science
fbb15e59d0299f7103cb1ecfb4de0052022aa111
[ "MIT" ]
1
2020-04-17T21:18:22.000Z
2020-04-17T21:18:22.000Z
[Desktop Entry] Encoding=UTF-8 Name=Link to In Depth: Principal Component Analysis | Python Data Science Handbook Type=Link URL=https://jakevdp.github.io/PythonDataScienceHandbook/05.09-principal-component-analysis.html Icon=text-html
33.571429
95
0.825532
4a4fa5e2c9729416494e6ec1e6b506d6a9d9857b
238
desktop
desktop
semana_02/links/Pandas Tutorial: Essentials of Data Science in Pandas Library.desktop
alexaldr/AceleraDev-Data-Science
fbb15e59d0299f7103cb1ecfb4de0052022aa111
[ "MIT" ]
3
2020-04-15T23:15:19.000Z
2020-04-17T21:18:20.000Z
semana_02/links/Pandas Tutorial: Essentials of Data Science in Pandas Library.desktop
alexaldr/AceleraDev-Data-Science
fbb15e59d0299f7103cb1ecfb4de0052022aa111
[ "MIT" ]
2
2021-02-02T22:40:03.000Z
2021-08-23T20:42:48.000Z
semana_02/links/Pandas Tutorial: Essentials of Data Science in Pandas Library.desktop
alexaldr/AceleraDev-Data-Science
fbb15e59d0299f7103cb1ecfb4de0052022aa111
[ "MIT" ]
1
2020-04-17T21:18:22.000Z
2020-04-17T21:18:22.000Z
[Desktop Entry] Encoding=UTF-8 Name=Link to Pandas Tutorial: Essentials of Data Science in Pandas Library Type=Link URL=https://medium.com/@shakasom/pandas-tutorial-essentials-of-data-science-in-pandas-library-9b0c81dbfcb1 Icon=text-html
34
106
0.819328
be8298782fc8f0921750b60d3d625a702aec820d
277
desktop
desktop
config/.config/autostart/ProtonMail Bridge.desktop
jbenden/.dotfiles
e216c932d17dad7b313a51038bed7ba77a458825
[ "Unlicense" ]
null
null
null
config/.config/autostart/ProtonMail Bridge.desktop
jbenden/.dotfiles
e216c932d17dad7b313a51038bed7ba77a458825
[ "Unlicense" ]
2
2021-05-23T18:52:49.000Z
2021-07-05T05:43:03.000Z
config/.config/autostart/ProtonMail Bridge.desktop
jbenden/.dotfiles
e216c932d17dad7b313a51038bed7ba77a458825
[ "Unlicense" ]
null
null
null
[Desktop Entry] Type=Application Name=ProtonMail Bridge TryExec=/usr/lib/protonmail/bridge/protonmail-bridge # Exec="/usr/lib/protonmail/bridge/protonmail-bridge.sh" "--no-window" Exec="/usr/lib/protonmail/bridge/protonmail-bridge" "--no-window" X-GNOME-Autostart-enabled=true
34.625
70
0.794224
6ff4856aed4f25be934367b8a07cf56a2df1f5cd
128
desktop
desktop
autostart/emacsd.desktop
pabzdzdzwiagief/dotfiles
c0a35f64dea1bedc4e2ff120061a6aa78b1993d9
[ "CC0-1.0" ]
1
2017-02-14T05:31:10.000Z
2017-02-14T05:31:10.000Z
autostart/emacsd.desktop
pabzdzdzwiagief/dotfiles
c0a35f64dea1bedc4e2ff120061a6aa78b1993d9
[ "CC0-1.0" ]
null
null
null
autostart/emacsd.desktop
pabzdzdzwiagief/dotfiles
c0a35f64dea1bedc4e2ff120061a6aa78b1993d9
[ "CC0-1.0" ]
null
null
null
[Desktop Entry] Name=Emacs Daemon Comment=Start emacs daemon Exec=emacsd restart Terminal=false Type=Application NoDisplay=true
16
26
0.84375
46e24cd971cb054c6e03f864400172eb61e863f2
191
desktop
desktop
recipes/freenote/files/FreeNote/apps/Applications/FreeNote.desktop
JrCs/opendreambox
9dbb1c7acca49a81082fab043abc4acecb309761
[ "MIT" ]
70
2015-02-23T04:18:51.000Z
2022-03-15T02:01:27.000Z
recipes/freenote/files/FreeNote/apps/Applications/FreeNote.desktop
JrCs/opendreambox
9dbb1c7acca49a81082fab043abc4acecb309761
[ "MIT" ]
1
2021-11-27T17:24:21.000Z
2021-11-27T17:24:21.000Z
recipes/freenote/files/FreeNote/apps/Applications/FreeNote.desktop
JrCs/opendreambox
9dbb1c7acca49a81082fab043abc4acecb309761
[ "MIT" ]
88
2015-02-11T12:03:16.000Z
2022-03-30T11:33:42.000Z
[Desktop Entry] Comment= Exec=FreeNote Icon=freenote Type=Application Name=FreeNoteQt Display=640x480/144dpi,480x640/144dpi MimeType=application/freenote MimeTypeIcons=freenote CanFastload=1
17.363636
37
0.863874
a002f369dfd3d5c18210f131ad3a6771b0f60476
364
desktop
desktop
electronic-wechat.desktop
ChinaFengliang/electronic-wechat
8a66c1584bf645dae4e630386abc755554630e9b
[ "MIT" ]
null
null
null
electronic-wechat.desktop
ChinaFengliang/electronic-wechat
8a66c1584bf645dae4e630386abc755554630e9b
[ "MIT" ]
null
null
null
electronic-wechat.desktop
ChinaFengliang/electronic-wechat
8a66c1584bf645dae4e630386abc755554630e9b
[ "MIT" ]
null
null
null
[Desktop Entry] Name=Wechat Name[zh_CN]=微信电脑版 Name[zh_TW]=微信电脑版 Exec=/home/fengliang/bin/electronic-wechat/dist/electronic-wechat-linux-x64/electronic-wechat Icon=/home/fengliang/bin/electronic-wechat/assets/Wechat.png Terminal=false X-MultipleArgs=false Type=Application Encoding=UTF-8 Categories=Application;Utility;Ne...
28
93
0.846154
a506157768c5d8b56bb9c2e15edbb40a18c47d04
7,100
desktop
desktop
afterstep/applications/find.desktop
born2late/afterstep-devel
0dc407835e84bb75b8c38b07cd222bff41781c10
[ "MIT" ]
2
2017-06-22T11:45:58.000Z
2019-02-07T22:14:39.000Z
afterstep/applications/find.desktop
Acidburn0zzz/afterstep-devel
4f62e0d1f26747924ed6eaad065265640d04ddb0
[ "MIT" ]
4
2015-04-21T06:04:17.000Z
2015-09-25T06:25:10.000Z
afterstep/applications/find.desktop
Acidburn0zzz/afterstep-devel
4f62e0d1f26747924ed6eaad065265640d04ddb0
[ "MIT" ]
2
2017-07-15T23:27:47.000Z
2020-01-14T17:43:36.000Z
[Desktop Entry] Name=GNOME File Search Tool GenericName=System Search Comment=Find Files/Folders Comment[af]=Soek Lêers/Gidse Comment[bg]=Търсене на файлове Comment[bn]=ফাইল/ফোল্ডার অনুসন্ধান Comment[br]=Klask restroù/renkelloù Comment[bs]=Pronađi datoteke Comment[ca]=Cerca fitxers i carpetes Comment[cs]=Najít soubory/...
30.212766
50
0.811127
391f448c8cce6abb174df74495a7fe49d1653657
195
desktop
desktop
misc/input-method.desktop
ftake/chameleon-tongue
d64d8a2744e291d370c25ce1670852d8de3c3d06
[ "BSD-3-Clause" ]
2
2015-04-19T12:07:22.000Z
2015-12-06T04:11:36.000Z
misc/input-method.desktop
ftake/chameleon-tongue
d64d8a2744e291d370c25ce1670852d8de3c3d06
[ "BSD-3-Clause" ]
null
null
null
misc/input-method.desktop
ftake/chameleon-tongue
d64d8a2744e291d370c25ce1670852d8de3c3d06
[ "BSD-3-Clause" ]
null
null
null
[Desktop Entry] Name=Input Method GenericName=Start Input Method Comment=Start Input Method Exec=/usr/lib/input-method/start-im Terminal=false Type=Application StartupNotify=false NoDisplay=true
19.5
35
0.841026
d4e5d4fad89bc132a87b2559d2392c279d48ce8b
179
desktop
desktop
system/vice/config/x128.desktop
panosmdma/SlackOnly-SlackBuilds
91682df0a8f14aed276b7e27f63a7bde2acc0a34
[ "MIT" ]
8
2016-01-07T18:53:17.000Z
2020-06-07T09:51:12.000Z
system/vice/config/x128.desktop
panosmdma/SlackOnly-SlackBuilds
91682df0a8f14aed276b7e27f63a7bde2acc0a34
[ "MIT" ]
2
2017-02-07T06:39:27.000Z
2017-04-29T18:15:36.000Z
system/vice/config/x128.desktop
panosmdma/SlackOnly-SlackBuilds
91682df0a8f14aed276b7e27f63a7bde2acc0a34
[ "MIT" ]
2
2018-02-01T07:02:12.000Z
2020-11-04T07:17:28.000Z
[Desktop Entry] Name=VICE C128 emulator Comment=Commodore 128 emulator from the VICE team StartupNotify=true Exec=x128 Icon=vice Terminal=false Type=Application Categories=System
17.9
49
0.843575
e15a19a5211364447269818125a66e9f5e5e13ec
227
desktop
desktop
contrib/debian/bitcoingreen-qt.desktop.desktop
panamcoin/Panam
6586f74ed3fbee70a92a11bfca924e14dbc6cbc9
[ "MIT" ]
1
2019-04-17T07:31:28.000Z
2019-04-17T07:31:28.000Z
contrib/debian/bitcoingreen-qt.desktop.desktop
panamcoin/Panam
6586f74ed3fbee70a92a11bfca924e14dbc6cbc9
[ "MIT" ]
null
null
null
contrib/debian/bitcoingreen-qt.desktop.desktop
panamcoin/Panam
6586f74ed3fbee70a92a11bfca924e14dbc6cbc9
[ "MIT" ]
1
2020-11-29T12:36:29.000Z
2020-11-29T12:36:29.000Z
[Desktop Entry] Encoding=UTF-8 Name=Panam Comment=Panam P2P Cryptocurrency Exec=panam-qt %u Terminal=false Type=Application Icon=panam128 MimeType=x-scheme-handler/panam; Categories=Office;Finance; Name[en_US]=panam-qt.desktop
18.916667
32
0.823789
e47bad10c969a998caf90890d627c0b09ece4a17
594
desktop
desktop
build-aux/snap/local/desktop/remita-qt_testnet.desktop
Remitacoin/rem
031d57869013b454a9eb7011ed51a0d95264f588
[ "MIT" ]
2
2021-02-16T19:07:09.000Z
2021-05-03T13:55:20.000Z
build-aux/snap/local/desktop/remita-qt_testnet.desktop
Remitacoin/rem
031d57869013b454a9eb7011ed51a0d95264f588
[ "MIT" ]
1
2021-06-20T01:11:11.000Z
2021-06-20T01:27:21.000Z
build-aux/snap/local/desktop/remita-qt_testnet.desktop
Remitacoin/remit
031d57869013b454a9eb7011ed51a0d95264f588
[ "MIT" ]
null
null
null
# http://standards.freedesktop.org/desktop-entry-spec/desktop-entry-spec-1.0.html [Desktop Entry] Encoding=UTF-8 Name=REMIT_Coin Comment=REMIT_Coin QT test network GenericName=REMIT_Coin Digital Currency QT client testnet network Exec=remita_coin-core.qt-testnet %u Terminal=false Type=Application Icon=${SNAP}/share/pi...
34.941176
128
0.833333
5386d56692f0bfee5fcd71b2d4ccfffde1228410
258
desktop
desktop
contrib/debian/virtualcoin-qt.desktop
xeddmc/virtualcoin
5cd6639b5a3db28535e987fab0d51e77427fa752
[ "MIT" ]
null
null
null
contrib/debian/virtualcoin-qt.desktop
xeddmc/virtualcoin
5cd6639b5a3db28535e987fab0d51e77427fa752
[ "MIT" ]
null
null
null
contrib/debian/virtualcoin-qt.desktop
xeddmc/virtualcoin
5cd6639b5a3db28535e987fab0d51e77427fa752
[ "MIT" ]
null
null
null
[Desktop Entry] Encoding=UTF-8 Name=Virtualcoin Comment=VirtualCoin P2P Cryptocurrency Exec=/usr/bin/darkcoin-qt %u Terminal=false Type=Application Icon=/usr/share/pixmaps/virtualcoin128.png MimeType=x-scheme-handler/virtualcoin; Categories=Office; Finance;
23.454545
42
0.833333
b9f0ed3fd985f321c56b85355d14eef5d27957f0
689
desktop
desktop
database/pomotroid/pomotroid.desktop
mbunkus/appimage.github.io
7e4c5c59fcec8dca3feb490dab968fb6dad36358
[ "MIT" ]
228
2017-08-23T13:35:04.000Z
2022-03-30T20:57:21.000Z
database/pomotroid/pomotroid.desktop
mbunkus/appimage.github.io
7e4c5c59fcec8dca3feb490dab968fb6dad36358
[ "MIT" ]
1,504
2017-08-21T15:06:59.000Z
2022-03-31T20:22:42.000Z
database/pomotroid/pomotroid.desktop
mbunkus/appimage.github.io
7e4c5c59fcec8dca3feb490dab968fb6dad36358
[ "MIT" ]
530
2017-08-23T13:28:42.000Z
2022-03-31T20:03:25.000Z
[Desktop Entry] Name=Pomotroid Comment=A simple and visually-pleasing Pomodoro timer Exec=AppRun Terminal=false Type=Application Icon=pomotroid X-AppImage-Version=0.1.2 X-AppImage-BuildId=a40812e0-23b7-11a8-04c1-f1a5803b8164 Categories=Utility; [AppImageHub] # Dear upstream developer, please include update information...
36.263158
194
0.811321
3bc95da9f72601f5ac91e1d7a076ef429ec39572
218
desktop
desktop
slideshow-exe/slideshow/start.desktop
lexi-lambda/slideshow
96fb17455eb87f17561dae5b934a3502a52a0b30
[ "Apache-2.0", "MIT" ]
29
2015-08-07T20:04:42.000Z
2021-04-12T05:25:05.000Z
slideshow-exe/slideshow/start.desktop
lexi-lambda/slideshow
96fb17455eb87f17561dae5b934a3502a52a0b30
[ "Apache-2.0", "MIT" ]
19
2015-08-05T04:26:57.000Z
2020-10-21T15:43:33.000Z
share/pkgs/slideshow-exe/slideshow/start.desktop
takikawa/racket-ppa
d336bb10e3e0ec3a20020e9ade9e77d2f6f80b6d
[ "MIT" ]
15
2016-06-20T12:20:42.000Z
2022-03-30T15:59:45.000Z
[Desktop Entry] Name=Slideshow GenericName=Slide-presentation tool Comment=Slideshow is a Racket-based tool for writing slide presentations as programs Terminal=false Type=Application Categories=Graphics;Presentation;
27.25
84
0.857798
631e2052ef4502215e355a0b359dd33916c273aa
90
desktop
desktop
home/yggdrasil/files/share/applications/file.desktop
nicolas-graves/dotfiles
41bf96e408d4cd623d633bb6f8a142b87758b1ce
[ "BSD-3-Clause" ]
3
2022-02-07T20:21:20.000Z
2022-03-18T19:14:49.000Z
home/yggdrasil/files/share/applications/file.desktop
nicolas-graves/dotfiles
41bf96e408d4cd623d633bb6f8a142b87758b1ce
[ "BSD-3-Clause" ]
null
null
null
home/yggdrasil/files/share/applications/file.desktop
nicolas-graves/dotfiles
41bf96e408d4cd623d633bb6f8a142b87758b1ce
[ "BSD-3-Clause" ]
null
null
null
[Desktop Entry] Type=Application Name=File Manager Exec=/usr/local/bin/alacritty -e lf %u
18
38
0.777778
5bc163022631ca1e4f96f55a16559c5f41dd1f59
90
desktop
desktop
ansible/roles/iot_baby/files/serial-monitor.desktop
andrasmaroy/iot_baby
9a328d10b7dfa6a366b08c7303b57b0101ffa9d3
[ "MIT" ]
null
null
null
ansible/roles/iot_baby/files/serial-monitor.desktop
andrasmaroy/iot_baby
9a328d10b7dfa6a366b08c7303b57b0101ffa9d3
[ "MIT" ]
7
2022-02-13T23:00:13.000Z
2022-02-13T23:21:36.000Z
ansible/roles/iot_baby/files/serial-monitor.desktop
andrasmaroy/iot_baby
9a328d10b7dfa6a366b08c7303b57b0101ffa9d3
[ "MIT" ]
null
null
null
[Desktop Entry] Type=Application Name=Serial Plotter Exec="/home/pi/iot_baby/iot_baby.py"
18
36
0.8
04b0fe3bb00413a96cd1cbc2ba478ae304227b76
174
desktop
desktop
config/Desktop/RPI-Monitor.desktop
ksbjr/KickPi-OS_up
e52389f2d263b3cb0eda766e7c5d356e3ade21e6
[ "BSD-3-Clause" ]
null
null
null
config/Desktop/RPI-Monitor.desktop
ksbjr/KickPi-OS_up
e52389f2d263b3cb0eda766e7c5d356e3ade21e6
[ "BSD-3-Clause" ]
null
null
null
config/Desktop/RPI-Monitor.desktop
ksbjr/KickPi-OS_up
e52389f2d263b3cb0eda766e7c5d356e3ade21e6
[ "BSD-3-Clause" ]
2
2022-01-13T15:37:07.000Z
2022-03-02T18:15:11.000Z
[Desktop Entry] Version=1.0 Type=Link Name=RPI-Monitor Comment= Icon=novell-button URL=https://localhost:10000/sysinfo.cgi?xnavigation=1 Categories=Settings;DesktopSettings;
19.333333
53
0.821839
103c536317bdceba73bc2b2689ab70cd3282ce93
166
desktop
desktop
matlab2020b.desktop
davidbradway/linux-workstation-custom
7f974eeebfebddd2ab363c85c4dadfb396128637
[ "MIT", "Unlicense" ]
null
null
null
matlab2020b.desktop
davidbradway/linux-workstation-custom
7f974eeebfebddd2ab363c85c4dadfb396128637
[ "MIT", "Unlicense" ]
null
null
null
matlab2020b.desktop
davidbradway/linux-workstation-custom
7f974eeebfebddd2ab363c85c4dadfb396128637
[ "MIT", "Unlicense" ]
null
null
null
[Desktop Entry] Name=Matlab2020b Comment=Run Matlab 2020b desktop Exec=matlab -desktop& Terminal=false Type=Application StartupNotify=true Categories=Development;IDE
18.444444
32
0.849398
bde356a2f963a33c42057def139f35bb904b4ab4
403
desktop
desktop
contrib/debian/novacoin-qt.desktop
nano-project/nanocoin
fdf7bccf62e741fd5fd29f5dbc0b486c7086aba7
[ "MIT" ]
null
null
null
contrib/debian/novacoin-qt.desktop
nano-project/nanocoin
fdf7bccf62e741fd5fd29f5dbc0b486c7086aba7
[ "MIT" ]
null
null
null
contrib/debian/novacoin-qt.desktop
nano-project/nanocoin
fdf7bccf62e741fd5fd29f5dbc0b486c7086aba7
[ "MIT" ]
null
null
null
[Desktop Entry] Encoding=UTF-8 Name=NanoCoin Comment=NanoCoin P2P Cryptocurrency Comment[ru]=NanoCoin, P2P криптовалюта Comment[fr]=NanoCoin, monnaie virtuelle cryptographique pair à pair Comment[tr]=NanoCoin, eşten eşe kriptografik sanal para birimi Exec=/usr/bin/NanoCoin-qt Terminal=false Type=Application Icon=/usr/s...
28.785714
67
0.831266
b21170af764f63fa73359c07f513695854a16ca1
125
desktop
desktop
Makefile.desktop
GeekJoystick/game-and-watch-game-engine
c00a64371c3a98d57b950b1acd94008392fb7b2e
[ "BSD-3-Clause" ]
7
2021-01-03T15:25:25.000Z
2021-07-25T23:39:34.000Z
Makefile.desktop
GeekJoystick/game-and-watch-game-engine
c00a64371c3a98d57b950b1acd94008392fb7b2e
[ "BSD-3-Clause" ]
null
null
null
Makefile.desktop
GeekJoystick/game-and-watch-game-engine
c00a64371c3a98d57b950b1acd94008392fb7b2e
[ "BSD-3-Clause" ]
null
null
null
C_INCLUDES = \ -ICore/Inc/Engine \ all: g++ Core/Src/main.cpp -o main -lSDL2 -Wall -O2 -DDESKTOP -DCOMPILING $(C_INCLUDES)
25
83
0.688
50d4f43785d2de41e38efdf13bc94c7622361132
137
desktop
desktop
FilesRemote.desktop
allanrbo/filesremote
e0dfd083d915af023dc85da0434954b641ec15d6
[ "MIT" ]
385
2020-12-24T03:39:23.000Z
2022-03-20T13:13:12.000Z
FilesRemote.desktop
allanrbo/FilesRemote
0c0cc01a225f477459c2655d236b1682f50f8548
[ "MIT" ]
7
2021-08-19T15:18:47.000Z
2022-03-31T06:56:38.000Z
FilesRemote.desktop
allanrbo/FilesRemote
0c0cc01a225f477459c2655d236b1682f50f8548
[ "MIT" ]
18
2021-06-13T04:05:14.000Z
2022-03-14T03:35:05.000Z
[Desktop Entry] Type=Application Name=FilesRemote Comment=An SFTP file manager Icon=FilesRemote Exec=/usr/bin/filesremote Terminal=false
17.125
28
0.839416
c0f7d173b6a267f35a7ad4f295853da229574be0
191
desktop
desktop
lib/cytoscape_3_3/cytoscape.desktop
BioDepot/noVNC-CyNetworkBMA
c5a95aea49b79a803e9e42ab77e5a405f29bd4e0
[ "MIT" ]
24
2016-04-12T15:46:13.000Z
2022-02-02T10:34:31.000Z
lib/cytoscape_3_3/cytoscape.desktop
BioDepot/noVNC-CyNetworkBMA
c5a95aea49b79a803e9e42ab77e5a405f29bd4e0
[ "MIT" ]
2
2016-02-26T10:13:59.000Z
2016-03-07T05:11:54.000Z
lib/cytoscape_3_3/cytoscape.desktop
BioDepot/noVNC-CyNetworkBMA
c5a95aea49b79a803e9e42ab77e5a405f29bd4e0
[ "MIT" ]
14
2015-09-12T21:04:01.000Z
2020-10-06T15:36:24.000Z
[Desktop Entry] Encoding=UTF-8 Type=Application Name=Cytoscape Name[en_US]=Cytoscape Exec=lxterminal -e '/deps/cytoscape-unix-3.3.0/cytoscape.sh' Comment[en_US]=Cytoscape StartupNotify=true
19.1
60
0.806283
2cf870aeac52c59e579a6697dc82569544ab306c
224
desktop
desktop
desktop/trimage.desktop
Acidburn0zzz/Trimage
e47888e06780ebfbd988f00b7444f6143dc7677a
[ "MIT" ]
null
null
null
desktop/trimage.desktop
Acidburn0zzz/Trimage
e47888e06780ebfbd988f00b7444f6143dc7677a
[ "MIT" ]
null
null
null
desktop/trimage.desktop
Acidburn0zzz/Trimage
e47888e06780ebfbd988f00b7444f6143dc7677a
[ "MIT" ]
null
null
null
[Desktop Entry] Name=Trimage image compressor Comment=A cross-platform tool for optimizing PNG and JPG files. Terminal=false Icon=trimage Type=Application Exec=trimage Categories=Application;Qt;Graphics; StartupNotify=true
20.363636
63
0.839286
8cc9956101b69c7648d4aefd5638694beef7243e
205
desktop
desktop
config/xminad.desktop
michojel/xminad
e51d0103b1c5646b77fabaedde5cd0f416c980b9
[ "BSD-3-Clause" ]
null
null
null
config/xminad.desktop
michojel/xminad
e51d0103b1c5646b77fabaedde5cd0f416c980b9
[ "BSD-3-Clause" ]
null
null
null
config/xminad.desktop
michojel/xminad
e51d0103b1c5646b77fabaedde5cd0f416c980b9
[ "BSD-3-Clause" ]
null
null
null
[Desktop Entry] Type=Application Name=XMinad Exec={{BIN_DIR}}/xminad NoDisplay=true X-GNOME-WMName=XMinad X-GNOME-Autostart-Phase=WindowManager X-GNOME-Provides=windowmanager X-GNOME-Autostart-Notify=true
20.5
37
0.829268
84be43f002ce6aeec01445def0147612cd376567
116
desktop
desktop
pulsemodule/eqpro_gui/freedesktop/pulseaudio-eqpro-gui.desktop
pac85/audioeqpro
9b9be7eed74dbd229c9a645a3847f6f857e8f0cd
[ "MIT" ]
11
2016-11-09T21:12:10.000Z
2020-10-07T06:47:08.000Z
pulsemodule/eqpro_gui/freedesktop/pulseaudio-eqpro-gui.desktop
pac85/audioeqpro
9b9be7eed74dbd229c9a645a3847f6f857e8f0cd
[ "MIT" ]
1
2016-11-14T10:59:43.000Z
2016-11-14T10:59:43.000Z
pulsemodule/eqpro_gui/freedesktop/pulseaudio-eqpro-gui.desktop
pac85/audioeqpro
9b9be7eed74dbd229c9a645a3847f6f857e8f0cd
[ "MIT" ]
6
2016-11-12T15:21:40.000Z
2018-11-15T20:08:41.000Z
[Desktop Entry] Name=eqpro settings Exec=/usr/bin/eqpro-gui Icon=eqpro-icon Type=Application Categories=Audio;
16.571429
24
0.775862
0e032258d88a9efc4100c0240137b594437d7d29
201
desktop
desktop
srcpkgs/jre/files/java-policy-settings.desktop
xdave/xbps-packages
98903b086a03b69e3fc95c17dad4590671ca5f13
[ "BSD-1-Clause" ]
5
2020-03-16T20:00:54.000Z
2022-01-06T04:03:39.000Z
srcpkgs/jre/files/java-policy-settings.desktop
xdave/xbps-packages
98903b086a03b69e3fc95c17dad4590671ca5f13
[ "BSD-1-Clause" ]
1
2019-05-08T09:32:23.000Z
2019-05-08T09:40:57.000Z
srcpkgs/jre/files/java-policy-settings.desktop
xdave/xbps-packages
98903b086a03b69e3fc95c17dad4590671ca5f13
[ "BSD-1-Clause" ]
null
null
null
[Desktop Entry] Exec=policytool Icon=sun-java.png Name[cs]=Nastavení politiky Java aplikací Name=Java Policy Settings Path= StartupNotify=true Terminal=false Type=Application Categories=Settings;Java;
18.272727
41
0.835821
2c834b4544528cf54a2b1bda3a3cd497603cad6d
206
desktop
desktop
domain.desktop
pvdrz/domain
a7693342409f70767ec44edac78759f06c4af508
[ "BlueOak-1.0.0", "Apache-2.0" ]
null
null
null
domain.desktop
pvdrz/domain
a7693342409f70767ec44edac78759f06c4af508
[ "BlueOak-1.0.0", "Apache-2.0" ]
1
2021-11-15T23:38:13.000Z
2021-11-17T16:23:37.000Z
domain.desktop
pvdrz/domain
a7693342409f70767ec44edac78759f06c4af508
[ "BlueOak-1.0.0", "Apache-2.0" ]
null
null
null
[Desktop Entry] Type=Application Name=Domain Icon=signal-desktop Exec=/usr/local/bin/domain Terminal=true Categories=Network;InstantMessaging; Keywords=sgnl;chat;im;messaging;messenger;sms;security;privat;
22.888889
62
0.839806
fd69647a03bced52a35339db6b355e5751345b8c
163
desktop
desktop
debian/desktop/eclipse.desktop
summerclouds/image-ide
ccfe0983eca8f6324efe2c72d559f4611bf2ef0e
[ "Apache-2.0" ]
null
null
null
debian/desktop/eclipse.desktop
summerclouds/image-ide
ccfe0983eca8f6324efe2c72d559f4611bf2ef0e
[ "Apache-2.0" ]
null
null
null
debian/desktop/eclipse.desktop
summerclouds/image-ide
ccfe0983eca8f6324efe2c72d559f4611bf2ef0e
[ "Apache-2.0" ]
null
null
null
[Desktop Entry] Version=1.0 Type=Application Name=Eclipse Comment= Exec=/usr/local/eclipse/eclipse Icon= Path=/usr/local/eclipse Terminal=true StartupNotify=false
14.818182
31
0.815951
7a3f7fb50acb3aac7c2113d783753b1a5248c200
1,218
desktop
desktop
blondie/matchbox/theme.desktop
fatman2021/AmbasaOS-Themes
56eed889e55f6b02d7b205f1c2958c277d745516
[ "Unlicense" ]
null
null
null
blondie/matchbox/theme.desktop
fatman2021/AmbasaOS-Themes
56eed889e55f6b02d7b205f1c2958c277d745516
[ "Unlicense" ]
null
null
null
blondie/matchbox/theme.desktop
fatman2021/AmbasaOS-Themes
56eed889e55f6b02d7b205f1c2958c277d745516
[ "Unlicense" ]
null
null
null
[Desktop Entry] # # The theme.desktop file for a matchbox theme is a basic way to # set the look of things other than the window manager when the # theme is changed. # # Currently it controls the dock and mbmenu's look . # 'Standard' .desktop entries. # Type=MBTheme Name=Blondie Comment=Blondie theme # # Dock/Pa...
21
76
0.762726
a92cf51fcab554c8a4f96af490188f9dca4c8561
290
desktop
desktop
.themes/Nordic GTK/kde/aurorae/Nordic/metadata.desktop
historical-theology/theological-dots
6e588e9df2991de66a699d415c22be62a6e5c386
[ "CC0-1.0" ]
1
2021-09-18T17:12:41.000Z
2021-09-18T17:12:41.000Z
.themes/Nordic GTK/kde/aurorae/Nordic/metadata.desktop
historical-theology/theological-dots
6e588e9df2991de66a699d415c22be62a6e5c386
[ "CC0-1.0" ]
null
null
null
.themes/Nordic GTK/kde/aurorae/Nordic/metadata.desktop
historical-theology/theological-dots
6e588e9df2991de66a699d415c22be62a6e5c386
[ "CC0-1.0" ]
null
null
null
[Desktop Entry] Name=Nordic X-KDE-PluginInfo-Author=eliverlara X-KDE-PluginInfo-Category= X-KDE-PluginInfo-Depends= X-KDE-PluginInfo-Email=eliverlara@gmail.com X-KDE-PluginInfo-EnabledByDefault=true X-KDE-PluginInfo-License=GPLv3 X-KDE-PluginInfo-Name=Nordic X-KDE-PluginInfo-Version=1.0.0
26.363636
43
0.827586
faf62c0ca4ae2808f4bcfc5bbdbe52d44fe39bcb
249
desktop
desktop
GTASA/SAMP.desktop
mattroot/wine-games
923991fed335fc25d449255a4343027c588935c9
[ "MIT" ]
1
2020-02-07T22:08:01.000Z
2020-02-07T22:08:01.000Z
GTASA/SAMP.desktop
mattroot/wine-games
923991fed335fc25d449255a4343027c588935c9
[ "MIT" ]
null
null
null
GTASA/SAMP.desktop
mattroot/wine-games
923991fed335fc25d449255a4343027c588935c9
[ "MIT" ]
1
2020-02-15T18:58:09.000Z
2020-02-15T18:58:09.000Z
[Desktop Entry] Name=San Andreas Multiplayer Comment=Start San Andreas Multiplayer Exec=$HOME/.local/share/wineprefixes/GTASA/runscript.sh samp.exe Icon=SAMP Terminal=false Type=Application Categories=Game; StartupNotify=true StartupWMClass=samp.exe
24.9
64
0.84739
0b259eabe1403d817f155845f4e4807292af25fd
191
desktop
desktop
dynamd/dynamd.desktop
m0lese/dynamd
bcf4b60d7fa9ae9413627a20e9dcfc0cbd77b112
[ "MIT" ]
2
2021-08-22T20:29:09.000Z
2021-09-25T17:27:44.000Z
dynamd/dynamd.desktop
m0lese/dynamd
bcf4b60d7fa9ae9413627a20e9dcfc0cbd77b112
[ "MIT" ]
21
2021-06-30T14:26:30.000Z
2021-10-01T07:35:57.000Z
src/dynamd.desktop
loannaflip/dynamd
f1b32d36af0230e2f94612827d5144aa5da99891
[ "MIT" ]
1
2022-01-08T05:21:58.000Z
2022-01-08T05:21:58.000Z
[Desktop Entry] Encoding=UTF-8 Name=dynamd GenericName=Dynamd Window Manager Comment=Dynamd Window Manager Keywords=dynamd;window manager; TryExec=dynamd Exec=dynamd Icon=dynamd Type=XSession
19.1
33
0.848168
679c9f892ccfcaa81719d5d6a878a49b25d4e818
573
desktop
desktop
src/blackrosewallet.desktop
Camellia73/BlackRoseCoin_GUI
ede33fb4ec27f56987422e2d1da9f91b5077ec17
[ "MIT" ]
null
null
null
src/blackrosewallet.desktop
Camellia73/BlackRoseCoin_GUI
ede33fb4ec27f56987422e2d1da9f91b5077ec17
[ "MIT" ]
null
null
null
src/blackrosewallet.desktop
Camellia73/BlackRoseCoin_GUI
ede33fb4ec27f56987422e2d1da9f91b5077ec17
[ "MIT" ]
null
null
null
[Desktop Entry] Encoding=UTF-8 Name=BlackRose GenericName=BlackRose wallet Name[uk]=BlackRose wallet Name[ru]=BlackRose wallet Name[pl]=BlackRose wallet Name[be]=BlackRose wallet Name[de]=BlackRose wallet Name[es]=BlackRose wallet Comment=BlackRose wallet Comment[uk]=BlackRose wallet Comment[ru]=BlackRose wallet Commen...
22.92
36
0.827225
fc9c5a9c636bf63ad42c2fd6cfd552667641b95e
245
desktop
desktop
qualcoder/GUI/qualcoder.desktop
FantasqueX/QualCoder
11a9c593fab0bbcf9f55b14501deee878d264e8d
[ "MIT" ]
null
null
null
qualcoder/GUI/qualcoder.desktop
FantasqueX/QualCoder
11a9c593fab0bbcf9f55b14501deee878d264e8d
[ "MIT" ]
null
null
null
qualcoder/GUI/qualcoder.desktop
FantasqueX/QualCoder
11a9c593fab0bbcf9f55b14501deee878d264e8d
[ "MIT" ]
null
null
null
[Desktop Entry] Name=QualCoder Type=Application Version=2.9 Comment=Qualitiatve data analysis Exec=python3 -m qualcoder Icon=/usr/share/icons/qualcoder128.png Terminal=false Keywords=QDA;Social Science; Categories=Science; Name[en_AU]=QualCoder
20.416667
38
0.832653
6991730f15a32c0fe09f93ee475b5b809762d49b
156
desktop
desktop
implementation/rosa/smartcard-screensaver.desktop
mikhailnov/2fa-tuner-lib
4de6ad63b0ea9248da2af68da8e0caf7598cc908
[ "MIT" ]
null
null
null
implementation/rosa/smartcard-screensaver.desktop
mikhailnov/2fa-tuner-lib
4de6ad63b0ea9248da2af68da8e0caf7598cc908
[ "MIT" ]
10
2020-03-25T12:05:52.000Z
2020-03-25T14:12:58.000Z
implementation/rosa/smartcard-screensaver.desktop
mikhailnov/2fa-tuner-lib
4de6ad63b0ea9248da2af68da8e0caf7598cc908
[ "MIT" ]
2
2021-03-25T04:33:43.000Z
2021-03-25T14:33:09.000Z
[Desktop Entry] Type=Application Name=Smart Card Screensaver Comment=Application to lock screen on smart card removal. Exec=/usr/bin/pkcs11_eventmgr daemon
26
57
0.833333
065663eed44e19ab8c632abc20aa339f49e6b28c
202
desktop
desktop
config/Desktop/Google-Chrome.desktop
DrSnowbird/jre-mvn-py3-X11
07f2a4754e3a27ea8bdd5302f06907c71b9afb76
[ "Apache-2.0" ]
6
2018-04-30T21:48:26.000Z
2021-03-24T09:06:21.000Z
config/Desktop/Google-Chrome.desktop
DrSnowbird/jre-mvn-py3-X11
07f2a4754e3a27ea8bdd5302f06907c71b9afb76
[ "Apache-2.0" ]
null
null
null
config/Desktop/Google-Chrome.desktop
DrSnowbird/jre-mvn-py3-X11
07f2a4754e3a27ea8bdd5302f06907c71b9afb76
[ "Apache-2.0" ]
4
2018-07-18T20:04:56.000Z
2022-01-11T06:55:36.000Z
[Desktop Entry] Version=1.0 Type=Application Name=Google Chrome Comment=Access the Internet Exec=/usr/bin/google-chrome-stable %U --no-sandbox Icon=google-chrome Path= Terminal=false StartupNotify=true
18.363636
50
0.811881
7d37cc6efe20083032826da2f6bdaf66fa3626a1
243
desktop
desktop
iss-vm/iss-vm-system/Desktop/Solution WeChat Software Robot.desktop
telescopeuser/iss-misc
cd09f30ee597cc93d833207daad824f658b07293
[ "MIT" ]
null
null
null
iss-vm/iss-vm-system/Desktop/Solution WeChat Software Robot.desktop
telescopeuser/iss-misc
cd09f30ee597cc93d833207daad824f658b07293
[ "MIT" ]
null
null
null
iss-vm/iss-vm-system/Desktop/Solution WeChat Software Robot.desktop
telescopeuser/iss-misc
cd09f30ee597cc93d833207daad824f658b07293
[ "MIT" ]
null
null
null
[Desktop Entry] Version=1.0 Comment=This is launcher Exec=/home/iss-user/.DoNotDelete/start-wechat-robot-py3.sh Icon=/home/iss-user/.DoNotDelete/png-wechat-green.png Terminal=true Type=Application Name[en_SG]=Solution WeChat Software Robot
27
58
0.802469
a9748d054afc06eb446050f55f49a17e1ec9e959
5,879
ec
eC
samples/3D/HoloLensModelViewer/modelViewer.ec
mingodad/ecere-sdk
f24d82827e750d8ee0cd52c0abdc87b8fe3b7e96
[ "BSD-3-Clause" ]
264
2015-01-08T22:19:27.000Z
2022-03-25T19:33:03.000Z
samples/3D/HoloLensModelViewer/modelViewer.ec
mingodad/ecere-sdk
f24d82827e750d8ee0cd52c0abdc87b8fe3b7e96
[ "BSD-3-Clause" ]
34
2015-11-07T07:48:18.000Z
2022-02-05T09:13:55.000Z
samples/3D/HoloLensModelViewer/modelViewer.ec
mingodad/ecere-sdk
f24d82827e750d8ee0cd52c0abdc87b8fe3b7e96
[ "BSD-3-Clause" ]
91
2015-01-08T22:19:28.000Z
2022-01-10T10:14:38.000Z
import "ecere" #define _GLES3 #include "gl123es.h" ModelWindow modelWindow; class ModelWindow : Window { displayDriver = "OpenGL"; caption = $"Ecere Model Viewer"; opacity = 0; drawBehind = false; anchor = { left = 0, top = 0, right = 0, bottom = 0 }; Camera camera { fixedQuaternion, ...
21.223827
111
0.576969
bd12193e8aaa085b83909aeb7efab002aa35330e
197
ec
eC
tools/embedded-c/test.ec
block8437/FailSafeC
1458e382518ba8b56f680436873c3b42a89e1636
[ "Apache-2.0" ]
1
2018-02-10T02:52:09.000Z
2018-02-10T02:52:09.000Z
tools/embedded-c/test.ec
block8437/FailSafeC
1458e382518ba8b56f680436873c3b42a89e1636
[ "Apache-2.0" ]
null
null
null
tools/embedded-c/test.ec
block8437/FailSafeC
1458e382518ba8b56f680436873c3b42a89e1636
[ "Apache-2.0" ]
null
null
null
<%#shared #include <errno.h> #%> <%#libs -lm #%> <%#cflags -Wall #%> #define EINVAL <%=d EINVAL %> #define ESOMETHING <%[[%><%#onerror (-1)#%><%=d ESOMETHING %><%]]%> #define EFAULT <%=d EFAULT %>
21.888889
67
0.548223
4faad0ee4f279c9ae8c194414b5197f4b854b009
60,939
ec
eC
ecere/src/gui/controls/Menu.ec
Acidburn0zzz/ecere-sdk
6eb4d438465e75a2459a07d6724d0ca2296304ce
[ "BSD-3-Clause" ]
null
null
null
ecere/src/gui/controls/Menu.ec
Acidburn0zzz/ecere-sdk
6eb4d438465e75a2459a07d6724d0ca2296304ce
[ "BSD-3-Clause" ]
null
null
null
ecere/src/gui/controls/Menu.ec
Acidburn0zzz/ecere-sdk
6eb4d438465e75a2459a07d6724d0ca2296304ce
[ "BSD-3-Clause" ]
null
null
null
namespace gui::controls; import "Window" private define SELECTION_COLOR = guiApp.currentSkin.selectionColor; //Color { 10, 36, 106 }; private define SELECTION_TEXT = guiApp.currentSkin.selectionText; //Color { 10, 36, 106 }; private define menuBarColor = Color { 211, 218, 237 }; private define popupMenuColor = Color ...
30.07848
177
0.444165
7de98ab622858ad9120c541d01b2a1ea860473e1
26,566
edn
edn
src/main/data/analysis/european_championship_italy_republic_of_ireland,_0_1_1694418.edn
happyguydev/football-graph
c2dcc61d8836c78e29353a832e4a33af6f6df37b
[ "BSD-3-Clause" ]
87
2020-02-05T17:02:47.000Z
2022-03-24T18:27:43.000Z
src/main/data/analysis/european_championship_italy_republic_of_ireland,_0_1_1694418.edn
eddwebster/football-graphs
a1b98116f5b08fd8556d34202415a240039617cd
[ "BSD-3-Clause" ]
49
2020-02-05T14:53:38.000Z
2020-05-28T23:11:17.000Z
src/main/data/analysis/european_championship_italy_republic_of_ireland,_0_1_1694418.edn
eddwebster/football-graphs
a1b98116f5b08fd8556d34202415a240039617cd
[ "BSD-3-Clause" ]
15
2020-02-13T23:16:01.000Z
2022-03-24T18:33:28.000Z
{:match-id 1694418, :label "Italy - Republic of Ireland, 0 - 1", :teams-info {:3757 {:city "Roma", :name "Italy", :wy-id 3757, :official-name "Italy", :area {:name "Italy", :id 380, :alpha-3code "ITA", :alpha-2code "IT"}, :type "national"}, :8274 {:city "Dublin", :name "Republic of Ireland...
42.168254
71
0.658172
a8cce99425fa1319bd79055c33c7aa388312f123
411
edn
edn
edn/cards/ApexPublicPredator.edn
MNeMoNiCuZ/netrunner-data
15ded7a321a3b73fe60a1e45744fbd9881d4fd86
[ "MIT" ]
null
null
null
edn/cards/ApexPublicPredator.edn
MNeMoNiCuZ/netrunner-data
15ded7a321a3b73fe60a1e45744fbd9881d4fd86
[ "MIT" ]
null
null
null
edn/cards/ApexPublicPredator.edn
MNeMoNiCuZ/netrunner-data
15ded7a321a3b73fe60a1e45744fbd9881d4fd86
[ "MIT" ]
1
2020-09-16T01:28:05.000Z
2020-09-16T01:28:05.000Z
{:base-link 0 :deck-limit 1 :faction :apex :id "ApexPublicPredator" :influence-limit 25 :minimum-deck-size 45 :side :runner :subtype [:digital] :text "You cannot install non-<strong>virtual</strong> resources.\nPlay with the top card of the stack faceup.\nWhen your turn begins, you may install the top card of ...
31.615385
188
0.737226
139bc34cdd141a1f192719c37181708c67ebce8d
437
edn
edn
edn/cards/weir.edn
plural/netrunner-data
b71186e109a77a737c1f597b59b0ae0a64c2ab0f
[ "MIT" ]
7
2018-11-21T13:36:52.000Z
2022-03-12T21:02:50.000Z
edn/cards/weir.edn
plural/netrunner-data
b71186e109a77a737c1f597b59b0ae0a64c2ab0f
[ "MIT" ]
4
2019-02-21T00:42:00.000Z
2021-02-20T22:31:54.000Z
edn/cards/weir.edn
plural/netrunner-data
b71186e109a77a737c1f597b59b0ae0a64c2ab0f
[ "MIT" ]
9
2019-01-22T21:16:45.000Z
2021-08-02T14:55:56.000Z
{:cost 3 :deck-limit 3 :faction :neutral-corp :id "weir" :influence-cost 0 :side :corp :strength 3 :stripped-text "Subroutine The Runner loses click, if able Subroutine The Runner trashes 1 card from his or her grip." :stripped-title "Weir" :subtype [:code-gate] :text "[subroutine] The Runner loses [click], i...
29.133333
119
0.718535
832c022438a8f1df8e94918b7919a7238ccf7fde
646
edn
edn
edn/cards/launch-campaign.edn
plural/netrunner-data
b71186e109a77a737c1f597b59b0ae0a64c2ab0f
[ "MIT" ]
7
2018-11-21T13:36:52.000Z
2022-03-12T21:02:50.000Z
edn/cards/launch-campaign.edn
plural/netrunner-data
b71186e109a77a737c1f597b59b0ae0a64c2ab0f
[ "MIT" ]
4
2019-02-21T00:42:00.000Z
2021-02-20T22:31:54.000Z
edn/cards/launch-campaign.edn
plural/netrunner-data
b71186e109a77a737c1f597b59b0ae0a64c2ab0f
[ "MIT" ]
9
2019-01-22T21:16:45.000Z
2021-08-02T14:55:56.000Z
{:cost 1 :deck-limit 3 :faction :neutral-corp :id "launch-campaign" :influence-cost 0 :side :corp :stripped-text "Place 6 credits from the bank on Launch Campaign when it is rezzed. When there are no credits left on Launch Campaign, trash it. When your turn begins, take 2 credits from Launch Campaign." :stripped...
43.066667
206
0.752322
310ec772dfc6880e183e2eb0f9dbc7ef9715f84d
908
edn
edn
data/cards/project-kusanagi.edn
ChooJeremy/netrunner
b65d1c6dc893300a6e584ebdca9e57ea1cf16c23
[ "MIT" ]
null
null
null
data/cards/project-kusanagi.edn
ChooJeremy/netrunner
b65d1c6dc893300a6e584ebdca9e57ea1cf16c23
[ "MIT" ]
null
null
null
data/cards/project-kusanagi.edn
ChooJeremy/netrunner
b65d1c6dc893300a6e584ebdca9e57ea1cf16c23
[ "MIT" ]
null
null
null
{:advancementcost 2, :agendapoints 0, :code "11052", :cycle_code "flashpoint", :deck-limit 3, :faction "Jinteki", :format {:classic :legal, :core-experience :rotated, :eternal :legal, :snapshot :legal, :snapshot-plus :legal, :socr8 :rotated, :standard :l...
34.923077
280
0.677313
b507820dfb62f009f727ccac136757540ac86ef1
913
edn
edn
resources/tests/1045ac0581bcbc22f1328d2cd6002b7d.edn
Tshort76/pdf-parse
e61c82943381fb32dae292c447d787c431ed9c28
[ "MIT" ]
1
2021-09-20T17:11:29.000Z
2021-09-20T17:11:29.000Z
resources/tests/1045ac0581bcbc22f1328d2cd6002b7d.edn
Tshort76/pdf-parse
e61c82943381fb32dae292c447d787c431ed9c28
[ "MIT" ]
null
null
null
resources/tests/1045ac0581bcbc22f1328d2cd6002b7d.edn
Tshort76/pdf-parse
e61c82943381fb32dae292c447d787c431ed9c28
[ "MIT" ]
null
null
null
{:tables [{:type :table, :vals [["Year" "Amount($)"] ["2038" "23,750,000"] ["2039" "24,995,000"] ["2040" "26,310,000"] ["2041" "27,695,000"] ["2042 †" "29,140,000"]], :y0 55, :y1 125, :x0 256, :x1 350, :page-number 1} {:type :table, :vals [["Year" "Amount($)"] ["2043" "30,680,000"] ["2044" "32,210,000"] ["2045" "33,820...
913
913
0.542169
0f8b25ccfd9c80aefea40f69399f90ce801f133f
114
edn
edn
.clj-kondo/metosin/malli/config.edn
jaszczur/reitit-hello
011c03a65d124cdbf41d7aa48528f5fef87ad9c6
[ "MIT" ]
1
2022-02-03T00:56:47.000Z
2022-02-03T00:56:47.000Z
.clj-kondo/metosin/malli/config.edn
sultanov-team/metaverse
8530a841143af823138f78e782ef92c59c24f66c
[ "MIT" ]
null
null
null
.clj-kondo/metosin/malli/config.edn
sultanov-team/metaverse
8530a841143af823138f78e782ef92c59c24f66c
[ "MIT" ]
null
null
null
{:lint-as {malli.experimental/defn schema.core/defn} :linters {:unresolved-symbol {:exclude [(malli.core/=>)]}}}
38
60
0.701754
650d2640c7fc3ee2a491c3e5e45d816db2f80cff
122
edn
edn
core/resources/rgl/paradigms/lav/AV.edn
Site-Command/accelerated-text
fe49cc2806e25189e81cbda4328728775026856b
[ "Apache-2.0" ]
400
2019-09-28T13:35:13.000Z
2021-11-23T01:53:51.000Z
api/resources/paradigms/lav/AV.edn
anantasty/accelerated-text
16f3d7e05306c5b1c04fb95546051cc1e2570893
[ "Apache-2.0" ]
87
2019-10-16T09:50:14.000Z
2021-09-22T14:02:15.000Z
api/resources/paradigms/lav/AV.edn
anantasty/accelerated-text
16f3d7e05306c5b1c04fb95546051cc1e2570893
[ "Apache-2.0" ]
32
2019-09-30T16:45:06.000Z
2021-08-25T07:44:37.000Z
{:type "AV", :description "", :module "ParadigmsLav", :functions [{:function "mkAV", :type ["A" "AV"], :example "-"}]}
24.4
65
0.57377
422f61c06c6cc5f6970545018c3101221ad62892
491
edn
edn
data/cards/gpi-net-tap.edn
poi2000/netrunner
b08c26fc0e578d6535518f197867083bb1627e80
[ "MIT" ]
null
null
null
data/cards/gpi-net-tap.edn
poi2000/netrunner
b08c26fc0e578d6535518f197867083bb1627e80
[ "MIT" ]
null
null
null
data/cards/gpi-net-tap.edn
poi2000/netrunner
b08c26fc0e578d6535518f197867083bb1627e80
[ "MIT" ]
null
null
null
{:code "11003", :cost 3, :cycle_code "flashpoint", :faction "Criminal", :factioncost 2, :image_url "http://www.cardgamedb.com/forums/uploads/an/med_ADN36_3.png", :limited 3, :normalizedtitle "gpi-net-tap", :number 3, :packquantity 3, :rotated false, :set_code "23s", :setname "23 Seconds", :side "Runner", ...
27.277778
110
0.696538
42058b25615d0a1a361a8104e3fa107651db775c
28,363
edn
edn
src/main/data/analysis/france_metz_saint_etienne,_3_0_2500892.edn
happyguydev/football-graph
c2dcc61d8836c78e29353a832e4a33af6f6df37b
[ "BSD-3-Clause" ]
87
2020-02-05T17:02:47.000Z
2022-03-24T18:27:43.000Z
src/main/data/analysis/france_metz_saint_etienne,_3_0_2500892.edn
eddwebster/football-graphs
a1b98116f5b08fd8556d34202415a240039617cd
[ "BSD-3-Clause" ]
49
2020-02-05T14:53:38.000Z
2020-05-28T23:11:17.000Z
src/main/data/analysis/france_metz_saint_etienne,_3_0_2500892.edn
eddwebster/football-graphs
a1b98116f5b08fd8556d34202415a240039617cd
[ "BSD-3-Clause" ]
15
2020-02-13T23:16:01.000Z
2022-03-24T18:33:28.000Z
{:match-id 2500892, :label "Metz - Saint-\\u00c9tienne, 3 - 0", :teams-info {:3777 {:city "Metz", :name "Metz", :wy-id 3777, :official-name "FC Metz", :area {:name "France", :id "250", :alpha-3code "FRA", :alpha-2code "FR"}, :type "club"}, :3782 {:city "Saint-\\u00c9tienne", :name "Saint-\...
42.974242
71
0.659733
96ed00c98b8a6fbd76b3ac2cc9e845db4fc14780
880
edn
edn
doc/webhook-requests/edn/group-chat-member-removed.example.edn
marksto/general-expenses-accountant
de9584f1183dee75e1a0aead7b63e09f5961adea
[ "MIT" ]
3
2021-05-25T13:42:16.000Z
2022-01-23T15:57:01.000Z
doc/webhook-requests/edn/group-chat-member-removed.example.edn
marksto/general-expenses-accountant
de9584f1183dee75e1a0aead7b63e09f5961adea
[ "MIT" ]
null
null
null
doc/webhook-requests/edn/group-chat-member-removed.example.edn
marksto/general-expenses-accountant
de9584f1183dee75e1a0aead7b63e09f5961adea
[ "MIT" ]
null
null
null
{:update_id 426300767, :message {:message_id 29, :from {:id 280000000, :is_bot false, :first_name "User", :last_name "Name", :username "username", :language_code "en"}, :chat {:id -480000000, ...
40
62
0.406818
0afc55b12a0b8b86b9bdfa095ad0a7544ebafba9
79
edn
edn
figwheel-main.edn
vodori/Nightlight
1fa4971245b696b70f9f40bfd773af1a52e32ef5
[ "Unlicense" ]
900
2016-10-09T02:06:41.000Z
2022-02-09T20:06:05.000Z
figwheel-main.edn
vodori/Nightlight
1fa4971245b696b70f9f40bfd773af1a52e32ef5
[ "Unlicense" ]
58
2016-10-09T13:55:28.000Z
2019-12-20T18:54:04.000Z
figwheel-main.edn
vodori/Nightlight
1fa4971245b696b70f9f40bfd773af1a52e32ef5
[ "Unlicense" ]
44
2016-10-09T06:21:22.000Z
2020-03-11T19:11:59.000Z
{:open-url "http://localhost:4000" :css-dirs ["resources/nightlight-public"]}
26.333333
43
0.708861
404a6d714a09acd62f2b4964c44d8f59b0a51e62
160
edn
edn
examples/web-figwheel-main/dev.cljs.edn
olymk2/portal
53d9dc070c024c5eabd5598a325c199144936d1c
[ "MIT" ]
481
2020-06-24T09:51:08.000Z
2022-03-31T07:14:01.000Z
examples/web-figwheel-main/dev.cljs.edn
olymk2/portal
53d9dc070c024c5eabd5598a325c199144936d1c
[ "MIT" ]
68
2020-07-21T14:38:18.000Z
2022-03-30T20:15:10.000Z
examples/web-figwheel-main/dev.cljs.edn
olymk2/portal
53d9dc070c024c5eabd5598a325c199144936d1c
[ "MIT" ]
44
2020-07-16T01:56:26.000Z
2022-03-06T18:16:48.000Z
{:output-to "resources/public/cljs-out/dev-main.js" :optimizations :none :pretty-print true :source-map true :source-map-timestamp true :main example.app}
22.857143
51
0.75
56ebc5bce0bd20ab0535f819a2950113e6555d68
6,531
edn
edn
deps.edn
wardle/clods
168de00f083c5b6c538375a37cc1a9ec523283ea
[ "Apache-2.0" ]
8
2020-11-10T17:31:41.000Z
2021-06-18T17:36:25.000Z
deps.edn
wardle/clods
168de00f083c5b6c538375a37cc1a9ec523283ea
[ "Apache-2.0" ]
4
2021-03-17T14:31:27.000Z
2021-09-18T11:10:51.000Z
deps.edn
wardle/clods
168de00f083c5b6c538375a37cc1a9ec523283ea
[ "Apache-2.0" ]
3
2020-11-10T17:31:39.000Z
2021-03-18T16:43:23.000Z
{:paths ["src" "resources"] :deps {org.clojure/clojure {:mvn/version "1.10.3"} org.clojure/core.async {:mvn/version "1.3.610"} org.clojure/data.csv {:mvn/version "1.0.0"} org.clojure/data.xml {:mvn/version "0.2.0-alpha6"} o...
65.31
130
0.437299
448318f3c5f94ec451c3af7d293784af98498021
463
edn
edn
edn/cards/aurora.edn
plural/netrunner-data
b71186e109a77a737c1f597b59b0ae0a64c2ab0f
[ "MIT" ]
7
2018-11-21T13:36:52.000Z
2022-03-12T21:02:50.000Z
edn/cards/aurora.edn
plural/netrunner-data
b71186e109a77a737c1f597b59b0ae0a64c2ab0f
[ "MIT" ]
4
2019-02-21T00:42:00.000Z
2021-02-20T22:31:54.000Z
edn/cards/aurora.edn
plural/netrunner-data
b71186e109a77a737c1f597b59b0ae0a64c2ab0f
[ "MIT" ]
9
2019-01-22T21:16:45.000Z
2021-08-02T14:55:56.000Z
{:cost 3 :deck-limit 3 :faction :criminal :id "aurora" :influence-cost 1 :memory-cost 1 :side :runner :strength 1 :stripped-text "Interface -> 2 credits: Break 1 barrier subroutine. 2 credits: +3 strength." :stripped-title "Aurora" :subtype [:icebreaker :fracter] :text "Interface → <strong>2[credit]:</strong...
28.9375
135
0.706263
cca45b96407822713173e3f2ee11506470d80cc9
454
edn
edn
.clj-kondo/config.edn
davidpham87/portal
0b57ed2969b59fadf5e7149013bdc843f83abab1
[ "MIT" ]
481
2020-06-24T09:51:08.000Z
2022-03-31T07:14:01.000Z
.clj-kondo/config.edn
davidpham87/portal
0b57ed2969b59fadf5e7149013bdc843f83abab1
[ "MIT" ]
68
2020-07-21T14:38:18.000Z
2022-03-30T20:15:10.000Z
.clj-kondo/config.edn
davidpham87/portal
0b57ed2969b59fadf5e7149013bdc843f83abab1
[ "MIT" ]
44
2020-07-16T01:56:26.000Z
2022-03-06T18:16:48.000Z
{:linters {:unsorted-required-namespaces {:level :fail} :unresolved-symbol {:exclude [(portal.ui.sci.import/sci-import) (portal.ui.sci.import/import-ns)]}} :lint-as {portal.async/let clojure.core/let portal.sync/let clojure.core/let reagent.core/with-let c...
41.272727
63
0.65859
d944c64179ab533bd420ac2951335ca3d65d5cd5
337
edn
edn
edn/cards/wyldside.edn
plural/netrunner-data
b71186e109a77a737c1f597b59b0ae0a64c2ab0f
[ "MIT" ]
7
2018-11-21T13:36:52.000Z
2022-03-12T21:02:50.000Z
edn/cards/wyldside.edn
plural/netrunner-data
b71186e109a77a737c1f597b59b0ae0a64c2ab0f
[ "MIT" ]
4
2019-02-21T00:42:00.000Z
2021-02-20T22:31:54.000Z
edn/cards/wyldside.edn
plural/netrunner-data
b71186e109a77a737c1f597b59b0ae0a64c2ab0f
[ "MIT" ]
9
2019-01-22T21:16:45.000Z
2021-08-02T14:55:56.000Z
{:cost 3 :deck-limit 3 :faction :anarch :id "wyldside" :influence-cost 3 :side :runner :stripped-text "When your turn begins, draw 2 cards and lose click." :stripped-title "Wyldside" :subtype [:location :seedy] :text "When your turn begins, draw 2 cards and lose [click]." :title "Wyldside" :type :resource :...
24.071429
69
0.706231