hexsha stringlengths 40 40 | size int64 7 1.05M | ext stringclasses 13
values | lang stringclasses 1
value | max_stars_repo_path stringlengths 4 269 | max_stars_repo_name stringlengths 5 109 | max_stars_repo_head_hexsha stringlengths 40 40 | max_stars_repo_licenses listlengths 1 9 | max_stars_count int64 1 191k ⌀ | max_stars_repo_stars_event_min_datetime stringlengths 24 24 ⌀ | max_stars_repo_stars_event_max_datetime stringlengths 24 24 ⌀ | max_issues_repo_path stringlengths 4 269 | max_issues_repo_name stringlengths 5 116 | max_issues_repo_head_hexsha stringlengths 40 40 | max_issues_repo_licenses listlengths 1 9 | max_issues_count int64 1 48.5k ⌀ | 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 4 269 | max_forks_repo_name stringlengths 5 116 | max_forks_repo_head_hexsha stringlengths 40 40 | max_forks_repo_licenses listlengths 1 9 | max_forks_count int64 1 105k ⌀ | max_forks_repo_forks_event_min_datetime stringlengths 24 24 ⌀ | max_forks_repo_forks_event_max_datetime stringlengths 24 24 ⌀ | content stringlengths 7 1.05M | avg_line_length float64 1.21 330k | max_line_length int64 6 990k | alphanum_fraction float64 0.01 0.99 | author_id stringlengths 2 40 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
03900391b39ebbac190e8d503c4f16e1759061c9 | 1,127 | cpp | C++ | LinkedList/27 Flatten a Linked List.cpp | i-am-grut/LoveBabbar-450-Questions | 08faaa70198363c6ac481a67c548e1e7e4c7c591 | [
"MIT"
] | 2 | 2021-06-25T07:26:23.000Z | 2022-01-28T22:24:34.000Z | LinkedList/27 Flatten a Linked List.cpp | i-am-grut/LoveBabbar-450-Questions | 08faaa70198363c6ac481a67c548e1e7e4c7c591 | [
"MIT"
] | null | null | null | LinkedList/27 Flatten a Linked List.cpp | i-am-grut/LoveBabbar-450-Questions | 08faaa70198363c6ac481a67c548e1e7e4c7c591 | [
"MIT"
] | null | null | null | Node* merge(Node* head1, Node* head2){
if(head1==NULL){
return head2;
}
if(head2==NULL){
return head1;
}
Node* head;
Node* tail;
if(head1->data<head2->data){
head=head1;
head1=head1->bottom;
}
else{
head=head2;
head2=head2->bottom;
... | 20.490909 | 40 | 0.515528 | i-am-grut |
0393fe9403b7546e128cac1e9ab9542942c930c0 | 814 | cpp | C++ | source/GUIEventHandler.cpp | mackron/GTGameEngine | 380d1e01774fe6bc2940979e4e5983deef0bf082 | [
"BSD-3-Clause"
] | 31 | 2015-03-19T08:44:48.000Z | 2021-12-15T20:52:31.000Z | source/GUIEventHandler.cpp | mackron/GTGameEngine | 380d1e01774fe6bc2940979e4e5983deef0bf082 | [
"BSD-3-Clause"
] | 19 | 2015-07-09T09:02:44.000Z | 2016-06-09T03:51:03.000Z | source/GUIEventHandler.cpp | mackron/GTGameEngine | 380d1e01774fe6bc2940979e4e5983deef0bf082 | [
"BSD-3-Clause"
] | 3 | 2017-10-04T23:38:18.000Z | 2022-03-07T08:27:13.000Z | // Copyright (C) 2011 - 2014 David Reid. See included LICENCE.
#include <GTGE/GUIEventHandler.hpp>
#include <GTGE/GTEngine.hpp>
namespace GT
{
GUIEventHandler::GUIEventHandler(Context &context)
: context(context)
{
}
GUIEventHandler::~GUIEventHandler()
{
}
void GU... | 20.35 | 63 | 0.565111 | mackron |
03949325044207fb77e58a6a962d4325237da81e | 6,311 | cpp | C++ | ibtk/src/solvers/interfaces/GeneralOperator.cpp | MSV-Project/IBAMR | 3cf614c31bb3c94e2620f165ba967cba719c45ea | [
"BSD-3-Clause"
] | 2 | 2017-12-06T06:16:36.000Z | 2021-03-13T12:28:08.000Z | ibtk/src/solvers/interfaces/GeneralOperator.cpp | MSV-Project/IBAMR | 3cf614c31bb3c94e2620f165ba967cba719c45ea | [
"BSD-3-Clause"
] | null | null | null | ibtk/src/solvers/interfaces/GeneralOperator.cpp | MSV-Project/IBAMR | 3cf614c31bb3c94e2620f165ba967cba719c45ea | [
"BSD-3-Clause"
] | null | null | null | // Filename: GeneralOperator.cpp
// Created on 18 Nov 2003 by Boyce Griffith
//
// Copyright (c) 2002-2013, Boyce Griffith
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// * Redistribu... | 28.427928 | 78 | 0.658533 | MSV-Project |
039f817ea9d050bc3e500b111467d3d27f79882a | 19 | cpp | C++ | Direct2DNet/GUIDs.cpp | SansyHuman/Direct2DNet | 345d981a07fd8cbdf7cf7e6ca9d7b493439dbd17 | [
"MIT"
] | null | null | null | Direct2DNet/GUIDs.cpp | SansyHuman/Direct2DNet | 345d981a07fd8cbdf7cf7e6ca9d7b493439dbd17 | [
"MIT"
] | null | null | null | Direct2DNet/GUIDs.cpp | SansyHuman/Direct2DNet | 345d981a07fd8cbdf7cf7e6ca9d7b493439dbd17 | [
"MIT"
] | null | null | null | #include "GUIDs.h"
| 9.5 | 18 | 0.684211 | SansyHuman |
03a280593c4e17359e982b44a061bdc4ee8562ed | 860 | cpp | C++ | Dynamic Programming/Edit Distance.cpp | razouq/cses | 82534f4ac37a690b5cd72ab094d5276bd01dd64e | [
"MIT"
] | 3 | 2021-03-14T18:47:13.000Z | 2021-03-19T09:59:56.000Z | Dynamic Programming/Edit Distance.cpp | razouq/cses | 82534f4ac37a690b5cd72ab094d5276bd01dd64e | [
"MIT"
] | null | null | null | Dynamic Programming/Edit Distance.cpp | razouq/cses | 82534f4ac37a690b5cd72ab094d5276bd01dd64e | [
"MIT"
] | null | null | null | #include "bits/stdc++.h"
#pragma GCC optimize ("O3")
#pragma GCC target ("sse4")
#define ll long long
#define ull unsigned long long
#define F first
#define S second
#define PB push_back
#define POB pop_back
using namespace std;
int main(){
// freopen("input.in", "r", stdin);
// freopen("output.out", "w", stdout);
i... | 20 | 53 | 0.537209 | razouq |
03a63668aad34b79c614e7504a8601cee18e6fbc | 4,172 | cpp | C++ | Step1/skip_list/calcSimilaritySL.cpp | ediston/Link-Clustering-Algorithm | e93a4b92f50bedae75c779937b5242d487075043 | [
"Unlicense"
] | 2 | 2015-05-20T09:05:30.000Z | 2017-11-08T09:23:54.000Z | Step1/skip_list/calcSimilaritySL.cpp | ediston/Link-Clustering-Algorithm | e93a4b92f50bedae75c779937b5242d487075043 | [
"Unlicense"
] | null | null | null | Step1/skip_list/calcSimilaritySL.cpp | ediston/Link-Clustering-Algorithm | e93a4b92f50bedae75c779937b5242d487075043 | [
"Unlicense"
] | null | null | null | #include <bits/stdc++.h>
#include <ctime>
using namespace std;
#define MAX_HIEGHT 32
#define ONEIN 2
#define INFINITY 99999999
//long long totalComparisons;
int getRandom(){
return rand() % ONEIN;
}
struct node{
long long nodeId;
node *next;
node *below;
};
struct skipList{
int height;
l... | 25.595092 | 66 | 0.55489 | ediston |
03aa24232976241ad41da7c39d7bcc78ffdd407a | 125,010 | cpp | C++ | src/KScripts/New/assign_KSVGs.cpp | HonzaMD/Krkal2 | e53e9b096d89d1441ec472deb6d695c45bcae41f | [
"OLDAP-2.5"
] | 1 | 2018-04-01T16:47:52.000Z | 2018-04-01T16:47:52.000Z | src/KScripts/assign_KSVGs.cpp | HonzaMD/Krkal2 | e53e9b096d89d1441ec472deb6d695c45bcae41f | [
"OLDAP-2.5"
] | null | null | null | src/KScripts/assign_KSVGs.cpp | HonzaMD/Krkal2 | e53e9b096d89d1441ec472deb6d695c45bcae41f | [
"OLDAP-2.5"
] | null | null | null | //////////////////////////////////////////////////////////////////////////////
///
/// A s s i g n K S V G S
///
/// Pridam vsechny KSVGs a jejich alokacni a rirazovaci fce
/// do hashovaci tabulky
/// A:Generated Automatically
///
//////////////////////////////////////////////////////////////////////////... | 93.710645 | 358 | 0.891873 | HonzaMD |
03b42bb2a9da0dbde0aed8332502363b92e2161c | 870 | cpp | C++ | 0461. Hamming Distance.cpp | RickTseng/Cpp_LeetCode | 6a710b8abc268eba767bc17d91d046b90a7e34a9 | [
"MIT"
] | 1 | 2021-09-13T00:58:59.000Z | 2021-09-13T00:58:59.000Z | 0461. Hamming Distance.cpp | RickTseng/Cpp_LeetCode | 6a710b8abc268eba767bc17d91d046b90a7e34a9 | [
"MIT"
] | null | null | null | 0461. Hamming Distance.cpp | RickTseng/Cpp_LeetCode | 6a710b8abc268eba767bc17d91d046b90a7e34a9 | [
"MIT"
] | null | null | null | #include <algorithm>
#include <vector>
#include <string>
#include <map>
#include <queue>
using namespace std;
class Solution {
public:
int hammingDistance(int x, int y) {
vector<unsigned long> table(32,1);
for(int i = 1;i<32;i++){
table[i] = table[i-1] * 2;
}
unsigned lon... | 21.219512 | 84 | 0.502299 | RickTseng |
03b52bc22b044d681d96ac4ed7ba0b1670943a4d | 5,351 | cpp | C++ | src/bindings/swig/wrapped/WrappedInterpreterMonitor.cpp | alexzhornyak/uscxml | 82b44ceeefbe1dc12fc606dc1948f9cebaf67a08 | [
"BSD-2-Clause"
] | 1 | 2020-01-09T13:51:21.000Z | 2020-01-09T13:51:21.000Z | src/bindings/swig/wrapped/WrappedInterpreterMonitor.cpp | galaxy1978/uscxml | 8be7b9cb67177bb0e34ca5c5cdb8508319bcda2d | [
"BSD-2-Clause"
] | 1 | 2021-05-18T12:13:30.000Z | 2021-05-18T12:14:50.000Z | src/bindings/swig/wrapped/WrappedInterpreterMonitor.cpp | galaxy1978/uscxml | 8be7b9cb67177bb0e34ca5c5cdb8508319bcda2d | [
"BSD-2-Clause"
] | 1 | 2021-04-08T08:57:40.000Z | 2021-04-08T08:57:40.000Z | /**
* @file
* @author 2012-2014 Stefan Radomski (stefan.radomski@cs.tu-darmstadt.de)
* @copyright Simplified BSD
*
* @cond
* This program is free software: you can redistribute it and/or modify
* it under the terms of the FreeBSD license as published by the FreeBSD
* project.
*
* This program is ... | 36.155405 | 144 | 0.766773 | alexzhornyak |
03b7ea5a8fac86854d23be6a42d2ca35a016276e | 9,127 | cpp | C++ | Plugin/Popup.cpp | wuzijing111/EU4dll | 5bc107bb7c1f90296bddc1e8643b89f3a7283ef9 | [
"MIT"
] | 483 | 2018-08-17T12:44:22.000Z | 2022-03-30T16:49:44.000Z | Plugin/Popup.cpp | Dawn-of-Higaara/EU4dll | c516f00bf729dc2c95cccedb65508c05283e1268 | [
"MIT"
] | 111 | 2018-08-24T18:43:15.000Z | 2022-03-07T11:20:10.000Z | Plugin/Popup.cpp | hangingman/EU4dll | e0d2e15eaa10b4642f4f76474c678044acbc9cdd | [
"MIT"
] | 95 | 2018-09-17T07:56:04.000Z | 2022-03-19T04:56:27.000Z | #include "stdinc.h"
#include "byte_pattern.h"
// これはpopup windowではなくて、map上で浮かび上がる文字の部分の修正
namespace PopupCharOnMap {
/*-----------------------------------------------*/
uintptr_t func1_v125_end;
__declspec(naked) void func1_v125_start()
{
__asm {
mov eax, [eax + edi];
mov[ebp - 0x5C], eax;
lea ecx, [... | 20.743182 | 97 | 0.610058 | wuzijing111 |
03c7850465d7a16defa548b1eb42750238879a4b | 30,853 | cpp | C++ | src/SDIMCompiler/Parser.cpp | DamienHenderson/SDIM | 623ac00402a68a504451c3b7c76cd16fde2fa57e | [
"MIT"
] | null | null | null | src/SDIMCompiler/Parser.cpp | DamienHenderson/SDIM | 623ac00402a68a504451c3b7c76cd16fde2fa57e | [
"MIT"
] | null | null | null | src/SDIMCompiler/Parser.cpp | DamienHenderson/SDIM | 623ac00402a68a504451c3b7c76cd16fde2fa57e | [
"MIT"
] | null | null | null | #include "Parser.hpp"
#include <Utils.hpp>
#include <random>
#include <unordered_map>
#include "BytecodeGenerator.hpp"
namespace SDIM
{
Token GetToken(const std::vector<Token>& tokens, size_t idx)
{
if (idx >= tokens.size())
{
Utils::Log("Attempted to read past end of tokens");
return Token(TokenType::U... | 29.38381 | 167 | 0.699835 | DamienHenderson |
03c9bf4181ba5a15a8a686021ecae98ec1e0489f | 531 | cpp | C++ | tests/template_named_values.cpp | riskybacon/cpp-named-params | da72b3556e5c5ed31e2ac47976db283c7e394e93 | [
"MIT"
] | null | null | null | tests/template_named_values.cpp | riskybacon/cpp-named-params | da72b3556e5c5ed31e2ac47976db283c7e394e93 | [
"MIT"
] | null | null | null | tests/template_named_values.cpp | riskybacon/cpp-named-params | da72b3556e5c5ed31e2ac47976db283c7e394e93 | [
"MIT"
] | null | null | null | #define BOOST_TEST_DYN_LINK
#define BOOST_TEST_MODULE "template_named_values"
#include <boost/test/unit_test.hpp>
#include <iostream>
#include <cpp_named_params/template_named_values.hpp>
BOOST_AUTO_TEST_CASE(test_named_values) {
using namespace rb;
rectangle<
width < 10 >,
height < 30 >... | 24.136364 | 53 | 0.653484 | riskybacon |
03cdcf420c5680fb327da8c84945c8a869dd134f | 4,732 | cpp | C++ | Fogo.cpp | Ivan-Sandro/Fire_Doom_Algorithm | f33af2826f8d16cd8b8cc6086f8ba8b3ba21733f | [
"MIT"
] | null | null | null | Fogo.cpp | Ivan-Sandro/Fire_Doom_Algorithm | f33af2826f8d16cd8b8cc6086f8ba8b3ba21733f | [
"MIT"
] | null | null | null | Fogo.cpp | Ivan-Sandro/Fire_Doom_Algorithm | f33af2826f8d16cd8b8cc6086f8ba8b3ba21733f | [
"MIT"
] | null | null | null |
#include "Fogo.h"
#include <iostream>
void FOGO::_Get_Paleta_Regular_Cor(const char* Nome_Paleta, int Ponto_Inicial_X, int Ponto_Inicial_Y, int Distancia_Pixeis_X, int Distancia_Pixeis_Y, int Matriz_Paleta_X, int Matriz_Paleta_Y){
ALLEGRO_BITMAP *Paleta = NULL;
Paleta = al_load_bitmap(Nome_Paleta);
... | 31.758389 | 193 | 0.60186 | Ivan-Sandro |
03d0c1fb4f771720ff38a0c2b21e32944057ea13 | 565 | cpp | C++ | 1-100/124. Binary Tree Maximum Path Sum.cpp | erichuang1994/leetcode-solution | d5b3bb3ce2a428a3108f7369715a3700e2ba699d | [
"MIT"
] | null | null | null | 1-100/124. Binary Tree Maximum Path Sum.cpp | erichuang1994/leetcode-solution | d5b3bb3ce2a428a3108f7369715a3700e2ba699d | [
"MIT"
] | null | null | null | 1-100/124. Binary Tree Maximum Path Sum.cpp | erichuang1994/leetcode-solution | d5b3bb3ce2a428a3108f7369715a3700e2ba699d | [
"MIT"
] | null | null | null | /**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
class Solution
{
public:
int maxPathSum(TreeNode *root)
{
int ret = INT_MIN;
dfs(root, ret);
return ret;
}... | 20.178571 | 59 | 0.541593 | erichuang1994 |
03d0d2cb120465470c82d73346407232d581923d | 6,519 | hpp | C++ | renderer/ocean.hpp | VulkanWorks/Granite-scene-graph-gui-ffmpeg-dsp | a725ec78eeb5de2d3c25257b1a9372f5e38910f6 | [
"MIT"
] | 1,003 | 2017-08-13T17:47:04.000Z | 2022-03-29T15:56:55.000Z | renderer/ocean.hpp | VulkanWorks/Granite-scene-graph-gui-ffmpeg-dsp | a725ec78eeb5de2d3c25257b1a9372f5e38910f6 | [
"MIT"
] | 10 | 2017-08-14T19:11:35.000Z | 2021-12-10T12:51:53.000Z | renderer/ocean.hpp | VulkanWorks/Granite-scene-graph-gui-ffmpeg-dsp | a725ec78eeb5de2d3c25257b1a9372f5e38910f6 | [
"MIT"
] | 107 | 2017-08-16T16:13:26.000Z | 2022-03-03T06:42:19.000Z | /* Copyright (c) 2017-2020 Hans-Kristian Arntzen
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, me... | 33.777202 | 83 | 0.762694 | VulkanWorks |
03d1a2055d5a71db2b12661f975ee6018fa00eab | 117 | cpp | C++ | WithMemento/SchoolBackup.cpp | mateusz-talma/MementoPattern | 9ea3cd819822cc4521faa63ed1fd4a116ef34c4e | [
"MIT"
] | null | null | null | WithMemento/SchoolBackup.cpp | mateusz-talma/MementoPattern | 9ea3cd819822cc4521faa63ed1fd4a116ef34c4e | [
"MIT"
] | null | null | null | WithMemento/SchoolBackup.cpp | mateusz-talma/MementoPattern | 9ea3cd819822cc4521faa63ed1fd4a116ef34c4e | [
"MIT"
] | null | null | null | #include "SchoolBackup.hpp"
#include "School.hpp"
SchoolBackup::SchoolBackup(School school)
: school_(school) {} | 23.4 | 41 | 0.74359 | mateusz-talma |
03d3b489a6b62f9d642c8ccb9bc5ecaa54db0d4b | 664 | cpp | C++ | 0090_Subsets_II/solution.cpp | Heliovic/LeetCode_Solutions | 73d5a7aaffe62da9a9cd8a80288b260085fda08f | [
"MIT"
] | 2 | 2019-02-18T15:32:57.000Z | 2019-03-18T12:55:35.000Z | 0090_Subsets_II/solution.cpp | Heliovic/LeetCode_Solutions | 73d5a7aaffe62da9a9cd8a80288b260085fda08f | [
"MIT"
] | null | null | null | 0090_Subsets_II/solution.cpp | Heliovic/LeetCode_Solutions | 73d5a7aaffe62da9a9cd8a80288b260085fda08f | [
"MIT"
] | null | null | null | class Solution {
public:
vector<vector<int>> ans;
void dfs(vector<int>& v, int pos, vector<int>& nums)
{
ans.push_back(v);
for (int i = pos; i < nums.size();)
{
v.push_back(nums[i]);
dfs(v, i + 1, nums);
v.pop_back();
... | 20.121212 | 61 | 0.391566 | Heliovic |
03d5135a91778fbf5fc9e4d9a41d689974658487 | 1,290 | cpp | C++ | atto/tests/opengl/0-glfw/color.cpp | ubikoo/libfish | 7f0b5e06b2bf1d6ff490ddfda9cc7aab69cdbf39 | [
"MIT"
] | null | null | null | atto/tests/opengl/0-glfw/color.cpp | ubikoo/libfish | 7f0b5e06b2bf1d6ff490ddfda9cc7aab69cdbf39 | [
"MIT"
] | null | null | null | atto/tests/opengl/0-glfw/color.cpp | ubikoo/libfish | 7f0b5e06b2bf1d6ff490ddfda9cc7aab69cdbf39 | [
"MIT"
] | null | null | null | /*
* color.cpp
*
* Copyright (c) 2020 Carlos Braga
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the MIT License.
*
* See accompanying LICENSE.md or https://opensource.org/licenses/MIT.
*/
#include "atto/opengl/opengl.hpp"
#include "color.hpp"
using namespace... | 21.864407 | 79 | 0.44186 | ubikoo |
03d5a36a9d28886bdee82fe15d23e667e3c14bcd | 1,861 | cpp | C++ | leetcode/239.sliding-window-maximum.cpp | geemaple/algorithm | 68bc5032e1ee52c22ef2f2e608053484c487af54 | [
"MIT"
] | 177 | 2017-08-21T08:57:43.000Z | 2020-06-22T03:44:22.000Z | leetcode/239.sliding-window-maximum.cpp | geemaple/algorithm | 68bc5032e1ee52c22ef2f2e608053484c487af54 | [
"MIT"
] | 2 | 2018-09-06T13:39:12.000Z | 2019-06-03T02:54:45.000Z | leetcode/239.sliding-window-maximum.cpp | geemaple/algorithm | 68bc5032e1ee52c22ef2f2e608053484c487af54 | [
"MIT"
] | 23 | 2017-08-23T06:01:28.000Z | 2020-04-20T03:17:36.000Z | /*
* @lc app=leetcode id=239 lang=cpp
*
* [239] Sliding Window Maximum
*
* https://leetcode.com/problems/sliding-window-maximum/description/
*
* algorithms
* Hard (36.17%)
* Total Accepted: 151.8K
* Total Submissions: 401.3K
* Testcase Example: '[1,3,-1,-3,5,3,6,7]\n3'
*
* Given an array nums, there is... | 26.585714 | 77 | 0.468565 | geemaple |
03d6a111cde580b535d3ec5c7a65950cb38de8d0 | 296 | hpp | C++ | source/Objects/Edge.hpp | 1pkg/halfo | a57dc4b68d29165d6ab7ed36c7886326e414e269 | [
"MIT"
] | null | null | null | source/Objects/Edge.hpp | 1pkg/halfo | a57dc4b68d29165d6ab7ed36c7886326e414e269 | [
"MIT"
] | null | null | null | source/Objects/Edge.hpp | 1pkg/halfo | a57dc4b68d29165d6ab7ed36c7886326e414e269 | [
"MIT"
] | null | null | null | #ifndef OBJECTS_EDGE
#define OBJECTS_EDGE
#include "include.hpp"
#include "Views/Object/Edge.hpp"
namespace Objects
{
class Edge : public Application::Object
{
public:
Edge();
Views::Object::Edge * view() const override;
private:
std::unique_ptr<Views::Object::Edge> _view;
};
}
#endif | 12.333333 | 45 | 0.719595 | 1pkg |
03da52fe2bbe06f3814fc799a37c2290cada142a | 221 | cpp | C++ | src/10.DarkChannelPriorHazeRemoval/main.cpp | rzwm/OpenCVImageProcessing | 192c6c62acb0c03f606f7d468276a5f1d78925eb | [
"Apache-2.0"
] | 35 | 2017-12-15T04:34:40.000Z | 2022-03-20T13:37:40.000Z | src/10.DarkChannelPriorHazeRemoval/main.cpp | Sevryy/OpenCVImageProcessing | 192c6c62acb0c03f606f7d468276a5f1d78925eb | [
"Apache-2.0"
] | null | null | null | src/10.DarkChannelPriorHazeRemoval/main.cpp | Sevryy/OpenCVImageProcessing | 192c6c62acb0c03f606f7d468276a5f1d78925eb | [
"Apache-2.0"
] | 20 | 2018-04-08T08:04:56.000Z | 2021-09-17T08:48:45.000Z | // http://blog.csdn.net/matrix_space/article/details/40652883
// 暗通道先验去雾
#include "opencv2/core/core.hpp"
#include "opencv2/highgui/highgui.hpp"
#include "opencv2/imgproc/imgproc.hpp"
int main()
{
// TODO
return 0;
}
| 18.416667 | 62 | 0.728507 | rzwm |
03df8967b85406e89b7c4ed866aa22d0d16e4a6b | 1,214 | cc | C++ | onnxruntime/core/platform/posix/ort_mutex.cc | codemzs/onnxruntime | c69194ec4c8c9674368113aa6044d0db708cd813 | [
"MIT"
] | 4 | 2019-06-06T23:48:57.000Z | 2021-06-03T11:51:45.000Z | onnxruntime/core/platform/posix/ort_mutex.cc | codemzs/onnxruntime | c69194ec4c8c9674368113aa6044d0db708cd813 | [
"MIT"
] | 17 | 2020-07-21T11:13:27.000Z | 2022-03-27T02:37:05.000Z | onnxruntime/core/platform/posix/ort_mutex.cc | Surfndez/onnxruntime | 9d748afff19e9604a00632d66b97159b917dabb2 | [
"MIT"
] | 3 | 2019-05-07T01:29:04.000Z | 2020-08-09T08:36:12.000Z | // Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
#include "core/platform/ort_mutex.h"
#include <assert.h>
#include <stdexcept>
#include <system_error>
#include <sstream>
namespace onnxruntime {
void OrtCondVar::timed_wait_impl(std::unique_lock<OrtMutex>& lk,
... | 36.787879 | 115 | 0.718287 | codemzs |
03e190045fc10fc3452fbecb0cb3a9cb239152fc | 1,451 | hh | C++ | z2/inc/LZespolona.hh | PatrykAlexGajda/TestLiczbZespolonych | 0b070182368e64aff405d16d2461e8ed75b4d1f2 | [
"MIT"
] | null | null | null | z2/inc/LZespolona.hh | PatrykAlexGajda/TestLiczbZespolonych | 0b070182368e64aff405d16d2461e8ed75b4d1f2 | [
"MIT"
] | null | null | null | z2/inc/LZespolona.hh | PatrykAlexGajda/TestLiczbZespolonych | 0b070182368e64aff405d16d2461e8ed75b4d1f2 | [
"MIT"
] | null | null | null | #ifndef LZESPOLONA_HH
#define LZESPOLONA_HH
#include "Statystyka.hh"
#include <iostream>
/*! Plik zawiera definicje struktury LZesplona oraz zapowiedzi
* przeciazen operatorow arytmetycznych dzialajacych na tej
* strukturze. */
/*! Modeluje pojecie liczby zespolonej */
struct LZespolona {
double re; /*... | 30.87234 | 75 | 0.7643 | PatrykAlexGajda |
03e3ef5daddd90928567222cdc393c2dd7126773 | 47 | cpp | C++ | Physx.NetCore/Source/ContactPatch.cpp | ronbrogan/Physx.NetCore | ac788494b6aefc4b6633c46e857f199e6ab0a47a | [
"MIT"
] | 187 | 2015-01-02T15:58:10.000Z | 2022-02-20T05:23:13.000Z | PhysX.Net-3.4/PhysX.Net-3/Source/ContactPatch.cpp | Golangltd/PhysX.Net | fb71e0422d441a16a05ed51348d8afb0328d4b90 | [
"MIT"
] | 37 | 2015-01-10T04:38:23.000Z | 2022-03-18T00:52:27.000Z | PhysX.Net-3.4/PhysX.Net-3/Source/ContactPatch.cpp | Golangltd/PhysX.Net | fb71e0422d441a16a05ed51348d8afb0328d4b90 | [
"MIT"
] | 63 | 2015-01-11T12:12:44.000Z | 2022-02-05T14:12:49.000Z | #include "StdAfx.h"
#include "ContactPatch.h"
| 11.75 | 25 | 0.723404 | ronbrogan |
03e63dae25e3b1a91752f52f0d52243f14172447 | 572 | cpp | C++ | source/ShaderAST/Stmt/StmtSpecialisationConstantDecl.cpp | Praetonus/ShaderWriter | 1c5b3961e3e1b91cb7158406998519853a4add07 | [
"MIT"
] | 148 | 2018-10-11T16:51:37.000Z | 2022-03-26T13:55:08.000Z | source/ShaderAST/Stmt/StmtSpecialisationConstantDecl.cpp | Praetonus/ShaderWriter | 1c5b3961e3e1b91cb7158406998519853a4add07 | [
"MIT"
] | 30 | 2019-11-30T11:43:07.000Z | 2022-01-25T21:09:47.000Z | source/ShaderAST/Stmt/StmtSpecialisationConstantDecl.cpp | Praetonus/ShaderWriter | 1c5b3961e3e1b91cb7158406998519853a4add07 | [
"MIT"
] | 8 | 2020-04-17T13:18:30.000Z | 2021-11-20T06:24:44.000Z | /*
See LICENSE file in root folder
*/
#include "ShaderAST/Stmt/StmtSpecialisationConstantDecl.hpp"
#include "ShaderAST/Stmt/StmtVisitor.hpp"
namespace ast::stmt
{
SpecialisationConstantDecl::SpecialisationConstantDecl( var::VariablePtr variable
, uint32_t location
, expr::LiteralPtr value )
: Stmt{ Kind::eSpec... | 22.88 | 82 | 0.744755 | Praetonus |
03e6eb8645c643bc5dc467bb8e34cd43d88a9508 | 35 | cpp | C++ | CullingModule/MaskedSWOcclusionCulling/Utility/DepthValueComputer.cpp | SungJJinKang/Parallel_Culling | 17d1302f500bd38df75583c81a7091b975a3ef91 | [
"MIT"
] | 10 | 2021-12-25T09:22:39.000Z | 2022-02-27T19:39:45.000Z | CullingModule/MaskedSWOcclusionCulling/Utility/DepthValueComputer.cpp | SungJJinKang/Parallel_Culling | 17d1302f500bd38df75583c81a7091b975a3ef91 | [
"MIT"
] | 1 | 2021-11-17T03:15:13.000Z | 2021-11-18T02:51:55.000Z | CullingModule/MaskedSWOcclusionCulling/Utility/DepthValueComputer.cpp | SungJJinKang/Parallel_Culling | 17d1302f500bd38df75583c81a7091b975a3ef91 | [
"MIT"
] | 1 | 2022-01-09T23:14:30.000Z | 2022-01-09T23:14:30.000Z | #include "DepthValueComputer.h"
| 7 | 31 | 0.742857 | SungJJinKang |
03eb4a7dcb331f1c214bd6b6e5051672697fb7c3 | 1,774 | cc | C++ | 3rdparty.old/libcvd/cvd_src/draw.cc | BeLioN-github/PTAM | 436ebc2d78ace26644f296cd2d3ddd185bb0370e | [
"Intel",
"X11"
] | 14 | 2015-01-19T15:36:37.000Z | 2016-09-17T15:19:05.000Z | 3rdparty.old/libcvd/cvd_src/draw.cc | Pandinosaurus/PTAM-opencv | 1281564b9737dcc29ccacfbf7dc88a85916f7cc6 | [
"Intel",
"X11"
] | 2 | 2015-03-20T01:04:53.000Z | 2015-07-27T07:01:38.000Z | 3rdparty.old/libcvd/cvd_src/draw.cc | Pandinosaurus/PTAM-opencv | 1281564b9737dcc29ccacfbf7dc88a85916f7cc6 | [
"Intel",
"X11"
] | 14 | 2015-04-29T19:27:49.000Z | 2016-12-07T06:10:20.000Z | /*
This file is part of the CVD Library.
Copyright (C) 2005 The Authors
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of t... | 28.612903 | 75 | 0.616122 | BeLioN-github |
03f044e8409affc3fbf02b51a3b68ca2649b3a59 | 568 | cpp | C++ | vkcup2016qual/b.cpp | vladshablinsky/algo | 815392708d00dc8d3159b4866599de64fa9d34fa | [
"MIT"
] | 1 | 2021-10-24T00:46:37.000Z | 2021-10-24T00:46:37.000Z | vkcup2016qual/b.cpp | vladshablinsky/algo | 815392708d00dc8d3159b4866599de64fa9d34fa | [
"MIT"
] | null | null | null | vkcup2016qual/b.cpp | vladshablinsky/algo | 815392708d00dc8d3159b4866599de64fa9d34fa | [
"MIT"
] | null | null | null | #include <iostream>
#include <map>
#include <string>
#include <cstdio>
#include <algorithm>
#include <vector>
using namespace std;
map<string, int> mp;
vector<pair<int, string> > ans;
int main() {
int n;
cin >> n;
for (int i = 0; i < n; ++i) {
string s;
cin >> s;
mp[s] = i + 1;
}
for (map<strin... | 18.322581 | 74 | 0.545775 | vladshablinsky |
03f0cedc2ecc5455e338fc01ca4aaf265a168c20 | 3,212 | cpp | C++ | tab/json/cgeneratejson.cpp | YujieChuck/QT_HPC_study0723 | 01b1926bf09bf3e6b85de07a7149467932b15d29 | [
"MIT"
] | null | null | null | tab/json/cgeneratejson.cpp | YujieChuck/QT_HPC_study0723 | 01b1926bf09bf3e6b85de07a7149467932b15d29 | [
"MIT"
] | null | null | null | tab/json/cgeneratejson.cpp | YujieChuck/QT_HPC_study0723 | 01b1926bf09bf3e6b85de07a7149467932b15d29 | [
"MIT"
] | null | null | null | #include "cgeneratejson.h"
#include "Poco/File.h"
#include "Poco/Logger.h"
#include "Poco/FileStream.h"
CGenerateJson::CGenerateJson(QWidget *parent) : QWidget(parent)
{
}
int CGenerateJson::ParseJson(const std::string& jsonFile, JSON::Object::Ptr &jsonObj)
{
int parserStatus=0;
//此处判断是否是json还是其中的内容对象
... | 24.519084 | 85 | 0.578456 | YujieChuck |
03f2f78abb1ec817c11f8f97da13bce6e6f7e45b | 2,142 | hh | C++ | Trajectory/ClosestApproachData.hh | orionning676/KinKal | 689ec932155b7fe31d46c398bcb78bcac93581d7 | [
"Apache-1.1"
] | 2 | 2020-04-21T18:24:55.000Z | 2020-09-24T19:01:47.000Z | Trajectory/ClosestApproachData.hh | orionning676/KinKal | 689ec932155b7fe31d46c398bcb78bcac93581d7 | [
"Apache-1.1"
] | 45 | 2020-03-16T18:27:59.000Z | 2022-01-13T05:18:35.000Z | Trajectory/ClosestApproachData.hh | orionning676/KinKal | 689ec932155b7fe31d46c398bcb78bcac93581d7 | [
"Apache-1.1"
] | 15 | 2020-02-21T01:10:49.000Z | 2022-03-24T12:13:35.000Z | #ifndef KinKal_ClosestApproachData_hh
#define KinKal_ClosestApproachData_hh
//
// data payload for CA calculations
//
#include "KinKal/General/Vectors.hh"
#include <string>
#include <vector>
#include <ostream>
namespace KinKal {
struct ClosestApproachData {
enum TPStat{converged=0,unconverged,oscillating,diverge... | 48.681818 | 149 | 0.715219 | orionning676 |
03f6798e427da5b86552649e7a6eae02ec32f92f | 3,011 | cpp | C++ | tc 160+/ChatTranscript.cpp | ibudiselic/contest-problem-solutions | 88082981b4d87da843472e3ca9ed5f4c42b3f0aa | [
"BSD-2-Clause"
] | 3 | 2015-05-25T06:24:37.000Z | 2016-09-10T07:58:00.000Z | tc 160+/ChatTranscript.cpp | ibudiselic/contest-problem-solutions | 88082981b4d87da843472e3ca9ed5f4c42b3f0aa | [
"BSD-2-Clause"
] | null | null | null | tc 160+/ChatTranscript.cpp | ibudiselic/contest-problem-solutions | 88082981b4d87da843472e3ca9ed5f4c42b3f0aa | [
"BSD-2-Clause"
] | 5 | 2015-05-25T06:24:40.000Z | 2021-08-19T19:22:29.000Z | #include <algorithm>
#include <cassert>
#include <cstdio>
#include <iostream>
#include <sstream>
#include <string>
#include <vector>
#include <cstring>
using namespace std;
bool sw(const string &a, const string &b) {
if (a.size() < b.size())
return false;
for (int i=0; i<(int)b.size(); ++i)
if ... | 36.719512 | 309 | 0.580206 | ibudiselic |
03fc84a50e04e2d8e75f2c8d959ca73530426dd9 | 5,450 | cpp | C++ | dependencies/MyGui/Tools/SkinEditor/SeparatorListControl.cpp | amvb/GUCEF | 08fd423bbb5cdebbe4b70df24c0ae51716b65825 | [
"Apache-2.0"
] | 5 | 2016-04-18T23:12:51.000Z | 2022-03-06T05:12:07.000Z | dependencies/MyGui/Tools/SkinEditor/SeparatorListControl.cpp | amvb/GUCEF | 08fd423bbb5cdebbe4b70df24c0ae51716b65825 | [
"Apache-2.0"
] | 2 | 2015-10-09T19:13:25.000Z | 2018-12-25T17:16:54.000Z | dependencies/MyGui/Tools/SkinEditor/SeparatorListControl.cpp | amvb/GUCEF | 08fd423bbb5cdebbe4b70df24c0ae51716b65825 | [
"Apache-2.0"
] | 15 | 2015-02-23T16:35:28.000Z | 2022-03-25T13:40:33.000Z | /*!
@file
@author Albert Semenov
@date 08/2010
*/
#include "Precompiled.h"
#include "SeparatorListControl.h"
#include "SkinManager.h"
#include "Binary.h"
#include "Localise.h"
namespace tools
{
enum SeparatorPreset
{
SeparatorPresetScale = Binary<0>::value,
SeparatorPreset9Slice = Binary<1... | 26.585366 | 116 | 0.682569 | amvb |
03ff25390780aa564c57c1f4fba9cd900c2cde99 | 1,350 | cpp | C++ | attacker/SSL/AttackSplitPacket.cpp | satadriver/attacker | 24e4434d8a836e040e48df195f2ca8919ab52609 | [
"Apache-2.0"
] | null | null | null | attacker/SSL/AttackSplitPacket.cpp | satadriver/attacker | 24e4434d8a836e040e48df195f2ca8919ab52609 | [
"Apache-2.0"
] | null | null | null | attacker/SSL/AttackSplitPacket.cpp | satadriver/attacker | 24e4434d8a836e040e48df195f2ca8919ab52609 | [
"Apache-2.0"
] | 1 | 2022-03-20T03:21:00.000Z | 2022-03-20T03:21:00.000Z |
#include "AttackSplitPacket.h"
#include "../HttpUtils.h"
char *iqiyiandroidhdr = "GET /fusion/3.0/plugin?";
int iqiyiandroidhdrlen = lstrlenA(iqiyiandroidhdr);
char * qqnewshdr = "GET /getVideoSo?version=";
int qqnewshdrlen = lstrlenA(qqnewshdr);
int AttackSplitPacket::splitPacket(char * recvbuf, int &icount, LPH... | 21.774194 | 94 | 0.651852 | satadriver |
ff00326efae8a6e4994ce48a01ba5c5cf6a8a509 | 10,086 | ipp | C++ | protean/detail/data_table_variant_iterator.ipp | llawall/protean | 31496f177704dc31b24cda5863e5ca921f5f0945 | [
"BSL-1.0"
] | null | null | null | protean/detail/data_table_variant_iterator.ipp | llawall/protean | 31496f177704dc31b24cda5863e5ca921f5f0945 | [
"BSL-1.0"
] | null | null | null | protean/detail/data_table_variant_iterator.ipp | llawall/protean | 31496f177704dc31b24cda5863e5ca921f5f0945 | [
"BSL-1.0"
] | null | null | null | // (C) Copyright Johan Ditmar, Karel Hruda, Paul O'Neill & Luke Stedman 2009.
// Use, modification and distribution are subject to the Boost Software License,
// Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt).
#include <algorithm>
namespace protean { namesp... | 38.496183 | 147 | 0.706226 | llawall |
ff01803da7289057a631b20c6010fef2a9131fac | 6,822 | cpp | C++ | src/unit_tests/test_rexi_pde2x2.cpp | valentinaschueller/sweet | 27e99c7a110c99deeadee70688c186d82b39ac90 | [
"MIT"
] | 6 | 2017-11-20T08:12:46.000Z | 2021-03-11T15:32:36.000Z | src/unit_tests/test_rexi_pde2x2.cpp | valentinaschueller/sweet | 27e99c7a110c99deeadee70688c186d82b39ac90 | [
"MIT"
] | 4 | 2018-02-02T21:46:33.000Z | 2022-01-11T11:10:27.000Z | src/unit_tests/test_rexi_pde2x2.cpp | valentinaschueller/sweet | 27e99c7a110c99deeadee70688c186d82b39ac90 | [
"MIT"
] | 12 | 2016-03-01T18:33:34.000Z | 2022-02-08T22:20:31.000Z | /*
* test_rexi_file.cpp
*
* Created on: 25 Dec 2018
* Author: Martin Schreiber <schreiberx@gmail.com>
*/
#include <iostream>
#include <sweet/SimulationVariables.hpp>
#include <quadmath.h>
#include <rexi/EXPFunctions.hpp>
#include <rexi/REXI.hpp>
#include <rexi/REXICoefficients.hpp>
#define TEST_REXI_PDE_Q... | 19.831395 | 111 | 0.602316 | valentinaschueller |
ff062297f7959320468560f260d19a14159c15ca | 793 | cpp | C++ | src/AST/expressions/ternary.cpp | Asixa/Dragonfly | ef599c8a7f9d756159cd80a61dcc70fd128ef67f | [
"Apache-2.0"
] | 2 | 2020-10-23T08:17:47.000Z | 2020-10-25T06:36:58.000Z | src/AST/expressions/ternary.cpp | Asixa/Dragonfly | ef599c8a7f9d756159cd80a61dcc70fd128ef67f | [
"Apache-2.0"
] | null | null | null | src/AST/expressions/ternary.cpp | Asixa/Dragonfly | ef599c8a7f9d756159cd80a61dcc70fd128ef67f | [
"Apache-2.0"
] | null | null | null | #include "AST/expressions/ternary.h"
#include "frontend/debug.h"
#include "AST/program.h"
namespace AST {
void expr::Ternary::ToString() {
*Debugger::out << "[";
a->ToString();
*Debugger::out << "?";
b->ToString();
*Debugger::out << ":";
c->ToString();
*Debugger::out << "]";
}
std::shared_ptr<AST... | 24.030303 | 102 | 0.620429 | Asixa |
ff0bcb30decfd7c4567b5cc7aa703492752432dc | 2,495 | cpp | C++ | src/Base64.cpp | kgbook/tupu-cpp-sdk | 4b3449ff3914cd05b628e39ded41197e8492c5eb | [
"MIT"
] | 2 | 2016-12-29T01:36:58.000Z | 2018-06-08T16:03:39.000Z | src/Base64.cpp | kgbook/tupu-cpp-sdk | 4b3449ff3914cd05b628e39ded41197e8492c5eb | [
"MIT"
] | null | null | null | src/Base64.cpp | kgbook/tupu-cpp-sdk | 4b3449ff3914cd05b628e39ded41197e8492c5eb | [
"MIT"
] | 4 | 2017-03-21T01:40:06.000Z | 2021-07-07T12:20:20.000Z | /******************************************************************************
* TUPU Recognition API SDK
* Copyright(c)2013-2016, TUPU Technology
* http://www.tuputech.com
*****************************************************************************/
#include <stdio.h>
#include <string.h>
#include <assert.h>
#in... | 24.70297 | 80 | 0.593186 | kgbook |
ff0c608a22e5866bb12a0d90baf14d7eea58689e | 863 | cpp | C++ | src/services.tests/depend.cpp | moducom/services | fc148e5f72c403481951f0063c639b58377187f7 | [
"MIT"
] | null | null | null | src/services.tests/depend.cpp | moducom/services | fc148e5f72c403481951f0063c639b58377187f7 | [
"MIT"
] | null | null | null | src/services.tests/depend.cpp | moducom/services | fc148e5f72c403481951f0063c639b58377187f7 | [
"MIT"
] | null | null | null | #include "catch2/catch.hpp"
#include "services.h"
using namespace moducom::services;
TEST_CASE("dependency")
{
EventGenerator eventGenerator;
entt::registry registry;
agents::EnttHelper enttHelper(registry, registry.create());
agents::Event<Event1> agent1(enttHelper);
agents::Event<Event1> agent2... | 22.128205 | 63 | 0.648899 | moducom |
ff0d262b9c112571acbfdb3b78ae896c50a79944 | 20,538 | cpp | C++ | src/core/unittest/UnitTestPolyElements.cpp | AnthonyTudorov/PALISADE-SizeOf-Fork | 05e9903da0971933adb1ba0b9c98398c9722a45c | [
"BSD-2-Clause"
] | 1 | 2021-09-02T07:20:28.000Z | 2021-09-02T07:20:28.000Z | src/core/unittest/UnitTestPolyElements.cpp | uishi/Modified_PALISADEv1.9.2 | d8bf4739144e53340481721b1df83dfff2f65cd8 | [
"BSD-2-Clause"
] | null | null | null | src/core/unittest/UnitTestPolyElements.cpp | uishi/Modified_PALISADEv1.9.2 | d8bf4739144e53340481721b1df83dfff2f65cd8 | [
"BSD-2-Clause"
] | 3 | 2021-09-02T07:21:06.000Z | 2022-01-19T15:24:20.000Z | /*
* @file
* @author TPOC: contact@palisade-crypto.org
*
* @copyright Copyright (c) 2019, New Jersey Institute of Technology (NJIT)
* All rights reserved.
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
* 1. Red... | 29.895197 | 132 | 0.700701 | AnthonyTudorov |
ff13fc3a814bedf56af5a149937e1d1d912ed8cb | 439 | cpp | C++ | InputOutputTemplate/WhyWhileCinWorks.cpp | zyzkevin/C-Programming-and-Algorithms | be9642b62a3285341990c25bdc3c124c4dd8c38b | [
"MIT"
] | null | null | null | InputOutputTemplate/WhyWhileCinWorks.cpp | zyzkevin/C-Programming-and-Algorithms | be9642b62a3285341990c25bdc3c124c4dd8c38b | [
"MIT"
] | null | null | null | InputOutputTemplate/WhyWhileCinWorks.cpp | zyzkevin/C-Programming-and-Algorithms | be9642b62a3285341990c25bdc3c124c4dd8c38b | [
"MIT"
] | null | null | null | #include <iostream>
using namespace std;
class MyCin
{
// 在此处补充你的代码
bool input = true;
public:
MyCin & operator >> ( int & n)
{
cin >> n;
if (n == -1) input = false;
return *this;
}
operator bool()
{
return input;
}
};
int main()
{
MyCin m;
... | 15.137931 | 41 | 0.451025 | zyzkevin |
d438a41ab0350358d0614e6742f915b043b820ce | 17,511 | cpp | C++ | Siv3D/src/ThirdParty/lunasvg/svgpaintelement.cpp | Siv3D/siv6 | 090e82b2f6398640638dfa43da3f829ba977d0e2 | [
"MIT"
] | 2 | 2020-07-26T05:14:33.000Z | 2020-08-11T08:00:54.000Z | Siv3D/src/ThirdParty/lunasvg/svgpaintelement.cpp | Siv3D/siv6 | 090e82b2f6398640638dfa43da3f829ba977d0e2 | [
"MIT"
] | 6 | 2020-03-03T04:01:10.000Z | 2020-09-27T14:33:19.000Z | Siv3D/src/ThirdParty/lunasvg/svgpaintelement.cpp | Siv3D/siv6 | 090e82b2f6398640638dfa43da3f829ba977d0e2 | [
"MIT"
] | 5 | 2020-03-03T03:34:27.000Z | 2020-09-05T18:42:55.000Z | #include "svgpaintelement.h"
#include "svgdocumentimpl.h"
#include "svgstopelement.h"
#include "svgcolor.h"
#include "rendercontext.h"
namespace lunasvg {
SVGPaintElement::SVGPaintElement(DOMElementID elementId, SVGDocument* document)
: SVGStyledElement(elementId, document)
{
}
void SVGPaintElement::render(Rende... | 38.233624 | 157 | 0.685226 | Siv3D |
d4392fcf9791eda5469f1cbfe7851256bbeaa0c7 | 493 | hpp | C++ | include/SequentialSink.hpp | Modzeleczek/WebcamFilter | 7af1a54565b405eae681f90dd59e22b099ead9f0 | [
"MIT"
] | null | null | null | include/SequentialSink.hpp | Modzeleczek/WebcamFilter | 7af1a54565b405eae681f90dd59e22b099ead9f0 | [
"MIT"
] | null | null | null | include/SequentialSink.hpp | Modzeleczek/WebcamFilter | 7af1a54565b405eae681f90dd59e22b099ead9f0 | [
"MIT"
] | null | null | null | #ifndef SequentialSink_HPP
#define SequentialSink_HPP
#include "Runner.hpp"
class SequentialSink : public Runner // przetwarzanie sekwencyjne bez bufora wyjściowego, do którego byśmy jawnie zapisywali w niniejszym programie
{
public:
SequentialSink(ISource &source, InPlaceProcessor &ipp, OutOfPlaceProcessor &oopp... | 29 | 147 | 0.778905 | Modzeleczek |
d43b1b8b09d88a60e081f908d544e0b3f2aa2276 | 3,260 | cpp | C++ | src/OpenCascadeTest/OpenCascadeTest/OpenCascadeTest.cpp | devel0/SearchAThing.Solid | 4731d5fd90d2ba7ce5f14e8b8ac0633024983064 | [
"MIT"
] | 9 | 2019-08-15T08:35:56.000Z | 2022-02-08T09:15:16.000Z | src/OpenCascadeTest/OpenCascadeTest/OpenCascadeTest.cpp | simutaroman/SearchAThing.Solid | 19e1ba46fabc6b3267e7724acec48c24d0f96a92 | [
"MIT"
] | 2 | 2020-05-05T12:46:08.000Z | 2020-10-02T08:16:03.000Z | src/OpenCascadeTest/OpenCascadeTest/OpenCascadeTest.cpp | simutaroman/SearchAThing.Solid | 19e1ba46fabc6b3267e7724acec48c24d0f96a92 | [
"MIT"
] | 6 | 2018-12-19T08:15:36.000Z | 2020-10-01T14:30:09.000Z | #include "stdafx.h"
#include <gp_Pnt.hxx>
#include <gp_Lin.hxx>
#include <STEPControl_Controller.hxx>
#include <STEPControl_Writer.hxx>
#include <IGESControl_Controller.hxx>
#include <IGESControl_Writer.hxx>
#include <BRepBuilderAPI_MakeEdge.hxx>
#include <BRepBuilderAPI_MakeWire.hxx>
#include <BRepBuilderAPI_MakeFac... | 23.285714 | 97 | 0.692331 | devel0 |
d43c4bc1cb701bbf58ad995bc57abf1680c17e26 | 351 | cpp | C++ | Brickjoon_Src/Silver3/11659.cpp | waixxt3213/Brickjoon | 66b38d7026febb090d47db1c8c56793ff1e54617 | [
"MIT"
] | 1 | 2021-07-29T14:27:44.000Z | 2021-07-29T14:27:44.000Z | Brickjoon_Src/Silver3/11659.cpp | naixt1478/Brickjoon | 3aa8c7121baf508128ce4f7cbb2ba44ca8745a87 | [
"MIT"
] | null | null | null | Brickjoon_Src/Silver3/11659.cpp | naixt1478/Brickjoon | 3aa8c7121baf508128ce4f7cbb2ba44ca8745a87 | [
"MIT"
] | 1 | 2020-10-10T14:35:59.000Z | 2020-10-10T14:35:59.000Z | #include <bits/stdc++.h>
using namespace std;
int main()
{
cin.tie(nullptr);
ios_base::sync_with_stdio(false);
int m, n, i, j;
cin >> m >> n;
vector<int> num(m+1), sum(m+1);
for (int k = 1; k <= m; k++)
{
cin >> num[k];
sum[k] = sum[k - 1] + num[k];
}
while (n--)
{
cin >> i >> j;
cout << sum[j] - su... | 14.04 | 36 | 0.492877 | waixxt3213 |
d43e06a7e34f4f23ea46aa6feebd3779f78587e1 | 203 | cpp | C++ | L09-AVL/main.cpp | tlyon3/CS235 | 2bdb8eaf66c9adbfe7ec59c0535852fd1cc30eda | [
"MIT"
] | 1 | 2018-03-04T02:58:55.000Z | 2018-03-04T02:58:55.000Z | L09-AVL/main.cpp | tlyon3/CS235 | 2bdb8eaf66c9adbfe7ec59c0535852fd1cc30eda | [
"MIT"
] | 1 | 2015-02-09T21:29:12.000Z | 2015-02-09T21:32:06.000Z | L09-AVL/main.cpp | tlyon3/CS235 | 2bdb8eaf66c9adbfe7ec59c0535852fd1cc30eda | [
"MIT"
] | 4 | 2019-05-20T02:57:47.000Z | 2021-02-11T15:41:15.000Z | #include "./Student_Code/avl.cpp"
#include "./Student_Code/node.cpp"
using namespace std;
int main()
{
AVL myavl;
myavl.add(0);
//cout<<"Height of root: "<<myavl.height(myavl.getRootNode())<<endl;
} | 18.454545 | 69 | 0.684729 | tlyon3 |
d43e97b044036098211d498133d3ded5befcc95e | 309 | cpp | C++ | Notebook/codes/estruturas/busca_vector.cpp | rodrigoAMF7/Notebook---Maratonas | 06b38197a042bfbd27b20f707493e0a19fda7234 | [
"MIT"
] | 4 | 2019-01-25T21:22:55.000Z | 2019-03-20T18:04:01.000Z | Notebook/codes/estruturas/busca_vector.cpp | rodrigoAMF/competitive-programming-notebook | 06b38197a042bfbd27b20f707493e0a19fda7234 | [
"MIT"
] | null | null | null | Notebook/codes/estruturas/busca_vector.cpp | rodrigoAMF/competitive-programming-notebook | 06b38197a042bfbd27b20f707493e0a19fda7234 | [
"MIT"
] | null | null | null | iterator find(iterator first, iterator last, const T &value);
iterator find_if(iterator first, iterator last, const T &value, TestFunction test);
bool binary_search(iterator first, iterator last, const T &value);
bool binary_search(iterator first, iterator last, const T &value, LessThanOrEqualFunction comp); | 77.25 | 96 | 0.802589 | rodrigoAMF7 |
d445b98d3828228e3ff991f917e244f31462b2b0 | 288 | cpp | C++ | AtCoder/abc028/a/main.cpp | H-Tatsuhiro/Com_Pro-Cpp | fd79f7821a76b11f4a6f83bbb26a034db577a877 | [
"MIT"
] | null | null | null | AtCoder/abc028/a/main.cpp | H-Tatsuhiro/Com_Pro-Cpp | fd79f7821a76b11f4a6f83bbb26a034db577a877 | [
"MIT"
] | 1 | 2021-10-19T08:47:23.000Z | 2022-03-07T05:23:56.000Z | AtCoder/abc028/a/main.cpp | H-Tatsuhiro/Com_Pro-Cpp | fd79f7821a76b11f4a6f83bbb26a034db577a877 | [
"MIT"
] | null | null | null | #include <iostream>
#include <cmath>
#include <algorithm>
#include <vector>
using namespace std;
int main() {
int N; cin >> N;
if (N <= 59) cout << "Bad";
else if (N <= 89) cout << "Good";
else if (N <= 99) cout << "Great";
else cout << "Perfect";
cout << endl;
}
| 20.571429 | 38 | 0.548611 | H-Tatsuhiro |
d45532baa763a37b78fe4ce88d348bba9f8e259f | 4,065 | cpp | C++ | src/projections/cass.cpp | mlptownsend/PROJ | 4920c22637d05cd7aa0aecc6de69736dd4c6845b | [
"MIT"
] | 653 | 2015-03-27T10:12:52.000Z | 2019-06-03T02:00:49.000Z | src/projections/cass.cpp | mlptownsend/PROJ | 4920c22637d05cd7aa0aecc6de69736dd4c6845b | [
"MIT"
] | 987 | 2019-06-05T11:42:40.000Z | 2022-03-31T20:35:18.000Z | src/projections/cass.cpp | mlptownsend/PROJ | 4920c22637d05cd7aa0aecc6de69736dd4c6845b | [
"MIT"
] | 360 | 2019-06-20T23:50:36.000Z | 2022-03-31T11:47:00.000Z | #define PJ_LIB__
#include <errno.h>
#include <math.h>
#include "proj.h"
#include "proj_internal.h"
PROJ_HEAD(cass, "Cassini") "\n\tCyl, Sph&Ell";
# define C1 .16666666666666666666
# define C2 .00833333333333333333
# define C3 .04166666666666666666
# define C4 .33333333333333333333
# define C5 .06666666666666666666... | 27.842466 | 83 | 0.568512 | mlptownsend |
d4567ccd5f10992e55fca02a409dee0c28290648 | 1,810 | hpp | C++ | zen/fs.hpp | ZenLibraries/ZenLibraries | ae189b5080c75412cbd4f33cf6cfb51e15f6ee66 | [
"Apache-2.0"
] | null | null | null | zen/fs.hpp | ZenLibraries/ZenLibraries | ae189b5080c75412cbd4f33cf6cfb51e15f6ee66 | [
"Apache-2.0"
] | 2 | 2020-02-06T17:01:39.000Z | 2020-02-12T17:50:14.000Z | zen/fs.hpp | ZenLibraries/ZenLibraries | ae189b5080c75412cbd4f33cf6cfb51e15f6ee66 | [
"Apache-2.0"
] | null | null | null | #ifndef INFERA_FS_HPP
#define INFERA_FS_HPP
#include <string>
#include <memory>
#include "zen/config.h"
#include "zen/either.hpp"
ZEN_NAMESPACE_START
namespace fs {
template<typename T>
using Result = Either<int, T>;
using Path = std::string;
class File;
struct FileHandle;
struct FileContentsHandle;... | 22.345679 | 78 | 0.696685 | ZenLibraries |
d4584c43dfd1ca98047edf85344f6e0615c9b90a | 3,530 | cpp | C++ | elenasrc2/ide/gtk-linux32/main.cpp | drkameleon/elena-lang | 8585e93a3bc0b19f8d60029ffbe01311d0b711a3 | [
"MIT"
] | 193 | 2015-07-03T22:23:27.000Z | 2022-03-15T18:56:02.000Z | elenasrc2/ide/gtk-linux32/main.cpp | drkameleon/elena-lang | 8585e93a3bc0b19f8d60029ffbe01311d0b711a3 | [
"MIT"
] | 531 | 2015-05-07T09:39:42.000Z | 2021-09-27T07:51:38.000Z | elenasrc2/ide/gtk-linux32/main.cpp | drkameleon/elena-lang | 8585e93a3bc0b19f8d60029ffbe01311d0b711a3 | [
"MIT"
] | 31 | 2015-09-30T13:07:36.000Z | 2021-10-15T13:08:04.000Z | //---------------------------------------------------------------------------
// E L E N A P r o j e c t: ELENA IDE
// Linux-GTK+ program entry
// (C)2005-2016, by Alexei Rakov
//---------------------------------------------------------------------------
#include "... | 25.035461 | 100 | 0.589518 | drkameleon |
d465d01615e353378dec5d8f64839fdcc1b3010f | 2,233 | cpp | C++ | BZOJ/2595/code.cpp | sjj118/OI-Code | 964ea6e799d14010f305c7e4aee269d860a781f7 | [
"MIT"
] | null | null | null | BZOJ/2595/code.cpp | sjj118/OI-Code | 964ea6e799d14010f305c7e4aee269d860a781f7 | [
"MIT"
] | null | null | null | BZOJ/2595/code.cpp | sjj118/OI-Code | 964ea6e799d14010f305c7e4aee269d860a781f7 | [
"MIT"
] | null | null | null | #include<iostream>
#include<cstdio>
#include<queue>
#define maxn 11
#define inf 1e9
using namespace std;
const int dir[4][2]={{0,1},{0,-1},{1,0},{-1,0}};
int n,m,map[maxn][maxn],dp[1<<maxn][maxn][maxn],pre[1<<maxn][maxn][maxn],s[maxn][maxn],k;
int st[maxn][maxn];
queue<int> Q;int inq[maxn*maxn<<maxn];
inline void pus... | 32.362319 | 175 | 0.537394 | sjj118 |
d46ca70032d9ca0e77631267eff8f921b909c4bf | 3,187 | cpp | C++ | src/Loaders/HeaderBLoader.cpp | driftyz700/EAlayer3-nfsw | 0bfe05ae18e5f1eb25917751c2772cfa49b60342 | [
"BSD-3-Clause"
] | 8 | 2021-01-26T15:30:21.000Z | 2021-08-29T19:44:26.000Z | src/Loaders/HeaderBLoader.cpp | driftyz700/EAlayer3-nfsw | 0bfe05ae18e5f1eb25917751c2772cfa49b60342 | [
"BSD-3-Clause"
] | 1 | 2020-10-31T00:40:01.000Z | 2020-10-31T00:40:01.000Z | src/Loaders/HeaderBLoader.cpp | Bo98/ealayer3 | ec3df1e5b4f27e91c919d1be6cb43fc992f37ece | [
"BSD-3-Clause"
] | 2 | 2021-01-27T14:24:01.000Z | 2021-02-12T10:51:42.000Z | /*
EA Layer 3 Extractor/Decoder
Copyright (C) 2010, Ben Moench.
See License.txt
*/
#include "Internal.h"
#include "HeaderBLoader.h"
#include "../Parsers/ParserVersion6.h"
elHeaderBLoader::elHeaderBLoader() :
m_SampleRate(0),
m_UseParser6(true)
{
return;
}
elHeaderBLoader::~elHeaderBLoader()
{... | 20.044025 | 81 | 0.613743 | driftyz700 |
d46e4e6978cd34916711731f7a420ddbc62e140c | 416 | hpp | C++ | galaxy/src/galaxy/platform/specific/Unix.hpp | reworks/rework | 90508252c9a4c77e45a38e7ce63cfd99f533f42b | [
"Apache-2.0"
] | 6 | 2018-07-21T20:37:01.000Z | 2018-10-31T01:49:35.000Z | galaxy/src/galaxy/platform/specific/Unix.hpp | reworks/rework | 90508252c9a4c77e45a38e7ce63cfd99f533f42b | [
"Apache-2.0"
] | null | null | null | galaxy/src/galaxy/platform/specific/Unix.hpp | reworks/rework | 90508252c9a4c77e45a38e7ce63cfd99f533f42b | [
"Apache-2.0"
] | null | null | null | ///
/// Unix.hpp
/// galaxy
///
/// Refer to LICENSE.txt for more details.
///
#ifndef GALAXY_PLATFORM_SPECIFIC_UNIX_HPP_
#define GALAXY_PLATFORM_SPECIFIC_UNIX_HPP_
#include "galaxy/utils/Globals.hpp"
#ifdef GALAXY_UNIX_PLATFORM
namespace galaxy
{
namespace platform
{
///
/// Sets up debug terminal.
///
v... | 15.407407 | 42 | 0.721154 | reworks |
d4726579794ff4318095d0b016a11686668b65c6 | 4,213 | cpp | C++ | test/template_vulkan-dynamic/flextVk.cpp | mosra/flextGL | bc3d4da8fc087cba17d64e9d908ae35b7e40f4fe | [
"MIT"
] | 119 | 2018-05-31T19:11:17.000Z | 2022-03-29T04:56:46.000Z | test/template_vulkan-dynamic/flextVk.cpp | ginkgo/flextGL | bc3d4da8fc087cba17d64e9d908ae35b7e40f4fe | [
"MIT"
] | 5 | 2015-01-16T12:24:22.000Z | 2018-05-27T14:52:45.000Z | test/template_vulkan-dynamic/flextVk.cpp | mosra/flextGL | bc3d4da8fc087cba17d64e9d908ae35b7e40f4fe | [
"MIT"
] | 8 | 2015-01-29T13:27:13.000Z | 2017-01-31T09:20:03.000Z | /*
This file was generated using https://github.com/mosra/flextgl:
path/to/flextGLgen.py -D generated -t somepath profile-vk.txt
Do not edit directly, modify the template or profile and regenerate.
*/
#include "flextVk.h"
/* The following definitions and flextDynamicLoader are borrowed/modified from... | 36.634783 | 204 | 0.733919 | mosra |
d4733c9efc905f1b6dfc769ea7e49836be28cbca | 7,594 | cpp | C++ | src/ClassOverviewVisitor.cpp | Gregofi/metrics | a8da292a98b66a36329f1e5c9423ec01d86c07a1 | [
"MIT"
] | null | null | null | src/ClassOverviewVisitor.cpp | Gregofi/metrics | a8da292a98b66a36329f1e5c9423ec01d86c07a1 | [
"MIT"
] | 1 | 2022-02-05T09:52:40.000Z | 2022-02-05T09:52:40.000Z | src/ClassOverviewVisitor.cpp | Gregofi/metrics | a8da292a98b66a36329f1e5c9423ec01d86c07a1 | [
"MIT"
] | null | null | null | #include "include/metrics/ClassOverviewVisitor.hpp"
#include "include/Logging.hpp"
#include "include/ASTMatcherVisitor.hpp"
#include "include/Utility.hpp"
bool ClassOverviewVisitor::VisitCXXRecordDecl(clang::CXXRecordDecl *decl)
{
/* Skip declarations that have no body and that aren't in main file */
if(!decl ... | 37.97 | 151 | 0.613642 | Gregofi |
d473b02889735c9d1c07fce5cd2f55f0a3572637 | 13,568 | cpp | C++ | src/Core/Unicode.cpp | akumetsuv/flood | e0d6647df9b7fac72443a0f65c0003b0ead7ed3a | [
"BSD-2-Clause"
] | null | null | null | src/Core/Unicode.cpp | akumetsuv/flood | e0d6647df9b7fac72443a0f65c0003b0ead7ed3a | [
"BSD-2-Clause"
] | null | null | null | src/Core/Unicode.cpp | akumetsuv/flood | e0d6647df9b7fac72443a0f65c0003b0ead7ed3a | [
"BSD-2-Clause"
] | 1 | 2021-05-23T16:33:11.000Z | 2021-05-23T16:33:11.000Z | /* ================================================================ */
/*
File: ConvertUTF.C
Author: Mark E. Davis
Copyright (C) 1994 Taligent, Inc. All rights reserved.
This code is copyrighted. Under the copyright laws, this code may not
be copied, in whole or part, without prior written consent of Taligent... | 39.327536 | 94 | 0.568028 | akumetsuv |
d473bb37ac3a542f4099d8a3968beb3cc1f8dca6 | 552 | cpp | C++ | BAC_2nd/ch10/UVa12716.cpp | Anyrainel/aoapc-code | e787a01380698fb9236d933462052f97b20e6132 | [
"Apache-2.0"
] | 3 | 2017-08-15T06:00:01.000Z | 2018-12-10T09:05:53.000Z | BAC_2nd/ch10/UVa12716.cpp | Anyrainel/aoapc-related-code | e787a01380698fb9236d933462052f97b20e6132 | [
"Apache-2.0"
] | null | null | null | BAC_2nd/ch10/UVa12716.cpp | Anyrainel/aoapc-related-code | e787a01380698fb9236d933462052f97b20e6132 | [
"Apache-2.0"
] | 2 | 2017-09-16T18:46:27.000Z | 2018-05-22T05:42:03.000Z | // UVa12716 GCD XOR
// Rujia Liu
#include<cstdio>
#include<cstring>
using namespace std;
const int M = 30000000;
int cnt[M+1], sum[M+1];
void init() {
memset(cnt, 0, sizeof(cnt));
for(int c = 1; c <= M; c++)
for(int a = c*2; a <= M; a += c) {
int b = a - c;
if(c == (a ^ b)) cnt[a]++;
}
sum[... | 17.25 | 57 | 0.471014 | Anyrainel |
d47b9c18a4ec755d80009918d43ad3a5a0a0627c | 902 | cpp | C++ | rw_rh_engine_lib/rw_engine/rw_api_injectors.cpp | petrgeorgievsky/gtaRenderHook | 124358410c3edca56de26381e239ca29aa6dc1cc | [
"MIT"
] | 232 | 2016-08-29T00:33:32.000Z | 2022-03-29T22:39:51.000Z | rw_rh_engine_lib/rw_engine/rw_api_injectors.cpp | petrgeorgievsky/gtaRenderHook | 124358410c3edca56de26381e239ca29aa6dc1cc | [
"MIT"
] | 10 | 2021-01-02T12:40:49.000Z | 2021-08-31T06:31:04.000Z | rw_rh_engine_lib/rw_engine/rw_api_injectors.cpp | petrgeorgievsky/gtaRenderHook | 124358410c3edca56de26381e239ca29aa6dc1cc | [
"MIT"
] | 40 | 2017-12-18T06:14:39.000Z | 2022-01-29T16:35:23.000Z | #include "rw_api_injectors.h"
#include "common_headers.h"
#include "rw_raster/rw_raster.h"
#include "rw_stream/rw_stream.h"
#include "rw_texture/rw_texture.h"
namespace rh::rw::engine
{
RwTexture *RwTextureSetNameStub( RwTexture *texture, const char *name )
{
strncpy_s( texture->name, name, strlen( name ) );
... | 31.103448 | 79 | 0.717295 | petrgeorgievsky |
d47c4fdd486eec7ba372d2a56ae0b434fac6d0ba | 52,350 | cpp | C++ | lib/KSpace/KSpaceSolverElastic.cpp | xschrodingerscat/kspaceFirstOrder | 99f326d420a5488693bcf9fdd633d2eff7447cca | [
"RSA-MD"
] | null | null | null | lib/KSpace/KSpaceSolverElastic.cpp | xschrodingerscat/kspaceFirstOrder | 99f326d420a5488693bcf9fdd633d2eff7447cca | [
"RSA-MD"
] | null | null | null | lib/KSpace/KSpaceSolverElastic.cpp | xschrodingerscat/kspaceFirstOrder | 99f326d420a5488693bcf9fdd633d2eff7447cca | [
"RSA-MD"
] | null | null | null |
#include <KSpace/KSpaceSolver.h>
#include <KSpace/KInterp.h>
using std::ios;
/* Shortcut for Simulation dimensions. */
using SD = Parameters::SimulationDimension;
/* Shortcut for Matrix id in the container. */
using MI = MatrixContainer::MatrixIdx;
/* Shortcut for Output stream id in the container. */
using OI = Ou... | 34.923282 | 121 | 0.590602 | xschrodingerscat |
d4810b526a50894f5cea3a652b48ae4b1c99cc53 | 3,624 | hpp | C++ | dependencies/glm/glm/gtc/integer.hpp | Noaheasley/Bootstrap | fbcf53bffa42fe41233726ba42218568ce0dba60 | [
"MIT"
] | 13 | 2017-03-06T22:25:10.000Z | 2022-01-31T00:19:03.000Z | dependencies/glm/glm/gtc/integer.hpp | Noaheasley/Bootstrap | fbcf53bffa42fe41233726ba42218568ce0dba60 | [
"MIT"
] | 12 | 2016-12-03T01:36:31.000Z | 2019-12-11T00:40:02.000Z | dependencies/glm/glm/gtc/integer.hpp | Noaheasley/Bootstrap | fbcf53bffa42fe41233726ba42218568ce0dba60 | [
"MIT"
] | 37 | 2016-10-27T14:55:34.000Z | 2022-01-31T00:19:08.000Z | /// @ref gtc_integer
/// @file glm/gtc/integer.hpp
///
/// @see core (dependence)
/// @see gtc_integer (dependence)
///
/// @defgroup gtc_integer GLM_GTC_integer
/// @ingroup gtc
///
/// @brief Allow to perform bit operations on integer values
///
/// <glm/gtc/integer.hpp> need to be included to use these functionaliti... | 36.606061 | 137 | 0.694536 | Noaheasley |
d481a18ca51734ceac9efaf66743070806af8035 | 979 | cpp | C++ | SwapNodesinPairs/SwapNodesinPairs_2.cpp | yergen/leetcode | 7b6dac49ac44e0bf43a4ecb4795ea8cfe6afa4ab | [
"MIT"
] | null | null | null | SwapNodesinPairs/SwapNodesinPairs_2.cpp | yergen/leetcode | 7b6dac49ac44e0bf43a4ecb4795ea8cfe6afa4ab | [
"MIT"
] | null | null | null | SwapNodesinPairs/SwapNodesinPairs_2.cpp | yergen/leetcode | 7b6dac49ac44e0bf43a4ecb4795ea8cfe6afa4ab | [
"MIT"
] | null | null | null | #include<iostream>
#include<string>
using namespace::std;
struct ListNode {
int val;
ListNode *next;
ListNode(int x) : val(x), next(NULL) {}
};
class Solution {
public:
ListNode* swapPairs(ListNode* head) {
ListNode **pp = &head, *first, *second;
//a->b->c->d->e->f
while ((first = *pp) && (second = first->... | 20.829787 | 79 | 0.52809 | yergen |
d48302fcce0a0ff2c394d6154b1b0a45d755315d | 2,256 | hpp | C++ | rmf_task/include/rmf_task/Request.hpp | Rouein/rmf_task | 32de25ff127aed754ca760ef462ef8c3e7dd56a1 | [
"Apache-2.0"
] | null | null | null | rmf_task/include/rmf_task/Request.hpp | Rouein/rmf_task | 32de25ff127aed754ca760ef462ef8c3e7dd56a1 | [
"Apache-2.0"
] | null | null | null | rmf_task/include/rmf_task/Request.hpp | Rouein/rmf_task | 32de25ff127aed754ca760ef462ef8c3e7dd56a1 | [
"Apache-2.0"
] | null | null | null | /*
* Copyright (C) 2020 Open Source Robotics Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by appl... | 26.857143 | 80 | 0.684397 | Rouein |
d487d715d6ea719fc27db2f8bf137b50190f395b | 1,740 | cpp | C++ | Dynamic_Memory_Allocation/Dynamic_Memory_Allocation/main.cpp | b01703020/Financial_Computing | d98d4f6e784997129ece15cdaf33c506e0f35c9e | [
"MIT"
] | null | null | null | Dynamic_Memory_Allocation/Dynamic_Memory_Allocation/main.cpp | b01703020/Financial_Computing | d98d4f6e784997129ece15cdaf33c506e0f35c9e | [
"MIT"
] | null | null | null | Dynamic_Memory_Allocation/Dynamic_Memory_Allocation/main.cpp | b01703020/Financial_Computing | d98d4f6e784997129ece15cdaf33c506e0f35c9e | [
"MIT"
] | null | null | null | //
// main.cpp
// Dynamic_Memory_Allocation
//
// Created by wu yen sun on 2022/2/4.
//
#include <iostream>
using namespace std;
int* getNum1() // Should not return the address of a local variable
{
int num = 10; // num i s a local variable
num += 1;
return # // its address i... | 23.513514 | 110 | 0.551149 | b01703020 |
d48b278d8eee1f8400c0e54d46afe8fdefb1baff | 1,164 | cpp | C++ | Core/src/latest/main/cpp/Capture/Camera.cpp | CJBuchel/CJ-Vision | 60fad66b807c6082fdcf01df9972b42dfc5c5ecc | [
"MIT"
] | 1 | 2020-09-07T09:15:15.000Z | 2020-09-07T09:15:15.000Z | Core/src/latest/main/cpp/Capture/Camera.cpp | CJBuchel/CJ-Vision | 60fad66b807c6082fdcf01df9972b42dfc5c5ecc | [
"MIT"
] | null | null | null | Core/src/latest/main/cpp/Capture/Camera.cpp | CJBuchel/CJ-Vision | 60fad66b807c6082fdcf01df9972b42dfc5c5ecc | [
"MIT"
] | 1 | 2020-09-02T02:02:11.000Z | 2020-09-02T02:02:11.000Z | #include "Capture/Camera.h"
namespace CJ {
Camera::~Camera() {
CJ_CORE_PRINT_WARN("Destroyed Camera, cap released");
cap.release();
}
int Camera::init() {
CJ_CORE_PRINT_INFO("Creating OpenCV Cap");
cap.set(cv::CAP_PROP_FPS, config.fps);
cap.open(config.port, config.apiID);
if (!cap.isOpened()) {
CJ... | 27.714286 | 96 | 0.710481 | CJBuchel |
d48f288d1cdeabbfc1745184bf55da6e1ad44958 | 2,867 | inl | C++ | MathLib/Include/GaussianQuadrature.inl | bgin/MissileSimulation | 90adcbf1c049daafb939f3fe9f9dfe792f26d5df | [
"MIT"
] | 23 | 2016-08-28T23:20:12.000Z | 2021-12-15T14:43:58.000Z | MathLib/Include/GaussianQuadrature.inl | bgin/MissileSimulation | 90adcbf1c049daafb939f3fe9f9dfe792f26d5df | [
"MIT"
] | 1 | 2018-06-02T21:29:51.000Z | 2018-06-05T05:59:31.000Z | MathLib/Include/GaussianQuadrature.inl | bgin/MissileSimulation | 90adcbf1c049daafb939f3fe9f9dfe792f26d5df | [
"MIT"
] | 1 | 2019-07-04T22:38:22.000Z | 2019-07-04T22:38:22.000Z | template<typename _Ty> __forceinline mathlib::GaussianQdrtr<_Ty>::GaussianQdrtr(const _Ty integr, const _Ty err) : integral(integr),
error(err)
{
}
template<typename _Ty> template<typename Function> __forceinline mathlib::GaussianQdrtr<_Ty> mathlib::GaussianQdrtr<_Ty>::integrate(Function f,
_Ty a, _Ty b)
{
_Ty s... | 26.546296 | 145 | 0.705964 | bgin |
d4918f230082dd2cbec38248041103e55285940d | 499 | cpp | C++ | src/RE/BSExtraData/ExtraCharge.cpp | thallada/CommonLibSSE | b092c699c3ccd1af6d58d05f677f2977ec054cfe | [
"MIT"
] | 1 | 2021-08-30T20:33:43.000Z | 2021-08-30T20:33:43.000Z | src/RE/BSExtraData/ExtraCharge.cpp | thallada/CommonLibSSE | b092c699c3ccd1af6d58d05f677f2977ec054cfe | [
"MIT"
] | null | null | null | src/RE/BSExtraData/ExtraCharge.cpp | thallada/CommonLibSSE | b092c699c3ccd1af6d58d05f677f2977ec054cfe | [
"MIT"
] | 1 | 2020-10-08T02:48:33.000Z | 2020-10-08T02:48:33.000Z | #include "RE/BSExtraData/ExtraCharge.h"
namespace RE
{
ExtraCharge::ExtraCharge() :
BSExtraData(),
charge(0.0F),
pad14(0)
{
REL::Relocation<std::uintptr_t> vtbl{ Offset::ExtraCharge::Vtbl };
((std::uintptr_t*)this)[0] = vtbl.address();
}
ExtraDataType ExtraCharge::GetType() const
{
return ExtraData... | 17.821429 | 68 | 0.693387 | thallada |
d49304852272523f2d86c823870a53154a52a1e3 | 5,112 | hpp | C++ | src/mgmt/nfd/forwarder-status.hpp | alvyC/ndn-cxx-vanet-ext | 48e8b214416d1b9d3534d26d28c147867f35d311 | [
"OpenSSL"
] | 1 | 2021-09-07T04:12:15.000Z | 2021-09-07T04:12:15.000Z | src/mgmt/nfd/forwarder-status.hpp | alvyC/ndn-cxx-vanet-ext | 48e8b214416d1b9d3534d26d28c147867f35d311 | [
"OpenSSL"
] | null | null | null | src/mgmt/nfd/forwarder-status.hpp | alvyC/ndn-cxx-vanet-ext | 48e8b214416d1b9d3534d26d28c147867f35d311 | [
"OpenSSL"
] | 1 | 2020-07-15T06:21:03.000Z | 2020-07-15T06:21:03.000Z | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
/*
* Copyright (c) 2013-2017 Regents of the University of California.
*
* This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
*
* ndn-cxx library is free software: you can redistribute it and/or modify it under the
... | 21.3 | 94 | 0.730243 | alvyC |
d49785c624ce4f7e8d5b88b8429f87a36083d462 | 7,107 | cpp | C++ | PineApple/Implment/StrFormat.cpp | BleedingChips/PineApple | 1133d40e93eb3bbad0bde8697f7e8002649c833d | [
"MIT"
] | null | null | null | PineApple/Implment/StrFormat.cpp | BleedingChips/PineApple | 1133d40e93eb3bbad0bde8697f7e8002649c833d | [
"MIT"
] | null | null | null | PineApple/Implment/StrFormat.cpp | BleedingChips/PineApple | 1133d40e93eb3bbad0bde8697f7e8002649c833d | [
"MIT"
] | null | null | null | #include "../Interface/StrFormat.h"
#include "../Interface/Nfa.h"
#include "../Interface/CharEncode.h"
namespace PineApple::StrFormat
{
static std::u32string_view PatternRex[] = {
UR"([^\{\}]+)",
UR"(\{\{)",
UR"(\}\})",
UR"(\{[^\{]*?\})",
};
static Nfa::Table table = Nfa::CreateTableFromRex(PatternRex, 4);... | 27.761719 | 136 | 0.638525 | BleedingChips |
d4988c9dd0bdd35136e8902ce052e10cffa63e3d | 3,267 | cpp | C++ | src/MirkoInterface.cpp | stephan2nd/cpp-accelerator-toolkit | 1c82f87b50199ec216a0d8968ed320fa9a52c48f | [
"MIT"
] | null | null | null | src/MirkoInterface.cpp | stephan2nd/cpp-accelerator-toolkit | 1c82f87b50199ec216a0d8968ed320fa9a52c48f | [
"MIT"
] | null | null | null | src/MirkoInterface.cpp | stephan2nd/cpp-accelerator-toolkit | 1c82f87b50199ec216a0d8968ed320fa9a52c48f | [
"MIT"
] | null | null | null | #include "MirkoInterface.hpp"
#include "DriftTube.hpp"
#include "QuadrupoleMagnet.hpp"
#include "Screen.hpp"
#include "HKick.hpp"
#include "VKick.hpp"
#include "RectangularDipoleMagnet.hpp"
#include <sstream>
#include <fstream>
#include <cmath>
MirkoInterface::MirkoInterface() :
m_devices()
{ }
MirkoInterface::... | 17.852459 | 129 | 0.628099 | stephan2nd |
d49e38623b5d6e90c87c2688271bcf77c07f9954 | 557 | cpp | C++ | Userland/Libraries/LibC/sys/statvfs.cpp | r00ster91/serenity | f8387dea2689d564aff612bfd4ec5086393fac35 | [
"BSD-2-Clause"
] | 19,438 | 2019-05-20T15:11:11.000Z | 2022-03-31T23:31:32.000Z | Userland/Libraries/LibC/sys/statvfs.cpp | r00ster91/serenity | f8387dea2689d564aff612bfd4ec5086393fac35 | [
"BSD-2-Clause"
] | 7,882 | 2019-05-20T01:03:52.000Z | 2022-03-31T23:26:31.000Z | Userland/Libraries/LibC/sys/statvfs.cpp | r00ster91/serenity | f8387dea2689d564aff612bfd4ec5086393fac35 | [
"BSD-2-Clause"
] | 2,721 | 2019-05-23T00:44:57.000Z | 2022-03-31T22:49:34.000Z | /*
* Copyright (c) 2021, Justin Mietzner <sw1tchbl4d3@sw1tchbl4d3.com>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <errno.h>
#include <string.h>
#include <sys/statvfs.h>
#include <syscall.h>
extern "C" {
int statvfs(const char* path, struct statvfs* buf)
{
Syscall::SC_statvfs_params params { { path... | 20.62963 | 70 | 0.669659 | r00ster91 |
d49fd5316b7717073e4885c3b434b6ccb590196c | 11,669 | hpp | C++ | control/zone.hpp | msbarth/phosphor-fan-presence | 9f5330e691ae2baa4c26fff8c828dcfcb04d5be8 | [
"Apache-2.0"
] | null | null | null | control/zone.hpp | msbarth/phosphor-fan-presence | 9f5330e691ae2baa4c26fff8c828dcfcb04d5be8 | [
"Apache-2.0"
] | null | null | null | control/zone.hpp | msbarth/phosphor-fan-presence | 9f5330e691ae2baa4c26fff8c828dcfcb04d5be8 | [
"Apache-2.0"
] | 1 | 2017-02-14T01:46:05.000Z | 2017-02-14T01:46:05.000Z | #pragma once
#include <chrono>
#include <vector>
#include <algorithm>
#include <sdbusplus/bus.hpp>
#include "fan.hpp"
#include "types.hpp"
#include "timer.hpp"
namespace phosphor
{
namespace fan
{
namespace control
{
/**
* The mode fan control will run in:
* - init - only do the initialization steps
* - contro... | 28.530562 | 79 | 0.520439 | msbarth |
d4a3962642aa1fe238a3adba316f0ea1a6b559cd | 1,513 | cpp | C++ | SPOJ/SPOJ Easy Longest Increasing Subsequence.cpp | akash246/Competitive-Programming-Solutions | 68db69ba8a771a433e5338bc4e837a02d3f89823 | [
"MIT"
] | 28 | 2017-11-08T11:52:11.000Z | 2021-07-16T06:30:02.000Z | SPOJ/SPOJ Easy Longest Increasing Subsequence.cpp | akash246/Competitive-Programming-Solutions | 68db69ba8a771a433e5338bc4e837a02d3f89823 | [
"MIT"
] | null | null | null | SPOJ/SPOJ Easy Longest Increasing Subsequence.cpp | akash246/Competitive-Programming-Solutions | 68db69ba8a771a433e5338bc4e837a02d3f89823 | [
"MIT"
] | 30 | 2017-09-01T09:14:27.000Z | 2021-04-12T12:08:56.000Z | //#Name: Sofen Hoque Anonta #Problm:
#include <bits/stdc++.h>
using namespace std;
//FOLD ME
namespace{
typedef long long LL;
typedef vector<int> vint;
typedef pair<int,int> pint;
typedef unsigned long long ULL;
//Macros
int CC_;
#define sf scanf
#define pf printf
#define PP cin.get();
#define NL cout<<endl;
#define... | 21.927536 | 184 | 0.582287 | akash246 |
d4ac17c9e7fc0c91a40fff2d3328d669baa8a7f1 | 3,222 | cpp | C++ | src/main.cpp | ThorNielsen/loxint | a5456afad37f22973e2b1292aff0276ac2c6fcdd | [
"MIT"
] | 7 | 2018-03-09T10:10:39.000Z | 2021-12-23T07:19:39.000Z | src/main.cpp | ThorNielsen/loxint | a5456afad37f22973e2b1292aff0276ac2c6fcdd | [
"MIT"
] | 1 | 2021-12-23T07:19:29.000Z | 2021-12-23T07:19:29.000Z | src/main.cpp | ThorNielsen/loxint | a5456afad37f22973e2b1292aff0276ac2c6fcdd | [
"MIT"
] | 1 | 2019-06-09T21:00:46.000Z | 2019-06-09T21:00:46.000Z | #include <iostream>
#include <fstream>
#include <string>
#include <stdexcept>
#include "lexer.hpp"
#include "resolver.hpp"
#include "astprinter.hpp"
#include "parser.hpp"
#include "interpreter.hpp"
int run(Interpreter& interpreter, std::string source, bool repl = false)
{
try
{
Parser p;
Lexe... | 21.337748 | 80 | 0.463377 | ThorNielsen |
d4b3ba2ae4316a10d30d66c346a077b9734a5768 | 6,428 | cpp | C++ | kernel/src/drivers/pci.cpp | ArdenyUser/ArdenWareOS | e09261093ba469d2291554c026037351bba28ab0 | [
"MIT"
] | 1,574 | 2015-01-15T16:35:30.000Z | 2022-03-29T07:27:49.000Z | kernel/src/drivers/pci.cpp | bgwilf/thor-os | 2dc0fef72595598aff7e5f950809042104f29b48 | [
"MIT"
] | 43 | 2016-08-23T16:22:29.000Z | 2022-03-09T10:28:05.000Z | kernel/src/drivers/pci.cpp | bgwilf/thor-os | 2dc0fef72595598aff7e5f950809042104f29b48 | [
"MIT"
] | 196 | 2016-02-17T10:52:24.000Z | 2022-03-28T17:41:29.000Z | //=======================================================================
// Copyright Baptiste Wicht 2013-2018.
// Distributed under the terms of the MIT License.
// (See accompanying file LICENSE or copy at
// http://www.opensource.org/licenses/MIT)
//=================================================================... | 34.934783 | 125 | 0.660236 | ArdenyUser |
d4c5da0c305d13cd514283378584234bcacd26bf | 18,902 | cpp | C++ | src/parser/expr.cpp | RauliL/snek | ad530c0485addaf71fd01469860b83a16d16bf9d | [
"BSD-2-Clause"
] | null | null | null | src/parser/expr.cpp | RauliL/snek | ad530c0485addaf71fd01469860b83a16d16bf9d | [
"BSD-2-Clause"
] | null | null | null | src/parser/expr.cpp | RauliL/snek | ad530c0485addaf71fd01469860b83a16d16bf9d | [
"BSD-2-Clause"
] | null | null | null | /*
* Copyright (c) 2020, Rauli Laine
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditi... | 25.543243 | 79 | 0.577082 | RauliL |
d4c65ed64bf7348080b11a9e4a280d06404a084c | 912 | hpp | C++ | concepts/ComponentEntity/GeneratedEntity_TestEntity.hpp | hyfloac/TauEngine | 1559b2a6e6d1887b8ee02932fe0aa6e5b9d5652c | [
"MIT"
] | 1 | 2020-04-22T04:07:01.000Z | 2020-04-22T04:07:01.000Z | concepts/ComponentEntity/GeneratedEntity_TestEntity.hpp | hyfloac/TauEngine | 1559b2a6e6d1887b8ee02932fe0aa6e5b9d5652c | [
"MIT"
] | null | null | null | concepts/ComponentEntity/GeneratedEntity_TestEntity.hpp | hyfloac/TauEngine | 1559b2a6e6d1887b8ee02932fe0aa6e5b9d5652c | [
"MIT"
] | null | null | null | #pragma once
#include "Entity.hpp"
#include <cstdint>
#include "./ForwardComponent.hpp"
#include "./FloatComponent.hpp"
class TestEntity : public Entity {
public:
ForwardComponent* _comp0;
FloatComponent* _comp1;
TestEntity() {
std::uint8_t* rawBuf = new std::uint8_t[8];
_comp0 = new(rawBuf ... | 28.5 | 51 | 0.626096 | hyfloac |
d4c7113d488d4ed7caaf366990672537dd03ca9e | 2,755 | cpp | C++ | src/App.cpp | nirustim/openGLproject | 51cdd160694be055dcca2ec97d1f74963c9e0796 | [
"MIT"
] | null | null | null | src/App.cpp | nirustim/openGLproject | 51cdd160694be055dcca2ec97d1f74963c9e0796 | [
"MIT"
] | null | null | null | src/App.cpp | nirustim/openGLproject | 51cdd160694be055dcca2ec97d1f74963c9e0796 | [
"MIT"
] | null | null | null | #include "App.hpp"
App::App()
{
Engine::Log("Object Made");
}
App::~App()
{
Engine::Log("Object Destroyed");
}
void App::Run()
{
if (appState == AppState::ON)
Engine::FatalError("App already running.");
Engine::Init();
unsigned int windowFlags = 0;
// windowFlags |= Engine::WindowFlags::FULLSCREEN;... | 22.04 | 81 | 0.645735 | nirustim |
d4cd8498727cc0992fb635801b77c94cbe85b855 | 11,384 | cpp | C++ | Source/src/Modules/ModuleRender.cpp | Erick9Thor/Engine3D | 32d78f79723fb7c319f79d5e26cdc26481d5cb35 | [
"MIT"
] | 1 | 2021-11-17T19:20:07.000Z | 2021-11-17T19:20:07.000Z | Source/src/Modules/ModuleRender.cpp | Erick9Thor/Engine3D | 32d78f79723fb7c319f79d5e26cdc26481d5cb35 | [
"MIT"
] | null | null | null | Source/src/Modules/ModuleRender.cpp | Erick9Thor/Engine3D | 32d78f79723fb7c319f79d5e26cdc26481d5cb35 | [
"MIT"
] | null | null | null | #include "../Globals.h"
#include "../Application.h"
#include "../Utils/Logger.h"
#include "ModuleRender.h"
#include "ModuleWindow.h"
#include "ModuleProgram.h"
#include "ModuleCamera.h"
#include "ModuleDebugDraw.h"
#include "ModuleSceneManager.h"
#include "ModuleEditor.h"
#include "../Scene.h"
#include "../Skybox.h"
#... | 27.765854 | 156 | 0.746486 | Erick9Thor |
d4dadf6e20689466e1c472ef39b47de2f9bb8cb7 | 3,538 | cpp | C++ | gui-firmware/devices/Display.cpp | Danfx/BR-Ventilador | 052524803e35a8e5db8b1c3f72c16dc91c19ca54 | [
"MIT"
] | null | null | null | gui-firmware/devices/Display.cpp | Danfx/BR-Ventilador | 052524803e35a8e5db8b1c3f72c16dc91c19ca54 | [
"MIT"
] | null | null | null | gui-firmware/devices/Display.cpp | Danfx/BR-Ventilador | 052524803e35a8e5db8b1c3f72c16dc91c19ca54 | [
"MIT"
] | null | null | null | /*
* LICENSE MIT - https://tldrlegal.com/license/mit-license
*
* Copyright Daniel Fussia, https://github.com/Danfx
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction... | 26.402985 | 97 | 0.665065 | Danfx |
d4dd0afd948698afa9d16f3a5e98beb464d4f3ff | 6,104 | cpp | C++ | src/reconstruction/Image.cpp | ShnitzelKiller/Reverse-Engineering-Carpentry | 585b5ff053c7e3bf286b663a584bc83687691bd6 | [
"MIT"
] | 3 | 2021-09-08T07:28:13.000Z | 2022-03-02T21:12:40.000Z | src/reconstruction/Image.cpp | ShnitzelKiller/Reverse-Engineering-Carpentry | 585b5ff053c7e3bf286b663a584bc83687691bd6 | [
"MIT"
] | 1 | 2021-09-21T14:40:55.000Z | 2021-09-26T01:19:38.000Z | src/reconstruction/Image.cpp | ShnitzelKiller/Reverse-Engineering-Carpentry | 585b5ff053c7e3bf286b663a584bc83687691bd6 | [
"MIT"
] | null | null | null | //
// Created by James Noeckel on 12/10/19.
//
#include "Image.h"
#include <fstream>
#include <memory>
#include "parsing.hpp"
#include <iostream>
#include <utility>
std::unordered_map<int32_t, Image> Image::parse_file(const std::string &filename, const std::string &image_path, const std::string &depth_path, double s... | 35.08046 | 263 | 0.544233 | ShnitzelKiller |
d4de32547d2bf6774e0645816f83923e2ca9a3fb | 913 | cpp | C++ | C_C++/oop_assignment/contest/week1Contest/date.cpp | oneofsunshine/program_learning | 5afc2e5e6e7a6604d4bd9c8e102822e1cf751c0b | [
"Apache-2.0"
] | 1 | 2018-02-10T03:53:45.000Z | 2018-02-10T03:53:45.000Z | C_C++/oop_assignment/contest/week1Contest/date.cpp | oneofsunshine/program_learning | 5afc2e5e6e7a6604d4bd9c8e102822e1cf751c0b | [
"Apache-2.0"
] | null | null | null | C_C++/oop_assignment/contest/week1Contest/date.cpp | oneofsunshine/program_learning | 5afc2e5e6e7a6604d4bd9c8e102822e1cf751c0b | [
"Apache-2.0"
] | null | null | null | #include<iostream>
using namespace std;
int ap[12] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
int ar[12] = {31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
int date(int s, int rOrP, int m, int d)
{
int t = s;
if(rOrP)
{
for(int i = 0; i < m - 1; i++)
t += ar[i];
t += d;... | 23.410256 | 62 | 0.463308 | oneofsunshine |
d4e11eed102183d3ddb1cf50c75b0bde7504b6d5 | 1,049 | cpp | C++ | tests/eventloop_test.cpp | lddddd1997/NetServer | 940b84bef7d0856bc2fe5f16164bfe041e4d4c9f | [
"MIT"
] | null | null | null | tests/eventloop_test.cpp | lddddd1997/NetServer | 940b84bef7d0856bc2fe5f16164bfe041e4d4c9f | [
"MIT"
] | null | null | null | tests/eventloop_test.cpp | lddddd1997/NetServer | 940b84bef7d0856bc2fe5f16164bfe041e4d4c9f | [
"MIT"
] | null | null | null | // #include <EventLoopThread.h>
// #include <iostream>
// #include <unistd.h>
// using namespace std;
// // g++ eventloop_test.cpp EventLoopThread.cpp EventLoop.cpp Channel.cpp Epoller.cpp -I . -pthread
// void print(EventLoop *p = nullptr)
// {
// printf("print: pid = %d, tid = %ld, loop = %p\n",
// getp... | 22.804348 | 100 | 0.503337 | lddddd1997 |
d4e42d3f21202f45938ecfb54efe2260b204a37d | 10,259 | cpp | C++ | logdevice/clients/python/logdevice_reader.cpp | mickvav/LogDevice | 24a8b6abe4576418eceb72974083aa22d7844705 | [
"BSD-3-Clause"
] | 1 | 2021-05-19T23:01:58.000Z | 2021-05-19T23:01:58.000Z | logdevice/clients/python/logdevice_reader.cpp | mickvav/LogDevice | 24a8b6abe4576418eceb72974083aa22d7844705 | [
"BSD-3-Clause"
] | null | null | null | logdevice/clients/python/logdevice_reader.cpp | mickvav/LogDevice | 24a8b6abe4576418eceb72974083aa22d7844705 | [
"BSD-3-Clause"
] | null | null | null | /**
* Copyright (c) 2017-present, Facebook, Inc. and its affiliates.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree.
*/
#include <algorithm>
#include <atomic>
#include <chrono>
#include <cmath>
#include <bo... | 36.902878 | 80 | 0.651915 | mickvav |
d4e6742e509a534b5d9f6b7fd58d812161159754 | 694 | cpp | C++ | cpp_dsgn_pattern_n_derivatives_pricing/chapter16/exercise16_1/exercise16_1/TreeProductsDecoupling.cpp | calvin456/intro_derivative_pricing | 0841fbc0344bee00044d67977faccfd2098b5887 | [
"MIT"
] | 5 | 2016-12-28T16:07:38.000Z | 2022-03-11T09:55:57.000Z | cpp_dsgn_pattern_n_derivatives_pricing/chapter16/exercise16_1/exercise16_1/TreeProductsDecoupling.cpp | calvin456/intro_derivative_pricing | 0841fbc0344bee00044d67977faccfd2098b5887 | [
"MIT"
] | null | null | null | cpp_dsgn_pattern_n_derivatives_pricing/chapter16/exercise16_1/exercise16_1/TreeProductsDecoupling.cpp | calvin456/intro_derivative_pricing | 0841fbc0344bee00044d67977faccfd2098b5887 | [
"MIT"
] | 5 | 2017-06-04T04:50:47.000Z | 2022-03-17T17:41:16.000Z | //TreeProductsDecoupling.cpp
#include "TreeProductsDecoupling.h"
TreeProduct::TreeProduct(double FinalTime_)
: FinalTime(FinalTime_)
{
}
double TreeProduct::GetFinalTime() const
{
return FinalTime;
}
/*
*
* Copyright (c) 2002
* Mark Joshi
*
* Permission to use, copy, modify, distribute and sell this
* software fo... | 23.133333 | 63 | 0.772334 | calvin456 |
d4e934f1a0b756729dc58ef03910e155318d58dd | 517 | cpp | C++ | runtime/indirect_heap/indirect_heap.cpp | cwang64/compute-runtime | 440520ffdc5807574f0abfbf64b3790d1c0547e4 | [
"MIT"
] | 3 | 2019-09-20T23:26:36.000Z | 2019-10-03T17:44:12.000Z | runtime/indirect_heap/indirect_heap.cpp | cwang64/compute-runtime | 440520ffdc5807574f0abfbf64b3790d1c0547e4 | [
"MIT"
] | 1 | 2019-09-17T08:06:24.000Z | 2019-09-17T08:06:24.000Z | runtime/indirect_heap/indirect_heap.cpp | cwang64/compute-runtime | 440520ffdc5807574f0abfbf64b3790d1c0547e4 | [
"MIT"
] | 3 | 2019-05-16T07:22:51.000Z | 2019-11-11T03:05:32.000Z | /*
* Copyright (C) 2017-2019 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "indirect_heap.h"
namespace NEO {
IndirectHeap::IndirectHeap(GraphicsAllocation *gfxAllocation) : BaseClass(gfxAllocation) {
}
IndirectHeap::IndirectHeap(GraphicsAllocation *gfxAllocation, bool canBeUtilizedAs4GbHeap)... | 23.5 | 167 | 0.777563 | cwang64 |
d4eaa86b9b2429aa8e8f8a30748d0c6aebffea37 | 5,533 | hpp | C++ | config/Templates/FslUtil.Vulkan/Template_header0.hpp | Unarmed1000/RAIIGen | 2516ab5949c1fb54ca1b6e51e5e99e15ecfebbfb | [
"BSD-3-Clause"
] | 8 | 2016-11-02T14:08:51.000Z | 2021-03-25T02:00:00.000Z | config/Templates/FslUtil.Vulkan/Template_header0.hpp | Unarmed1000/RAIIGen | 2516ab5949c1fb54ca1b6e51e5e99e15ecfebbfb | [
"BSD-3-Clause"
] | 4 | 2016-08-23T12:37:17.000Z | 2016-09-30T01:58:20.000Z | config/Templates/FslUtil.Vulkan/Template_header0.hpp | Unarmed1000/RAIIGen | 2516ab5949c1fb54ca1b6e51e5e99e15ecfebbfb | [
"BSD-3-Clause"
] | null | null | null | #ifndef FSLUTIL_##NAMESPACE_NAME!##_##CLASS_NAME!##_HPP
#define FSLUTIL_##NAMESPACE_NAME!##_##CLASS_NAME!##_HPP
/****************************************************************************************************************************************************
* Copyright (c) 2016 Freescale Semiconductor, Inc.
* All r... | 37.134228 | 149 | 0.646665 | Unarmed1000 |
d4ee1d1d4809b78f5db59b951bf03a4f9400e971 | 921 | cpp | C++ | lib/openGL/src/Evenement.cpp | benjyup/cpp_arcade | 4b755990b64156148e529da1c39efe8a8c0c5d1f | [
"MIT"
] | null | null | null | lib/openGL/src/Evenement.cpp | benjyup/cpp_arcade | 4b755990b64156148e529da1c39efe8a8c0c5d1f | [
"MIT"
] | null | null | null | lib/openGL/src/Evenement.cpp | benjyup/cpp_arcade | 4b755990b64156148e529da1c39efe8a8c0c5d1f | [
"MIT"
] | null | null | null | //
// Created by florian on 4/5/17.
//
#include "Evenement.hpp"
arcade::Evenement::Evenement(IEvenement::KeyCode keycode) : _keyCode(keycode),
_action(IEvenement::Action::KeyPressDown),
_score(0)
{}
... | 38.375 | 101 | 0.641694 | benjyup |
d4ef889e0b5e9c454d6a0fffc270440b1b149fae | 41,279 | cpp | C++ | src/EHooker.cpp | cxxjava/CxxFiber | 0558eb2f070f9e36859050f9d0fec89ef9d19982 | [
"Apache-2.0"
] | 14 | 2016-12-13T08:23:17.000Z | 2020-03-29T23:28:46.000Z | src/EHooker.cpp | cxxjava/CxxFiber | 0558eb2f070f9e36859050f9d0fec89ef9d19982 | [
"Apache-2.0"
] | null | null | null | src/EHooker.cpp | cxxjava/CxxFiber | 0558eb2f070f9e36859050f9d0fec89ef9d19982 | [
"Apache-2.0"
] | 8 | 2017-02-09T09:56:20.000Z | 2019-02-19T07:22:11.000Z | /*
* EHooker.cpp
*
* Created on: 2016-5-12
* Author: cxxjava@163.com
*/
#include "./EHooker.hh"
#include "./EIoWaiter.hh"
#include "./EFileContext.hh"
#include "../inc/EFiberLocal.hh"
#include "../inc/EFiberScheduler.hh"
#include "eco_ae.h"
#include <dlfcn.h>
#include <poll.h>
#include <signal.h>
#include ... | 26.944517 | 118 | 0.672473 | cxxjava |
d4f08af725ac4c4915603a9ee3da04b2cbda6646 | 4,269 | hpp | C++ | modules/viz/include/opencv2/viz.hpp | Nerei/opencv | 92d5f8744c872ccf63b17334f018343973353e47 | [
"BSD-3-Clause"
] | 1 | 2015-04-22T14:10:46.000Z | 2015-04-22T14:10:46.000Z | modules/viz/include/opencv2/viz.hpp | ameydhar/opencv | 1c3bfae2121f689535ab1a17284f40f5d64e0927 | [
"BSD-3-Clause"
] | null | null | null | modules/viz/include/opencv2/viz.hpp | ameydhar/opencv | 1c3bfae2121f689535ab1a17284f40f5d64e0927 | [
"BSD-3-Clause"
] | 2 | 2018-05-03T21:08:19.000Z | 2020-09-26T06:27:08.000Z | /*M///////////////////////////////////////////////////////////////////////////////////////
//
// IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING.
//
// By downloading, copying, installing or using the software you agree to this license.
// If you do not agree to this license, do not download, instal... | 43.561224 | 150 | 0.676037 | Nerei |
d4f8b23421ac1afb4535fd401b3ac24b99887c11 | 6,131 | cpp | C++ | code/wxWidgets/src/motif/colour.cpp | Bloodknight/NeuTorsion | a5890e9ca145a8c1b6bec7b70047a43d9b1c29ea | [
"MIT"
] | 38 | 2016-02-20T02:46:28.000Z | 2021-11-17T11:39:57.000Z | code/wxWidgets/src/motif/colour.cpp | Dwarf-King/TorsionEditor | e6887d1661ebaf4ccbf1d09f2690e2bf805fbb50 | [
"MIT"
] | 17 | 2016-02-20T02:19:55.000Z | 2021-02-08T15:15:17.000Z | code/wxWidgets/src/motif/colour.cpp | Dwarf-King/TorsionEditor | e6887d1661ebaf4ccbf1d09f2690e2bf805fbb50 | [
"MIT"
] | 46 | 2016-02-20T02:47:33.000Z | 2021-01-31T15:46:05.000Z | /////////////////////////////////////////////////////////////////////////////
// Name: colour.cpp
// Purpose: wxColour class
// Author: Julian Smart
// Modified by:
// Created: 17/09/98
// RCS-ID: $Id: colour.cpp,v 1.16 2005/02/06 17:38:29 MBN Exp $
// Copyright: (c) Julian Smart
// Licence: ... | 26.890351 | 85 | 0.619801 | Bloodknight |
d4fb7098083ee0f3440c9361171afbb35927a570 | 8,970 | hpp | C++ | dsa/include/dsa/list.hpp | Abstract-Everything/dsa | fcbc0f4fa1eb3493f0e1b8f05d7f159ea6f2342c | [
"Unlicense"
] | null | null | null | dsa/include/dsa/list.hpp | Abstract-Everything/dsa | fcbc0f4fa1eb3493f0e1b8f05d7f159ea6f2342c | [
"Unlicense"
] | null | null | null | dsa/include/dsa/list.hpp | Abstract-Everything/dsa | fcbc0f4fa1eb3493f0e1b8f05d7f159ea6f2342c | [
"Unlicense"
] | null | null | null | #ifndef DSA_LIST_HPP
#define DSA_LIST_HPP
#include <dsa/allocator_traits.hpp>
#include <dsa/default_allocator.hpp>
#include <dsa/node.hpp>
#include <cstddef>
#include <memory>
namespace dsa
{
namespace detail
{
template<typename Satellite_t, template<typename> typename Allocator_Base>
class List_Node
{
private:
... | 22.039312 | 90 | 0.676589 | Abstract-Everything |
be08967d395cde607e5d9366c78185f3167c8d62 | 6,505 | hxx | C++ | OCC/opencascade-7.2.0/x64/debug/inc/SelectMgr_Selection.hxx | jiaguobing/FastCAE | 2348ab87e83fe5c704e4c998cf391229c25ac5d5 | [
"BSD-3-Clause"
] | 2 | 2020-02-21T01:04:35.000Z | 2020-02-21T03:35:37.000Z | OCC/opencascade-7.2.0/x64/debug/inc/SelectMgr_Selection.hxx | Sunqia/FastCAE | cbc023fe07b6e306ceefae8b8bd7c12bc1562acb | [
"BSD-3-Clause"
] | 1 | 2020-03-06T04:49:42.000Z | 2020-03-06T04:49:42.000Z | OCC/opencascade-7.2.0/x64/debug/inc/SelectMgr_Selection.hxx | Sunqia/FastCAE | cbc023fe07b6e306ceefae8b8bd7c12bc1562acb | [
"BSD-3-Clause"
] | 1 | 2021-11-21T13:03:26.000Z | 2021-11-21T13:03:26.000Z | // Created on: 1995-02-16
// Created by: Mister rmi
// Copyright (c) 1995-1999 Matra Datavision
// Copyright (c) 1999-2014 OPEN CASCADE SAS
//
// This file is part of Open CASCADE Technology software library.
//
// This library is free software; you can redistribute it and/or modify it under
// the terms of the GNU Les... | 39.664634 | 99 | 0.733897 | jiaguobing |
be09d8e4cbbad885c4ba4fd8b910550976ada034 | 10,093 | cpp | C++ | Sources/Tools/EPI/Document/ContentInfo/SplineRepresentation.cpp | benkaraban/anima-games-engine | 8aa7a5368933f1b82c90f24814f1447119346c3b | [
"BSD-3-Clause"
] | 2 | 2015-04-16T01:05:53.000Z | 2019-08-26T07:38:43.000Z | Sources/Tools/EPI/Document/ContentInfo/SplineRepresentation.cpp | benkaraban/anima-games-engine | 8aa7a5368933f1b82c90f24814f1447119346c3b | [
"BSD-3-Clause"
] | null | null | null | Sources/Tools/EPI/Document/ContentInfo/SplineRepresentation.cpp | benkaraban/anima-games-engine | 8aa7a5368933f1b82c90f24814f1447119346c3b | [
"BSD-3-Clause"
] | null | null | null | /*
* Copyright (c) 2010, Anima Games, Benjamin Karaban, Laurent Schneider,
* Jérémie Comarmond, Didier Colin.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* - Redistributions of ... | 41.028455 | 148 | 0.635886 | benkaraban |
be0a10874dda4946544813fa28b986dc9a86ae50 | 9,353 | cpp | C++ | VC2010Samples/MFC/Visual C++ 2008 Feature Pack/VisualStudioDemo/PropertiesViewBar.cpp | alonmm/VCSamples | 6aff0b4902f5027164d593540fcaa6601a0407c3 | [
"MIT"
] | 300 | 2019-05-09T05:32:33.000Z | 2022-03-31T20:23:24.000Z | VC2010Samples/MFC/Visual C++ 2008 Feature Pack/VisualStudioDemo/PropertiesViewBar.cpp | JaydenChou/VCSamples | 9e1d4475555b76a17a3568369867f1d7b6cc6126 | [
"MIT"
] | 9 | 2016-09-19T18:44:26.000Z | 2018-10-26T10:20:05.000Z | VC2010Samples/MFC/Visual C++ 2008 Feature Pack/VisualStudioDemo/PropertiesViewBar.cpp | JaydenChou/VCSamples | 9e1d4475555b76a17a3568369867f1d7b6cc6126 | [
"MIT"
] | 633 | 2019-05-08T07:34:12.000Z | 2022-03-30T04:38:28.000Z | // This is a part of the Microsoft Foundation Classes C++ library.
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// This source code is only intended as a supplement to the
// Microsoft Foundation Classes Reference and related
// electronic documentation provided with the library.
// See these source... | 32.58885 | 173 | 0.755373 | alonmm |
be0a77ef2bc95116abf1dc0136905aea561d0411 | 2,816 | cpp | C++ | src/equation/lu/lu_mumps_cpu.cpp | rigarash/monolish-debian-package | 70b4917370184bcf07378e1907c5239a1ad9579b | [
"Apache-2.0"
] | 172 | 2021-04-05T10:04:40.000Z | 2022-03-28T14:30:38.000Z | src/equation/lu/lu_mumps_cpu.cpp | rigarash/monolish-debian-package | 70b4917370184bcf07378e1907c5239a1ad9579b | [
"Apache-2.0"
] | 96 | 2021-04-06T01:53:44.000Z | 2022-03-09T07:27:09.000Z | src/equation/lu/lu_mumps_cpu.cpp | termoshtt/monolish | 1cba60864002b55bc666da9baa0f8c2273578e01 | [
"Apache-2.0"
] | 8 | 2021-04-05T13:21:07.000Z | 2022-03-09T23:24:06.000Z | #include "../../../include/monolish_blas.hpp"
#include "../../../include/monolish_equation.hpp"
#include "../../internal/monolish_internal.hpp"
// #include "dmumps_c.h"
// #include "mpi.h"
#define JOB_INIT -1
#define JOB_END -2
#define USE_COMM_WORLD -987654
namespace monolish {
// mumps is choushi warui..
template... | 27.607843 | 79 | 0.51669 | rigarash |
be1f640bb7ae1ac25391a191f2a10783811cc823 | 8,373 | cpp | C++ | SerialPrograms/Source/PokemonLA/Programs/ShinyHunting/PokemonLA_CrobatFinder.cpp | Gin890/Arduino-Source | 9047ff584010d8ddc3558068874f16fb3c7bb46d | [
"MIT"
] | null | null | null | SerialPrograms/Source/PokemonLA/Programs/ShinyHunting/PokemonLA_CrobatFinder.cpp | Gin890/Arduino-Source | 9047ff584010d8ddc3558068874f16fb3c7bb46d | [
"MIT"
] | null | null | null | SerialPrograms/Source/PokemonLA/Programs/ShinyHunting/PokemonLA_CrobatFinder.cpp | Gin890/Arduino-Source | 9047ff584010d8ddc3558068874f16fb3c7bb46d | [
"MIT"
] | null | null | null | /* Alpha Crobat Hunter
*
* From: https://github.com/PokemonAutomation/Arduino-Source
*
*/
#include "Common/Cpp/Exceptions.h"
#include "CommonFramework/Notifications/ProgramNotifications.h"
#include "CommonFramework/VideoPipeline/VideoFeed.h"
#include "CommonFramework/InferenceInfra/InferenceRoutines.h"
... | 37.716216 | 137 | 0.655798 | Gin890 |
be20ee6191c0133a8fd3b2c9cd606ddd40ee012b | 1,733 | cpp | C++ | src/basic/adt/ApSInt.cpp | PHP-OPEN-HUB/polarphp | 70ff4046e280fd99d718d4761686168fa8012aa5 | [
"PHP-3.01"
] | null | null | null | src/basic/adt/ApSInt.cpp | PHP-OPEN-HUB/polarphp | 70ff4046e280fd99d718d4761686168fa8012aa5 | [
"PHP-3.01"
] | null | null | null | src/basic/adt/ApSInt.cpp | PHP-OPEN-HUB/polarphp | 70ff4046e280fd99d718d4761686168fa8012aa5 | [
"PHP-3.01"
] | null | null | null | // This source file is part of the polarphp.org open source project
//
// Copyright (c) 2017 - 2019 polarphp software foundation
// Copyright (c) 2017 - 2019 zzu_softboy <zzu_softboy@163.com>
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://polarphp.org/LICENSE.txt for license info... | 30.946429 | 85 | 0.612233 | PHP-OPEN-HUB |
be23611dc134a0bacfb74518ac7874cb12086dd1 | 2,988 | cc | C++ | Geometry/CaloEventSetup/test/CaloAlignmentRcdWrite.cc | knash/cmssw | d4f63ec2b2c322e3be4c4d78ce20ebddbcd88ca7 | [
"Apache-2.0"
] | null | null | null | Geometry/CaloEventSetup/test/CaloAlignmentRcdWrite.cc | knash/cmssw | d4f63ec2b2c322e3be4c4d78ce20ebddbcd88ca7 | [
"Apache-2.0"
] | 1 | 2021-06-28T14:25:47.000Z | 2021-06-30T10:12:29.000Z | Geometry/CaloEventSetup/test/CaloAlignmentRcdWrite.cc | knash/cmssw | d4f63ec2b2c322e3be4c4d78ce20ebddbcd88ca7 | [
"Apache-2.0"
] | null | null | null | #include <string>
#include "FWCore/ParameterSet/interface/ParameterSet.h"
#include "FWCore/ServiceRegistry/interface/Service.h"
#include "FWCore/Framework/interface/EventSetup.h"
#include "FWCore/Framework/interface/one/EDAnalyzer.h"
#include "FWCore/Framework/interface/MakerMacros.h"
#include "Utilities/General/inter... | 35.152941 | 115 | 0.745315 | knash |
be26304c1812023d42cb498cbf7686409bc6d23a | 7,933 | cpp | C++ | src/BldRecons/SPB2OBJ/MeshGrid.cpp | liuxinren/UrbanReconstruction | 079d9b0c9089aa9cdb15d31d76155e50a5e72f00 | [
"MIT"
] | 94 | 2017-07-20T05:32:07.000Z | 2022-03-02T03:38:54.000Z | src/BldRecons/SPB2OBJ/MeshGrid.cpp | GucciPrada/UrbanReconstruction | 8b058349fd860ea9029623a92d705dd93a4e4878 | [
"MIT"
] | 3 | 2017-09-12T00:07:05.000Z | 2020-03-08T21:12:36.000Z | src/BldRecons/SPB2OBJ/MeshGrid.cpp | GucciPrada/UrbanReconstruction | 8b058349fd860ea9029623a92d705dd93a4e4878 | [
"MIT"
] | 38 | 2017-07-25T06:00:52.000Z | 2022-03-19T10:01:06.000Z | #include "StdAfx.h"
#include "MeshGrid.h"
#include "ParamManager.h"
#include "Miscs\TimeMeter.h"
CMeshGrid::CMeshGrid(void)
{
}
CMeshGrid::~CMeshGrid(void)
{
}
void CMeshGrid::Mesh()
{
CParamManager * manager = CParamManager::GetParamManager();
CTimeMeter timer;
timer.Start();
fprintf_s( stderr, "==============... | 26.982993 | 124 | 0.556284 | liuxinren |
be27d9ac8acb3f9a5aaa1968cd7eced13c4325e2 | 5,471 | cpp | C++ | src/WWWAPIHandler.cpp | backuperator/daemon | ae30bb57ceb5a989752cdde322c300c9208d3a50 | [
"BSD-2-Clause"
] | null | null | null | src/WWWAPIHandler.cpp | backuperator/daemon | ae30bb57ceb5a989752cdde322c300c9208d3a50 | [
"BSD-2-Clause"
] | null | null | null | src/WWWAPIHandler.cpp | backuperator/daemon | ae30bb57ceb5a989752cdde322c300c9208d3a50 | [
"BSD-2-Clause"
] | null | null | null | #include "WWWAPIHandler.hpp"
#include "IOLib.h"
#include <stdlib.h>
#include <glog/logging.h>
#include <boost/regex.hpp>
using json = nlohmann::json;
using namespace boost;
using namespace std;
// Create regexes for all URLs we support.
static regex _exprLibraries("^\\/api\\/libraries$");
/**
* Initializes the h... | 25.211982 | 89 | 0.640468 | backuperator |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.