blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 3 264 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2
values | repo_name stringlengths 5 140 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 986
values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 3.89k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 23
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 145
values | src_encoding stringclasses 34
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 3 10.4M | extension stringclasses 122
values | content stringlengths 3 10.4M | authors listlengths 1 1 | author_id stringlengths 0 158 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
d34f720992dedd8af8af18914ed332f7242ad1f4 | cf56e34cc5986e5160b16dd82c596ac94a489768 | /11657-SPFA.cpp | 63241d2bece6484d9bcad006198476fb18ce3844 | [] | no_license | KTH-INHA-16/KIMTAEHUN | 00f0f481336062fe90578103603fbc19f1d80fb8 | 67bc3e1db9b8246ad515e6b29df656f623ed6f44 | refs/heads/master | 2020-08-13T18:12:10.819195 | 2020-07-21T03:35:50 | 2020-07-21T03:35:50 | 215,013,801 | 0 | 0 | null | null | null | null | UHC | C++ | false | false | 1,212 | cpp | #include <iostream>
#include <vector>
#include <queue>
using namespace std;
class Edge
{
public:
int to, cost;
Edge(int t, int c)
{
to = t;
cost = c;
}
};
const int inf = 100000000;
int d[501];
bool check[501];
vector<Edge> a[501];
int cnt[501];
//간선 체크
int main()
{
int n, m;
cin >> n >> m;
for (int i = 0... | [
"kim112318@naver.com"
] | kim112318@naver.com |
c98bd6ffe740f43cb2943882e946d638a5804ee6 | 108c8fa38da3371571068f353888f20d8fd729c0 | /voxel-cutting/Transformer_Cutting/OpenGLView/debugInfo.cpp | b1625b7d534dd35d26478eb59877d576222464b1 | [] | no_license | pigoblock/TFYP | 2dd0acf1bb5591fb31b2d78a1bed764cd4a7d166 | 11ba29fd0d75a6b92080fd80b24064898b8f980f | refs/heads/master | 2021-01-17T10:07:10.149542 | 2016-04-19T07:41:53 | 2016-04-19T07:41:53 | 41,845,421 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,291 | cpp | #include "stdafx.h"
#include "debugInfo.h"
debugInfo::debugInfo()
{
}
debugInfo::~debugInfo()
{
}
void debugInfo::reload()
{
pair[0] ++;
int idx = s_voxelObj->m_hashTable.getSymmetricBox(pair[0]);
pair[1] = idx;
}
void debugInfo::reloadData()
{
FILE * f = fopen("../test/debugInfo.txt", "r");
ASSERT(f);
dat... | [
"kowanling@hotmail.com"
] | kowanling@hotmail.com |
9f547916daa344d07bd20a9165f090c39d8a9afb | b48cc66bf4f5a173338e42ba02245da043e71ce7 | /LuoguCodes/P1062.cpp | 2d5499b68aafa37680655293dea70489d6230558 | [
"MIT"
] | permissive | Anguei/OI-Codes | 6f79f5c446e87b13c6bffe3cc758c722e8d0d65c | 0ef271e9af0619d4c236e314cd6d8708d356536a | refs/heads/master | 2020-04-22T22:18:14.531234 | 2019-02-14T14:24:36 | 2019-02-14T14:24:36 | 170,703,285 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 330 | cpp | //【P1062】数列 - 洛谷 - 0
#include <cmath>
#include <stack>
#include <iostream>
int main() {
int64_t k, n, ans = 0;
std::cin >> k >> n;
std::stack<int64_t> s;
while (n) {
s.push(n & 1);
n /= 2;
}
while (!s.empty()) {
ans += s.top() * std::pow(k, s.size() - 1);
s.pop();
}
std::cout << ans << std::endl;
} | [
"Anguei@users.noreply.github.com"
] | Anguei@users.noreply.github.com |
d97efc363eef80595327d2eb6b847f1ac95a0dbc | d66242b3193b07767bbabe782f1f1e48e643e82b | /.svn/pristine/6d/6de60dae7bad5068b1f6dfd0e33b005c420551ac.svn-base | 14c746de4bd17a393277243fd50b65254249705b | [] | no_license | c444b774/SIMCODE | 84737b1db4356e5b4f87f8c2715754061ab736bd | a1f778df79ade1c20947375522f7be45a2a928f5 | refs/heads/master | 2020-11-27T12:42:18.392852 | 2016-04-23T13:46:28 | 2016-04-23T13:46:28 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 817 |
#pragma once
#include "IFuncDev.h"
#include "CTesterDevice.h"
#define POWER_SUPPLY_OUTPUT1 1
#define POWER_SUPPLY_OUTPUT2 2
class CPowerSupply: public IFuncDev,public CTesterDevice
{
RF_DECLARE_DYNCREATE(CPowerSupply)
public:
CPowerSupply();
~CPowerSupply();
virtual int InitDevice(const CString & strAddr... | [
"flyzsf@163.com"
] | flyzsf@163.com | |
358e6d042f9eaf8b7fd26cb00c775c32a465c5dd | 98b94eae33267a88fc0b743126f750af37c95e39 | /Chapter-7-Arrays/7.3 No Bounds Checking in C++/Checkpoint/7.6.cpp | 0d198d21af9c33498110aafdd711e2d2060914ae | [
"MIT"
] | permissive | ahuertaalberca/C-Plus-Plus | 003c75b7e70cc7eb326236706eaef2b04718497c | bbff921460ac4267af48558f040c7d82ccf42d5e | refs/heads/master | 2023-06-02T17:29:25.141650 | 2021-06-13T23:31:18 | 2021-06-13T23:31:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 519 | cpp | // 7.6
// What is the output of the following code?
#include <iostream>
using namespace std;
int main()
{
int values[5], count;
for (count = 0; count < 5; count++)
values[count] = count + 1;
// values[0] = 1
// values[1] = 2
// values[2] = 3
// values[3] = 4
// v... | [
"jesushilariohernandez@gmail.com"
] | jesushilariohernandez@gmail.com |
c1aacded838b76ccaf808d907cd1cbf8cbce92c8 | 5fd14fb570b251125353e4067aa56b1d72397dcb | /Array.cpp | f7174e444eec6856b6c2e16b81bdbdd8c7755922 | [] | no_license | kasarchou/Project_Databases | d327ea39769c20ec02e638df69251ed637584973 | 978f5dc4e3041a65f470372f119ba4e1c9b0586f | refs/heads/master | 2023-04-25T21:50:20.361069 | 2021-05-18T16:39:56 | 2021-05-18T16:39:56 | 364,690,502 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,354 | cpp | #include "Array.h"
#include <string>
#include <cstring>
using namespace std;
Array::Array()
{
empty =10000;
data = new string[empty];
size = -1 ;
}
Array::~Array()
{
//dtr
}
int Array::getSize()
{
return size + 1;
}
string Array::getData(int i )
{
return data[i];
}
// Inserts given word to the array
voi... | [
""
] | |
b35b13ba0b0768933ea93a016db40a8fd15b1ee1 | 006e383ef2ad21e691bac1f8fdd4c518493f642d | /experimental/strong_datatypes.cpp | 48e04891fdea60d54197d68c825e4643db5d4789 | [
"BSL-1.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | mitsutaka-takeda/hana | 9e6bae8a9214a5e7f5b371359b31803cf89814a8 | afd5ca1b6c23ee66c87cfabe394feeca5a8cc88d | refs/heads/master | 2021-01-18T00:36:44.087303 | 2016-02-29T16:15:50 | 2016-02-29T16:15:53 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,538 | cpp | // Copyright Louis Dionne 2013-2016
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
#include <boost/hana/ap.hpp>
#include <boost/hana/config.hpp>
#include <boost/hana/core/make.hpp>
#include <boost/hana/core/tag_of.hpp>
#in... | [
"ldionne.2@gmail.com"
] | ldionne.2@gmail.com |
d97e7a512a99b3c5e446719ac8f9f78a6635618f | cf8e0d582ccf83e5cb0dca7c621e98eefcd6ca39 | /PMPDemoVersion3.0/ElectricModelingDLGMechanical.cpp | 04ed58ea22dcc0e6f00c29217912d9743ad9e63d | [] | no_license | yeehlin/PMP | 437e9aeff25387c49c265315e4aafde87b3b8722 | b156b2e64299ebee656a76c18fb646fd28489a97 | refs/heads/master | 2021-01-10T01:06:11.438419 | 2015-10-20T13:49:45 | 2015-10-20T13:49:45 | 44,536,551 | 0 | 0 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 1,956 | cpp | // ElectricModelingDLGMechanical.cpp : implementation file
//
#include "stdafx.h"
#include "VTKMFCCreateBMPActors.h"
#include "ElectricModelingDLGMechanical.h"
#include "afxdialogex.h"
// ElectricModelingDLGMechanical dialog
IMPLEMENT_DYNAMIC(ElectricModelingDLGMechanical, CDialog)
ElectricModelingDLG... | [
"1206368661@qq.com"
] | 1206368661@qq.com |
de231b00e4ce7105e424235e5d429a1feaf3f4dc | 3a2066b02eeb1dad9a16b54c1a030b5ab89a82a7 | /SGLDL/stdafx.cpp | eba9c45648438c0bf52ab3082d65f73e9c816159 | [] | no_license | turrikasd/SGLDL | d4d4f174b59d348420eda57904abcea18c8c66c0 | 82969b0380124d66ef6d9b0123bb620d0ee24b77 | refs/heads/master | 2021-01-13T02:38:04.813063 | 2013-02-21T14:24:20 | 2013-02-21T14:24:20 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 284 | cpp | // stdafx.cpp : source file that includes just the standard includes
// SGLDL.pch will be the pre-compiled header
// stdafx.obj will contain the pre-compiled type information
#include "stdafx.h"
// TODO: reference any additional headers you need in STDAFX.H
// and not in this file
| [
"despite.mn@gmail.com"
] | despite.mn@gmail.com |
ac87e21d419dca4c32ef119505de001c83525dd4 | adeff39f437ffee5470cb7bf582b9d07c9a181d1 | /Source/ProjectInn/StateMachineImpl/Action/MoveToLocationAction.h | 70dded73344265731a6fae22965342528cf16fd7 | [] | no_license | Zdh6zox/ProjectInnUE4 | f3e6d841a7371a8a8fbfaefbb8b5d110104767dc | 823c2585400b0508ac46089fd4e5430a4a65ff79 | refs/heads/master | 2023-02-10T01:11:37.432581 | 2021-01-01T18:35:09 | 2021-01-01T18:35:09 | 297,657,359 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 622 | h | // Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "CoreMinimal.h"
#include "Action/ActionBase.h"
/**
*
*/
class PROJECTINN_API FMoveToLocationAction : public FActionBase
{
public:
typedef FActionBase super;
FMoveToLocationAction(FString actionName, FName locati... | [
"zdh6zox@163.com"
] | zdh6zox@163.com |
b68f94ebc2585dcd66452880eae70bc53ebbe5ec | d0c44dd3da2ef8c0ff835982a437946cbf4d2940 | /cmake-build-debug/programs_tiling/function14053/function14053_schedule_0/function14053_schedule_0_wrapper.cpp | ad0516c92af06051e41480180415faff1face130 | [] | no_license | IsraMekki/tiramisu_code_generator | 8b3f1d63cff62ba9f5242c019058d5a3119184a3 | 5a259d8e244af452e5301126683fa4320c2047a3 | refs/heads/master | 2020-04-29T17:27:57.987172 | 2019-04-23T16:50:32 | 2019-04-23T16:50:32 | 176,297,755 | 1 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 1,207 | cpp | #include "Halide.h"
#include "function14053_schedule_0_wrapper.h"
#include "tiramisu/utils.h"
#include <cstdlib>
#include <iostream>
#include <time.h>
#include <fstream>
#include <chrono>
#define MAX_RAND 200
int main(int, char **){
Halide::Buffer<int32_t> buf00(64, 128);
Halide::Buffer<int32_t> buf01(6... | [
"ei_mekki@esi.dz"
] | ei_mekki@esi.dz |
9fa80c4f87ede1159104ce7e435193d1b4934020 | 3fa73b42bbac046eece9ce395eefd0a6d0c02779 | /Tutorials/cpp-primer-plus/ch02/exercises/01.cpp | 96cb18c1d407452656c28c1dd662b20002733751 | [] | no_license | edwinkepler/beats-and-pieces | 6589387e881a1ac38fb908d5256bcf9e03b0e9e1 | 1649e569f51901b74f7f49e7e3288ef84b8879a8 | refs/heads/master | 2021-01-15T10:58:09.156069 | 2018-07-23T17:22:00 | 2018-07-23T17:22:00 | 99,605,068 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 136 | cpp | #include <iostream>
using namespace std;
int main() {
cout << "My name is John and I live at Black Water street.";
return 0;
}
| [
"edwinkepler@protonmail.com"
] | edwinkepler@protonmail.com |
4ff1b6fdaa97acfe4ce8d912906a6a6ce8827454 | 5598fafbee7d38da08f6a698a2cb43091133d3fe | /CPP07/ex02/Array.hpp | 58d42ca26227891a084cbea86dbc65e6e3daaf13 | [] | no_license | Krutix/21CPP | 8367d0e35c459c4cdc87dd8e00a5187ba1b40fe0 | 999c06759841acbd5ab5a5fad561c03aa64e6955 | refs/heads/master | 2023-08-19T01:59:14.622376 | 2021-10-17T15:55:16 | 2021-10-17T15:55:16 | 397,631,761 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,967 | hpp | #pragma once
#include <cstddef>
#include <exception>
#include <stdexcept>
#include <string>
template<typename T>
struct autofree_ptr
{
T* m_ptr;
typedef void (*t_del)(void*);
autofree_ptr(T* ptr = NULL, t_del deleter = ::operator delete)
: m_ptr(ptr), m_deleter(deleter) {}
~autofree_ptr()... | [
"pigeon.krutix@gmail.com"
] | pigeon.krutix@gmail.com |
bd8d4b794b9facb951c9ad9426cc76746a97624c | f319e33e032ef05bae3ba7fbf72135f98883860d | /codes/Algorithm/VesselWallHoughTransformCircles/IADEHoughTransform2DCirclesImageFilter.h | 1700882797932e29468c8cb7aefb18c5d8101878 | [
"MIT",
"Apache-2.0"
] | permissive | wuzhuobin/IADE_Analyzer | 6cfb6402b990ce6f8171e95e2b7c5db3f9c7fab2 | 3b6c9ab0ef02ce076566385d532929ffc205324b | refs/heads/master | 2021-01-13T12:16:39.319305 | 2017-09-27T03:00:03 | 2017-09-27T03:00:03 | 85,917,248 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,698 | h | /*=========================================================================
*
* Copyright Insight Software ConsortiumHoughTransform2DCirclesImageFilter
*
* 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... | [
"jiejin2022@163.com"
] | jiejin2022@163.com |
0fef6c916c33d35ef9cd02bdefc92f641ca02989 | 7e0f3528810707430d10156238da0c0ae13ba3c2 | /src/AboutU.h | 8f7257204a45140f199d9acebd656219516b9a3b | [] | no_license | BarsukovDmitry/CriticalPathMethod | 695acbdfd60a5221c6b3e64ded979ac84ce8a104 | 32504e465d93d53e52d8cac4e98e597eebb16417 | refs/heads/master | 2020-05-17T23:04:54.974400 | 2014-06-14T13:00:48 | 2014-06-14T13:00:48 | 20,829,993 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,147 | h | //$$---- Form HDR ----
//---------------------------------------------------------------------------
#ifndef AboutUH
#define AboutUH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <ExtCtr... | [
"BarsukovDmitry@outlook.com"
] | BarsukovDmitry@outlook.com |
f4f2ef6c116fa433c6dd812cb73a2523a23aaf26 | 3fbd40841db46cfd75952fe2714a79da9f516a4b | /src/versionbits.cpp | 66c9e938d05225d1139ae63f6dc1e931e1208e31 | [
"MIT"
] | permissive | hengyuancoin/hengyuancoin | 3262e0d2c064963e0c983a0ee76ef51143ff5951 | 8034765f2aaf67a2545df3d38bc7a3f50be09ede | refs/heads/master | 2020-03-09T10:02:54.666245 | 2018-04-09T11:10:54 | 2018-04-09T11:10:54 | 128,727,365 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,064 | cpp | // Copyright (c) 2016 The Hycoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "versionbits.h"
ThresholdState AbstractThresholdConditionChecker::GetStateFor(const CBlockIndex* pindexPrev, const Consen... | [
"yanglunguang@weiqitonggame.cn"
] | yanglunguang@weiqitonggame.cn |
525a17ea29bb85c31a8f9a665d0061cc387b264a | 8538dc1772ee738f17f6a64a8ec1015067e7559a | /SymbolTable.cpp | 950ec3ccbb0f22a3f19c0d7614914be5b6aaa083 | [] | no_license | LauraLaureus/NG_m | 36c632182fad4f45177720657260aeae7de65690 | 742e19ffeccebde96799dee27c3af6514360a0b8 | refs/heads/master | 2016-09-13T03:14:54.563810 | 2016-06-07T12:31:50 | 2016-06-07T12:31:50 | 56,135,109 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,097 | cpp | //
// SymbolTable.cpp
//
//
// Created by Laura del Pino Díaz on 30/4/16.
//
//
//#include "SymbolTable.hpp"
#include "global.h"
void SymbolTable::insertRecord( string id, SymbolTableRecord r){
this->table[id]=r;
this->lastIdentifierAccessed = id;
}
void SymbolTable::saveNode(string id, Node* n){
thi... | [
"l4depende@gmail.com"
] | l4depende@gmail.com |
75ccbe19da6d2768b14d4a50e334998606e69abe | 21c344a96f323d162f143f278681e3842ccd218c | /ConsoleApplication3/resolver.cpp | 34611c1b66b9c8f3ff227a22a4ef9a8c9e102d5a | [] | no_license | davidrbr/vspfg | 71f516145bbab2694b77c32027e4b0bd71ba2bcf | 5f67af22fb639a94550d0b35ed260f3fbac0f1bc | refs/heads/master | 2021-01-23T15:03:12.635766 | 2013-11-23T03:28:58 | 2013-11-23T03:28:58 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,269 | cpp | #include "stdafx.h"
#include "resolver.h"
resolver::resolver()
{
}
resolver::resolver(mdistancia mat) { //corregir
rt = new ruta(mat);
cout << "numero de vehiculos: " << mat.getnvehiculos() << endl;
cout << "carga de los vehiculos: " << mat.getcarga() << endl;
for (int i = 0; i < mat.getnvehiculos(); i++) {
tv... | [
"davidrbermejo@outlook.com"
] | davidrbermejo@outlook.com |
a8db9095d36da462ac8b4560bc5dcf0399869450 | 26f3e47769bf60fd857277198035cda63d3492b4 | /dali/pipeline/proto/dali_proto_intern.cc | dbe6292744dc4eeeb631d74dbdcc622ba6a81c7b | [
"Apache-2.0",
"LGPL-2.1-only",
"LicenseRef-scancode-free-unknown"
] | permissive | klecki/DALI | 13e33f5fa043a30589262192dae53182ba66c062 | a101e0065ae568c8b01931ed65babf40728f8360 | refs/heads/master | 2023-08-30T10:58:51.662452 | 2019-03-18T12:09:58 | 2019-03-18T12:09:58 | 147,820,750 | 0 | 0 | Apache-2.0 | 2023-09-04T13:50:54 | 2018-09-07T12:32:48 | C++ | UTF-8 | C++ | false | false | 3,471 | cc | // Copyright (c) 2017-2018, NVIDIA CORPORATION. All rights reserved.
//
// 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 requ... | [
"noreply@github.com"
] | klecki.noreply@github.com |
a573ebaf4c086754f730f8fb99ee876fb339351a | 279b08a0a1d60f56c05f70518a9c750ba6070ead | /Blast_Editor/Blast_Editor/ModuleCamera3D.h | f1191352ece5819198ec3e2dbda75e520424b629 | [
"MIT"
] | permissive | Project-3-UPC-DDV-BCN/Blast_Editor | 6c62bc999b6e646fff401f2922e15576f1df14ca | 501782d3e8334627ce2dd3b69fed02df75df29fc | refs/heads/master | 2021-09-14T07:28:56.698431 | 2018-02-19T11:26:16 | 2018-02-19T11:26:16 | 119,430,076 | 0 | 0 | null | 2018-01-29T19:24:48 | 2018-01-29T19:24:48 | null | UTF-8 | C++ | false | false | 1,017 | h | #pragma once
#include "Module.h"
#include "Globals.h"
#include "ModuleEditor.h"
#include "Math/float3.h"
class ComponentCamera;
class ModuleCamera3D : public Module
{
public:
ModuleCamera3D(Application* app);
~ModuleCamera3D();
bool Init();
update_status Update(float dt);
bool CleanUp();
void CreateEditorCame... | [
"elsuperchowchow@gmail.com"
] | elsuperchowchow@gmail.com |
5997431c5f40cd581018e07286580000b1fc45a9 | f163d603593727e1cf9369eed22d43a5d10fba2d | /src/main.cpp | aa8ca468092e71925bdd90219a09c08ac0b01c58 | [] | no_license | krylovam/tp-lab-5 | 442f9b85b91a1e6346bf5458860a6cd19019310a | 3441af3cbee6950c35184c4dddcc97f77a1e90cb | refs/heads/master | 2020-12-14T15:03:45.248116 | 2020-02-12T07:30:20 | 2020-02-12T07:30:20 | 234,779,813 | 0 | 0 | null | 2020-01-18T18:38:36 | 2020-01-18T18:38:35 | null | UTF-8 | C++ | false | false | 869 | cpp | //
// Created by Mary on 18.01.2020.
//
#include <iostream>
#include <fstream>
#include <string>
#include <vector>
#include "dean.h"
using namespace std;
int main(){/*
SetConsoleOutputCP(CP_UTF8);
string line;
vector < vector<string> > students(4);
for (int i = 1; i <= 4; i ++){
string path = "C... | [
"krylova.maria.2629@gmail.com"
] | krylova.maria.2629@gmail.com |
4cb566ce425a80e01873519374cbfea0423a1c16 | 681b5ff086fec7e59f0b451351bbd9914f3cc641 | /ipc/ipcAPI.cc | a5284922e1d808228adc3ae7c2e9b0b886e392b7 | [] | no_license | magic-upenn/magic2010 | 21615ea0dbd96437ffc18d89d3e37715790ca119 | 64840131389f449f823df919279639362395fb96 | refs/heads/master | 2020-05-18T17:28:19.590398 | 2014-06-15T16:35:38 | 2014-06-15T16:35:38 | 10,067,677 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 17,710 | cc | /*
status = ipcAPI(args);
Matlab Unix MEX file for interfacing to IPC 3.8.5, which can be
found here: http://www.cs.cmu.edu/afs/cs/project/TCA/www/ipc/index.html
compile with:
mex -O ipcAPI.cc -lipc
Alex Kushleyev
University of Pennsylvania
December, 2008
akushley (at) seas (dot) upenn (dot) edu
... | [
"akushley@61389559-6c2a-4883-acdc-2d27d9f19ada"
] | akushley@61389559-6c2a-4883-acdc-2d27d9f19ada |
d2de0ca0ce6fbdf953f70cd27cc1a4c959b0b09d | 47d989516245f5b2f4bd9b071c1f8c5219c0d936 | /locale/lib/LocaleRoster.cpp | 4832e3627f47bb68b629d1a687d846c0ce4bcc6d | [] | no_license | D-os/OpenTracker | 00a4a18f1d2a2f1e2ea2602f3348dc9a40736009 | 1cba0dd794bce59565bacd6d4d990d27d7cb6409 | refs/heads/master | 2020-03-07T21:57:00.922310 | 2009-04-10T18:37:39 | 2009-04-10T18:37:39 | 127,741,231 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 16,507 | cpp | /*
** Distributed under the terms of the OpenBeOS License.
** Copyright 2003-2004. All rights reserved.
**
** Authors: Axel Dörfler, axeld@pinc-software.de
** Oliver Tappe, zooey@hirschkaefer.de
*/
#include <assert.h>
#include <stdio.h> // for debug only
#include <syslog.h>
#include <Autolock.h>
#include <Catalog... | [
""
] | |
e37ea12820b4a4d226ae6fab28556a64ceec12d7 | 59fbad8202b6e67777305bf9eef5fd9635735d7d | /Engine/Code/Engine/Core/NamedPropertyType.hpp | 554b360aa856c872c5034b0a8c74e85d4a85bd0e | [] | no_license | neesarg-yb/N-gene | da22a533112f8824ed3b3179adbd2acf08512f10 | 3f7f16683e0c543f566636e1576c9d663d6d5282 | refs/heads/master | 2020-03-19T08:58:57.927495 | 2019-05-07T07:33:04 | 2019-05-07T07:34:50 | 136,250,286 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 519 | hpp | #pragma once
#include "NamedPropertyBase.hpp"
template <typename T>
class NamedPropertyType : public NamedPropertyBase
{
public:
NamedPropertyType( std::string const &name, T const &value );
~NamedPropertyType() { }
private:
T m_value;
public:
T GetValue() const;
};
template <typename T>
NamedPropertyType<T>::... | [
"neesarg.banglawala@gmail.com"
] | neesarg.banglawala@gmail.com |
5f670ec7d0c0f5cd91736043248177f97f848267 | e0b40077ba80c725cbe0a05a7d6d5179898691aa | /mqtt_esp8266withPhone/mqtt_esp8266withPhone.ino | 11dcaf7e97816f9c30766c4fab0c015eb07081d0 | [] | no_license | ambulancexm/mqtt_test | 54a6e883f7e5c010d9d87a35174b6b6e75ad6427 | 4e8b74d98bca9a55375a55c5e4d0d5919881d4a7 | refs/heads/master | 2023-01-01T13:51:01.581986 | 2020-09-27T19:31:34 | 2020-09-27T19:31:34 | 275,751,211 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,491 | ino |
/*
Basic ESP8266 MQTT example
This sketch demonstrates the capabilities of the pubsub library in combination
with the ESP8266 board/library.
It connects to an MQTT server then:
- publishes "hello world" to the topic "outTopic" every two seconds
- subscribes to the topic "inTopic", printing out any messages
... | [
"bereziat.th@gmail.com"
] | bereziat.th@gmail.com |
40e9814424af4c159f246152e2af7996dd614635 | dcb33a2b39254e00f5f00f5bc53ffbd0194891ca | /Magics/Descripteur.h | 59bcac28e27edf1e66175b641d456af6e653f491 | [] | no_license | samathanase/Magics | be0a23fb0375aa24c13f6be72338de2f156e1035 | 7c2a3ae990a79692934d79050b4793e217bf4180 | refs/heads/master | 2023-01-07T11:03:30.526400 | 2020-10-20T07:00:30 | 2020-10-20T07:00:30 | 293,710,345 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 945 | h | #ifndef __DESCRIPTEUR_H__
#define __DESCRIPTEUR_H__
#include <iostream>
#include <memory>
#include <vector>
#include <algorithm>
#include "Function.h"
class Descripteur{
public:
Descripteur();
Descripteur(std::string name, const std::shared_ptr<Function>& fun);
Descripteur(Descripteur& copy);
~Descripteur(... | [
"samuelathanase.pro@gmail.com"
] | samuelathanase.pro@gmail.com |
9c1f9dd12d9de88994870c461956388ee40aab4a | 838560c8a9938b9b13a6888244e9bc856dae2403 | /greater1.h | b52e4d19ad4a44e845c0535b48a04d48b08a177f | [
"MIT"
] | permissive | suyunu/Discrete-Event-Simulation | ea927156505a1be95d14f10e751bb139e8155a7f | be2da51697e546827890f502366025959975d473 | refs/heads/master | 2021-01-10T03:12:10.978730 | 2016-03-28T19:29:57 | 2016-03-28T19:29:57 | 54,913,375 | 6 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 247 | h | #ifndef GREATER1_H_
#define GREATER1_H_
#include <iostream>
#include "Job.h"
using namespace std;
// Ordering rule for the heap
struct greater1{
bool operator()(const Job & a, Job & b) const{
return a.timeToGo > b.timeToGo;
}
};
#endif
| [
"buraksuyunu@gmail.com"
] | buraksuyunu@gmail.com |
7e9b23d525342dbf2b1e455f41e5f295dd76d965 | bda00db3b6fc0b2885fa54fcd4ffbbd21decf921 | /string-Part1.hpp | 406410b2018515b7f1de27f8ba43a25d3661841e | [] | no_license | jstocke2/MyStringClass | ebb060fb56df27a2c25e26df7c9e6f39f8d1e282 | 4ac42255294f93b2972ba425703dc8708a5dbc12 | refs/heads/master | 2016-09-06T07:10:45.398175 | 2015-02-02T01:37:05 | 2015-02-02T01:37:05 | 30,166,443 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,792 | hpp | //File: string.hpp
//
//Date: Fall 2014
//Author: Dr. J. Maletic
//
//Description: Interface definition of String class for use with test oracle for Part 1.
//
// String implementation for Project 2 Part 1
// CS II. Use this for testing student projects
// along w... | [
"jake.stocker@yahoo.com"
] | jake.stocker@yahoo.com |
150eb90fa3d1f811f4911444750b5e29c80f9f41 | 9a3b9d80afd88e1fa9a24303877d6e130ce22702 | /src/Providers/UNIXProviders/CLPCapabilities/UNIX_CLPCapabilities_ZOS.hpp | 2bb1ef3e544891be69175b7e547e7f1c555739ed | [
"MIT"
] | permissive | brunolauze/openpegasus-providers | 3244b76d075bc66a77e4ed135893437a66dd769f | f24c56acab2c4c210a8d165bb499cd1b3a12f222 | refs/heads/master | 2020-04-17T04:27:14.970917 | 2015-01-04T22:08:09 | 2015-01-04T22:08:09 | 19,707,296 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,969 | hpp | //%LICENSE////////////////////////////////////////////////////////////////
//
// Licensed to The Open Group (TOG) under one or more contributor license
// agreements. Refer to the OpenPegasusNOTICE.txt file distributed with
// this work for additional information regarding copyright ownership.
// Each contributor lice... | [
"brunolauze@msn.com"
] | brunolauze@msn.com |
f0f53da218d756c28805f469753955190d440fef | d0f2bb18c39ff5dac5d9d2cec8cc98e96a642d8a | /Examples/Cpp/source/Exchange_EWS/IgnoringInvalidSSLCertificates.cpp | e4b2bddfbfdcfa0529176b6eaded43e279439dad | [
"MIT"
] | permissive | kashifiqb/Aspose.Email-for-C | d1e26c1eb6cb1467cee6a050ed5b52baaf186816 | 96684cb6ed9f4e321a00c74ca219440baaef8ba8 | refs/heads/master | 2023-03-24T22:44:20.264193 | 2021-02-10T14:07:51 | 2021-02-10T14:07:51 | 105,030,475 | 0 | 0 | null | 2017-09-27T14:43:20 | 2017-09-27T14:43:20 | null | UTF-8 | C++ | false | false | 967 | cpp | #include "Examples.h"
#include <system/object.h>
#include <system/enum_helpers.h>
#include <security/cryptography/x509_certificates/x509_chain.h>
#include <security/cryptography/x509_certificates/x509_certificate.h>
#include <net/service_point_manager.h>
#include <net/secure_protocols/ssl_stream.h>
#include <net/secure... | [
"m.ahmadchishti@gmail.com"
] | m.ahmadchishti@gmail.com |
82b6ccb21715db91e8451c8129c2faba37ae6297 | 185a59732b9fd52077b0ef5abf3be15b1442e637 | /include/utils/utils.hpp | 7b166bfe9fac1cea27092e9353721128e64fa6e2 | [
"LicenseRef-scancode-unknown-license-reference",
"Apache-2.0"
] | permissive | marcelsheeny/visioncpp | 25013385b7814cd68e58e8548a4e81a6b145e35e | 2e70fb0a1bd38bb3acda2fddde055ed208e8e32d | refs/heads/master | 2021-01-09T07:59:15.790387 | 2018-05-04T16:24:38 | 2018-05-04T16:24:38 | 68,299,671 | 0 | 0 | null | 2016-09-15T14:08:28 | 2016-09-15T14:08:28 | null | UTF-8 | C++ | false | false | 10,393 | hpp |
#include <cstdio>
#include <memory>
#include <string>
#include <dirent.h>
#include <python2.7/Python.h>
#include <thread>
#include <fcntl.h>
#include <linux/fb.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/ioctl.h>
#include <sys/mman.h>
#include <time.h>
#include <unistd.h>
#include <ctime>
#include <iostr... | [
"marcelsheeny@gmail.com"
] | marcelsheeny@gmail.com |
ac101f90e2d56d2308d0f17fa9ee7bf6fa504051 | 38e1113bd127c590c80ea858afdea936ef829a9a | /src/lipwidget.h | 4eff6d91ca226c9625d4ed77bbab4456e76876c0 | [] | no_license | InfernalAd/infernalad-lipsync | 8a7b75539765d2328a6cce544f1d26cb81c4eef8 | df0a6d709f64ea5a7ba42590b142899f9457a076 | refs/heads/master | 2021-01-01T15:51:06.324982 | 2012-09-13T09:31:15 | 2012-09-13T09:31:15 | 5,750,422 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 423 | h | #ifndef LIPWIDGET_H
#define LIPWIDGET_H
#include <QWidget>
#include "QMap"
#include "QDebug"
namespace Ui {
class LipWidget;
}
class LipWidget : public QWidget
{
Q_OBJECT
public:
explicit LipWidget(QWidget *parent = 0);
~LipWidget();
public slots:
void changePicture(char picKey);
private:
U... | [
"InfernalAd@gmail.com"
] | InfernalAd@gmail.com |
70b148586ee23f052a254ee8fdf131543a8872ab | 070cf051eb38e2971a1643382bd55458c9fd3813 | /include/types.hpp | 5089770929b7adabd5d78e420aa6b5c781ed3c64 | [
"Apache-2.0"
] | permissive | JonasRock/ARXML_LanguageServer | 724a1690dd447115ef89389b1fb00da553898ac9 | f31cc0b2ca9233ac544cf10aee6d799ea9e55320 | refs/heads/master | 2023-04-02T21:36:21.220325 | 2021-04-12T22:29:01 | 2021-04-12T22:29:01 | 302,398,597 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,579 | hpp | /**
* @file types.hpp
* @author Jonas Rock
* @brief Contains the Structures defined by the Language Server Protocol as C++ Structs for easier handling
* @version 0.1
* @date 2020-11-05
*/
#ifndef TYPES_H
#define TYPES_H
#include "json.hpp"
namespace lsp
{
namespace types
{
enum arxmlError
{
mul... | [
"jonasrock@gmx.de"
] | jonasrock@gmx.de |
94f07d636d4a7c30d112a37bf3c373cd8e2f1f78 | 5db22247ed9ee65139b87c1ed28108cd4b1ac6e5 | /Classes/Native/AssemblyU2DCSharp_UICamera_OnCustomInput3142665870.h | 3ceff59d5caac280a254f9a1860370f6ed2a90f1 | [] | no_license | xubillde/JLMC | fbb1a80dc9bbcda785ccf7a85eaf9228f3388aff | 408af89925c629a4d0828d66f6ac21e14e78d3ec | refs/heads/master | 2023-07-06T00:44:22.164698 | 2016-11-25T05:01:16 | 2016-11-25T05:01:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 749 | h | #pragma once
#include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <stdint.h>
// System.IAsyncResult
struct IAsyncResult_t1538479585;
// System.AsyncCallback
struct AsyncCallback_t889871978;
// System.Object
struct Il2CppObject;
#include "msco... | [
"zhaolibo@zhaolibodeiMac.local"
] | zhaolibo@zhaolibodeiMac.local |
d7ad789dd7c4a3d9503ffabf8a582830ca40f8f4 | 8103bbe2c763354c57c7dc7f68e544c2b400e8af | /IntervalTree.cpp | 6a263ac02196527c9ef9fe83ad897d0542a1d05d | [] | no_license | bonnux/IntervalTree | 32156650781b4408dfdd2cac71a2def82f1e8eb5 | 71bbdff90beb0a4b8e48cb2312dfe64733072b3d | refs/heads/master | 2021-08-31T17:31:24.970875 | 2017-12-22T07:59:06 | 2017-12-22T07:59:06 | 115,091,922 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,510 | cpp | #include <iostream>
using namespace std;
enum Color{RED=0,BLACK=1}; //红黑树结点颜色类型,0表示红色,1表示黑色
typedef struct Interval //定义一个区间
{
int low; //区间的低端点
int high; //区间的高端点
}Interval;
typedef struct Node //声明红黑树结点
{
Color color; //红黑树结点的颜色类型
struct Node *par... | [
"775174736@qq.com"
] | 775174736@qq.com |
3a274b07aabe77f04481065a71f26886ecd6f016 | 5cb45be18d88aeb02f35eedb78f57764b56c6d09 | /src/util.cpp | 51f7ec2bdbe202c3cb5cac018f8e07ba7cf9b87e | [
"MIT"
] | permissive | bellaj/Rcoin | 1db7a44d952845a4ebfb989f30ace329c64728d4 | bbcf2f528a668ae9b1642effc8644ef8dca0f1a2 | refs/heads/master | 2021-07-13T02:34:42.143678 | 2017-10-13T23:06:08 | 2017-10-13T23:06:08 | 106,748,183 | 0 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 26,542 | cpp | // Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2016 The Readercoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#if defined(HAVE_CONFIG_H)
#include "config/readercoin-config.h"
#endif
#incl... | [
"bellaj.badr@gmail.com"
] | bellaj.badr@gmail.com |
cd67c1ece13b4fd98df01755a1ca7c91339e8a53 | f53267d2223a023e1c643a648dd9bed4f1e58c53 | /software/asm68/source/Emit.cpp | 53e502c8a21e5467201cb56a1312e5e15aa327d8 | [
"LicenseRef-scancode-warranty-disclaimer"
] | no_license | robfinch/Cores | 9eec2c88ba7c2495ed5c1bdde9ff1fd82436a6cd | 0015669674bafdc4eff56e816cf714c975536fc3 | refs/heads/master | 2023-07-06T21:07:31.639981 | 2023-06-28T23:05:20 | 2023-06-28T23:05:20 | 13,174,959 | 58 | 27 | null | 2017-08-12T12:03:51 | 2013-09-28T15:03:00 | C++ | UTF-8 | C++ | false | false | 15,326 | cpp | #include <stdio.h>
#include <string.h>
#include <ctype.h>
#include <time.h>
#include <fwstr.h>
#include "err.h"
#include "SOut.h"
#include "fasm68.h"
/* ----------------------------------------------------------------------------
int emitb(byte)
unsigned int byte;
Description :
One the first pass just ... | [
"robfinch@sympatico.ca"
] | robfinch@sympatico.ca |
92edfb8d811680ed9bcbfde28a6a8cc99b1a58f8 | 16dc54384a53f8bcd6dfdecfbabd385d51acb7de | /2017_a_pratice/lmweek4/C - 菲波拉契数制/main.cpp | 0aa8280ff5860c97e662957430edbf41ae363c22 | [] | no_license | kkkkBlueSky/HUAS_ACM | 629771b4b583a0725ee0955ddbf35cdfaddec652 | 3b9aad20476ec09bb5f12f951340829e68152094 | refs/heads/master | 2021-12-17T21:47:13.245217 | 2017-09-22T12:54:51 | 2017-09-22T12:54:51 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 549 | cpp | #include <iostream>
#include <cstdio>
#include <cstring>
using namespace std;
const int maxn=100005;
int t, n;
int fb[maxn], dp[maxn];
int main()
{
fb[1]=1;fb[2]=2;dp[0]=1;
int cnt=3;
while(fb[cnt-1]+fb[cnt-2]<maxn){
fb[cnt]=fb[cnt-1]+fb[cnt-2];
cnt++;
}
for(int i=... | [
"woodcoding@gmail.com"
] | woodcoding@gmail.com |
e6c31ec6d5587168e8b46b1eaa925c20502ec2af | fd35acfaeab91aa8f469fc229121166aa36b07ad | /move semantics/move constructor and assignment.cpp | 278652f27dda141498fcbc88b1c774b96828fe66 | [] | no_license | pazamelin/cpp-snippets | 87b3566486c783bba170a0937c437649fbc4da44 | 1b2950d907a07bd24b0f4e80e9c8e929a4be39d5 | refs/heads/master | 2023-04-27T14:07:30.456056 | 2021-05-12T08:57:28 | 2021-05-12T08:57:28 | 273,219,438 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,346 | cpp | #include <iostream>
#include <string>
#include <utility>
class Message
{
private:
std::string data;
public:
Message()
{
std::cout << "default constructor" << std::endl;
}
~Message()
{
std::cout << "default destructor" << std::endl;
}
explicit Message(std::string new_d... | [
"zamelinpavel@gmail.com"
] | zamelinpavel@gmail.com |
fb733b2d710672c186d9c831b2418fb15b080069 | 30bdd8ab897e056f0fb2f9937dcf2f608c1fd06a | /contest/1542557754.cpp | 3cb6e051abeb9416e6f7fc63aad56efc4eadc227 | [] | no_license | thegamer1907/Code_Analysis | 0a2bb97a9fb5faf01d983c223d9715eb419b7519 | 48079e399321b585efc8a2c6a84c25e2e7a22a61 | refs/heads/master | 2020-05-27T01:20:55.921937 | 2019-11-20T11:15:11 | 2019-11-20T11:15:11 | 188,403,594 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 999 | cpp | #include <iostream>
#include <cstdio>
#include <algorithm>
#include <vector>
#define Tpair pair <int, int>
using namespace std;
typedef long long ll;
const int oo = 1e9 + 1;
const int mod = 1e9 + 7;
const int maxn = 1e5 + 5;
int n, i, j, k, a, s[maxn];
bool flag[maxn] = {};
void Init... | [
"harshitagar1907@gmail.com"
] | harshitagar1907@gmail.com |
d2bd6013e02c76779f6f0af16f1e8cb409af91db | 45000cea5dec99ba2b6afa06012ebcc11675f79d | /14/cpp/GraphMSTCostTest.cpp | 81fe6b40a4c339e5304dc517e9d9894c4640d876 | [] | no_license | hamodey/Algorithms-and-Data-Structure | a8cc3a8bb1d864d23fc5c9ceca4c058c2ffcb414 | 46c1791df340733f7ac7a135210f725b892363aa | refs/heads/master | 2021-09-09T12:09:09.436599 | 2018-03-15T23:29:42 | 2018-03-15T23:29:42 | 109,710,595 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,615 | cpp | #include <cppunit/extensions/HelperMacros.h>
#include "Graph.hpp"
class GraphMSTCostTest : public CppUnit::TestFixture {
CPPUNIT_TEST_SUITE(GraphMSTCostTest);
CPPUNIT_TEST(testEmptyMSTCost);
CPPUNIT_TEST(testOneElementMSTCost);
CPPUNIT_TEST(testNontrivialMSTCost);
CPPUNIT_TEST_SUITE_END();
public:
void s... | [
"noreply@github.com"
] | hamodey.noreply@github.com |
4820acc7599ef5da15e800a9f288dffd6f8d34c0 | 159eca4cff17d9c11e8764e834f421901374ea20 | /main/src/scenery/BuildingDef.h | 8ee580d29228d2d2dbbb7553d5c8a7d527adc21f | [] | no_license | CyberSys/MkIV | 252cb744f9d653a4281f30a73700f91d865a36e2 | fdbc553ba3f24fd0cea42d558f234fe0b8f8ac75 | refs/heads/master | 2021-02-08T05:19:16.362868 | 2020-03-01T08:54:00 | 2020-03-01T08:54:00 | 244,113,305 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,036 | h | #ifndef BUILDINGDEF_H_
#define BUILDINGDEF_H_
class BuildingDef {
public:
BuildingDef(); // default constructor
bool loadFromFile(const char* filename);
//bool saveToFile(char* filename);
// get and set methods
char* getFilename();
void setFilename(const char* filename);
char* getDesignation();
void setDesign... | [
"cybersys.jmr@gmail.com"
] | cybersys.jmr@gmail.com |
1bab0c481e0aae8539873b7a87014b0928c7bf24 | b09fb00f54c95e095743dc07f683fddc86cd1709 | /source/producers/ESSStream/senv_data_parser_wrong.cpp | 0334e0f8d24be28e3b5e32f06695c61dded5f4d9 | [
"BSD-2-Clause"
] | permissive | jwuttke/daquiri-qpx | b7827161194e7d0e333557532455ed4abeee1823 | 6606f4efca9bbe460e25e511fd94a8277c7e1fe6 | refs/heads/master | 2020-04-19T18:50:57.235865 | 2019-04-28T22:48:58 | 2019-04-28T22:48:58 | 168,373,750 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,341 | cpp | #include <producers/ESSStream/senv_data_wrong.h>
#include "senv_data_generated.h"
#include <core/util/timer.h>
#include <core/util/logger.h>
SenvParserWrong::SenvParserWrong()
: fb_parser()
{
std::string r{plugin_name()};
SettingMeta sid0(r + "/StreamBase", SettingType::text,
"DAQuiri stre... | [
"martukas@gmail.com"
] | martukas@gmail.com |
1c4e481b79b0a1514939e7d17d9eddb706d7b84b | c5e4ebe0c4d945f60c5ee07b8a23ea55c5f2a12d | /src/rasterizers/layertest.cc | 683c1303928646cde0693273867ac3c4127ecb44 | [
"MIT-Modern-Variant"
] | permissive | carueda/starspan | dd9a717d0c51b8c7465df6edd92a3638c7c013ce | 71ae4d2b1c08b3f9ae41b53cc644cf440b0983a7 | refs/heads/master | 2020-12-24T13:16:52.423351 | 2008-08-19T23:04:22 | 2008-08-19T23:04:22 | 32,194,827 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,479 | cc | //
// StarSpan project
// LayerRasterizer test
// Carlos A. Rueda
// $Id$
//
#include <geos/version.h>
#if GEOS_VERSION_MAJOR < 3
#include <geos.h>
#else
#include <geos/unload.h>
using namespace geos::io; // for Unload
#endif
#include "LayerRasterizer.h"
#include "Raster.h"
#include <cstdlib>
#include <ctime... | [
"carueda@gmail.com"
] | carueda@gmail.com |
72d9bd62f4131cabaf2a8b51369b557f9a0f437d | 8dbe09afbecce2f167ef24e98edb25d4d0a6df50 | /September Challange/All Elements in Two Binary Search Trees.cpp | 213be487a10af4a0a36c884d09bc3221bde4d18e | [] | no_license | lsiddiqsunny/Leetcode-solve | 54ef9dedd82e8c642bbc5bc9fa21eda3080fa8f4 | ed733e305a19f1b52be037010f26e82f49ff8c24 | refs/heads/master | 2023-03-06T17:15:47.113875 | 2021-02-24T04:56:43 | 2021-02-24T04:56:43 | 242,515,591 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 865 | cpp | /**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode() : val(0), left(nullptr), right(nullptr) {}
* TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
* TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), l... | [
"lsiddiqsunny@gmail.com"
] | lsiddiqsunny@gmail.com |
20eb1b89c510a6f4e9f200182296b5b1dca6ae8e | 4510c631da0bb7d3015a42f75ca46d8b96013f4e | /controlstatements/nesting/for7.cpp | b2bb98e44aa0198c895f15288952c41fd9bbace6 | [] | no_license | GraspCS/CPP-Programs | 59a215b97565715ae47f77c5679a011bf2aedfd1 | 0b99a18c50c1b70e67e8906e3dac3c4349046d36 | refs/heads/main | 2023-06-17T00:50:14.491401 | 2021-07-06T17:30:39 | 2021-07-06T17:30:39 | 345,389,297 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 332 | cpp | #include <iostream>
using namespace std;
int main() {
// we'll be doing it with nested for loops
for(int i = 1; i <= 3; ++i) {
for (int j = 3; j >= i; --j) {
cout << " ";
}
for (int k = 1; k <= i; ++k) {
cout << "* ";
}
cout << "\n";
}
... | [
"info@graspcs.com"
] | info@graspcs.com |
0b6dad6e8639e774ed0ea3184f29a2daa1099de9 | b21682ae753d8b369caacc83cef83acfdd0e2adb | /server/stdafx.cpp | a5f90b9608b49527f8b2207945c781b486db92fb | [] | no_license | wimiDev/testserver | eaad939a62a134e614f910522750b38cb05bca9a | 2a080c75ba7e1a87e458b9c3d126329ba240a145 | refs/heads/master | 2021-01-18T04:55:19.217505 | 2016-09-21T02:25:30 | 2016-09-21T02:25:30 | 68,771,702 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 160 | cpp | // stdafx.cpp : 只包括标准包含文件的源文件
// server.pch 将作为预编译头
// stdafx.obj 将包含预编译类型信息
#include "stdafx.h"
| [
"wimidev@foxmail.com"
] | wimidev@foxmail.com |
41fb76c586c016389f1c5665a431c43979925ab1 | 934f692d68ab3d2f8e727b6e223cbf8c51b790f5 | /cpp/array4.cpp | e74260a28fb389ffc8b107ba89a2b2dc21e68e79 | [] | no_license | aakashsandhyan/interviewPreparation | 657415dd67d99f13027cd3e5cbc7a6de89055674 | e966334fc882ef423fdd01a1a214afa192925519 | refs/heads/master | 2023-01-31T09:02:47.159740 | 2020-12-12T09:21:59 | 2020-12-12T09:21:59 | 309,649,828 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 881 | cpp | /******** Sort an arrays of 0s,1s and 2s ****/
#include<iostream>
#include<vector>
#include<algorithm>
#include<string>
#include<unordered_map>
#include<unordered_set>
using namespace std;
short a[1000000];
void printArray(int);
void swap(int, int);
void solve(){
int n;
cin>>n;
for(int i = 0; i < n; i... | [
"aakashsandhyan@gmail.com"
] | aakashsandhyan@gmail.com |
31630d685414a5ecd32668eb56c17f5abbf21e13 | 12464de017755c15531558ec82bd08c3a62ba3de | /C++/Boost/Include/Boost/property_tree/ini_parser.hpp | 8dd9aaed29a14013094fb2bf1110f6fc37256d2c | [] | no_license | DanielShangHai/RedosMiscellaneousLib | 5bb17f865cf7484b3a3d059bdfd02736db336fc7 | 064b9f1ae370b72cc59212348ffce14e1288e555 | refs/heads/master | 2021-01-10T17:58:19.230826 | 2016-12-22T08:53:08 | 2016-12-22T08:53:08 | 48,574,365 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,440 | hpp | // ----------------------------------------------------------------------------
// Copyright (C) 2002-2006 Marcin Kalicinski
// Copyright (C) 2009 Sebastian Redl
//
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_... | [
"Dier.Song@videojet.com"
] | Dier.Song@videojet.com |
8f51caaae060c4411025525aacbb649a55060166 | 1408929beb0a5733b6a83668984ab0f8521979c2 | /Codeforces/Practice/1400/129a.cpp | fb6ab3b2df25572c1330c0d3d4c1b7d3062ce6d7 | [] | no_license | utkarshsingh99/Competitive-Coding | 44eade011bbc7f3b12858c17d480a5e8746de9d8 | 8951cfa7b8ee2c003a37163c0daab7e1b7c63da1 | refs/heads/master | 2022-12-31T03:53:52.241988 | 2020-10-20T19:33:17 | 2020-10-20T19:33:17 | 119,350,372 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 768 | cpp | #include <bits/stdc++.h>
#define loop(i,a,b) for(int i=a;i<b;i++)
#define loopr(i,a,b) for(int i=a;i>=b;i--)
#define loops(i,a,b,step) for(int i=a;i<b;i+=step)
#define looprs(i,a,b,step) for(int i=a;i>=b;i-=step)
#define FILE_READ_IN freopen("input.txt","r",stdin);
#define FILE_READ_OUT freopen("output.txt","w",stdout)... | [
"utkarshsingh369@gmail.com"
] | utkarshsingh369@gmail.com |
0cb5cf9499100340d8ffc8ccf48b46a54ff278b2 | 900796f81a4ee58ebd26038ec0b826feecfb81fb | /main.cpp | d0f350807173ee88ba5be799f9155087fc035570 | [
"MIT"
] | permissive | JustiP3/Simple_Click_Game | 60d27bcb2198fd5c1cc08237748758ef129b704c | 071c1cd9d197e7d034d8dbae7c0e611cc10777c8 | refs/heads/main | 2023-02-04T01:25:38.801152 | 2020-12-18T23:51:16 | 2020-12-18T23:51:16 | 313,472,585 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 326 | cpp | #include <iostream>
#include "Game.h"
int main()
{
//init srand
std::srand(static_cast<unsigned>(time(NULL)));
//Initialize Game
Game game;
while (game.getWindowIsOpen() && !game.getEndGame())
{
game.update();
game.render();
}
// End of application
retur... | [
"31192445+JustiP3@users.noreply.github.com"
] | 31192445+JustiP3@users.noreply.github.com |
8cbe66248e459fc379353a3af27c6a9230150208 | cde72953df2205c2322aac3debf058bb31d4f5b9 | /win10.19042/System32/LanguageOverlayServer.dll.cpp | 1f9dc5952d9d456b8ddc09bd99953525307daa6d | [] | no_license | v4nyl/dll-exports | 928355082725fbb6fcff47cd3ad83b7390c60c5a | 4ec04e0c8f713f6e9a61059d5d87abc5c7db16cf | refs/heads/main | 2023-03-30T13:49:47.617341 | 2021-04-10T20:01:34 | 2021-04-10T20:01:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 214 | cpp | #print comment(linker, "/export:ServiceMain=\"C:\\Windows\\System32\\LanguageOverlayServer.dll\"")
#print comment(linker, "/export:SvchostPushServiceGlobals=\"C:\\Windows\\System32\\LanguageOverlayServer.dll\"")
| [
"magnus@stubman.eu"
] | magnus@stubman.eu |
d0155fcbb27f350762f265d11cbfaecda5c3f3fd | 39e3644a3723d7cf9359e233c68e2bc11b176e01 | /755_Pour Water/Solution.h | 75812e5174ea1f2c9e42039ed397b435de002666 | [] | no_license | eashion/LeetCode | bb40b5523747d5046d2d6fa4e3bd578051689a94 | 0f09c189436b9e53274318c1264c5a7cf3c240b0 | refs/heads/master | 2021-01-12T09:10:41.426853 | 2018-07-29T06:24:39 | 2018-07-29T06:24:39 | 76,785,196 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,372 | h | class Solution {
public:
vector<int> pourWater(vector<int>& heights, int V, int K) {
while(V--){
bool left = false;
bool right = false;
checkLeft(K,heights,left);
if (!left) {
checkRight(K,heights,right);
}
if (!left && ... | [
"noreply@github.com"
] | eashion.noreply@github.com |
beec086f2e1ac8ac98777518feb3f871d9aedd3e | 43ba74b3b494b7e03d17efece011dfc45013a732 | /src/HelperLibrary/Widgets/VariantMapEditor/priv/variantmapmodel.cpp | 3709a5e420c1b27a9e087e92adf08dfb2cd99cdf | [] | no_license | sashatref/HelperLibrary | e30434ce520fafb584fbdf0f213cb4b5b2cc8563 | f4aafae562abf9edeac8e04b3da419ce19b29a36 | refs/heads/main | 2023-03-15T19:39:46.561421 | 2023-02-15T00:38:31 | 2023-02-15T00:38:31 | 599,773,800 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 3,677 | cpp | #include "variantmapmodel.h"
VariantMapModel::VariantMapModel(QObject *_parent):
QAbstractTableModel(_parent)
{
}
void VariantMapModel::addEmptyRow()
{
beginResetModel();
m_data << qMakePair(QString::number(m_data.size()), QVariant("value"));
endResetModel();
}
void VariantMapModel::clear()
{
... | [
"sashatref@gmail.com"
] | sashatref@gmail.com |
448f8b5520d9fffec6df88903ceb0cbb33160360 | c1b19426b8a91a4add7c0da9ed9771af3887c15b | /Practice_codes/greedy/final_frac_knap.cpp | fb4e8dc99344de0b2af873f81e5080bdfce2ecdc | [] | no_license | animesh-chouhan/CS29001-Algortihms-1 | 1a96717b6a3427d013014cf94e7992020d7c36f6 | 6bf515f9be2ca45417c559efa3fc99c38f8d3701 | refs/heads/master | 2020-04-08T23:45:25.163207 | 2018-11-30T05:01:07 | 2018-11-30T05:01:07 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,470 | cpp | #include<iostream>
#include<stdlib.h>
using namespace std;
struct node{
int val,w;
};
int partition(node items[],int low, int high)
{
int i=low, j=high-1, piv = low;
while(i<j)
{
while(i<high && ((float(items[i].w)/items[i].val) <= (float(items[piv].w)/items[piv].val)) ) i++;
while( ... | [
"ayushk4@gmail.com"
] | ayushk4@gmail.com |
90490d193281bc0c396e1ab61f58ed8d2ddbd0dd | dd39d69a9d8ba7d2bd5ff1af321c3634d7ac8051 | /CefSharp/ScriptCore.h | 775aafaa4dc6367285038914aa06d38e31476e87 | [
"BSD-3-Clause"
] | permissive | cuijinquan/CefSharp-1.19.0 | f1cbc94d07882aed4337eb8b51876bee04798dbe | ef763fa53b4e27f4dda6a1d0687ca9c4f356b753 | refs/heads/master | 2020-08-10T14:31:38.651410 | 2018-05-13T09:42:37 | 2018-05-13T09:42:37 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 829 | h | #include "stdafx.h"
#pragma once
namespace CefSharp
{
public class ScriptCore
{
private:
HANDLE _event;
gcroot<Object^> _result;
gcroot<String^> _exceptionMessage;
bool TryGetMainFrame(CefRefPtr<CefBrowser> browser, CefRefPtr<CefFrame>& frame);
void UIT_Execute(Cef... | [
"33323583+git-thinh@users.noreply.github.com"
] | 33323583+git-thinh@users.noreply.github.com |
0b7a0207da903b97a04c56eb4aea348775f9236e | b28ed6cef288cb83a2216f05803a0d87b1f61848 | /leetcode/leetcode1.cpp | e44f983fa0ab6bc704dce7aa1017bfb3a15909ea | [] | no_license | iyolee/algorithm | 273f0d851b23c9809658d12ab4af2eb2f7ba1566 | ae9d42ce4e3bc54557b94309fca87030789bd207 | refs/heads/master | 2021-06-07T12:10:19.820478 | 2020-04-12T11:41:31 | 2020-04-12T11:41:31 | 102,841,798 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,533 | cpp | /**
问题描述:
Given an array of integers, return indices of the two numbers such that they add up to a specific target.
You may assume that each input would have exactly one solution, and you may not use the same element twice.
例子:
Given nums = [2, 7, 11, 15], target = 9,
Because nums[0] + nums[1] = 2 + 7 = 9,
return [0, ... | [
"zhongjianlee@Outlook.com"
] | zhongjianlee@Outlook.com |
2e3c794b5c303ba3a6c81a20ebf82002692951a8 | f981ae929651ada228fed2dcd183b62b140b2327 | /Util/OSM2ODR/src/utils/router/StopEdge.h | 54aab3d50e9196ffd2883efb93b27956ffb3f4c2 | [
"EPL-2.0",
"CC-BY-4.0",
"MIT",
"LGPL-2.1-only",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | supavit-siriwan/carla | 33e34dd9dec997a489092f03491997a479184bfa | bdcb04b9c39c2de2b0f9e654350217898b49dbb7 | refs/heads/master | 2021-07-10T19:15:14.856303 | 2020-11-19T05:51:10 | 2020-11-19T05:51:10 | 213,990,039 | 1 | 0 | MIT | 2020-11-19T05:51:12 | 2019-10-09T18:09:34 | null | UTF-8 | C++ | false | false | 1,759 | h | /****************************************************************************/
// Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo
// Copyright (C) 2001-2020 German Aerospace Center (DLR) and others.
// This program and the accompanying materials are made available under the
// terms of the Ecli... | [
"bernatx@gmail.com"
] | bernatx@gmail.com |
9655b1b32edcf680939436405fff8f55435a48c0 | 772faea82f9182edb3576f06bcef580eb65d50ac | /SFMLGame Engine/StateMachine.hpp | 05ef094849fef76475361233fe2e157a0357a89f | [] | no_license | miguelfmlopes91/SFMLGame-Engine | cdd2a382d489abcd1b08ddbafc3b0ab90d5d7efc | 6b0a0d2baed06c03be5ef926f11362427c677a41 | refs/heads/master | 2020-03-17T15:44:45.328354 | 2018-05-22T21:22:56 | 2018-05-22T21:22:56 | 133,722,475 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 588 | hpp | #pragma once
#include <memory>
#include <stack>
#include "State.hpp"
namespace Bardo
{
typedef std::unique_ptr<State> StateRef;
class StateMachine
{
public:
StateMachine();
~StateMachine();
void AddState(StateRef newState, bool isReplacing = true);
void RemoveState();
void ProcessStateChanges();
... | [
"miguelpvz@hotmail.com"
] | miguelpvz@hotmail.com |
a7c24bcded8e579ccccc049d67ebd0b88936cb0d | 06af7754bf047f8b7b3e3fd4eaa641c0d4d60044 | /MacroExtender.h | cbf34c9669428e099ebfe9cc840947d1c1e8dd8d | [] | no_license | emanuelbarroso/SB-Deal | f8676440466abc03798f7fccff9da1ddf0e68737 | 6c508e3b2b78af88acd82611dc3f84a36feee9b8 | refs/heads/master | 2020-12-11T23:41:17.415188 | 2016-05-27T13:53:32 | 2016-05-27T13:53:32 | 45,718,645 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,019 | h | /**
* @author Emanuel B.
* Macro Extender class header
*
**/
#include <iostream>
#include <iomanip>
#include <fstream>
#include <string>
#include <stdexcept>
#include <cstdio>
#include <map>
#include <regex>
#include <vector>
#include <algorithm>
#include "Assembler.h"
using namespace std;
#ifndef MACRO_EXTENDER_H... | [
"bm2983@gmail.com"
] | bm2983@gmail.com |
2214327960c57cea25e8d124f0fb6f3856b9bbae | 0c3a864f8926f7f8b96e2a01954eed51b7d5222c | /Editor/Widget.hpp | 89f46ab1116240d1c59ceebc6439bf3b0d3a094e | [] | no_license | anybirds/Newbie | de5a928e9aab4858da19561ad96d1b3147889105 | cb31413f82d10638f6c205b41b97a00226290b27 | refs/heads/master | 2021-09-18T12:27:52.109851 | 2021-09-06T15:32:19 | 2021-09-06T15:32:19 | 340,873,850 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 962 | hpp | #pragma once
#include <string>
#include <imgui/imgui.h>
#include <imgui/imgui_stdlib.h>
#include <Icons/IconsFontAwesome5.h>
#include <nlohmann/json.hpp>
class Entity;
class Type;
class Widget {
protected:
static Entity *&GetSelected() { static Entity *selected; return selected; }
static void *&GetLocalSele... | [
"river0105@kaist.ac.kr"
] | river0105@kaist.ac.kr |
5d69e244818117d8fc31d7d04f8bd50b8f10607e | c42e651fb8e41bb1a86b4483e2b33245786c5e7f | /MyBVH/MyBVH/moc_MasterWidget.cpp | eb4458dd3e1014a716269577188ea7572cbbcdd0 | [] | no_license | JonathanAlderson/BVH-Animation-Software | 92ceb1ca37bc8a368a38b08a1c46bfaf88651ad7 | 543bbdd701b450c4a69eb7a374d5fef8daed3d64 | refs/heads/master | 2023-01-31T07:04:21.042573 | 2020-12-18T18:03:33 | 2020-12-18T18:03:33 | 309,972,366 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,518 | cpp | /****************************************************************************
** Meta object code from reading C++ file 'MasterWidget.h'
**
** Created by: The Qt Meta Object Compiler version 67 (Qt 5.9.5)
**
** WARNING! All changes made in this file will be lost!
********************************************************... | [
"sc17j3a@leeds.ac.uk"
] | sc17j3a@leeds.ac.uk |
b77c7a59b57e5a15d680ff2540f3dcd5663fd3b0 | 1bf7da4dfe46d640ca5887429466807f7437f18f | /Common Algo/MergeSort.cpp | 661cc53883e868fbaea65d45d2634f41c212187b | [] | no_license | Riya-code/Algorithms | ff1e9b19832ef1aad2c246877237817fc044d198 | 49ca8a7c7525a5894de33cbbf94242ac91cf5aa3 | refs/heads/main | 2023-08-28T22:34:28.494028 | 2021-10-23T14:57:12 | 2021-10-23T14:57:12 | 401,673,158 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,953 | cpp | void merge(int *Arr, int start, int mid, int end) {
// create a temp array
int temp[end - start + 1];
// crawlers for both intervals and for temp
int i = start, j = mid+1, k = 0;
// traverse both arrays and in each iteration add smaller of both elements in temp
while(i <= mid && j <= end) {
if(Arr[i] <= Arr[... | [
"noreply@github.com"
] | Riya-code.noreply@github.com |
997a20eb8c17509b824d6ed6df96f45248964686 | 6d928a0964f942fdb062b5a6a84335a9481ede34 | /UpperDivisionClasses/C_C++_Unix/Project_4/4C/source.h | f06877e25c2ecdb9b23b93c511586a4f46bed7b1 | [
"MIT"
] | permissive | adamcarlton/collegeCodeProjects | 2e7f53dbcbd543b27a5e38a8f6cdd3e86e1c9235 | f904a653faf31baeec6afb603ddc2f426a8af193 | refs/heads/master | 2020-03-08T05:41:41.845071 | 2018-08-30T17:27:45 | 2018-08-30T17:27:45 | 127,953,951 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 322 | h | #ifndef SOURCE_H
#define SOURCE_H
#include <image.h>
#include <logging.h>
class Source
{
protected:
Image img;
virtual void Execute() = 0;
public:
Source(){img.SetSrc(this);};
Image* GetOutput();
virtual void Update();
virtual const char *SourceName()=0;
};
#endi... | [
"acarlton@uoregon.edu"
] | acarlton@uoregon.edu |
fe3a5ccf347af30f39d05ab10ddf8dff2eb40b17 | f9bb2fed829b4421d1aa16255ad76adeacac9585 | /main.cpp | 679b4909a048754757cf747b9717b546de8cbe57 | [] | no_license | ashaheed3/AmortizationSchedule | f4f92117035d879e780d8fc171f36c490840658b | 8684c120e3435d04c0f4b4e1c7cfbaf561fdaa7e | refs/heads/master | 2021-09-01T16:55:43.805277 | 2017-12-28T01:13:05 | 2017-12-28T01:13:05 | 115,570,807 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,628 | cpp | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/*
* File: main.cpp
* Author: LungsSoMuddy
*
* Created on October 25, 2016, 11:12 PM
*/
#include <cstdlib>
#inc... | [
"noreply@github.com"
] | ashaheed3.noreply@github.com |
00be9aea5d9aca751fa0a9c3546981b671550667 | cde76b951ba204ffaabdbffc89452b4596e8afa5 | /Games1-3.Battleship/Board.h | be9b0d9ee654c29e726ea20f78a1a138420d87fb | [] | no_license | AlbertoIzq/Games1-3.Battleship | 0d016a1d0a1c38863e5138987d3dcb5f7ac40c66 | 04af1df86e617ea2b9b77d59758c88bdf34072a6 | refs/heads/master | 2023-01-22T12:34:23.949328 | 2020-12-02T15:30:39 | 2020-12-02T15:30:39 | 296,047,841 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 368 | h | #pragma once
#include <array>
#include <string>
class Board {
private:
void drawHorizontalLine();
public:
static constexpr int BOARD_SIZE = 10; // Max value is 26. If greater, change drawBoard
protected:
std::array<std::array<std::string, BOARD_SIZE>, BOARD_SIZE> board; // string as " ", three characte... | [
"alberto.izquierdomo@gmail.com"
] | alberto.izquierdomo@gmail.com |
0f827d7b42becc9c291f2dd1e39082c431d4ff2b | 031c60b7227c51d7f152106131f463f5e404bd8b | /Inheritance/train.cpp | 991f59ee1e73f019ada3d7628e89669cbfe48366 | [] | no_license | surajeet01/cpp-basic | cc06e73f25f56ae2bf1bb38b7be30a044f3e00c5 | ea7aca6f80de1a750cebf6df5683d777c6f96536 | refs/heads/main | 2023-06-05T09:02:58.522635 | 2021-07-07T07:21:02 | 2021-07-07T07:21:02 | 374,278,264 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 660 | cpp | #include "train.h"
ostream& operator<<(ostream& os, train& t) {
cout << "Train of " << t.seats << " seats and " << t.weight << "kg" << endl;
return os;
}
/* Constructor of base class getting called */
train::train(const train& t) : vehicle(t), seats{t.seats} {
cout << "Copy constructor of train" << endl;
... | [
"surajeet01@gmail.com"
] | surajeet01@gmail.com |
703efa89ef1f97b2412e055b68a6887247bcabc7 | 82685d006a3c55bb7ee00028d222a5b590189bbf | /Sourcecode/mx/core/elements/KeyAlter.h | b4e7ca2574939e5687068ec7b8cea1a9411b83de | [
"MIT"
] | permissive | ailialy/MusicXML-Class-Library | 41b1b6b28a67fd7cdfbbc4fb7c5c936aee4d9eca | 5e1f1cc8831449476f3facfff5cf852d66488d6a | refs/heads/master | 2020-06-18T23:46:50.306435 | 2016-08-22T04:33:44 | 2016-08-22T04:33:44 | 74,932,821 | 2 | 0 | null | 2016-11-28T03:14:23 | 2016-11-28T03:14:23 | null | UTF-8 | C++ | false | false | 1,411 | h | // MusicXML Class Library v0.2
// Copyright (c) 2015 - 2016 by Matthew James Briggs
#pragma once
#include "mx/core/ForwardDeclare.h"
#include "mx/core/ElementInterface.h"
#include "mx/core/Decimals.h"
#include <iosfwd>
#include <memory>
#include <vector>
namespace mx
{
namespace core
{
MX_FORWARD_D... | [
"matthew.james.briggs@gmail.com"
] | matthew.james.briggs@gmail.com |
2f46ffb6822f470df49e9f77fd001fe20da0ddfd | f338eb32c45d8d5d002a84798a7df7bb0403b3c4 | /Calibration/Tools/interface/EcalRingCalibrationTools.h | 4447ec459fef4b1659a52477458a77f0cd690992 | [] | permissive | wouf/cmssw | 0a8a8016e6bebc611f1277379e12bef130464afb | 60da16aec83a0fc016cca9e2a5ed0768ba3b161c | refs/heads/CMSSW_7_3_X | 2022-06-30T04:35:45.380754 | 2015-05-08T17:40:17 | 2015-05-08T17:40:17 | 463,028,972 | 0 | 0 | Apache-2.0 | 2022-02-24T06:05:30 | 2022-02-24T06:05:26 | null | UTF-8 | C++ | false | false | 1,484 | h | #ifndef EcalRingCalibrationTools_h
#define EcalRingCalibrationTools_h
/****************************************
*
* 25/09/2007 P. Meridiani (CERN)
* Description:
* Tools to ease the hanling of indices
* for ECAL ring intercalibration
*
***************************************/
#include <vector>
#inclu... | [
"giulio.eulisse@gmail.com"
] | giulio.eulisse@gmail.com |
3776791b9eeae30ab66ba22ec56722a32dd31822 | 166729f27064d7565dac923450bd41c2fe6eb7a4 | /logdevice/server/locallogstore/MemtableFlushedRequest.cpp | 896d112677491414f665d75ff10471f5257d303e | [
"BSD-3-Clause"
] | permissive | abhishekg785/LogDevice | 742e7bd6bf3177056774346c8095b43a7fe82c79 | 060da71ef84b61f3371115ed352a7ee7b07ba9e2 | refs/heads/master | 2020-04-17T05:26:15.201210 | 2019-01-17T14:18:09 | 2019-01-17T14:23:57 | 166,278,849 | 1 | 0 | NOASSERTION | 2019-01-17T18:53:23 | 2019-01-17T18:53:22 | null | UTF-8 | C++ | false | false | 2,926 | cpp | /**
* 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 "logdevice/server/locallogstore/MemtableFlushedRequest.h"
#include "logdevice... | [
"facebook-github-bot@users.noreply.github.com"
] | facebook-github-bot@users.noreply.github.com |
39ba8c3cc9eeccaa1722d6d3831455f2ee5affd8 | c76c319fb3a59c9b88455ccd77f9f3b9dae0bb3f | /a2-silhoulettes/Silhoulettes_counter.h | 788827399f061ec97beb76fa095b145df5d09514 | [] | no_license | shpp-krusso/cs-b | eaa69df12db21c6bcede74d971b932903f47371e | 857f663405d9b5d5107a3decdd690b2371734e14 | refs/heads/master | 2021-01-09T20:52:33.914704 | 2016-07-09T16:38:09 | 2016-07-09T16:38:09 | 58,320,636 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 524 | h | #ifndef SIHOUETTES_COUNTER_H
#define SIHOUETTES_COUNTER_H
#include <QImage>
#include <iostream>
#include <QColor>
#include <string>
#include <fstream>
#include <QPoint>
#include <map>
#include <queue>
using namespace std;
class Silhouettes_counter
{
public:
Silhouettes_counter();
int count(string filePath);
... | [
"noreply@github.com"
] | shpp-krusso.noreply@github.com |
2f73c83d5c5fac12f9d49c294bca17deb436db3f | 61e1f8d80d36218c7e2d93b8dcaec1ad297b4ffa | /framework/include/service/timer_service.h | c68122b6d4b5c1fc5a5040f6d3bd58e5f0138f57 | [] | no_license | dongdong-2009/test | 6dcebc2aee2cc24563292edafa0ec2dbc2240040 | c824d4a40952a48b12c2142678896027119dacb3 | refs/heads/master | 2021-05-31T13:21:10.698705 | 2016-05-16T05:05:00 | 2016-05-16T05:05:00 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,774 | h | #ifndef TIMERSERVICE_H
#define TIMERSERVICE_H
#include <vector>
#include <atomic>
#include <chrono>
#include <mutex>
#include <transport/app_message.h>
#include <service/timed_invoker.h>
#include <util/copyable_atomic.hpp>
namespace zhicloud{
namespace service{
using zhicloud::transport::AppMessage;
... | [
"6408741@qq.com"
] | 6408741@qq.com |
909dc88a5880334b851956329c174fa322877e3b | c1d0ef67b8763383a2a3fc636f2109e98df173b9 | /cpp/7_func_pointers.cpp | 9635c43e61503ebcdc55c5d720248357dd7306f8 | [] | no_license | bm3719/practice | a2b1df05714a1cb1f77864563ee0824e4edea5cc | e5be5b9162ce717f090700227892506d143662ba | refs/heads/master | 2023-04-07T13:50:15.286266 | 2023-02-27T02:17:10 | 2023-02-27T02:17:10 | 1,551,171 | 0 | 1 | null | 2023-03-15T06:28:15 | 2011-03-31T14:33:04 | Clojure | UTF-8 | C++ | false | false | 1,277 | cpp | // -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
// Using function pointers to generalize functions over types.
#include <iostream>
#include <vector>
using namespace std;
const vector<int> *fibon_seq(int size);
const vector<int> *lucas_seq(int size);
const vector<int> *pell_seq(int size);... | [
"bm3719@gmail.com"
] | bm3719@gmail.com |
6f8f45f368edf6ec2d92c4fde11fd5cffa14b87f | 7b3964bdcb25808137460a98165b382420dea371 | /multy_core/src/error_utility.cpp | 1b996423cc957c828ac3acd07a3d7386c188a5aa | [
"LicenseRef-scancode-other-permissive"
] | permissive | cdlgz/Multy-Core | fabc711ea1a094d1bca6e7f79d262b82b8133e84 | f19cd8676d7a2f551b2a0100889329d462790178 | refs/heads/master | 2022-03-07T21:26:12.952829 | 2019-11-07T02:46:20 | 2019-11-07T02:46:20 | 220,125,922 | 0 | 0 | NOASSERTION | 2019-11-07T01:36:05 | 2019-11-07T01:36:04 | null | UTF-8 | C++ | false | false | 4,565 | cpp | /* Copyright 2018 by Multy.io
* Licensed under Multy.io license.
*
* See LICENSE for details
*/
#include "multy_core/src/error_utility.h"
#include "multy_core/error.h"
#include "multy_core/src/backtrace.h"
#include "multy_core/src/exception.h"
#include "multy_core/src/exception_stream.h"
#include "multy_core/src... | [
"V.Nemkov@gmail.com"
] | V.Nemkov@gmail.com |
f842f5a6f2bd697e27c4cdded0e67cc8bf7bc10b | 72d9009d19e92b721d5cc0e8f8045e1145921130 | /gdalcubes/inst/testfiles/libgdalcubes_set_threads/libgdalcubes_set_threads_DeepState_TestHarness.cpp | 089aaa0dd050e4408a8868d22c5f033d319eb457 | [] | no_license | akhikolla/TestedPackages-NoIssues | be46c49c0836b3f0cf60e247087089868adf7a62 | eb8d498cc132def615c090941bc172e17fdce267 | refs/heads/master | 2023-03-01T09:10:17.227119 | 2021-01-25T19:44:44 | 2021-01-25T19:44:44 | 332,027,727 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 936 | cpp | // AUTOMATICALLY GENERATED BY RCPPDEEPSTATE PLEASE DO NOT EDIT BY HAND, INSTEAD EDIT
// libgdalcubes_set_threads_DeepState_TestHarness_generation.cpp and libgdalcubes_set_threads_DeepState_TestHarness_checks.cpp
#include <fstream>
#include <RInside.h>
#include <iostream>
#include <RcppDeepState.h>
#include <qs.h>
#inc... | [
"akhilakollasrinu424jf@gmail.com"
] | akhilakollasrinu424jf@gmail.com |
8b67e5775dbdd14abde35448e8a18fe84c4d8111 | a1fbf16243026331187b6df903ed4f69e5e8c110 | /cs/engine/xrGame/vertex_manager_hash_fixed_inline.h | a88b4b305197004699cabb37ab2f1ed6deecf82d | [
"LicenseRef-scancode-warranty-disclaimer",
"BSD-2-Clause"
] | permissive | OpenXRay/xray-15 | ca0031cf1893616e0c9795c670d5d9f57ca9beff | 1390dfb08ed20997d7e8c95147ea8e8cb71f5e86 | refs/heads/xd_dev | 2023-07-17T23:42:14.693841 | 2021-09-01T23:25:34 | 2021-09-01T23:25:34 | 23,224,089 | 64 | 23 | NOASSERTION | 2019-04-03T17:50:18 | 2014-08-22T12:09:41 | C++ | UTF-8 | C++ | false | false | 5,019 | h | ////////////////////////////////////////////////////////////////////////////
// Module : vertex_manager_hash_fixed_inline.h
// Created : 21.03.2002
// Modified : 05.03.2004
// Author : Dmitriy Iassenev
// Description : Hash fixed vertex manager inline functions
////////////////////////////////////////////////////... | [
"paul-kv@yandex.ru"
] | paul-kv@yandex.ru |
4345684efdf14b2d6277c346cca5edaa163224b6 | 42102914e55971ce982c8c9501172aa9e69726ab | /src/GUI/MainMenu.h | 739d2f9a43b26c40a7338ebc17b26d0e719a9fc7 | [
"MIT"
] | permissive | Vortelio/Sourcehold | f165bea928261b3968fbc986362b689b8cd08b9e | 028234cd8c3aac552a5938ddfab7673278194e95 | refs/heads/master | 2020-06-14T22:21:56.686461 | 2019-07-02T17:48:16 | 2019-07-02T17:51:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,870 | h | #pragma once
#include <boost/filesystem.hpp>
#include <cinttypes>
#include <algorithm>
#include <cstdlib>
#include <chrono>
#include <memory>
#include <GameManager.h>
#include <GUI/StaticElement.h>
#include <GUI/UIState.h>
#include <GUI/Credits.h>
#include <GUI/MenuUtils.h>
#include <Parsers/TgxFile.h>
#include <P... | [
"metalvoidzz@gmail.com"
] | metalvoidzz@gmail.com |
ef001a00f1ae3cad542051cc12547b15842fb0ea | cbfb8553a5c990c79e184149e236e1fa3e8ba943 | /Leetcode/Array/1277_CountSquareSubmatriceswithAllOnes.cpp | 59690460d58b306ec0f5d85b0048786e46a7935d | [] | no_license | DancingOnAir/LeetCode | 09c0b8c428216302be02447b257e7b9ca44c741b | 62d5a81f9a774599368a91050bcf83e4ffab8f50 | refs/heads/master | 2023-05-09T01:59:58.943716 | 2023-05-04T01:10:42 | 2023-05-04T01:10:42 | 93,221,941 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,837 | cpp | #include <iostream>
#include <vector>
using namespace std;
class Solution {
public:
int countSquares(vector<vector<int>>& matrix) {
int res = 0;
for (int i = 0; i < matrix.size(); ++i) {
for (int j = 0; j < matrix[0].size(); res += matrix[i][j++]) {
if (i && j && matrix... | [
"taotong1984@hotmail.com"
] | taotong1984@hotmail.com |
5b1d6ba201b97542d381be5f821cd6372ed6e87b | 69dd4bd4268e1c361d8b8d95f56b5b3f5264cc96 | /GPU Pro4/02_Rendering/06_Progressive Screen-space Multi-channel Surface Voxelization/src/SceneGraph/SceneGraph_Timer3D.cpp | 72f394b0784c975faff2e96ce8b9b3ce0e3f413f | [
"MIT"
] | permissive | AnabaenaQing/Source-Code_ShaderX_GPU-Pro_GPU-Zen | 65c16710d1abb9207fd7e1116290336a64ddfc86 | f442622273c6c18da36b61906ec9acff3366a790 | refs/heads/master | 2022-12-15T00:40:42.931271 | 2020-09-07T16:48:25 | 2020-09-07T16:48:25 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,040 | cpp | //////////////////////////////////////////////////////////////////////////////
// //
// Scene Graph 3D //
// Georgios Papaioannou, 2009 //
// ... | [
"IRONKAGE@gmail.com"
] | IRONKAGE@gmail.com |
e68da1e5d39c8b17e2cd3b34e07b05e821c7d8e0 | c18e3cba4f445613b2ed7503061cdfe088d46da5 | /docs/mfc/codesnippet/CPP/using-drop-down-buttons-in-a-toolbar-control_3.cpp | 49ed9c3dd8d05e680fba065e45c5892657f7b5ef | [
"CC-BY-4.0",
"MIT"
] | permissive | MicrosoftDocs/cpp-docs | dad03e548e13ca6a6e978df3ba84c4858c77d4bd | 87bacc85d5a1e9118a69122d84c43d70f6893f72 | refs/heads/main | 2023-09-01T00:19:22.423787 | 2023-08-28T17:27:40 | 2023-08-28T17:27:40 | 73,740,405 | 1,354 | 1,213 | CC-BY-4.0 | 2023-09-08T21:27:46 | 2016-11-14T19:38:32 | PowerShell | UTF-8 | C++ | false | false | 72 | cpp | ON_NOTIFY(TBN_DROPDOWN, IDC_TOOLBAR1, &CMyDialog::OnTbnDropDownToolBar1) | [
"mblome@microsoft.com"
] | mblome@microsoft.com |
676af151722a01aa24f6999f6f7d7dab4136f320 | 79d343002bb63a44f8ab0dbac0c9f4ec54078c3a | /lib/libc/include/any-windows-any/gdiplus/gdiplusgraphics.h | 360c897e7105c3a706f9eed69f20c456ec64d0f4 | [
"MIT",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-public-domain"
] | permissive | ziglang/zig | 4aa75d8d3bcc9e39bf61d265fd84b7f005623fc5 | f4c9e19bc3213c2bc7e03d7b06d7129882f39f6c | refs/heads/master | 2023-08-31T13:16:45.980913 | 2023-08-31T05:50:29 | 2023-08-31T05:50:29 | 40,276,274 | 25,560 | 2,399 | MIT | 2023-09-14T21:09:50 | 2015-08-06T00:51:28 | Zig | UTF-8 | C++ | false | false | 47,693 | h | /*
* gdiplusgraphics.h
*
* GDI+ Graphics class
*
* This file is part of the w32api package.
*
* Contributors:
* Created by Markus Koenig <markus@stber-koenig.de>
*
* THIS SOFTWARE IS NOT COPYRIGHTED
*
* This source code is offered for use in the public domain. You may
* use, modify or distribute it freel... | [
"andrew@ziglang.org"
] | andrew@ziglang.org |
d272b422ab8a9c759fe951d7f6603a2d01094cd0 | c8fcc1acf73585045a5c7213cfb9f90e4c1e809e | /UVA/1252.cpp | 74a1891a6509882984beb807a10ca2ef472f6657 | [] | no_license | Jonariguez/ACM_Code | 6db4396b20d0b0aeef30e4d47b51fb5e3ec48e03 | 465a11746d577197772f64aa11209eebd5bfcdd3 | refs/heads/master | 2020-03-24T07:09:53.482953 | 2018-11-19T09:21:33 | 2018-11-19T09:21:33 | 142,554,816 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,117 | cpp | /****************
*PID:uva1252
*Auth:Jonariguez
*****************
dp
*/
#include <stdio.h>
#include <string.h>
#include <math.h>
#include <vector>
#include <algorithm>
using namespace std;
const int maxn=128;
const int maxm=11;
int n,m,dp[(1<<maxm)][(1<<maxm)],st[maxn];
int cnt[(1<<maxm)][(1<<maxm)];
char s[maxm+5];
... | [
"921829915@qq.com"
] | 921829915@qq.com |
2a4ed97a9b13ad9a6e6c7d5878903a4ce87c5579 | 5fc64ee9a8bc12496868ed32fc414c8bd6218061 | /BTcar_2/BTcar_2.ino | e932f9509cbff30df365fadfc31b745d99df736a | [] | no_license | schtonn/Arduino-Bluetooth-car | 05185c81132fd61f8937ae08a7c061919b4448d2 | f42e1ab33ce688bb6cb26ee813f3ec91af243711 | refs/heads/master | 2022-11-16T13:29:38.253527 | 2020-07-09T11:29:48 | 2020-07-09T11:29:48 | 268,816,428 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,123 | ino | #include <SoftwareSerial.h>//include BlueTooth
#include <MsTimer2.h>
SoftwareSerial BT(12, 11);//set BlueTooth send and recieve
char comm;//recieve BlueTooth
const byte t = 19;//Ping:send
const byte e = 18;//Ping:recieve
const byte L1 = 13;//LED
const byte IA = 2;//A:High or Low
const byte IB = 3;//A:High or Low
con... | [
"m18519511495@163.com"
] | m18519511495@163.com |
a43ef5c11775d41303e556d9487e81f65ad57fb9 | b5949f3787035a1f86c04ac8cbb4de1c6dc6eb0e | /ffvii/DISC/WORLD/WORLD.BIN_entity_list.cpp | 6b77e4b3fc4827e70558fc51dcf8cca863608766 | [] | no_license | Akari1982/q-gears_reverse | a5f01df536767f810a0ed42f378ecec0cad9139e | eb526894677fc2d3a5d839e157bf607b1c682ed4 | refs/heads/master | 2022-05-02T22:14:42.555430 | 2022-04-29T13:57:40 | 2022-04-29T13:57:40 | 103,525,167 | 13 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 47,767 | cpp | ////////////////////////////////
// wm_init_all_entity_structs()
S2 = A0; // 8009c6e4 + f5c
// link all entities struct with each other
V0 = c40;
V1 = 8010ac54;
loopa8940: ; 800A8940
[80109f34 + V0 + 0] = w(V1);
V0 = V0 - e0;
V1 = V1 - e0;
800A8954 bgez v0, loopa8940 [$800a8940]
// last entity struct h... | [
"bakari82@mail.ru"
] | bakari82@mail.ru |
3579d1588c81d198343094ab7c1f0dd31edd42f7 | 592c8ae293cfc4418b086226843bdeeeeae60899 | /2020A/vjudge/tesc.cpp | 31fa4aaf83bda7f6872d49d657fb723fa764af83 | [
"MIT"
] | permissive | Magic-Xin/Coding | d60c342c56be9e790b612d76b4c4ea77e8f33437 | 19a27cf248069b92a1ef6fbc26effce5dd984221 | refs/heads/master | 2022-11-25T03:34:35.328418 | 2022-09-05T11:24:29 | 2022-09-05T11:24:29 | 209,703,898 | 15 | 2 | MIT | 2022-11-22T10:13:25 | 2019-09-20T04:15:48 | C++ | UTF-8 | C++ | false | false | 959 | cpp | #include<bits/stdc++.h>
using namespace std;
struct node
{
int t1;//电视开始时间
int t2;//电视的结束时间
}a[105];
int cmp(node u,node v)//对节目按照结束时间从小到大排序,如果结束的时间相同,则按照开始的
{//时间从大到小的排序!
if(u.t2==v.t2)//为什么要将开始的时间从大到小排序呢?是因为如果结束时间相同的话,开始的
return u.t1>v.t1;//越迟,看节目的时间越短,你就能尽可能的多看电视!
return u.t2<v.t2;//例如:2-3,3-4,2-4,你... | [
"x.yu2000@163.com"
] | x.yu2000@163.com |
35a198c950bbd5b504d7c362815a26a58a6ebc8e | 112d4a263c3e9fc775fa82288a20a34b1efbe52d | /Material/RobertLafore_Book/Book_SourceCode/Progs/Ch15/Listfill.cpp | b258d292903608c0d4281d0a76ea7d64ee8ad5ca | [
"MIT"
] | permissive | hpaucar/OOP-C-plus-plus-repo | 369e788eb451f7d5804aadc1eb5bd2afb0758100 | e1fedd376029996a53d70d452b7738d9c43173c0 | refs/heads/main | 2023-02-03T12:23:19.095175 | 2020-12-26T03:07:54 | 2020-12-26T03:07:54 | 324,466,086 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 525 | cpp | // listfill.cpp
// uses iterator to fill list with data
#include <iostream>
#include <list>
using namespace std;
int main()
{
list<int> iList(5); // empty list holds 5 ints
list<int>::iterator it; // iterator
int data = 0;
// fill list with data
for(it = iList.begin(); ... | [
"herminiopaucar@gmail.com"
] | herminiopaucar@gmail.com |
0f23199d7efc469c713f0cd5206358db2917b8dc | eeec7c13e1d5cc2916b12cc85e32994a029362f4 | /ABElectronics_ADCPi/src/ABElectronics_ADCPi.cpp | 054cd49e85f109c7dbceaff46a76ea2c1676bdb5 | [
"MIT"
] | permissive | abelectronicsuk/ABElectronics_Arduino_Libraries | c9c31ee3c4f24b02479aef7850f70d48034afae6 | fd5aa139d47b6a6c97cbc72adb551b9fc10e5bc7 | refs/heads/master | 2023-08-08T18:50:45.282746 | 2023-07-24T11:20:18 | 2023-07-24T11:20:18 | 49,319,729 | 5 | 5 | null | null | null | null | UTF-8 | C++ | false | false | 7,164 | cpp | #include <Arduino.h>
#include <Wire.h>
#include "ABElectronics_ADCPi.h"
char ABElectronics_ADCPi::updateByte(char byte, char bit, char value) {
/*
internal method for setting the value of a single bit within a byte
*/
if (value == 0) {
return (byte &= ~(1 << bit));
} else {
return (byte |= 1 << bi... | [
"sales@abelectronics.co.uk"
] | sales@abelectronics.co.uk |
a0f3e4a94fffa150560bdbac4ab624287b000249 | 9358b404fc2da6e736ca0dad75ab7e97fe5f10e4 | /Software/MiniFly/Firmware/applications/imu.cpp | 1c6ac1091c6764afc3ddca015027398060b0f09e | [] | no_license | nongxiaoming/MiniQuadcopter | c63e355a343686725ef3791e93d05bd59cbeef98 | 00a3332284014f318fb90fb507d220784700044a | refs/heads/master | 2016-09-06T18:37:47.825915 | 2015-05-28T16:00:32 | 2015-05-28T16:00:32 | 15,155,633 | 1 | 0 | null | null | null | null | GB18030 | C++ | false | false | 4,049 | cpp | /******************** (C) COPYRIGHT 2014 ANO Tech *******************************
* 作者 :匿名科创
* 文件名 :ANO_IMU.cpp
* 描述 :飞行器姿态计算
* 官网 :www.anotc.com
* 淘宝 :anotc.taobao.com
* 技术Q群 :190169595
**********************************************************************************/
#include "imu.h"
#include "sens... | [
"nongxiaoming@gmail.com"
] | nongxiaoming@gmail.com |
42f3a7f792c151b9ba451e49dccf03f074f3c649 | 536656cd89e4fa3a92b5dcab28657d60d1d244bd | /ui/views/window/non_client_view.h | 5bba6ed93f3086ba50db66729b7af8e14105fe53 | [
"BSD-3-Clause"
] | permissive | ECS-251-W2020/chromium | 79caebf50443f297557d9510620bf8d44a68399a | ac814e85cb870a6b569e184c7a60a70ff3cb19f9 | refs/heads/master | 2022-08-19T17:42:46.887573 | 2020-03-18T06:08:44 | 2020-03-18T06:08:44 | 248,141,336 | 7 | 8 | BSD-3-Clause | 2022-07-06T20:32:48 | 2020-03-18T04:52:18 | null | UTF-8 | C++ | false | false | 10,330 | h | // Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef UI_VIEWS_WINDOW_NON_CLIENT_VIEW_H_
#define UI_VIEWS_WINDOW_NON_CLIENT_VIEW_H_
#include "base/macros.h"
#include "build/build_config.h"
#inclu... | [
"pcding@ucdavis.edu"
] | pcding@ucdavis.edu |
e41d9f085ddc5446fba475d3b1caf915804de151 | 9602921c2a25d02891940d4b41a1eec8fc8dae3c | /gui_source/main_gui.cpp | c274ab0b53e8d228a2d84b1a66847b0971444f3c | [
"MIT"
] | permissive | marcosd4h/XPEViewer | ab80d7072555b0643533adad6da14247ff3ffb38 | e13c4cdb92952c108cc9d075834c7ab55f5ea7a5 | refs/heads/master | 2023-06-21T07:02:07.609502 | 2021-08-15T08:51:09 | 2021-08-15T08:51:09 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,494 | cpp | // copyright (c) 2020-2021 hors<horsicq@gmail.com>
//
// 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, mod... | [
"horsicq@gmail.com"
] | horsicq@gmail.com |
b3eb2e7ac09dab4621bb7c7b4d7d195127ce5598 | 0e2c2f99ab8370c112a8059d692199f935bf77db | /Poule.cpp | b5207467098eb2c17b56e2d2db6c8b7c438ff016 | [
"MIT"
] | permissive | Telroshan/Field-fighters | ea5e590a637bb2c51190a4101d1093c7ae35628c | 2b529679bcb4d27a39bc473c1a7c17dc61d4a21f | refs/heads/main | 2023-02-18T19:41:46.850384 | 2021-01-07T15:18:53 | 2021-01-07T15:18:53 | 327,647,285 | 0 | 0 | null | null | null | null | ISO-8859-1 | C++ | false | false | 6,378 | cpp | #include "Poule.h"
using namespace std;
using namespace sf;
/* L'entier numeroJoueur demandé en paramètre est simplement utilisé pour déterminer quelle image du joueur on affiche */
Poule::Poule(int numeroJoueur) {
/* Initialisation des attributs de la Poule */
vie = 100;
degatsAttaqueOeuf = 15;
pr... | [
"vincent.thebaud@ynov.com"
] | vincent.thebaud@ynov.com |
a2e5e87744123b285ababefde17ad5aff89dd120 | c0c2acf1ee600d9e86a68828738130a6de9e6438 | /src/System/Config.cpp | 46c9b0671168d67b1de60e5eb2f2ee5c3a2c1c29 | [] | no_license | nekonyuu/bombersow-project2 | bdc9bb46ddf3f3e3bdf4ab1a0f6fc54dc1e2fbc3 | 7420ae63189cd1e508463dc91921c60aa554378c | refs/heads/master | 2021-01-22T14:40:02.181184 | 2010-11-16T18:17:54 | 2010-11-16T18:17:54 | 32,104,900 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,114 | cpp | /*
GPL v3 Licence :
Bombersow is a 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 License, or
(at your option) any later version.
Bombersow is distributed in t... | [
"nk@nyuu.eu"
] | nk@nyuu.eu |
dcb2e386c7164a053e50c2a38529fb1224d79f44 | 99fddc8762379bcb707ad53081cd342efa7a5d89 | /pnc/planner/locomotion/towr_plus/include/towr_plus/variables/variable_names.h | 08ecb3b2e646354811dec5cccc2216831c9d66e4 | [
"MIT"
] | permissive | zhilinxiong/PyPnC | ef19a4bcc366666d2550466b07cd8ec8f098c0c4 | abf9739c953d19ca57fd4bd37be43415f3d5e4a7 | refs/heads/master | 2023-07-04T19:09:26.115526 | 2021-08-03T04:29:10 | 2021-08-03T04:29:10 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,147 | h | /******************************************************************************
Copyright (c) 2018, Alexander W. Winkler. 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 source code... | [
"junhyeokahn91@gmail.com"
] | junhyeokahn91@gmail.com |
2c954d35c8e26b8f8cad82a3f797b71017ca8c16 | 3ea35a9d2a32a11f2c6e0fa21860f73c042ca1b3 | /I курс/C++ за Еркан/2-ри триместър (зимен)/2-ро контролно/progr_10_08.cpp | 7c501c99a81227267e4b821b9ba5c5448d8beac2 | [] | no_license | angelzbg/Informatika | 35be4926c16fb1eb2fd8e9459318c5ea9f5b1fd8 | 6c9e16087a30253e1a6d5cd9e9346a7cdd4b3e17 | refs/heads/master | 2021-02-08T14:50:46.438583 | 2020-03-01T14:18:26 | 2020-03-01T14:18:26 | 244,162,465 | 7 | 2 | null | null | null | null | WINDOWS-1251 | C++ | false | false | 2,361 | cpp | /* Файл: progr_10_08.cpp
Упражнения по Програмиране (C++)
Примерно решение на задача 10.8
Подготвил: Кирил Иванов
Март 2017 година
*/
#include <iostream>
using namespace std;
#include <cstring>
const short broyProdukti = 6, daljinaNazvanie = 40, daljinaVid = 9;
const char vidove[][daljinaVid+1] =
... | [
"badblo0dbg@gmail.com"
] | badblo0dbg@gmail.com |
41f9e827a9b8ede1aa25c13230dec064dfb7a0a7 | 3825abd160a1f3a7b0515787ba8ae23104b6cea2 | /SoloLearn/char_array.cpp | b69e64007a5d1d8ec82cee142486c4eec922b4c9 | [] | no_license | weixuanhu/Learn_CPP_C | 84693f508c89f7b5c32ae43e4d9732cc6492f1da | d23600db7dbb8a9e66a15c50d3990f90703187fd | refs/heads/master | 2022-11-29T08:49:17.309010 | 2020-08-15T15:06:13 | 2020-08-15T15:06:13 | 218,492,973 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 287 | cpp | /* what is the output of this code ?
1. |\/|
2. |\/
3. |\/0
4. |\\/
*/
#include <iostream>
using namespace std;
int main(int argc, char **argv){
// key knowledge: The first \ is an escape character !
char arr[4] = {'|', '\\', '/'};
for (int i=0; i<4; i++) cout << arr[i];
} | [
"vincent.hu@asml.com"
] | vincent.hu@asml.com |
c5b799c4384acd2be07b0db7352d71831026f428 | a3d6556180e74af7b555f8d47d3fea55b94bcbda | /chrome/browser/ash/video_conference/video_conference_manager_ash_unittest.cc | ec9544311e843085f130e44fb09ecaf4dc40a583 | [
"BSD-3-Clause"
] | permissive | chromium/chromium | aaa9eda10115b50b0616d2f1aed5ef35d1d779d6 | a401d6cf4f7bf0e2d2e964c512ebb923c3d8832c | refs/heads/main | 2023-08-24T00:35:12.585945 | 2023-08-23T22:01:11 | 2023-08-23T22:01:11 | 120,360,765 | 17,408 | 7,102 | BSD-3-Clause | 2023-09-10T23:44:27 | 2018-02-05T20:55:32 | null | UTF-8 | C++ | false | false | 11,649 | cc | // Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/ash/video_conference/video_conference_manager_ash.h"
#include <memory>
#include <utility>
#include <vector>
#include "ash/system/video_conference/vid... | [
"chromium-scoped@luci-project-accounts.iam.gserviceaccount.com"
] | chromium-scoped@luci-project-accounts.iam.gserviceaccount.com |
8b831f466cf55bf9ce8682d580ef24e3568e7531 | 844969bd953d7300f02172c867725e27b518c08e | /SDK/BP_female_makeup_black_08_Desc_functions.cpp | 1f7ab8bb91f61f710bb1d21f3637b41ebf56c5cd | [] | no_license | zanzo420/SoT-Python-Offset-Finder | 70037c37991a2df53fa671e3c8ce12c45fbf75a5 | d881877da08b5c5beaaca140f0ab768223b75d4d | refs/heads/main | 2023-07-18T17:25:01.596284 | 2021-09-09T12:31:51 | 2021-09-09T12:31:51 | 380,604,174 | 0 | 0 | null | 2021-06-26T22:07:04 | 2021-06-26T22:07:03 | null | UTF-8 | C++ | false | false | 572 | cpp | // Name: SoT, Version: 2.2.1.1
#include "../pch.h"
/*!!DEFINE!!*/
/*!!HELPER_DEF!!*/
/*!!HELPER_INC!!*/
#ifdef _MSC_VER
#pragma pack(push, 0x01)
#endif
namespace CG
{
//---------------------------------------------------------------------------
// Functions
//----------------------------------------------------... | [
"51171051+DougTheDruid@users.noreply.github.com"
] | 51171051+DougTheDruid@users.noreply.github.com |
834dcf079e8914c0954b0f8b9c3d11bf092c521a | 08c620f870dd65e67127b66984e9939a9e4a4511 | /code/SD-card-test/SD-card-test/SD-card-test.ino | edb241871f9f0493ce3c783d1696d3d5d5b2e071 | [
"MIT"
] | permissive | micromouseonline/micromouse-timer | 7bea7285f03e789542c53a3075f4753d16b9f0cf | 4367fb3315c113e0c923930ee2dacf6234637102 | refs/heads/master | 2023-08-14T16:25:03.006319 | 2023-07-13T11:05:33 | 2023-07-13T11:05:33 | 230,442,259 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 12,381 | ino | /***
* Micromouse Timer
* Gate Controller
* (c) Peter Harrison 2020
* Libraries:
* https://bitbucket.org/fmalpartida/new-liquidcrystal/wiki/Home
* https://platformio.org/lib/show/136/LiquidCrystal
*
* https://github.com/NeiroNx/RTCLib
* https://platformio.org/lib/show/1197/RTCLib
*
*
*
*/
#include <Arduino... | [
"peter.harrison@helicron.net"
] | peter.harrison@helicron.net |
4928832c5215b4673b02b2ab73d9c20b28581061 | 53069b0a934369c74bf31f44b427c656bcbc8883 | /tests/testinotify.cpp | 095f16fd97c542674a5eba3df67e55c256067563 | [] | no_license | flavorzyb/file-center | 6074166b299fc4485990be8a69857bc196828724 | c98336188c63339c306e72abb695cd7be261abf5 | refs/heads/master | 2021-01-22T17:47:38.664567 | 2011-06-05T05:20:32 | 2011-06-05T05:20:32 | 32,124,427 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 814 | cpp | /*
* 测试Inotify类库的脚本
* 用于测试Inotify的脚本是否正确
*
* Created on: 2011-3-14
* Author: yanbin
* @version 1.0.0
*/
#include "../src/inotify.h"
/*
int main()
{
std::string path="/home/yanbin/log/";
uint32_t mask = IN_ALL_EVENTS;
try
{
Inotify myInotify;
myInotify.addWatch(path, mask);
InotifyEvent event... | [
"flavorzyb2008@gmail.com@243244fc-7944-26a7-2160-e82c24d89a7d"
] | flavorzyb2008@gmail.com@243244fc-7944-26a7-2160-e82c24d89a7d |
8699f3a2c9312477d085442a8df5477ccaf42e58 | 0be055efc3121219a5f8b4a7fcfc87d3cd4bec50 | /src/graphics.h | b0b5de53953b223d9a9048b20eafac48742dc091 | [] | no_license | m-chouhan/GraphicsLab | db6cf146b361f37616ed3e7f737fd61b7c40c5f3 | c81512523131ba70f77beb9260d7c99e231d7abf | refs/heads/master | 2021-05-28T17:13:54.358774 | 2015-02-22T11:40:04 | 2015-02-22T11:40:04 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 655 | h | //TODO: define Screen Size in graphics.h
/*
* Graphics Library for my projects :P
* Author: Mahendra Chouhan (14CS60R12)
* */
#ifndef __GRAPHICS__
#define __GRAPHICS__
#include <stdlib.h>
#include <time.h>
#include <math.h>
#include <vector>
//ScreenSize
#define WIDTH 1500
#define HEIGHT 1200
#include "Shape.h"... | [
"montyc008@gmail.com"
] | montyc008@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.