blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
4
201
content_id
stringlengths
40
40
detected_licenses
listlengths
0
85
license_type
stringclasses
2 values
repo_name
stringlengths
7
100
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
260 values
visit_date
timestamp[us]
revision_date
timestamp[us]
committer_date
timestamp[us]
github_id
int64
11.4k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
17 values
gha_event_created_at
timestamp[us]
gha_created_at
timestamp[us]
gha_language
stringclasses
80 values
src_encoding
stringclasses
28 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
8
9.86M
extension
stringclasses
52 values
content
stringlengths
8
9.86M
authors
listlengths
1
1
author
stringlengths
0
119
edbd8ded5808ea482e20ad4049efeb9c040258eb
0d0bb9bc41ab34f0c108bc2ac2ad33239613d9f3
/ThRend/settingsLoader.h
b7bac4852563ff9b657efd33ac4be3ad08b362a9
[]
no_license
jpaguerre/ThRend
bc000e3e00e7d72c294762a0ad3dd074fd48f390
eada2993bffa3ab9580f9dbcaed18db40630b72e
refs/heads/master
2023-07-08T09:54:55.122259
2023-07-04T20:12:59
2023-07-04T20:12:59
262,175,807
24
6
null
null
null
null
UTF-8
C++
false
false
3,091
h
#ifndef SETimporter #define SETimporter #include <string> #include <vector> #include <glm.hpp> #include <fstream> #include <sstream> #include <iostream> using namespace std; using namespace glm; typedef struct{ string sceneFile; string skyTempsFile; string colormapFile; vec3 cameraCenter; vec3 cameraDirection; ...
[ "63473051+jpaguerre@users.noreply.github.com" ]
63473051+jpaguerre@users.noreply.github.com
e7eadfd6a29eff590a781ba977036bfa6d07e7c7
0cb85cd0c88a9b9f0cca4472742c2bf9febef2d8
/CommonFiles/Licensing2/include/utility/AutoPointer.h
ea22be12e29681a2f90dadaac76a638d28383cf9
[]
no_license
seth1002/antivirus-1
9dfbadc68e16e51f141ac8b3bb283c1d25792572
3752a3b20e1a8390f0889f6192ee6b851e99e8a4
refs/heads/master
2020-07-15T00:30:19.131934
2016-07-21T13:59:11
2016-07-21T13:59:11
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,764
h
/* Generated by Together */ #ifndef AUTOPOINTER_H #define AUTOPOINTER_H namespace KasperskyLicensing { namespace Implementation { void Deallocate(void*); } // http://www.josuttis.com/libbook/auto_ptr.html template <class T> class AutoPointer { template <class U> struct AutoPointerRef { AutoPoin...
[ "idrez.mochamad@gmail.com" ]
idrez.mochamad@gmail.com
6f63e2a542a5607feb8fcf9046abf27cc9eab280
39a315a205bc2d818d2e3f289428c6b516351fdf
/RayCast/Runtime/Core/Core.h
394ebf68a1d578d97b15889059e142d5f38590b6
[]
no_license
ciccone1978/RayCast-Engine
540a47c236f160df1f314c7a0078be119722d665
588359c41a70d92c0bd364f3570930dce53369cb
refs/heads/master
2023-06-16T01:44:42.959256
2021-07-16T17:33:44
2021-07-16T17:33:44
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,211
h
#pragma once #include <iostream> #include <memory> #ifdef _WIN32 #define ENGINE_WINDOWS_PLATFORM #elif defined(__APPLE__) || defined(__MACH__) #error "Apple Macintosh is not supported!" #elif defined(__IOS__) #error "IOS simulation not supported" #elif defined(__ANDROID__) #define FATON_ANDROID_PLATFORM #error "A...
[ "semyondyachenko@gmail.com" ]
semyondyachenko@gmail.com
a16e1920bb72b2826eb82bc8b27658113aee512e
a7f96d328f551a77ad9020b5f3b6eaa8f7af2f5c
/SCC_Snippet.cpp
e367a21c10c738b7a3b7fb324cbf95ca284289ba
[]
no_license
devarshi09/CP_Algorithms
74fdf29f07f9cbc27c0c88dbe0c7a00e43e6f162
91103d99b3577aec0acce419e7a2deb9c19b4a07
refs/heads/master
2021-08-07T18:00:19.038142
2020-05-18T11:45:11
2020-05-18T11:45:11
179,672,916
0
0
null
null
null
null
UTF-8
C++
false
false
1,367
cpp
#include<bits/stdc++.h> using namespace std; const int maxn = 1e5+1; vector< vector<int> > g(maxn),tg(maxn); vector<int> vis(maxn,false); stack<int> stk; vector<int> component_collection(maxn); int component = 0; void dfs(int cur){ vis[cur] = true; for(auto it:g[cur]){ if(vis[it]) continue; ...
[ "noreply@github.com" ]
noreply@github.com
8e1efe64802c33301855323fca81eb8430ddde2a
c49cb882e12932bee40456a172bf4da6221b29f6
/codeforces/116a.cpp
60bcbaf7d8de2bbf27c7d6e688db1b05050c4e45
[]
no_license
alokkumar0723/codeforces
00ca794b22379ff69b1d4022a999bcada36fb060
582aa0eacb7a9b9d2f6e3cdda348f4d24582cf32
refs/heads/main
2023-06-20T10:24:40.303269
2021-07-20T11:16:15
2021-07-20T11:16:15
387,690,911
1
0
null
null
null
null
UTF-8
C++
false
false
226
cpp
#include<iostream> using namespace std; int main() { int i,n,a,b,p=0,max=0; cin>>n; for(i=0;i<n;i++) { cin>>a>>b; p=b-a+p; if(max<p) max=p; } cout<<max; return 0; }
[ "alokkumar0723@gmail.com" ]
alokkumar0723@gmail.com
4294150cea4ff15858aedfb0869e6b11bc8cb5f4
f706f775845b3c838a33b8277722c9a5a51543b4
/source/runtime/resource/Texture/TextureLoader.cpp
bebcbc9cb35701b7ccc0894b10dd4787a0cf9bdc
[]
no_license
RuggeroVisintin/spark-engine-desktop
87b218fa76323fffa875d62ff33830f2cc8f349d
4738f705f66c2ff7323cb628683e98f65e9ebd6f
refs/heads/master
2023-03-21T01:19:48.534866
2021-01-13T07:41:06
2021-01-13T07:41:06
315,026,669
0
0
null
null
null
null
UTF-8
C++
false
false
612
cpp
#include "TextureLoader.h" #include <FileSystem\File.h> #include <Parsers\bitmap\BmpParser.h> #include <PlatformUtils.h> namespace SE { namespace resource { //Texture TextureLoader::loadResource(SE::platform::backend::GLDevice* gfx, const std::string& filePath) { // SPARK_NOT_IMPLEMENTED() // //Texture result;...
[ "ruggerovisintin@gmail.com" ]
ruggerovisintin@gmail.com
4b1395fa6f69270ea3f326c2e18ec608c14c34ea
79a831fa2fae0c8ec1f856d8e861fcda9054c3e7
/Minimum number of edits-(DP).cpp
57a4100230df9acef78efb4f2606de25198aadd1
[]
no_license
warp-charge/Dynamic-Programming
e39f7d19379e47fc42bfdd5afd62380c2d9e2691
91e410970fab12a9c325ccfe6b285e9eb937a03f
refs/heads/master
2020-05-26T03:25:12.338555
2019-06-15T13:23:05
2019-06-15T13:23:05
188,090,986
0
0
null
null
null
null
UTF-8
C++
false
false
1,148
cpp
#include <bits/stdc++.h> using namespace std; #define ll long long int //given two strings s1,s2 and below operations that can be performed on //s1. Find minimum number of edits(operations) required to convert 's1' into 's2' //a>INSERT b>REMOVE c>REPLACE //DP Approach //Bottom up manner //Time Complexity: O...
[ "noreply@github.com" ]
noreply@github.com
9225d7e71d8151fda4e5a435bf644c287ac1c258
2305cf66b77bf02b9dfdfa9a622622aecb4d226e
/findsetbits.cpp
0fbd2165c4d16844dbf8db1167a8e038f3aa64e1
[]
no_license
Sachin5411/Algo-Practice-C-
f59d8775e8b23f55dcec65b770576eec4fbfd0ed
7c20ef865d63d278477657ab476c578bf8db1156
refs/heads/master
2022-06-13T20:54:35.449427
2020-05-07T03:28:59
2020-05-07T03:28:59
254,549,246
1
0
null
null
null
null
UTF-8
C++
false
false
363
cpp
#include<iostream> using namespace std; int countbits(int n){ int counter=0; while(n>0){ int i=n&1; if(i==1){ counter++; } n=n>>1; } return counter; } //Second method int countbitsfast(int n){ int ans=0; while(n>0){ n=n&(n-1); ans++; } return ans; } int main(){ int n; cin>>n; cout<<countbits(n)<<e...
[ "sharmasachin1309@gmail.com" ]
sharmasachin1309@gmail.com
925264b9fb3299450042705c38f8319c842f44c0
d47295e385e489bfaec356c625ef65827132a49a
/Client/src/Common/gui/NinjamTrackView.cpp
bfa0cf013479fdd6d1ff74735ed39de73f884d09
[]
no_license
gitter-badger/JamTaba
97e15e703d71c82db83acde99a5099f735997ce6
0456a9e00e5205deb67d8e92fd90a16beeeb2095
refs/heads/master
2020-12-07T06:26:18.861059
2015-12-29T02:40:46
2015-12-29T02:40:46
48,736,333
0
0
null
2015-12-29T08:12:19
2015-12-29T08:12:19
null
UTF-8
C++
false
false
6,440
cpp
#include "NinjamTrackView.h" #include "ui_TrackGroupView.h" #include "BaseTrackView.h" #include "ui_BaseTrackView.h" #include <QLineEdit> #include <QLabel> #include <QDebug> #include <QStyle> #include "MainController.h" #include "Utils.h" // +++++++++++++++++++++++++ NinjamTrackView::NinjamTrackView(Controller::MainCo...
[ "elieserdejesus@gmail.com" ]
elieserdejesus@gmail.com
ca7250e0457b3232efe0d29e56e8dc786d69b217
fc5c129e41c34fd73a313d99dc10131a336d57a7
/Drawing/Queue.hh
fc7f8c419619de299c811df5665d807bc2f49bbd
[ "WTFPL" ]
permissive
Lilith2/HelvetaCS
2bdfe026b15b390b13494e892ffb0a9492c3fcb2
2c3627c3e179623f4678f166850cc20be8e8b335
refs/heads/main
2023-07-15T17:34:30.809458
2021-08-25T07:55:32
2021-08-25T07:55:32
null
0
0
null
null
null
null
UTF-8
C++
false
false
449
hh
#pragma once #include "Geometry.hh" #include <vector> #include <memory> #include <functional> #include <shared_mutex> struct Queue_t { Queue_t() = default; Queue_t(std::shared_mutex *mutPtr); inline ~Queue_t(){}; void Push(std::shared_ptr<Base_t> &&pRenderable); virtual void Run(const std::function<void(Queue_...
[ "cristei.g772@gmail.com" ]
cristei.g772@gmail.com
5fb0f5ecafaa9f62bb4fecb96affd10c341acc52
e108187f4a21009ad5c9749aa0100bb8daf1e817
/nn/Neuron.h
da9ddf05ed9990d8517827dd2a38391c415ab09b
[]
no_license
yzhang1991/coin-recognition
18bf81fc7277b05372dd6ff98b268f191ff7efa6
5791258c2ec164b843e2f670d474bd096849f2f4
refs/heads/master
2021-01-10T00:58:32.656340
2015-12-10T05:39:43
2015-12-10T05:39:43
47,646,950
1
2
null
null
null
null
UTF-8
C++
false
false
1,120
h
#ifndef __NEURON_H__ #define __NEURON_H__ #include <vector> #include <string> using namespace std; struct Neuron { int inputCount; std::vector<double> weights; std::vector<double> lastWeightUpdate; double activation; double error; std::vector<double> dw; double db; void initialize(int input...
[ "chenshen@chenshens-MacBook-Pro.local" ]
chenshen@chenshens-MacBook-Pro.local
a656e6012ab83a5463b1453caf2401c6883911e8
32a608f3dd766b2801a04af9468e0287eb53d31d
/draw2d_gdi/draw2d_gdi_brush.cpp
472c6f02073ea0d7ec94ecad6898f2485c85221b
[]
no_license
amanp7272/platform-windows
8bd1acfc101976bea408612caa00762708edd531
a13750577a987b3793f8fe958d15059c4c53e2b8
refs/heads/master
2023-01-08T06:49:48.385249
2020-11-01T15:07:20
2020-11-01T15:07:20
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,037
cpp
#include "framework.h" namespace draw2d_gdi { brush::brush(::layered * pobjectContext) : ::draw2d::brush(pobject) { m_bProcess = false; } brush::~brush() { } brush::operator HBRUSH() const { return (HBRUSH)(this == nullptr ? nullptr : get_os_data()); } boo...
[ "camilo@ca2.email" ]
camilo@ca2.email
8083a972f5407a498c82bc59603b6b9520cb3c7a
f0df97cb4b5c502f33f5c7cae910cb2065795ef0
/src/preferences/notifications/NotificationsView.cpp
bcde7ce4e48d1e68df1997dac8d9762a85a2d605
[]
no_license
mmadia/haiku-1
fc14dcfe6b3fb6440f0898a493962485f2417305
b02ef3fac8ed7a4f56749ae577c3ebe37684e8ca
refs/heads/master
2021-01-21T01:38:52.637798
2010-07-11T22:25:56
2010-07-13T20:37:44
null
0
0
null
null
null
null
UTF-8
C++
false
false
6,878
cpp
/* * Copyright 2010, Haiku, Inc. All Rights Reserved. * Copyright 2009, Pier Luigi Fiorini. * Distributed under the terms of the MIT License. * * Authors: * Pier Luigi Fiorini, pierluigi.fiorini@gmail.com */ #include <Alert.h> #include <Directory.h> #include <FindDirectory.h> #include <GroupLayout.h> #include ...
[ "stippi@a95241bf-73f2-0310-859d-f6bbb57e9c96" ]
stippi@a95241bf-73f2-0310-859d-f6bbb57e9c96
d9aeb754f7eadfed95920e814fee722ed961c399
9d85c286a2fdadb082bd4284137e16442dd3ed8b
/project09/main-09.cpp
8ab6cc1bbb8196f82760bd945b15a32c45cf7fde
[]
no_license
wadegbow/CSE232-Project-Files
811cf551e4a59a428fd3a9fc652d5add9c65fa70
cfd2579062f2ff1b5682c105623f21429d8553ad
refs/heads/master
2020-04-10T19:07:03.174173
2016-09-12T15:39:06
2016-09-12T15:39:06
68,022,704
0
0
null
null
null
null
UTF-8
C++
false
false
430
cpp
#include<iostream> using std::cout; using std::endl; #include <initializer_list> using std::initializer_list; #include <stdexcept> using std::range_error; #include "class-09.h" int main (){ SparseVector vec(1000,1337,{ {873,3}, {999,-44385039845}, {2,9}, {333,50}, }); SparseVector temp(1); temp = vec ...
[ "wadegbow@gmail.com" ]
wadegbow@gmail.com
7f8f04fc2a14e24fe10d8d28bf808c5953af8823
b5a9d42f7ea5e26cd82b3be2b26c324d5da79ba1
/tensorflow/core/kernels/softplus_op.cc
ba61835f2fd21ce09ddcac09fa9f7fa0ffa0fa72
[ "Apache-2.0" ]
permissive
uve/tensorflow
e48cb29f39ed24ee27e81afd1687960682e1fbef
e08079463bf43e5963acc41da1f57e95603f8080
refs/heads/master
2020-11-29T11:30:40.391232
2020-01-11T13:43:10
2020-01-11T13:43:10
230,088,347
0
0
Apache-2.0
2019-12-25T10:49:15
2019-12-25T10:49:14
null
UTF-8
C++
false
false
5,495
cc
/* Copyright 2015 The TensorFlow Authors. 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 required by applicable ...
[ "v-grniki@microsoft.com" ]
v-grniki@microsoft.com
4947d5963d9315ac1f227df0e6fa3e2fd609d181
6c9ddbf00c8e032747faf04ed31ea77049eaa5ce
/third_party/DuiLib/Core/UIBase.h
4bbb1b27726e27e5edd47dd5935ce488f65cb684
[]
no_license
pikazh/mc_launcher
cac9234566385f0fab0cbbe4292ffb5edfd6aa6d
6edca1a5e2e8f37e15601fbb9026e465fb203795
refs/heads/master
2020-04-21T06:16:28.269133
2019-02-06T05:58:44
2019-02-06T05:58:44
169,361,612
2
4
null
null
null
null
WINDOWS-1252
C++
false
false
3,355
h
#ifndef __UIBASE_H__ #define __UIBASE_H__ #pragma once namespace DuiLib { ///////////////////////////////////////////////////////////////////////////////////// // #define UI_WNDSTYLE_CONTAINER (0) #define UI_WNDSTYLE_FRAME (WS_VISIBLE | WS_OVERLAPPEDWINDOW) #define UI_WNDSTYLE_CHILD (WS_VISIBLE | WS_CHIL...
[ "z_yixiang@foxmail.com" ]
z_yixiang@foxmail.com
f9a484082d98f24e37ee88d8dd38024a2ae7afd3
615b072bb289766ed4a91d113cfaed0d15689900
/UI.h
1465b770d7dc1bf2cf35b8737bec714d3861215d
[]
no_license
maciejkawka/Advanced-Programming-Coursework-2
36005838b4a213eed631769274d0d815cbb2dcc5
e598dd2e8b62f01047af332fcaf48e8c17f01eb5
refs/heads/master
2023-01-08T04:18:16.576982
2020-11-08T14:30:53
2020-11-08T14:30:53
null
0
0
null
null
null
null
UTF-8
C++
false
false
344
h
#pragma once #include<iostream> #include"MazeGame.h" class UI { MazeGame* mainMaze; inline int InputInt(); public: UI(); ~UI(); void SetDimentions(); void SetExitsNumber(); void GenerateMaze(); void Reset(); void Load(); void Save(); void Welcome(); void Print(); void Analyse(); void NextRound(); ...
[ "46383143+maciejkawka@users.noreply.github.com" ]
46383143+maciejkawka@users.noreply.github.com
bfdac1b581505a5129a8bb6c38af4604766b498a
641e1f44180bab7b74bb390d4adc0b4ab10dd145
/src/qt/walletmodeltransaction.h
6dec520caac190c5a80190b203396fd7b89841d2
[ "MIT" ]
permissive
mirzaei-ce/linux-ausbit
7ab641d607f15ed517318568ec1ba8a608e1adad
6d4f8ba69c46ce5c03c79fbaecaec69c6a54acd5
refs/heads/master
2021-08-19T08:48:34.207100
2017-11-25T15:47:45
2017-11-25T15:47:45
112,015,359
0
0
null
null
null
null
UTF-8
C++
false
false
1,223
h
// Copyright (c) 2011-2013 The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef AUSBIT_QT_WALLETMODELTRANSACTION_H #define AUSBIT_QT_WALLETMODELTRANSACTION_H #include "walletmodel.h" #include <QO...
[ "mirzaei@ce.sharif.edu" ]
mirzaei@ce.sharif.edu
93a88a2b2863738803557d30386b0b64ad80a0d6
1210a4094cc336a3c018696db34673fb5f72b0fe
/src/lib/operators/table_scan.cpp
bd59c40415e6f3cd8439a7ab4cfb7dfb8831ad6b
[ "MIT" ]
permissive
querenker/DYOD_WS1819
c4d30539359db95046f456e3e2c02eb7af307c87
d686103ded6d222fc48e1090392312adcb82b1b6
refs/heads/master
2020-04-02T09:57:32.357761
2018-11-27T21:16:24
2018-11-27T21:16:24
154,318,382
0
0
MIT
2018-11-27T21:16:25
2018-10-23T11:44:25
C++
UTF-8
C++
false
false
990
cpp
#include "table_scan.hpp" #include <memory> #include <string> #include "../resolve_type.hpp" #include "../storage/table.hpp" namespace opossum { TableScan::TableScan(const std::shared_ptr<const AbstractOperator> in, ColumnID column_id, const ScanType scan_type, const AllTypeVariant search_value...
[ "noreply@github.com" ]
noreply@github.com
6b2e34dacf1cc4b74ea903fd7aa184ab22f501d0
85d483cc05b71314acf449a3004f44d84e0aadb2
/Source/Michelangelo/Unreal/Scene/URenderItem.h
9237f4ce21a2ceb513b79870f350cc0ac325e3d2
[]
no_license
JPMMaia/michelangelo-frontend
d5c3d4fd34f7c99887e40807bb8c622ba8409602
4141d249bc14acda4c5975582bd4078d7767586c
refs/heads/master
2021-01-20T11:09:33.857014
2017-07-18T16:32:18
2017-07-18T16:32:18
72,037,322
0
0
null
2017-04-21T17:15:46
2016-10-26T19:28:07
C++
UTF-8
C++
false
false
756
h
#pragma once #include <Object.h> #include "Unreal/Mesh/AMeshActor.h" #include "URenderItem.generated.h" namespace MichelangeloAPI { class SceneGeometry; } UCLASS() class MICHELANGELO_API URenderItem : public UObject { GENERATED_BODY() public: static URenderItem* Create(const MichelangeloAPI::SceneGeometry& scen...
[ "jpmmaia@gmail.com" ]
jpmmaia@gmail.com
bda57cdd5a99321eb662384b433e2062ab5a872c
cc738f771e70e938e3f9d86396b36c59b9974ef0
/temperature.ino
6e521c896f4fb650d3ca70d0f2cffdbba27c93a7
[]
no_license
nzare/HealthMonitoringSuit
493ee7484d0d72df0b3d788308fa856ac0c2b4f1
663386ae4cf63da0121ea2d84cdacc3288a7fda8
refs/heads/master
2020-04-23T09:55:22.150998
2019-02-17T05:47:47
2019-02-17T05:47:47
171,086,279
0
0
null
null
null
null
UTF-8
C++
false
false
567
ino
/* This program Print temperature on terminal Hardware Connections (Breakoutboard to Arduino): Vin - 5V (3.3V is allowed) GND - GND SDA - A4 (or SDA) SCL - A5 (or SCL) */ #include <Wire.h> #include "Protocentral_MAX30205.h" MAX30205 tempSensor; void setup() { // put your setup code here, to run once: Wire.beg...
[ "40881094+nzare@users.noreply.github.com" ]
40881094+nzare@users.noreply.github.com
bea0a5b84a1f7df4760be2507a964d229a8d3f8d
9d57c253f8a503170a0e9ac5d2a48b646048fb71
/A_Diverse_Strings.cpp
d94b302ea4918a3fcc4e46b32531b71c0fef2c5a
[]
no_license
tarundecipher/CompetitiveProgramming
4f2dfd3f77c2a1de0b56964650d5cad05e4258ab
466bdc6333ca2f14b3a8aef14063a1278523bb9c
refs/heads/master
2023-04-04T07:50:49.626690
2021-04-18T08:13:16
2021-04-18T08:13:16
359,052,986
0
0
null
null
null
null
UTF-8
C++
false
false
912
cpp
#include <bits/stdc++.h> #define ll long long int using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); int t; cin >> t; while (t--) { string s; cin >> s; sort(s.begin(), s.end()); int n = s.length(); bool cond = false; ...
[ "tarunyadav83333@gmail.com" ]
tarunyadav83333@gmail.com
6eb20390a9bf287aea59a859be37f46e7d58312a
9e889555277ac34cd20532b40c10369d132373f3
/Codechef/ZCO13001.cpp
abbe535134c3fe6e676424962b2b2aed8e6f82c4
[]
no_license
devanshu0987/Competitive-Programming
a756a093b9ec5fe684e7ceacaa37aba6ec32cd3b
000853cb4fd054c3d1328df11c6068d5e7d54aa9
refs/heads/master
2021-09-24T07:17:14.042005
2018-10-02T11:48:00
2018-10-02T12:54:40
60,449,318
0
5
null
2018-10-05T05:02:08
2016-06-05T07:55:41
C++
UTF-8
C++
false
false
564
cpp
#include<iostream> #include<algorithm> using namespace std; long long int absl(long long int x) { return (x>0)?x:(x*-1); } int cmp(int P,int Q) { return P>Q; } int main() { int N; cin>>N; int* A = new int[N]; int* SUM = new int[N]; for(int i=0;i<N;i++) cin>>A[i]; //sum if(N==2) { cout<<absl(A[1]-A[0])<<en...
[ "devanshu0987@gmail.com" ]
devanshu0987@gmail.com
c36cf50472c74f09e8dcce45c8364f758357c21f
6c6470ec2f469db297d12752de5a2cb8b190b5e8
/include/pascal-s/lib/string.h
0d12834bcedf17e6052115f3afb27c3c7088f755
[]
no_license
Myriad-Dreamin/llvm-pascal-s
d505c73d3136ff4daf857c56445c08850850a7be
fcb25c0b4515220b811a8b261cae441039944917
refs/heads/master
2022-11-15T15:08:41.139358
2020-07-06T03:07:47
2020-07-06T03:07:47
277,430,857
1
0
null
null
null
null
UTF-8
C++
false
false
263
h
// // Created by kamiyoru on 2020/6/18. // #ifndef PASCAL_S_LIB_STRING_H #define PASCAL_S_LIB_STRING_H namespace pascal_s { char *copy_string(const char *content, int length); char *copy_string(const char *content); } #endif //PASCAL_S_LIB_STRING_H
[ "camiyoru@gmail.com" ]
camiyoru@gmail.com
c0bc675aa73e7d369520a90261a6d45d141aca56
15cdb7d5d791d60bff1238c38026e95d41a27eb6
/Pruebas/main.cpp
3dc5e61b0c14f60d8ebd051a8de77859cf1792fd
[]
no_license
Jodyannre/Laboratorio_EDD_201115018
3b973f2758015e399838bddc8a4f63737bbcc5e5
c45a0792e04395e8d6f20fdbe68ffd21135533f0
refs/heads/master
2022-12-13T11:31:59.037272
2020-09-04T01:27:47
2020-09-04T01:27:47
286,268,239
0
0
null
null
null
null
UTF-8
C++
false
false
658
cpp
#include "listaGenerica.h" #include "nodoGenerico.h" #include "nodoHijo.h" #include <iostream> using namespace std; int main(){ nodoHijo* n1 = new nodoHijo(1); nodoHijo* n2 = new nodoHijo(2); nodoHijo* n3 = new nodoHijo(3); nodoHijo* n4 = new nodoHijo(4); nodoHijo* n5 = new nodoHijo(5); listaG...
[ "Jers_033@hotmail.com" ]
Jers_033@hotmail.com
48358a1a8952c7f1f66c0781796b101a554104c1
4979915833a11a0306b66a25a91fadd009e7d863
/src/connectivity/wlan/testing/wlantap-driver/utils.cc
71433e67ae35eb88c946e8bb5e06d5da1248e68b
[ "BSD-2-Clause" ]
permissive
dreamboy9/fuchsia
1f39918fb8fe71d785b43b90e0b3128d440bd33f
4ec0c406a28f193fe6e7376ee7696cca0532d4ba
refs/heads/master
2023-05-08T02:11:06.045588
2021-06-03T01:59:17
2021-06-03T01:59:17
373,352,924
0
0
NOASSERTION
2021-06-03T01:59:18
2021-06-03T01:58:57
null
UTF-8
C++
false
false
7,332
cc
// Copyright 2018 The Fuchsia Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "utils.h" #include <fuchsia/hardware/ethernet/c/banjo.h> #include <fuchsia/hardware/wlan/info/c/banjo.h> #include <fuchsia/hardware/wlan/mac/c/ba...
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
66ef0e61fd96f3539a1e09307917507aab36c4ad
404b58190bc7d0264d598c5b7809db7dac70447a
/src/Collision.cpp
8a82ef09dbb2ae453cc24f4289390eb416a09ee2
[]
no_license
justlookingforcode/MeshSimilarityVisualizer
c914a240e9882bc0b93e5fe2538e7b18fa99cfd0
74f71377beecc7d7cf071a505426f49285a43835
refs/heads/master
2020-03-30T13:37:30.774472
2018-11-07T13:42:15
2018-11-07T13:42:15
151,280,522
0
0
null
null
null
null
UTF-8
C++
false
false
19,064
cpp
/* Start Header ------------------------------------------------------ Copyright (C) 2014 DigiPen Institute of Technology. Reproduction or disclosure of this file or its contents without the prior written consent of DigiPen Institute of Technology is prohibited. File Name: Collision.cpp Purpose: This is wh...
[ "muhammad.shahir.bin.mohamed.suhaimi@continental-corporation.com" ]
muhammad.shahir.bin.mohamed.suhaimi@continental-corporation.com
8d4659a7048908544fc4162ed83c381f65148f40
87c4fbb55e78981c19923753948303d08b6236ba
/WS02/at_home/src/Kingdom.cpp
fe5e011e1828ec64bff33e3de15f1982e38aa574
[]
no_license
jamesgiroux52/OOP244-Workshops
d8ffcfc82c355b004a9c3846387e286f943e18bd
dc9aff6625aca27528a1a9e607800293bcf13587
refs/heads/master
2022-12-09T10:51:43.646072
2019-08-02T19:27:05
2019-08-02T19:27:05
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,321
cpp
/* ============================================================================ Name : kingdom.cpp Author : James Giroux - jgiroux1@myseneca.ca Student # : 129198164 Section : SEE Date : May 19, 2019 ============================================================================ */ /* ==...
[ "jamesmac@192.168.2.11" ]
jamesmac@192.168.2.11
3ad2571fc56777291bfe3c1e78b423f7df5bd860
789f0be38ab96a1f1f6c2f88612f9d72e5bae41d
/src/libtriton/bindings/python/objects/pyMemoryAccess.cpp
5d028ae0bcca26a0fa1ce9dfbde805673d4e26f0
[ "BSD-2-Clause" ]
permissive
KnoooW/Triton
c08710ce4d29179fdf994964e80cec51b41db4c8
3f553314dc5280cef17f0c8bc863764046e8b363
refs/heads/master
2021-04-29T09:43:19.754825
2016-12-28T18:40:12
2016-12-28T18:40:12
77,657,963
1
0
null
2016-12-30T03:37:02
2016-12-30T03:37:01
null
UTF-8
C++
false
false
18,421
cpp
//! \file /* ** Copyright (C) - Triton ** ** This program is under the terms of the BSD License. */ #ifdef TRITON_PYTHON_BINDINGS #include <exceptions.hpp> #include <memoryAccess.hpp> #include <pythonObjects.hpp> #include <pythonUtils.hpp> #include <pythonXFunctions.hpp> /*! \page py_MemoryAccess_page MemoryAcce...
[ "jonathan.salwan@gmail.com" ]
jonathan.salwan@gmail.com
402850ecca7a34c7e1cd9b27250920a1c45c33a1
29b81bdc013d76b057a2ba12e912d6d4c5b033ef
/boost/include/boost/unordered/detail/extract_key.hpp
eebaa144b2e4b1bbf5bffeb06e27c59d2f65c5b5
[]
no_license
GSIL-Monitor/third_dependences
864d2ad73955ffe0ce4912966a4f0d1c60ebd960
888ebf538db072a92d444a9e5aaa5e18b0f11083
refs/heads/master
2020-04-17T07:32:49.546337
2019-01-18T08:47:28
2019-01-18T08:47:28
null
0
0
null
null
null
null
UTF-8
C++
false
false
129
hpp
version https://git-lfs.github.com/spec/v1 oid sha256:4c082cc19fa048e9477be2ab68a984d15a3db9c74adf321423442ca7dac2738e size 6348
[ "you@example.com" ]
you@example.com
5c5fbe3316c0df3857cc324ccd8e6cd95bcc60ed
18fa1c3459c607891d7cdaaa413e20b5eca07638
/CppTest/TestString/main.cpp
ab4e009e740915a1e1dfad33b30c0e0c3f3e6b64
[]
no_license
lkllk/CPP
fb2974e832c1796ddf9340cef0148bdbe8bb217d
3c442ec7bf647d2bf6c67a6c1a0ce9893878b061
refs/heads/master
2022-01-23T05:28:20.491699
2018-05-17T05:36:09
2018-05-17T05:36:09
null
0
0
null
null
null
null
GB18030
C++
false
false
1,856
cpp
#include "string_utils.h" #include <string> using namespace std; int main(int agrc,char* argv[]) { string aaa = "abc"; string bbb = "1"; bool result = IsMatchPrefix(aaa,bbb); result = IsContainsSubStr(aaa,bbb); vector<string> aVec; StringSplit("123&","&",aVec,false); return 0; } /* class Person { public...
[ "nzbbody@163.com" ]
nzbbody@163.com
43c98f29013d86141c644d063916ab5666e8ca32
b27a3de8fa0372e6ed8a1c0e6e14fc3c58879a2f
/TopK/DataDefinition.h
757f6e2fbc08b78e86903d4f348cbfdb6928c359
[]
no_license
huangfeidian/TopK-orthogonal-range-search-
b14cd0e179125d4d2d56b33e447b0e1741c805f0
10d2f53e7a29a5a6ee805bc8d314d151693ccbc4
refs/heads/master
2021-01-23T20:13:20.696117
2015-09-13T08:19:44
2015-09-13T08:19:44
42,131,660
0
0
null
null
null
null
UTF-8
C++
false
false
1,660
h
#ifndef __H_DATADEFINITION_H__ #define __H_DATADEFINITION_H__ template <typename T1> class Position { public: T1 x; T1 y; Position(T1 in_x, T1 in_y) :x(in_x), y(in_y) { } bool operator==(const Position<T1>& a) { return x == a.x&&y == a.y; } Position() { } }; template <typename T> bool operator==(const...
[ "huanghuiliang@live.cn" ]
huanghuiliang@live.cn
8cd4cf60e2b9a7f011c675b97aac3439273a2c35
cb142e98b043e7088f0fe009f5159928877acf1b
/Tricycle/A9_Pid_2_ok/BBK5_Car_Run.ino
2355d128e79f9b03702bab1c461a9d6094287b43
[]
no_license
wetnt/Arduino_public
ef30502b4a30e099a09e2617fd58fd3a9801cf13
4cc331e2f43dda0df8f78d9cfe924da130ca5df3
refs/heads/master
2021-01-23T09:38:43.302783
2019-09-12T00:29:43
2019-09-12T00:29:43
33,909,041
2
2
null
null
null
null
UTF-8
C++
false
false
1,937
ino
//=================================================================== Wheel wr, wl; int wvr = 0, wvl = 0; int loopMS = 50;//50ms //=================================================================== void Car_Init() { //小车初始化 //--------------------------------------------------------- lg(F("Car_Init()...")); wr.in...
[ "jinping.xu@woqu.com" ]
jinping.xu@woqu.com
3d6e90c4c7309d7d372b29b7470382639f6d8787
df90ed23a49dba79f61e5a28366424f0ecec60de
/src/configuration/csv/write.cpp
78ed5428772e950058bfb5f9fe204ac4c0a60c65
[ "BSD-2-Clause" ]
permissive
Damdoshi/LibLapin
306e8ae8be70be9e4de93db60913c4f092a714a7
41491d3d3926b8e42e3aec8d1621340501841aae
refs/heads/master
2023-09-03T10:11:06.743172
2023-08-25T08:03:33
2023-08-25T08:03:33
64,509,332
39
12
NOASSERTION
2021-02-03T17:18:22
2016-07-29T20:43:25
C++
UTF-8
C++
false
false
810
cpp
// Jason Brillante "Damdoshi" // Hanged Bunny Studio 2014-2018 // // Lapin library #include "lapin_private.h" char *_bunny_write_csv(const t_bunny_configuration *config) { std::stringstream ss; SmallConf &conf = *(SmallConf*)config; size_t i, j; char *ret; for (j = 0; j < conf.Size(); ++j) { ...
[ "jbrillante@anevia.com" ]
jbrillante@anevia.com
327783ae9a1586746170af6ff2f54eaa25edf075
c37fcc7c5314de1f497011e3f0c36f1bb31ad413
/graphchi/toolkits/collaborative_filtering/rating2.cpp
0320d5e284ff0ec890aee89659a03a33284a600b
[]
no_license
lewisren/Genie
99234fcb4d6c2b50ab31d7442b3aabc50f004d2c
f0ae52c8328a50c38b643b342a74aeadc53ef8df
refs/heads/master
2021-01-18T18:12:28.730960
2014-07-31T21:15:22
2014-07-31T21:15:22
10,602,502
0
1
null
null
null
null
UTF-8
C++
false
false
12,507
cpp
/** * @file * @author Danny Bickson, CMU * @version 1.0 * * @section LICENSE * * Copyright [2012] [Carnegie Mellon University] * * 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 * ...
[ "lewisren@gmail.com" ]
lewisren@gmail.com
ae5d74c1f8ff3788bee6ad829b65604ed063cf33
5cb1506f81324c8637aeb33ed731163b0de8b124
/Promocion/Promocion.cpp
6e97f2caffaf4c5d1007ecbe9607106471639ba0
[]
no_license
MauroCicerchia/Algoritmos
e4762bad12152347a0d62e13b5ca50bcb0121e8a
6dceac63ca3ccc5c4a59f55753a4e700f5916e01
refs/heads/master
2021-01-19T22:56:55.490887
2017-10-13T19:42:58
2017-10-13T19:42:58
88,897,936
0
0
null
null
null
null
UTF-8
C++
false
false
1,077
cpp
#include <iostream> #include <string.h> using namespace std; bool promociona(int [], string); int main() { int notas[4]; string nombre; cout << "Ingrese el nombre del alumno: "; getline(cin, nombre); cout << "Ingrese nota del primer parcial: "; cin >> notas[0]; cout << "Ingrese nota del primer recuperato...
[ "maurocicerchia98@gmail.com" ]
maurocicerchia98@gmail.com
86faac6eff414ce6d7214aad829a2f2b1dcc1a76
f32426a2959435dcd834c46faf99983d47eb752a
/3.qmlDataModelView_sqlWithRefreshAndRoles/dbinterface.hpp
09654ffb729a62e784e537eeb65037d50406d8cb
[]
no_license
MohammadMazaheri/MySnipCodes
1879134a75eb4b1584306b18d7caeb83036e0386
b4f15d07d2e7cbc1f7feba8a286ea17a044d0aaa
refs/heads/main
2023-09-01T11:52:28.112423
2023-08-27T08:39:09
2023-08-27T08:39:09
326,453,951
0
0
null
null
null
null
UTF-8
C++
false
false
2,885
hpp
#ifndef DBINTERFACE_H #define DBINTERFACE_H #include <QQmlApplicationEngine> #include <QQmlContext> #include <QDebug> #include "dbconnection.hpp" class DbInterface: public QObject { Q_OBJECT Q_PROPERTY(SqlQueryModel* model READ model WRITE setModel NOTIFY modelChanged) public: explicit Db...
[ "noreply@github.com" ]
noreply@github.com
12fa42308e3d1c5cff9ff0c399933eb52e736bae
914156e9ff65e2449ee75dd0216ef2e78c91e56c
/RAD COMs/CommonBaseClasses/BaseFacCfgWrap.cpp
934af01d3a603952d90fe87a6e9b625ff3b4c107
[ "BSD-2-Clause" ]
permissive
radtek/Radiation-Review
0db454921eab3b9c4132a4169c799d619f9c0919
37bca0eabe75429a794b0d81eba552afed68d2ff
refs/heads/master
2020-06-23T01:12:39.303595
2019-01-31T22:23:33
2019-01-31T22:23:33
null
0
0
null
null
null
null
UTF-8
C++
false
false
6,553
cpp
/* This work was supported by the United States Member State Support Program to IAEA Safeguards; the U.S. Department of Energy, Office of Nonproliferation and National Security, International Safeguards Division; and the U.S. Department of Energy, Office of Safeguards and Security. LA-CC-14-040. This software was expo...
[ "joseph.f.longo@gmail.com" ]
joseph.f.longo@gmail.com
036f35abcaacc776a8687231a1a989108f20436f
2a1863399058e5efb5c29385c23292403aa370d4
/code/main.cpp
0bf1d3014aae32360db180a2f8a8cb7d56cf54a8
[]
no_license
BryanGonz/ZombieGame
758166bc09626e89fe3e00c1653b0474434cd4e8
52cee9244d34fed405e9d8417db15ec050325b69
refs/heads/main
2023-06-27T03:02:29.299786
2021-08-04T23:46:57
2021-08-04T23:46:57
392,846,621
0
0
null
null
null
null
UTF-8
C++
false
false
179
cpp
#include "Game.h" int main() { // Create a game // Use this instead to create a mini-game: Game g(3, 4, 2); Game g(7, 8, 25); // Play the game g.play(); }
[ "bgon@ucla.edu" ]
bgon@ucla.edu
654581dae37410f89104bccadc38a6a57143e3d5
78435005fd4ddf72579eef4d253b66128120745c
/srs_env_model/src/but_context/but_context_server.cpp
3034a639375589967d7a5092beac720c4b64abfd
[]
no_license
Mazet/srs_public
57290f60dd9e3de2a11a6ef8774c3cf27dfbd342
4342d93ae44de2ef0dd9450679c667cad1701615
refs/heads/master
2021-01-17T22:25:07.604843
2012-07-19T08:50:36
2012-07-19T08:50:36
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,793
cpp
/****************************************************************************** * \file * * $Id: * * Copyright (C) Brno University of Technology * * This file is part of software developed by dcgm-robotics@FIT group. * * Author: Tomas Lokaj (xlokaj03@stud.fit.vutbr.cz) * Supervised by: Michal Spanel (spanel@f...
[ "spanel@fit.vutbr.cz" ]
spanel@fit.vutbr.cz
f670b460e9c60c2138d13510ffb11b4ce3e14714
6b4e78812681004a321c3747de37cd903e9e7a4d
/Week1_Task1/ConsoleApplication1/ConsoleApplication1.cpp
da21c1c258060adc2e3d7e3c72f7c01836011d77
[]
no_license
Peritex/210CT
97864db2a34e2b9c038db55f5fd1f049bddcf1b4
50c6e1324b912f1dfd0d371df6c45040b94fe1f5
refs/heads/master
2020-06-14T21:08:23.278992
2016-12-02T19:23:54
2016-12-02T19:23:54
75,340,155
0
0
null
null
null
null
UTF-8
C++
false
false
934
cpp
// ConsoleApplication1.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include <iostream> #include <array> #include <stdlib.h> #include <time.h> void swap(int *a, int *b)//pointer swap function { int temp = *a; *a = *b; *b = temp; } void printarray (int arr[], in...
[ "noreply@github.com" ]
noreply@github.com
21a618ce547fee5e99ca57a9cf33f6b4f59de970
ab7ecfc8e6ec7793d61306f54a3b3f5670f77faa
/telemetria_v2/led.h
60a0be8992a7c5731189ad581b2c4091b30943b8
[]
no_license
RafaelMorandini/SE-GrupoJ
6cc7f7c7396ac01f2953cf9faf18a2bbd66075c6
2e2fa550f6c081cf87d4ca07688ad150a203a005
refs/heads/main
2023-06-25T08:29:45.925308
2021-07-22T09:03:57
2021-07-22T09:03:57
388,274,418
0
0
null
null
null
null
UTF-8
C++
false
false
264
h
#ifndef LED_H_INCLUDED #define LED_H_INCLUDED #include <Arduino.h> #include "definicoes_sistema.h" class LED { public: LED(int pin); int pino; void ligar(int controle); int ligado; int estaligado(); }; #endif // LED_H_INCLUDED
[ "noreply@github.com" ]
noreply@github.com
ac5aea78728f7cddf732b41060488bc8557593bb
1ae40287c5705f341886bbb5cc9e9e9cfba073f7
/Osmium/SDK/FN_GAB_TakerSoulSuck_parameters.hpp
a7aa37c6a93732964b27fd5f7c1f1da5a5e94e40
[]
no_license
NeoniteDev/Osmium
183094adee1e8fdb0d6cbf86be8f98c3e18ce7c0
aec854e60beca3c6804f18f21b6a0a0549e8fbf6
refs/heads/master
2023-07-05T16:40:30.662392
2023-06-28T23:17:42
2023-06-28T23:17:42
340,056,499
14
8
null
null
null
null
UTF-8
C++
false
false
12,768
hpp
#pragma once // Fortnite (4.5-CL-4159770) SDK #ifdef _MSC_VER #pragma pack(push, 0x8) #endif #include "../SDK.hpp" namespace SDK { //--------------------------------------------------------------------------- //Parameters //--------------------------------------------------------------------------- // Function GA...
[ "kareemolim@gmail.com" ]
kareemolim@gmail.com
839a19e258a16e18238c09dd8d035648a31eee5c
44d212e4b92b39a24b3fc9356c28bddd513f1f54
/UVa Online Judge/10013. Super Long Sums.cpp
ea8cb00520d64aec7e27e2fed9fc670d06e2a1fc
[ "MIT" ]
permissive
nicoelayda/competitive-programming
e946d4eeac5fadcae58d44dd3d9b6fb3d86983a4
5b5452d8d2865a1a5f1e3d2fece011749722e8c4
refs/heads/master
2020-04-23T09:42:46.697943
2019-02-18T16:29:27
2019-02-18T16:29:33
171,078,251
0
0
null
null
null
null
UTF-8
C++
false
false
921
cpp
#include <cstdio> #include <vector> using namespace std; int main() { int T; vector<int> sum(1000002, 0); scanf("%d", &T); while (T-- != 0) { int digits; int n1, n2; bool first_nonzero = false; scanf("%d", &digits); for (int i = 0; ...
[ "nico@elayda.com" ]
nico@elayda.com
edf109c69bdb7024132206300e9d4fbe0ddfe717
dcdb207fe61add28dc0589297853ef9e51367449
/mysql/.moc/moc_qsql_mysql_p.cpp
66045014a79335dda6247f75b1dbd0d3c26ec3c5
[]
no_license
fairytalefu/QMSYQL
d098f663b0c1994555b2bfcc0be4914ce6802b9f
4cc45f20c4d6eee7aca2063b023095c955f73c99
refs/heads/master
2021-05-13T16:13:27.707140
2018-01-09T12:33:35
2018-01-09T12:33:35
116,787,814
0
0
null
null
null
null
UTF-8
C++
false
false
2,651
cpp
/**************************************************************************** ** Meta object code from reading C++ file 'qsql_mysql_p.h' ** ** Created by: The Qt Meta Object Compiler version 67 (Qt 5.9.3) ** ** WARNING! All changes made in this file will be lost! ********************************************************...
[ "fairytalefu@gmail.com" ]
fairytalefu@gmail.com
d8f01691c52c67a156f8b3fe668b5bbaa848d5aa
ad572d5ce0be185edc0e4066f55eac78c8970d2c
/src/client/particles/CountdownParticle.hpp
06b40ed1e310f4b7be9d3acbcea46906b07d6444
[ "MIT" ]
permissive
AzariasB/MultiPlayerPong
086f4b1292d482b851c31457a42ff189c1af9326
4b9af38198945b31b05ca83acadccef333e32284
refs/heads/master
2021-06-23T13:41:55.204845
2019-05-09T04:35:55
2019-05-09T04:35:55
108,720,391
0
0
null
null
null
null
UTF-8
C++
false
false
2,642
hpp
/* * The MIT License * * Copyright 2017 azarias. * * 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,...
[ "azarias.boutin@gmail.com" ]
azarias.boutin@gmail.com
336a776d4d73daf062ef08825ef919ae65a03d9a
ff3cd2a23b8d582f8ce3eca4a16bcf7a248e3f7c
/Soil_Moisture.ino
ff0f0d604e84dc33fd719e9377884289192dd49e
[]
no_license
kitter007/IoT-SmartFarm
c70ce76aa0764b64d723839ac9e6091f2561f501
3780c176621f442d18879575560cf23188889768
refs/heads/master
2020-07-15T07:11:51.419594
2019-11-02T04:02:55
2019-11-02T04:02:55
205,509,752
0
0
null
null
null
null
UTF-8
C++
false
false
177
ino
#include <ESP8266WiFi.h> int moisture; void setup(){ Serial.begin(9600); } void loop(){ moisture = analogRead(A0); Serial.println(moisture); delay(500); }
[ "noreply@github.com" ]
noreply@github.com
36cdfcf752fa3744bc7352db1c4febe5671ab0fc
2c0b4335fec9aa36ac63b178a5e64b587b1f668e
/jetson/i2c.cpp
110f6d7b5e14ad1a2648562d8d5588fd7363583f
[]
no_license
stephenwang5/ideasclinic-i2c
eb4aa331117d96bcd1634663f7068e07bf932da8
960616c9f190b02eae4970b2a5ba769ec3e61f9b
refs/heads/master
2022-12-18T07:01:06.109369
2020-08-18T19:20:27
2020-08-18T19:20:27
266,660,556
0
0
null
null
null
null
UTF-8
C++
false
false
1,384
cpp
#include "i2c.hpp" Instruction::Instruction() : x(0), y(0), width(0), height(0), gripper_angle(0) {} Instruction::Instruction(float x, float y, float w, float h, float ga) : x(x), y(y), width(w), height(h), gripper_angle(ga) {} I2C_Bus::I2C_Bus(const char* bus, unsigned char unshifted_address) : bus(bus), slave_ad...
[ "ste53539@gmail.com" ]
ste53539@gmail.com
202ecc4d798ba3593aa8413e12359cd434d4c628
1c862e7030af7114c04d9dcecb8de6a5a7a60a0b
/typy.cpp
4f3677a76b0e0c3d68915323388e0ce07f0ad2f9
[]
no_license
mateuszSmi/CG
8a86f744d66d52eb60d1efc8748731a85d9a8edd
dae99b0f0f9a493d99c880e627822a332d7c3315
refs/heads/main
2023-04-26T12:19:46.406299
2021-05-18T13:59:00
2021-05-18T13:59:00
368,545,627
0
0
null
null
null
null
UTF-8
C++
false
false
1,138
cpp
#include <iostream> #include <fstream> using namespace std; //difinicja NAZWA wartość- pewna stała ma stałą wartość #define ROZMIAR 20 //enum zwraca enum REZULTAT { ISTNIEJE = 1, NIEISTNIEJE = -1 }; //const-słuzy określeniu, że zmeinna za modyfikatorem nie może zostać zmieniona //const - zasbezpi...
[ "noreply@github.com" ]
noreply@github.com
04e47f95d7873dcf740ffd48606dddf498568471
834558e34d3f868289f573338eefd458a14b1253
/tests/test.cpp
d48d1cbf3fbf6ad8457c7b5fe8d69915c99cff15
[]
no_license
gleyba/yazik
5ebba4092f86335158f33c271545427fd837a912
a6b481a1b49962b3f641704cf2876297182b0825
refs/heads/master
2021-09-08T01:37:47.302756
2018-02-28T07:38:24
2018-02-28T07:38:24
113,197,483
0
0
null
null
null
null
UTF-8
C++
false
false
1,446
cpp
#include <iostream> #include <array> #include <yazik/o2tree/o2tree.hpp> // #include <boost/context/all.hpp> // #include <yazik/intrusive_ptr.hpp> #include <future> #define __l_move(x) x = std::move(x) // namespace yazik { // // namespace executor { // // class t { // // }; // // } //end of yazik::executor namespace /...
[ "gleyba.k@gmail.com" ]
gleyba.k@gmail.com
afe1941afdfbb3dda83a217859eb2c1dc4ac6c0e
96148bf17555c028f5650d51f496f349c89e8c79
/devel/include/cob_object_detection_msgs/DetectObjects.h
2aa70e1812ee5d904f5c5ddb6f8372b7aff95589
[]
no_license
kerekare/ros_hydra_libphidgetsupdated
239daed94a95f60743c5659f1102183641761240
e05e58417fb03a14d627bc80d09af3b2a0fcceab
refs/heads/master
2016-09-05T23:35:43.792883
2014-03-25T16:32:01
2014-03-25T16:32:01
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,977
h
/* Software License Agreement (BSD License) * * Copyright (c) 2011, Willow Garage, Inc. * 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 must retain...
[ "kerekare@i60sr2.(none)" ]
kerekare@i60sr2.(none)
3944344330857f1e91649b2ef8f6dcb2293fb5ed
aa1351e056e3b87ccf18a36ebe24a9f928ba81ca
/cpp_course(apna_college)/l_008.5.2_array_challenges._subarray_with_given_sum.cpp
225ae92355bdb06162d563c488cff476d18e4dfd
[]
no_license
wisdom-weaver/c_cpp_mini
d13dc9fd4d83228b3c589c419545d44e6640f28b
c9f38ee6a2172f1a035deb60fb727016fff09e1a
refs/heads/main
2023-08-18T20:04:53.371934
2021-09-23T11:52:52
2021-09-23T11:52:52
378,346,514
1
0
null
null
null
null
UTF-8
C++
false
false
1,036
cpp
#include <cmath> #include <iostream> using namespace std; int main() { int ar[] = {1, 1, 1, 3, 4, 3, 5, 6}; int n = sizeof(ar) / sizeof(ar[0]); int req_sum = 6; // M-1: Brute Force - by subarrays sum method // int sum, s = -1, e = -1; // for (int i = 0; i < n; i++) { // int j = i; // sum = 0; //...
[ "danish.ansari.nox@gmail.com" ]
danish.ansari.nox@gmail.com
1e4e5f1dc80e890045e70b4cc3ff12baeab7d956
29a7891c9de974400bdc802ae7bd6d0ab6683d3a
/client3.cpp
926f877fb0b99720c8797a1182f67cb3f906378e
[]
no_license
joseph101039/socketProgramming
a7a5ce20ed1f326e084160dbdcc9c892a4542855
5c7dc1872c033bf014d0f34815638792bbda9231
refs/heads/master
2021-01-13T13:05:30.741163
2017-01-11T16:05:02
2017-01-11T16:05:02
78,655,024
0
0
null
null
null
null
UTF-8
C++
false
false
3,274
cpp
#include <stdio.h> #include <stdlib.h> #include <string.h> #include<unistd.h> #include <sys/socket.h> #include <arpa/inet.h> #include <sys/types.h> #include <netdb.h> //for gethostbyname #include <errno.h> //for strerror() #define DEFAULT_PORT 5900 /*設定port 為 5900*/ #define BUFSIZE 4096 int main(int argc, char...
[ "noreply@github.com" ]
noreply@github.com
e9e46809c798990887f32f4dc4d4a6567de561b8
c77a8579ab98ba0c6eaaf36ac1382cb2b1a4046c
/519D - A and B and Interesting Substrings.cpp
3cba03ae9d85d1c5a1225307d7652378194d5b1f
[]
no_license
arjunbhatt670/CodeForces
2dadb9f53bcd6cfa1b1146524624320434991995
b358049e3da7d9c3bbc8f03986e364be1925688b
refs/heads/master
2022-04-07T19:02:42.320001
2020-03-21T06:44:02
2020-03-21T06:44:02
null
0
0
null
null
null
null
UTF-8
C++
false
false
902
cpp
/* * User: Isanchez_Aguilar * Problem: CodeForces 519D - A and B and Interesting Substrings */ #include <iostream> #include <algorithm> #include <vector> #include <cstring> #include <map> using namespace std; using Long = long long; int main(void) { ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); Long val...
[ "noreply@github.com" ]
noreply@github.com
b83ed30b11e7c6d0edf626a3671b621ad6cc40c1
26fb901ef4e90e15a097fd0da94807750f93b897
/MC34933.h
a0ff5e5e0df17278cdf3dd1235179106c030d7ee
[ "MIT" ]
permissive
willumpie82/MC34933
f68f5e79711acae77a8251951a19fdb14054742f
f3481ea0a93070cd2d06ad1ec72a218f467ef74e
refs/heads/master
2022-12-16T08:33:15.488118
2020-09-13T14:43:34
2020-09-13T14:43:34
295,167,696
0
0
null
null
null
null
UTF-8
C++
false
false
1,401
h
/* MC34933.h - Library for the Toshiba MC34933 motor driver. Created by TheDIYGuy999 June - November 2016 Released into the public domain. This is Version 1.2 Change history: V1.1: The pin configuration was moved to the separate begin() function. Change your existing programs in accordance with the provid...
[ "willemoldemans@willems-MacBook-Pro.local" ]
willemoldemans@willems-MacBook-Pro.local
5de37c8c9008dcea14c306b7bb86f1d6559864e4
8b545e38af1cce05b047dc79a19a0d047026e2d0
/Cpp-Primer-Plus/7/exercises/7.cpp
046ead58bc3f462de82d945710c50135daed2e34
[]
no_license
LyingHid/Learning-C-and-Cpp
b182c5399a1834b94c59036420a6a64fa8d7fe78
008ebdce3b079bee8864f4eca97f954a3cc20cb0
refs/heads/master
2021-08-31T12:31:30.977588
2017-12-21T09:11:22
2017-12-21T09:11:22
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,456
cpp
#include <iostream> const int Max = 5; double *fill_array(double *begin, double *end); void show_array(const double *begin, const double *end); void revalue(double r, double *begin, double *end); int main() { using namespace std; double properties[Max]; double *end = fill_array(properties, properties + M...
[ "GloveInTheHouse@gmail.com" ]
GloveInTheHouse@gmail.com
1afa581beb9c659523042f84802f564bab23a2eb
ecac474a3f5095c61cfccd0e69cab0d4ca050ebd
/atcoder/AtCoder Regular Contest 081/D-Coloring Dominoes-dp.cpp
b16de053f2ff6e1656ba4827f5081cd5f7874b45
[ "Apache-2.0" ]
permissive
xehoth/OnlineJudgeCodes
478e678b35ba1b7e168b8230da594f03532aa74c
013d31cccaaa1d2b6d652c2f5d5d6cb2e39884a7
refs/heads/master
2021-01-20T05:37:25.194545
2019-08-17T16:07:02
2019-08-17T16:07:02
101,457,867
7
3
null
null
null
null
UTF-8
C++
false
false
1,032
cpp
/** * Copyright (c) 2017, xehoth * All rights reserved. * 「ARC 081D」Coloring Dominoes 21-08-2017 * dp * @author xehoth */ #include <bits/stdc++.h> namespace Task { const int MAXN = 52; const int MOD = 1e9 + 7; char s[2][MAXN]; inline void solve() { std::ios::sync_with_stdio(false), std::cin.tie(NULL), std...
[ "824547322@qq.com" ]
824547322@qq.com
ed402c84e33a2f6c8043c43b3ece858da40f7047
dbb2ccb685c71435a8d2debef81a4441011ca2f3
/goaler/main.cpp
7c29fc5fcb271a21c5cd3f3ac43dcf48afc53891
[]
no_license
atomy/qt
dbf8c77d3adfa6cf4af61881987f5018e6e37ed8
efd4dbb3774360a904085577aeaf31a388c736f1
refs/heads/master
2020-05-18T12:56:16.112771
2013-04-08T21:19:46
2013-04-08T21:19:46
null
0
0
null
null
null
null
UTF-8
C++
false
false
250
cpp
#include <QApplication> #include "GoalApp.h" int main(int argc, char *argv[]) { QApplication app(argc, argv); GoalApp goalApp; #if defined(Q_OS_SYMBIAN) goalApp.showMaximized(); #else goalApp.show(); #endif return app.exec(); }
[ "atomy@jackinpoint.net" ]
atomy@jackinpoint.net
270feec26830c9e93e0f8ddd0340b35c2f8f441e
5ab7032615235c10c68d738fa57aabd5bc46ea59
/monk_and_cursed_tree.cpp
eafe70071cf7b8c712826492926c4212a812d0d5
[]
no_license
g-akash/spoj_codes
12866cd8da795febb672b74a565e41932abf6871
a2bf08ecd8a20f896537b6fbf96a2542b8ecf5c0
refs/heads/master
2021-09-07T21:07:17.267517
2018-03-01T05:41:12
2018-03-01T05:41:12
66,132,917
2
0
null
null
null
null
UTF-8
C++
false
false
1,721
cpp
#include <iostream> #include <vector> #include <unordered_map> #include <string> #include <math.h> #include <map> #include <queue> #include <stack> #include <algorithm> #include <list> using namespace std; #define ll long long int #define ull unsigned ll #define umm(x,y) unordered_map<x,y > #define mm(x,y) map<x,y >...
[ "akash.garg2007@gmail.com" ]
akash.garg2007@gmail.com
1cac089593d07553866818615823502bcc32cf62
b86f9b27178268065fc56e75af47356bb3c73bea
/Implementering/SW CSS Hovedenhed/PC RS232IF Test program/PC RS232IF Test program/RS232IF.h
8dcc5418495bca5768d08d927167e28d175c67a5
[]
no_license
mickkn/E2PRJ2
5b585957333aa6577785557455164fe94863f4e5
3d81a7ce6ee45d73293da281fdad8fef132a4b6e
refs/heads/master
2021-01-13T02:16:27.548333
2014-05-27T15:38:50
2014-05-27T15:38:50
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,371
h
/* * Klasse RS232IF * * Styrer kommunikation mellem PC og CSS hovedenhed over RS232 protokollen * * Af Bjørn Sørensen * */ #pragma once #define F_CPU 3686400 #include <avr/io.h> #include <string.h> #include <stdlib.h> #include <util/delay.h> #include "UART.h" class RS232IF { public: ...
[ "karnich99@gmail.com" ]
karnich99@gmail.com
1898791d2741d10468a19c035fe0438073f4c5ba
6f2b6e9d77fc4dd5e1dae8ba6e5a66eb7c7ae849
/sstd_boost/sstd/libs/ratio/test/ratio_extensions/mpl_rational_constant_pass.cpp
369fb1f2b34aeffbb97b9b3b9c179d34261bbd90
[ "NCSA", "MIT", "BSL-1.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
KqSMea8/sstd_library
9e4e622e1b01bed5de7322c2682539400d13dd58
0fcb815f50d538517e70a788914da7fbbe786ce1
refs/heads/master
2020-05-03T21:07:01.650034
2019-04-01T00:10:47
2019-04-01T00:10:47
null
0
0
null
null
null
null
UTF-8
C++
false
false
335
cpp
//===----------------------------------------------------------------------===// // Copyright 2011 Vicente J. Botet Escriba // Distributed under the Boost Software License, Version 1.0. // See http://www.boost.org/LICENSE_1_0.txt #define BOOST_RATIO_EXTENSIONS #include <sstd/boost/ratio/mpl/comparison.hpp> void ...
[ "zhaixueqiang@hotmail.com" ]
zhaixueqiang@hotmail.com
50a7ff50b811e84e3be98afb1fc40a6a686ed39a
2d6319e30ca60a5fe535f6c437d0c27bade939d7
/luciolinae_ctl/src/NearestPointOnLineToPoint.cpp
0130186073951b5cae2a0ffbb9ed4816564ac765
[]
no_license
simonec77/damian_public_of_apps
fa8bf8e177d39bb83db8fd5d2d3872a40dd5a8ca
ebedbf3db44df413175f6c51b7c9cb0c56378238
refs/heads/master
2021-01-23T22:05:32.302618
2010-08-15T09:50:21
2010-08-15T09:50:21
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,247
cpp
/* * NearestPointOnLineToPoint.cpp * luciolinae_ctl * * Created by damian on 18/05/10. * Copyright 2010 frey damian@frey.co.nz. All rights reserved. * */ #include "NearestPointOnLineToPoint.h" // stolen from // http://local.wasp.uwa.edu.au/~pbourke/geometry/pointline/ // Calculate the nearest point on th...
[ "damian@frey.NOSPAMco.nz" ]
damian@frey.NOSPAMco.nz
bcb6da67ac8dfdaf90973b1a92170d0ac7998fbb
4a5f51c19965e5347dc0d11f1677994f289688a5
/src/semantics/include/sema/types.h
da729e2abb3ae334bdf2f9170b50454a2ed7eea3
[]
no_license
MacDue/Mank
7e7ed4886c3c8736a31bb234f1ca1802554cacc4
1f4dde18c5fe1b550e47805c69e79990cc72e75f
refs/heads/master
2023-05-22T06:38:57.714008
2021-06-13T14:10:37
2021-06-13T14:10:37
299,920,292
3
0
null
null
null
null
UTF-8
C++
false
false
2,381
h
#pragma once #include <utility> #include <optional> #include <type_traits> #include <mpark/patterns.hpp> #include "ast/types.h" #include "ast/ast_builder.h" #include "sema/type_infer.h" #include "errors/compiler_errors.h" // The resolved type + a the type's identifier in the source (for error messages) using TypeRe...
[ "macdue@dueutil.tech" ]
macdue@dueutil.tech
2c3d3df318c4e963922c030218318fe79dc0bb09
a7fcba705ef0e1969d8fd1a450b25e682c0f37d4
/server/sqldaoimp.h
7c5983e2e6d0d886ae2487227bfcb549ff45efc7
[]
no_license
1375917982/Online-Video-Streaming-Platform
5d1ecd19652415777e3c0773bf151e1858376d9f
ec73124c4cee91147220e6440bd9e1ca18905c93
refs/heads/master
2022-06-13T01:17:41.682712
2020-04-30T21:19:31
2020-04-30T21:19:31
null
0
0
null
null
null
null
UTF-8
C++
false
false
439
h
#ifndef SQLDAOIMP_H #define SQLDAOIMP_H #include "sqldao.h" class SqlDaoImp : public SqlDao { public: SqlDaoImp(); virtual void insertUser(const User& user); virtual void deleteUser(const User& user); virtual void updateUser(const User& user); virtual User* selectUser(const User& use...
[ "noreply@github.com" ]
noreply@github.com
2996f1e94323a7911868ab47213032588ce59aa8
bd1fea86d862456a2ec9f56d57f8948456d55ee6
/000/074/233/CWE124_Buffer_Underwrite__CWE839_rand_74b.cpp
25320078974e46b3e01baa110f5baeb12f7ad862
[]
no_license
CU-0xff/juliet-cpp
d62b8485104d8a9160f29213368324c946f38274
d8586a217bc94cbcfeeec5d39b12d02e9c6045a2
refs/heads/master
2021-03-07T15:44:19.446957
2020-03-10T12:45:40
2020-03-10T12:45:40
246,275,244
0
1
null
null
null
null
UTF-8
C++
false
false
2,704
cpp
/* TEMPLATE GENERATED TESTCASE FILE Filename: CWE124_Buffer_Underwrite__CWE839_rand_74b.cpp Label Definition File: CWE124_Buffer_Underwrite__CWE839.label.xml Template File: sources-sinks-74b.tmpl.cpp */ /* * @description * CWE: 124 Buffer Underwrite * BadSource: rand Set data to result of rand(), which may be zero ...
[ "frank@fischer.com.mt" ]
frank@fischer.com.mt
73c4d334cc214ea6a2cae62d3af0b83940dfde05
363751d054420a77bd6e04c6057e852b9cf75990
/examples/src/applications/datums/ResourceOwners.cpp
45217b3b88beef298c67f8862423a3bbe727116c
[ "Unlicense", "MIT", "FSFAP" ]
permissive
kspine/zapata
53450b0a1960aad07525724f4de125ed832a51e3
514aa5fe6e8b3c0a5a3c9ea6a4df842c1f55e2a4
refs/heads/master
2020-04-08T01:48:46.627797
2018-11-02T16:42:49
2018-11-02T16:42:49
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,701
cpp
#include <zapata/applications/datums/ResourceOwners.h> auto zpt::apps::datums::ResourceOwners::get(std::string _topic, zpt::ev::emitter _emitter, zpt::json _identity, zpt::json _envelope) -> zpt::json { zpt::json _r_data; zpt::connector _c = _emitter->connector("dbms.redis.zpt.apps"); _r_...
[ "pedro.figueiredo@gmail.com" ]
pedro.figueiredo@gmail.com
bb375ce43768871a76cc25f150f6fa60188c42c8
7af400b31210a6c0f7d4b5e93783e919d94a3266
/sampleCode/maximumSizeSquareSubMatrixWithAllSameValue.cpp
a0be7891dbaffbc0b8ebb52f3783909f79e30991
[]
no_license
abhishek-nvcc/sampleCode
078df9237880d906303f378124b5fc9550e20abd
089676018d6fc767191ac38e1f60c64f7bdeb709
refs/heads/master
2021-04-03T01:58:30.668640
2018-07-24T06:23:29
2018-07-24T06:23:29
124,633,062
0
0
null
null
null
null
UTF-8
C++
false
false
5,505
cpp
#include <stdio.h> #include <iostream> #include <string> #include <vector> #include <assert.h> using namespace std; typedef std::vector<int> listOfInt; typedef std::vector<listOfInt> arrayOfInt; bool hasDataCorrectValues(const arrayOfInt& originalData) { bool bRetVal = true; for (const listOfInt rowVec : ori...
[ "abhishek.nvcc@gmail.com" ]
abhishek.nvcc@gmail.com
0aa9452aa3b0ee37f81ff1490b85a175f60295bf
1722686f8139aca7d6927ec7a6dfed13a5d319fb
/pc-common/AudioVideoSDKs/wangyi_163/Processing_C_Channel.h
97636ebc7997877e692e5dee63463ae83789dc9f
[]
no_license
oamates/clientmy
610ca1c825e503e0b477a9a579248d608435a5d0
b3618b2225da198f338a3f2981c841dde010cd8d
refs/heads/main
2022-12-30T14:53:43.037242
2020-10-21T01:01:12
2020-10-21T01:01:12
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,704
h
#ifndef PROCESSING_C_CHANNEL_H #define PROCESSING_C_CHANNEL_H #include "../AudioVideoBase.h" #include "channel_wangyi.h" #include <QMap> #include <QStringList> #include <QCryptographicHash> #include <QIODevice> class Processing_C_Channel : public AudioVideoBase { Q_OBJECT private: explicit Processing_C_Chann...
[ "shaohua.zhang@yimifudao.com" ]
shaohua.zhang@yimifudao.com
6ab743b33d8da3a3a39235a1cbf5b4c1763f95cf
8f29bbdbc1b29365eca840b72d61f63abe8f829f
/Semester2/3001/AI midterm/SDLGameEngine/Shoot.h
309fb5c273df8a808fbc8fdd2209883c826a8711
[]
no_license
CccrizzZ/GBC01
d294f01aab97de37f2b70bcf325ae713e4eed740
c44130872f609e5778992d8a6dad09caed29ff71
refs/heads/master
2022-02-22T11:32:54.720661
2019-10-14T00:07:50
2019-10-14T00:07:50
158,318,882
0
0
null
null
null
null
UTF-8
C++
false
false
120
h
#pragma once #include "Behaviour.h" class Shoot : public Behaviour { public: Shoot(); ~Shoot(); void Update(); };
[ "ccccrizzzz@gmail.com" ]
ccccrizzzz@gmail.com
118b29826102a30bfffaf03c5979d635bce99733
26df6604faf41197c9ced34c3df13839be6e74d4
/src/org/apache/poi/ss/formula/functions/NumericFunction_18.hpp
7e7e54f664a9f5671a4437243030a4f1b9c45588
[ "Apache-2.0" ]
permissive
pebble2015/cpoi
58b4b1e38a7769b13ccfb2973270d15d490de07f
6dcc0c5e13e3e722b4ef9fd0baffbf62bf71ead6
refs/heads/master
2021-07-09T09:02:41.986901
2017-10-08T12:12:56
2017-10-08T12:12:56
105,988,119
0
0
null
null
null
null
UTF-8
C++
false
false
2,806
hpp
// Generated from /POI/java/org/apache/poi/ss/formula/functions/NumericFunction.java #pragma once #include <fwd-POI.hpp> #include <java/lang/fwd-POI.hpp> #include <org/apache/poi/ss/formula/eval/fwd-POI.hpp> #include <org/apache/poi/ss/formula/functions/fwd-POI.hpp> #include <org/apache/poi/ss/formula/functions/Numer...
[ "zhang.chen.yu@outlook.com" ]
zhang.chen.yu@outlook.com
4c051ce31ced7cf102edb4e4de64155051c6f2cd
22f8ce70cc780eda7cb11f93803058831f43c7c5
/Plugins/BlueprintTool/Source/BlueprintToolRuntime/Public/BlueprintToolRuntime.h
fe5517bb86bcc5b56418702310f0a818f008b432
[]
no_license
VegetableWithChicken/SomeTest
4d26ebc44fbf8a387bec2ec9677d51485c7c9668
8659f9b99ec05f3e235ec9d7839671751c85cbf8
refs/heads/dev
2023-03-16T05:40:16.603350
2020-11-02T07:04:52
2020-11-02T07:04:52
508,117,547
1
0
null
2022-06-28T01:42:35
2022-06-28T01:42:34
null
UTF-8
C++
false
false
332
h
// Copyright 1998-2018 Epic Games, Inc. All Rights Reserved. #pragma once #include "CoreMinimal.h" #include "Modules/ModuleManager.h" class FBlueprintToolRuntimeModule : public IModuleInterface { public: /** IModuleInterface implementation */ virtual void StartupModule() override; virtual void ShutdownModule() o...
[ "563412673@qq.com" ]
563412673@qq.com
62e69b3f5e843fcf3e2fcbb862ffa00976bfa591
fb888e19c1d595701fe806b5e3ddd85388de0f45
/src/utils/logger.h
e5aa2393da65fe05b28385ae43a68de56d3f5a90
[ "Apache-2.0" ]
permissive
yt-zgl/bubichain
f3514c6974b92f3575a19d9ac6a97fae50460788
a47ef90b10e50d80a52e5d374672152d6a2a3ba0
refs/heads/master
2020-03-12T19:37:37.498814
2017-08-28T05:38:25
2017-08-28T05:38:25
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,616
h
/* Copyright © Bubi Technologies Co., Ltd. 2017 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 required by applicable ...
[ "liuchunwei@bubi.cn" ]
liuchunwei@bubi.cn
4c72a7c9e108be9c91f13552141b8dacf2d54e50
f921d605ad9fbc65fb360ef00dd137e77e94b787
/Codeking_2021/harvard.cpp
933a83d85fad94bf7fedff973416ef4b8e2f5d5c
[]
no_license
maybehieu/C_Training
79702e096bd706ec06fc7965b7b63249d140c41b
e1fa87e0bc0a6569ab7ebc847ffbf4324f2fe922
refs/heads/master
2023-07-22T20:06:36.552137
2021-09-04T15:29:17
2021-09-04T15:29:17
403,091,644
0
0
null
null
null
null
UTF-8
C++
false
false
751
cpp
#include <bits/stdc++.h> using namespace std; int main() { int test; cin >> test; while (test--) { int n, arr[1005] = {}, du1 = 0, du2 = 0, dem = 0; cin >> n; for (int i = 0; i < n; i++) { cin >> arr[i]; if (arr[i] % 3 == 0 && arr[i] != 0) ...
[ "71547583+maybehieu@users.noreply.github.com" ]
71547583+maybehieu@users.noreply.github.com
2bd30990020cfe5394ca1e5c0a6761aafd743c50
2f98c60a171b8f6df0f411255589ee6f26737cfb
/multimedia/Animation/WindowsAnimationManagerWithTimer/WindowsAnimationManagerWithTimer/MainWindow.cpp
6a57da95db307b96c9bdeb9fc40c5eb339a51573
[]
no_license
bbesbes/WindowsSDK7-Samples
4df1d7f2c6fae7bd84411b4c13751a4085144af9
14e1c3daff5927791c9e17083ea455ba3de84444
refs/heads/master
2021-09-23T10:05:42.764049
2021-09-16T19:45:25
2021-09-16T19:45:25
118,103,268
0
0
null
2018-01-19T09:12:39
2018-01-19T09:12:39
null
UTF-8
C++
false
false
9,386
cpp
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF // ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO // THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A // PARTICULAR PURPOSE. // // Copyright (c) Microsoft Corporation. All rights reserved #include "MainWindow.h" #in...
[ "theonlylawislove@gmail.com" ]
theonlylawislove@gmail.com
7512ce0d77de1fe885dbe39ff3f31a5296c74601
5479a6ed839b5d08536301a828761bcf0ab1ffc7
/include/chef_base/chef_filepath_op.hpp
b6949c5d84978ab456f12c8ddc37bfafeddd2906
[ "MIT" ]
permissive
dede8385/starry-night
f8b219b7e21120c3fd9b7154ffdf32f8e28e8ed8
2324cb7228e9b05658b2c02cd1b5337418ccf00b
refs/heads/master
2020-04-12T16:29:48.337447
2018-12-19T09:09:06
2018-12-19T09:09:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
13,352
hpp
/** * @tag v1.7.16 * @file chef_filepath_op.hpp * @deps nope * @platform linux | macos | xxx * * @author * chef <191201771@qq.com> * - initial release xxxx-xx-xx * * @brief 文件、文件夹常用操作帮助函数集合 * */ #ifndef _CHEF_BASE_FILEPATH_OP_HPP_ #define _CHEF_BASE_FILEPATH_OP_HPP_ #pragma once #inc...
[ "191201771@qq.com" ]
191201771@qq.com
7c1609e8edb4f54db643fc3204cafa64a9b1a896
edc5c44ab9249bc9c518c9875bdd1b39e52c0118
/4/2.cc
72a5a60124fa85321e65c597e67c74596ff33195
[]
no_license
AlbandeCrevoisier/CtCI
cff4091e5d094cf02ee2f923ead30b1796ab0c25
946e14def6e3ee702094b380a48134ef62689b0c
refs/heads/master
2020-03-23T18:17:03.284301
2018-12-04T15:44:44
2018-12-04T15:44:44
141,899,053
0
0
null
null
null
null
UTF-8
C++
false
false
939
cc
/* Minimal Tree Given a sorted array with unique integers elements, write an algorithm to create a binary search tree with minimal height. */ #include <iostream> #include <vector> namespace { struct Node { int val; Node *left; Node *right; }; int MinimalTree(std::vector<Node> &nodes, int start, int end) { i...
[ "albandecrevoisier@gmail.com" ]
albandecrevoisier@gmail.com
4769634acfed98a860a6a87215843de2ca6546da
8a9649e72f2a9b2b5e54643614189cd5401da2e1
/src/plugins/yanlr/yanlr.cpp
0d1afba591b7906e8ceb0c1e1124476efb36938f
[ "BSD-3-Clause" ]
permissive
rkamisetti792/libelektra
720adc1f267e0738b16b12c716d98d4d51f46810
9228d8f5af8dd878a63053213b1466fb9551f694
refs/heads/master
2023-07-19T20:27:06.184265
2019-02-08T09:18:15
2019-02-08T09:18:15
169,867,354
0
0
BSD-3-Clause
2023-09-01T23:38:34
2019-02-09T13:00:23
C
UTF-8
C++
false
false
3,924
cpp
/** * @file * * @brief Source for yanlr plugin * * @copyright BSD License (see LICENSE.md or https://www.libelektra.org) * */ // -- Imports ------------------------------------------------------------------------------------------------------------------------------ #include <iostream> #include <kdb.hpp> #inc...
[ "sanssecours@me.com" ]
sanssecours@me.com
cb684e5d7ff67ff95e1abaa449f82fad40c21b35
1aa9a9498148edefc0a41ea67f9e913d2bf35ee0
/code/baxter_code_old/devel/include/baxter_core_msgs/ListCamerasResponse.h
6df0d5caedd5fef70d336b6a67c539cd92d80fda
[]
no_license
hril230/theoryofintentions
affeee9fce88474dacc928679307f0349edd8ee5
ab2315522141fe069fefeda00aa6424a0e7ecaf1
refs/heads/master
2021-06-22T05:34:16.899960
2019-07-01T11:15:12
2019-07-01T11:15:12
109,830,791
0
2
null
null
null
null
UTF-8
C++
false
false
5,972
h
// Generated by gencpp from file baxter_core_msgs/ListCamerasResponse.msg // DO NOT EDIT! #ifndef BAXTER_CORE_MSGS_MESSAGE_LISTCAMERASRESPONSE_H #define BAXTER_CORE_MSGS_MESSAGE_LISTCAMERASRESPONSE_H #include <string> #include <vector> #include <map> #include <ros/types.h> #include <ros/serialization.h> #include <...
[ "hril230@aucklanduni.ac.nz" ]
hril230@aucklanduni.ac.nz
8e843927d3953e32e84ffd04da58a8804a68a7a4
75a5bf2dd70dd59fc6e03d14663de7d7bc4da3d8
/include/cli/StateManager.h
36cf7d97ec0c246aae773abd642df99b76f51d0f
[]
no_license
EgorKekor/SAMOSBOR_2
a7f4f17ebe26b91a35f3e3e8bd77265b5ad6d9fa
4696351008e493a524516b7310c89d2133c22312
refs/heads/master
2020-04-27T13:38:07.300313
2019-05-20T17:54:03
2019-05-20T17:54:03
174,376,892
0
1
null
2019-05-20T16:11:24
2019-03-07T16:02:18
C++
UTF-8
C++
false
false
645
h
#ifndef SERVER_STATEMANAGER_H #define SERVER_STATEMANAGER_H #include <iostream> #include <vector> #include <memory> #include "State.h" #include "GameContext.h" class StateManager { using STATE_PTR = std::unique_ptr<State>; public: explicit StateManager(GameContext &context); void process_events(const sf::Ev...
[ "smirnovasiberia@gmail.com" ]
smirnovasiberia@gmail.com
da691d0fe59feeeab182054d2b4963d7f4b7969b
f6326925918e8a426abac4a05a848b60013e873b
/libsensors/TaosProximity.cpp
6b834a6e83349bce8ef535369e0a037af407a3d7
[ "Apache-2.0" ]
permissive
D3abL3/android_device_zte_skate
5b8fade6a2383fff5864bf1618fb26ec8c55dbc1
4adc2ca45532d2c5cb181a8fddc236725594c0c2
HEAD
2016-09-01T21:16:19.093273
2012-01-09T18:45:36
2012-01-09T18:45:36
3,181,471
1
1
null
null
null
null
UTF-8
C++
false
false
5,185
cpp
/* * Copyright (C) 2008 The Android Open Source Project * * 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 app...
[ "tilal6991@gmail.com" ]
tilal6991@gmail.com
73421acfe5d7098d6e3eb7a19dee82c7983d41d5
7bac60813fef44fbb60a196909540c07c90fc63d
/Arduino/Dice/Dice/Dice.ino
af8729c2c422dd938800dee9b282e289aae0f67b
[]
no_license
TomCarton/embedded
9bd83e1e9e5df3033d0a5827eb94d654d496b62c
84d82e9a72b3a4e8c2e6499c59dbd9e2b3784f33
refs/heads/master
2023-08-14T04:17:52.794084
2021-10-06T15:01:54
2021-10-06T15:01:54
412,399,084
0
0
null
2021-10-10T10:15:16
2021-10-01T09:06:20
C++
UTF-8
C++
false
false
1,985
ino
// Dice // int Led1 = 2; int Led2 = 3; int Led3 = 4; int Led4 = 5; int Led5 = 6; int Led6 = 7; int Led7 = 8; int ButtonPin = 9; int blinkingTime = 300; void setup() { pinMode(Led1, OUTPUT); pinMode(Led2, OUTPUT); pinMode(Led3, OUTPUT); pinMode(Led4, OUTPUT); pinMode(Led5, OUTPUT); pinMode(Led6, OUTPUT);...
[ "tom.carton@gmail.com" ]
tom.carton@gmail.com
ed5171a1fd1e5634c26eb1b01c9f50ce68aea8e0
6b64b310d8385961095c19bfe1b2a15e82700d19
/CvUnit.cpp
d17289f79e51ae882b6e2c564abe6d19fdb02065
[]
no_license
Vincentz1911/CvGameCoreDLL-2010
b539184b35571f1923a1e80b78da9b77cc7937e2
ff6f76fb7880da9d58c43d8e906af3f62633c5a8
refs/heads/master
2020-04-21T22:44:01.709081
2019-02-10T17:20:11
2019-02-10T17:20:11
169,922,700
0
0
null
null
null
null
UTF-8
C++
false
false
338,780
cpp
// unit.cpp #include "CvGameCoreDLL.h" #include "CvUnit.h" #include "CvArea.h" #include "CvPlot.h" #include "CvCity.h" #include "CvGlobals.h" #include "CvGameCoreUtils.h" #include "CvGameAI.h" #include "CvMap.h" #include "CvPlayerAI.h" #include "CvRandom.h" #include "CvTeamAI.h" #include "CvGameCoreUtils.h" #include "...
[ "henrik_v_poulsen@hotmail.com" ]
henrik_v_poulsen@hotmail.com
6a93fc5052e788f0971c86160cb918649d673f34
9d364070c646239b2efad7abbab58f4ad602ef7b
/platform/external/chromium_org/chrome/browser/chromeos/policy/user_policy_token_loader.h
c4100cf2bc0a7bf09b4a6008f71b39c78731661a
[ "BSD-3-Clause" ]
permissive
denix123/a32_ul
4ffe304b13c1266b6c7409d790979eb8e3b0379c
b2fd25640704f37d5248da9cc147ed267d4771c2
refs/heads/master
2021-01-17T20:21:17.196296
2016-08-16T04:30:53
2016-08-16T04:30:53
65,786,970
0
2
null
2020-03-06T22:00:52
2016-08-16T04:15:54
null
UTF-8
C++
false
false
1,551
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 CHROME_BROWSER_CHROMEOS_POLICY_USER_POLICY_TOKEN_LOADER_H_ #define CHROME_BROWSER_CHROMEOS_POLICY_USER_POLICY_TOKEN_LOADER_H_ #include <strin...
[ "allegrant@mail.ru" ]
allegrant@mail.ru
620af87aa7833870de938d99f5d85e9608e35683
e049ee8d57363548f91b30b6148f0db03123190b
/functions.hpp
6236923a674ab539ed0631b23c89390d9e09958c
[]
no_license
embedded-systems-programming-aa-2021-22/assignment-01-alberto-trabacchin-unipd
4b13bb674b489259c236fc735e27dc62da180002
82f2ce2ac955ab7a36476f4d6372100b57c58a54
refs/heads/master
2023-08-24T21:09:24.900248
2021-10-29T08:08:51
2021-10-29T08:08:51
null
0
0
null
null
null
null
UTF-8
C++
false
false
523
hpp
#ifndef FUNCTIONS_H #define FUNCTIONS_H #include <iostream> #include <vector> #include <string> namespace pse { void print(std::vector<std::string> v); void print(std::vector<int> v); std::vector<int> string_lengths(std::vector<std::string> v); std::string longest_string(std::vector<std::string>...
[ "alberto.trabacchin@studenti.unipd.it" ]
alberto.trabacchin@studenti.unipd.it
60cb569987a63216d7e8ef84be44f0e37a0d1b7b
58da52e029ab1e9ee91ee290aab97185a57b77d3
/include/AcEsentLibrary.h
9d620db5e15f19b42f872533c72aa487ca4daac8
[]
no_license
vladp72/ac
9998f3fcbdc6bd1108fe73bfcd87b5353e8a6683
5c0bda70dc6f9eddb80230edfc33300eb02ac4cd
refs/heads/master
2020-03-27T08:21:22.998284
2018-09-17T00:01:43
2018-09-17T00:01:43
146,247,066
0
0
null
null
null
null
UTF-8
C++
false
false
18,843
h
#pragma once namespace ac { enum class esent_set_mode : int { default, must_succeed, // Setting this parameter must succeed (including not have been previously set) failure_ok_if_equal, // Setting this parameter must succeed (doesn't matter if previously set t...
[ "vladp72@hotmail.com" ]
vladp72@hotmail.com
302b4d974ce765d18d2555680991c72f0acf79a3
49f88ff91aa582e1a9d5ae5a7014f5c07eab7503
/gen/third_party/blink/renderer/core/css/properties/longhands/flex_grow.h
9d89bcaea12fa089da3d434d461c55232da7c61f
[]
no_license
AoEiuV020/kiwibrowser-arm64
b6c719b5f35d65906ae08503ec32f6775c9bb048
ae7383776e0978b945e85e54242b4e3f7b930284
refs/heads/main
2023-06-01T21:09:33.928929
2021-06-22T15:56:53
2021-06-22T15:56:53
379,186,747
0
1
null
null
null
null
UTF-8
C++
false
false
2,732
h
// Copyright 2016 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. // Generated from template: // core/css/properties/templates/css_property_subclass.h.tmpl // and input files: // ../../third_party/blink/renderer/core...
[ "aoeiuv020@gmail.com" ]
aoeiuv020@gmail.com
6914e26bc202a421781ded15a07d4929e885400b
b8b69b9721088fc60a523ada7650c7fb8864ff2a
/src/Graphics/Vulkan/AssetViews/ImageAsset.hpp
8215657d9e13c9c6d36baa3a38c55eed69bff7fa
[]
no_license
jvidziunas/Eldritch2
7a99ab852c93768b4caf1cefe7ba415b71987281
3491f2f380f5ae4dd155594b94fea28f791f3069
refs/heads/master
2021-01-10T09:37:08.120746
2018-04-11T00:22:20
2018-04-11T00:22:20
43,710,529
2
1
null
null
null
null
WINDOWS-1252
C++
false
false
1,617
hpp
/*==================================================================*\ ImageAsset.hpp ------------------------------------------------------------------ Purpose: ------------------------------------------------------------------ ©2010-2016 Eldritch Entertainment, LLC. \*=================================...
[ "jvidziunas@sbcglobal.net" ]
jvidziunas@sbcglobal.net
cba316735700f3ca0378361b442e1a2388ac380f
3dae85df94e05bb1f3527bca0d7ad413352e49d0
/ml/nn/runtime/test/generated/models/pad_v2_1_float_relaxed.model.cpp
dad329b83b38cd8e98c266139c390b4ddfda3374
[ "Apache-2.0" ]
permissive
Wenzhao-Xiang/webml-wasm
e48f4cde4cb986eaf389edabe78aa32c2e267cb9
0019b062bce220096c248b1fced09b90129b19f9
refs/heads/master
2020-04-08T11:57:07.170110
2018-11-29T07:21:37
2018-11-29T07:21:37
159,327,152
0
0
null
null
null
null
UTF-8
C++
false
false
1,213
cpp
// clang-format off // Generated file (from: pad_v2_1_float_relaxed.mod.py). Do not edit void CreateModel(Model *model) { OperandType type0(Type::TENSOR_FLOAT32, {1, 2, 3, 1}); OperandType type1(Type::TENSOR_INT32, {4, 2}); OperandType type2(Type::FLOAT32, {}); OperandType type3(Type::TENSOR_FLOAT32, {1, 4, 7, ...
[ "wenzhao.xiang@intel.com" ]
wenzhao.xiang@intel.com
be26662e2b2e7f433379657cc4e2b6af1922ebee
2859a7c8fb2a22471e22d1bbfd9ad34101c9593a
/project/src/CollisionEnvironment.cpp
56eb081863bacdb06b08ec209c6ebb52b7a40aef
[]
no_license
kobutri/cgintro_animation_project
bf06f095ad6a953e94b3fbe0fa6e7d56bd37f77d
f21e268ec96be856a337a9a76e87146c460746d2
refs/heads/master
2022-11-20T16:17:10.538864
2020-07-17T13:56:01
2020-07-17T13:56:01
null
0
0
null
null
null
null
UTF-8
C++
false
false
619
cpp
#include "CollisionEnvironment.h" #include "Shader.h" CollisionEnvironmentObjectsBuffer::CollisionEnvironmentObjectsBuffer(CollisionEnvironmentObjects objects) : Buffer( objects.collisionObjects.data(), sizeof(CollisionObject) * objects.collisionObjects.size(), GL_STATIC_DRAW) {} void CollisionEnvironmentOb...
[ "ymi.yugy@gmx.de" ]
ymi.yugy@gmx.de
ec72a3ec68e426b3cc44eb9a01477cfddeac53bd
aa9887968b39c45f0cda27cf22152fc5e5b7d46d
/src/vendor/cget/cget/pkg/pqrs-org__cpp-osx-input_source_selector/install/include/pqrs/osx/input_source_selector/specifier.hpp
195fee9a7d47cfa03370e44eb7c4728761a1397a
[ "Unlicense" ]
permissive
paganholiday/key-remap
9edef7910dc8a791090d559997d42e94fca8b904
a9154a6b073a3396631f43ed11f6dc603c28ea7b
refs/heads/master
2021-07-06T05:11:50.653378
2020-01-11T14:21:58
2020-01-11T14:21:58
233,709,937
0
1
Unlicense
2021-04-13T18:21:39
2020-01-13T22:50:13
C++
UTF-8
C++
false
false
3,821
hpp
#pragma once // (C) Copyright Takayama Fumihiko 2019. // Distributed under the Boost Software License, Version 1.0. // (See http://www.boost.org/LICENSE_1_0.txt) #include <optional> #include <pqrs/hash.hpp> #include <pqrs/osx/input_source.hpp> #include <regex> #include <string> namespace pqrs { namespace osx { names...
[ "tekezo@pqrs.org" ]
tekezo@pqrs.org
a1c61ec3091ae6747f4022bbf48368b244449a53
78dc9f82fc24a614b2ccdcfc9789f7d04454f05e
/android/hardware/aw/atw/atw1.0/client/PortalClientLocal.h
5481547a8fea5dc0e98da7acb4e74897d208b945
[]
no_license
dcboy/BPI-A83T-Android7
8af2a4e4f6856260f3c47417e03ba61fa2d7a4a0
518ce59fcab35adce0a2183ef5fca017d2c448d5
refs/heads/master
2023-06-27T21:45:44.939149
2019-05-23T03:48:14
2019-05-23T03:48:14
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,659
h
#pragma once #include "PortalClient.h" #include "IAtwService.h" #include "IAtwClient.h" #include "HeadTrackerThread.h" #include "HeadTracker.h" #include "AtwRenderFpsObserver.h" using namespace android; namespace allwinner { class PortalClientLocal : public PortalClient { public: PortalClient...
[ "Justin" ]
Justin
6deca7eb7ac0f40b63def905b964add87fb8024d
7a7db30f6e59fb019289f3d2630b5997751c5f22
/testMM_threads.cpp
f3a85b07c02e71d4d3c69a62a9cab6358f5109a2
[]
no_license
darkac/CacheFrame_Simple
b231d6e53a40ab1c2841bd6c952332a73c19586a
5d791f7d51a7134815f49ffe38d61d126bb36d72
refs/heads/master
2021-01-23T14:57:47.914763
2013-04-24T13:01:25
2013-04-24T13:01:25
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,095
cpp
// Last modified: 2012-11-21 03:15:55 /** * @file: testMM.cpp * @author: tongjiancong(lingfenghx@gmail.com) * @date: 2012-08-28 18:23:34 * @brief: **/ /* Talk is cheap, show me the code. */ /* Good luck and have fun. */ #include <iostream> #include <cstdio> #include <cstdlib> #include <cstring> #include <...
[ "lingfenghx@gmail.com" ]
lingfenghx@gmail.com
949046123bb92b7c7e89d0b2cb1a9842847988c6
e2c2d90fb9ea7a912497d23e95b8fcfc5184283f
/src/Parser.cxx
1ec73fc44f88deacb57baaf17eb5eda4912bf960
[]
no_license
Maciej-Poleski/kompilator
404f0dff13aa81c0918d5f11205eb6c5308e02ad
073aad48510e3a9fc641d940906e1a7f0875fe7f
refs/heads/master
2021-09-14T10:49:06.954127
2021-08-15T16:30:23
2021-08-15T16:30:23
96,228,470
0
0
null
null
null
null
UTF-8
C++
false
false
293
cxx
#include "Parser.hxx" #include "lexer.hxx" int Parser::parse(const std::string &f) { yyin = fopen(f.c_str(), "r"); yy::parser parser(*this); int res = parser.parse(); return res; } void yy::parser::error(const std::string &msg) { std::cerr << "ERROR: " << msg << '\n'; }
[ "d82ks8djf82msd83hf8sc02lqb5gh5@gmail.com" ]
d82ks8djf82msd83hf8sc02lqb5gh5@gmail.com
7175beb48ab58a6c63c00c8bfc15d2c117b868ae
b0c66358ae5c0386db5887e2609929e753c38d18
/arch/rychlostne/2019-rychlostne-vs-vyberko/onoriver.cpp
9843c5b8516426a2c030b1a43d2434eb1a46ee79
[]
no_license
michalsvagerka/competitive
e7683133ee5f108429135a3a19b3bbaa6732ea9f
07f084dff6c1ba6f151c93bf78405574456100e4
refs/heads/master
2021-06-07T14:54:35.516490
2020-07-07T08:17:56
2020-07-07T08:19:09
113,440,107
4
0
null
null
null
null
UTF-8
C++
false
false
1,427
cpp
#include "../l/lib.h" #include "../l/segtree.h" class onoriver { public: void solve(istream& cin, ostream& cout) { int N; cin >> N; ll D, W; cin >> W >> D; vector<ll> S(N), E(N), M(N); for (int i = 0; i < N; ++i) { cin >> M[i] >> S[i] >> E[i]; } vector<p...
[ "michal.svagerka@dswiss.com" ]
michal.svagerka@dswiss.com
1540f2e517ad205064b11f9944354134ee7b561a
36f8c734bce7c42861b771e73a56fa2fc8f9996c
/include/hfsm2/detail/structure/root.inl
f9452d7122bf9e31c855f1044fc47331ef6ae4df
[ "MIT" ]
permissive
carlchan0514/HFSM2
412e2d7d65e899794b38cb03fe90c74468a9086f
f30ac971b7a6d36cc60c2b49f837df392d9f04ad
refs/heads/master
2020-08-01T04:51:22.736388
2019-08-16T20:58:20
2019-08-16T20:58:20
null
0
0
null
null
null
null
UTF-8
C++
false
false
14,500
inl
namespace hfsm2 { namespace detail { //////////////////////////////////////////////////////////////////////////////// template <typename TG, typename TA> R_<TG, TA>::R_(Context& context, Random_& random HFSM_IF_LOGGER(, Logger* const logger)) : _context{context} , _random{random} HFSM_IF_LOGGER(, _log...
[ "andrew-gresyk@users.noreply.github.com" ]
andrew-gresyk@users.noreply.github.com
9c62060506d273dfaa011c4c341e4fb87b99b608
2a7b6bcc05a71a65caf48aa05de5d590811d4c81
/src/dex/hashlib/algorithms/algorithm.CRC-16_BUYPASS.c.inl
61a5f8d61ea838360f5b8d264370f276cdaa08ff
[ "Zlib" ]
permissive
GrieferAtWork/deemon
339281627990604fd0acfc534b8fb7751d84894e
3f9cd7ae815b8b42bd931d9d3ef6adf5656ca074
refs/heads/master
2023-08-31T09:33:57.382088
2023-08-19T15:14:13
2023-08-19T15:14:13
143,714,050
10
2
null
null
null
null
UTF-8
C++
false
false
4,644
inl
{ UINT16_C(0x0000), UINT16_C(0x8005), UINT16_C(0x800f), UINT16_C(0x000a), UINT16_C(0x801b), UINT16_C(0x001e), UINT16_C(0x0014), UINT16_C(0x8011), UINT16_C(0x8033), UINT16_C(0x0036), UINT16_C(0x003c), UINT16_C(0x8039), UINT16_C(0x0028), UINT16_C(0x802d), UINT16_C(0x8027), UINT16_C(0x0022), UINT16_C(0x8063), UINT16_C(...
[ "GrieferAtWork@users.noreply.github.com" ]
GrieferAtWork@users.noreply.github.com
bf06fb2fe5b300f0aceafbd5bb53f85847c94d16
4fab2ca0f9c32c394dc0c3dcd3a4e72884c83310
/src/leveldb/doc/bench/db_bench_tree_db.cc
dea40117537d04ff92761eb539a44912dbd8be2e
[ "MIT" ]
permissive
WiseCoinDev1/pro
169ae72fda68b219f86d8c0f0c8043f7def0f208
9f5d268c32124051baf811d05d5837e7eed04d9e
refs/heads/master
2020-03-07T08:30:57.491696
2018-03-30T08:30:54
2018-03-30T08:30:54
127,380,515
0
0
null
null
null
null
UTF-8
C++
false
false
15,946
cc
// Copyright (c) 2011 The LevelDB Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LILMENSE file. See the AUTHORS file for names of contributors. #include <stdio.h> #include <stdlib.h> #include <kcpolydb.h> #include "util/histogram.h" #include "uti...
[ "4mindsmine@gmail.com" ]
4mindsmine@gmail.com
3534711a9d8766256253da20d83fd986e2bfe218
b1ec5452ac46b20b0adc1117ebafae7ee7dc9782
/work/cpp/RandomPaint/ParametricCurve.cpp
4344b23dbe28fc50bf173d2ea5b73b302a1e0309
[]
no_license
MishaLivshitz/experis
bce65d9d7a457fc48492105d51f4a9e51ef3ae88
038fe5e5a318ed11c595bce6654ff11ac7fbb355
refs/heads/master
2020-07-31T13:33:47.318537
2019-09-24T14:13:52
2019-09-24T14:13:52
210,619,343
0
0
null
null
null
null
UTF-8
C++
false
false
363
cpp
#include "ParametricCurve.h" ParametricCurve::ParametricCurve(Color const& _c, Point const& _begin, Point const& _end ,Point const& _control) : Line(_c,_begin,_end) ,m_controlP(_control) { } void ParametricCurve::Move(Point const& _diraction) { Line::Move(_diraction); m_controlP += _diraction; } double co...
[ "michaellivshitz91@gmail.com" ]
michaellivshitz91@gmail.com
7dd2eb8d6ed11f2450f91bb79b9d17e6ef034847
bc29e081d40bd65f60af7bd6c89a02fdb500db45
/drivers/STM32_DFU/tools/DfuSe v3.0.5/Sources/STDFUPRT/DetachThread.CPP
b83e7ea2cf627f7208099cbe1a307b9d93337fee
[ "CC-BY-3.0", "Apache-2.0" ]
permissive
myriadrf/LMS8001-Companion
3907770a5aeb51b0c473bb1266e5d3a8050c73e9
4238ff999e62607d27aee17d513e53dc4e3a1a40
refs/heads/master
2021-05-15T13:56:47.820118
2019-09-10T07:56:46
2019-09-10T07:56:46
107,255,219
24
20
null
null
null
null
UTF-8
C++
false
false
11,992
cpp
/******************** (C) COPYRIGHT 2015 STMicroelectronics ******************** * Company : STMicroelectronics * Author : MCD Application Team * Description : STMicroelectronics Device Firmware Upgrade Extension Demo * Version : V3.0.5 * Date : 01-September-2...
[ "arback@computer.org" ]
arback@computer.org
33744b1bd728e35c43eec7f5b9b15eea636e195d
62d33fa0eca8c0145611cd0efe6e9c4d8bb8b378
/Zerojudge/b211.cpp
e3d08d459d04d69e204cb6085c0c00d702497cdb
[ "MIT" ]
permissive
yousefalaa2021/OJ
da085e3eba1c80b7998c471bd3aed71d774985f2
67d1d32770376865eba8a9dd1767e97dae68989a
refs/heads/master
2023-03-15T20:16:56.439701
2019-05-01T11:29:10
2019-05-01T11:29:10
null
0
0
null
null
null
null
UTF-8
C++
false
false
604
cpp
#include <cstdlib> #include <iostream> using namespace std; int GCD(int m, int n) { int k; while (n!=0) { k=m%n; m=n; n=k; } return m; } int Pow(int a, int n, int p) { int i, t; for (i=0, t=1; i<n; i++) t=(t*a)%p; return t; } mai...
[ "w181496@gmail.com" ]
w181496@gmail.com