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
2ac69c2d5650ce6e777069d072f4f0452be0260f
d041118ac86aa399d40d0cb807476ce8aceb2aad
/Yellow/WeekTwo/DecomDecom.cpp
0e99bfadba3f75a9799ce15c42a61fd51904ecb3
[]
no_license
ElenaDolgova/coursera_white
2795a93807ddfb9dfc2e5422eba4536b48213a81
9c36340af580ab82ef555de441f401bc5cb2e133
refs/heads/main
2023-04-28T03:33:24.081288
2021-05-18T12:33:52
2021-05-18T12:33:52
368,522,962
0
0
null
null
null
null
UTF-8
C++
false
false
5,638
cpp
#include <string> #include <iostream> #include <cassert> #include <vector> #include <map> using namespace std; enum class QueryType { NewBus, BusesForStop, StopsForBus, AllBuses }; struct Query { QueryType type; string bus; string stop; vector<string> stops; }; istream &operator>>(is...
[ "ms.Elena.Dolgova@ya.ru" ]
ms.Elena.Dolgova@ya.ru
b66e43c866b2709e07307175a8ff7d61b4de68ca
f92ff80d4cd12a62c08e316f1ff6f523b83edd8f
/src/engines/graphics/scenenodeitem.cpp
a6c342203bf41fe26baa2c1daff8f8793ad7d253
[]
no_license
xabufr/pixelwars
70024a557d780b63636e65164fed2468f0f1baaf
11b8c3a759cd0efa006378fa62af505d96eb0a94
refs/heads/master
2020-05-30T08:28:48.017877
2014-06-25T18:47:50
2014-06-25T18:47:50
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,445
cpp
#include "scenenodeitem.h" SceneNodeItem::SceneNodeItem() { m_relative.rotation=0; m_relative.scale=sf::Vector2f(1,1); m_visible=true; } SceneNodeItem::~SceneNodeItem() { //dtor } const sf::Vector2f& SceneNodeItem::GetRelativePosition() const { return m_relative.position; } float SceneNodeItem::Ge...
[ "xabufr@gmail.com" ]
xabufr@gmail.com
b8e659bcfd8e1b39170892211bad7258c08e2ca5
04518b3b97789455e9afd96ab67186ae3bd11b87
/coding/codechef/ckd2.cpp
45305b59679a84f8d7b6c514a232e785e16427fc
[]
no_license
shubhampal077/s_pal1
36e14f47dae2c3666538f3d06e3b0e6a17e60ade
d577f3b587739757b93e6fb3d000adbfc3893386
refs/heads/master
2020-07-06T10:36:12.852462
2019-08-18T10:42:51
2019-08-18T10:42:51
202,988,205
0
0
null
null
null
null
UTF-8
C++
false
false
859
cpp
#include<bits/stdc++.h> using namespace std; typedef long long int ll; #define MOD 1000000007 int mod(string num, int a) { // Initialize result int res = 0; // One by one process all digits of 'num' for (int i = 0; i < num.length(); i++) res = (res*10 + (int)num[i] - '0') %a; r...
[ "shubhampalggps@gmail.com" ]
shubhampalggps@gmail.com
df148c37ad92334ce3796a82094eb29a97762f6b
ba00658155d78f9a1e66af59e6b2845ef4bdacf3
/philosophers/src/dining_philosopher/src/MonitoredPhilosopher-main.cc
2c16deb977c4f7acc660e225a744a5b5e9a94ee9
[]
no_license
karasavm/philosophers_experiements
72b25002215058688ceaf67196df32ba176ce7b1
162b4a44635ab8a82918490d167d06e0fd81ce5e
refs/heads/master
2021-01-01T20:48:13.840003
2013-12-02T21:53:59
2013-12-02T21:53:59
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,479
cc
/* * Copyright (C) 2012 Aristotle Univeristy of Thessaloniki, Greece * * 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 ...
[ "karasavm@gmail.com" ]
karasavm@gmail.com
b48137e6b9dc08034ba6cefd29fce1f089b03b67
185412a166cc59dd191ea91ac0ed99e03ff7b08e
/Pizza.cpp
130e86450aa4bd4b04ad31c770d0623c77dfcce6
[]
no_license
RobertLarson/TemplateMethodPattern
6d992cfc759cb68854c1b210741fe6707905747c
3b86a364196bce128f914193177dc0972bd68773
refs/heads/master
2021-01-19T08:46:50.887724
2017-04-09T02:51:30
2017-04-09T02:51:30
87,674,552
1
0
null
null
null
null
UTF-8
C++
false
false
558
cpp
/* * Pizza.cpp * * Created on: Apr 8, 2017 * Author: Robert Larson */ #include "Pizza.h" #include <iostream> Pizza::Pizza(std::string description) : m_description(description) { } Pizza::~Pizza() { } void Pizza::Prepare() { std::cout << "Preparing a " << m_description << "...\n"; PrepareDough(); Ad...
[ "Robert.Larson@robertlarsononline.com" ]
Robert.Larson@robertlarsononline.com
22827f0adb719ff73e7f4d1e080039840af8e41e
752572bd6010ef068c4851b55a261a2122f29094
/aws-cpp-sdk-rds-data/include/aws/rds-data/model/Value.h
dfb5806253f99c7247e345dbb1d89ba2e05d1288
[ "Apache-2.0", "MIT", "JSON" ]
permissive
cnxtech/aws-sdk-cpp
9b208792b2e81b3a22a850c3d0fbf4724dc65a99
af8089f6277b8fec93c55a815c724444bd159a13
refs/heads/master
2023-08-15T02:01:42.569685
2019-05-08T20:39:01
2019-05-08T20:39:01
185,732,288
0
0
Apache-2.0
2023-07-22T05:12:44
2019-05-09T05:30:49
C++
UTF-8
C++
false
false
9,028
h
/* * Copyright 2010-2017 Amazon.com, Inc. or its affiliates. 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. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" fil...
[ "aws-sdk-cpp-automation@github.com" ]
aws-sdk-cpp-automation@github.com
71c42cfb142d1cf3ed8d34657a4a0ae0aaca5780
b88eeed20d442c3e164c727a97db7bdf1935b70f
/contrib/oxl/mvl/HomgMatchPoint3D2D.h
c337b5856ed4974a70115af8e6ed824defe40db7
[]
no_license
huanghailiang/vxl-1.17.0
be3b4909ef31efc2aa0eb4ee884e5190704ca060
c3076ac1013f10a532fe6d6b3c5f5b78eb26466e
refs/heads/master
2021-07-23T04:05:36.954717
2017-11-01T07:23:22
2017-11-01T07:23:22
109,099,265
0
0
null
null
null
null
UTF-8
C++
false
false
957
h
// This is oxl/mvl/HomgMatchPoint3D2D.h #ifndef HomgMatchPoint3D2D_h_ #define HomgMatchPoint3D2D_h_ #ifdef VCL_NEEDS_PRAGMA_INTERFACE #pragma interface #endif //: // \file // \brief A match between a 3D and 2D point // // A class to hold a match between a 3D and 2D point. // #include <mvl/HomgPoint2D.h> #include <mvl/...
[ "huanghailiang711@163.com" ]
huanghailiang711@163.com
e75f285986683e054590a8c69cecdcaca12349d6
eab2ea8f23a1c7d88a69f973e9f32b16ce103259
/equation of a line.cpp
48ae9da7588befd9b80e17dd7e8a1e596142a768
[]
no_license
apaarkamal/miscellaneous-codes
73a973a0f66973c15262b0a0dae2e8776ac3b0ae
df822d1dc06b7cb5426bbb04256179c5b5b04641
refs/heads/master
2020-06-12T19:50:16.772416
2019-12-02T05:59:03
2019-12-02T05:59:03
194,406,672
6
10
null
null
null
null
UTF-8
C++
false
false
2,143
cpp
#include<bits/stdc++.h> using namespace std; #define int long long int #define ld long double #define F first #define S second #define P pair<int,int> #define V vector #define pb push_back #define db(...) __f(#__VA_ARGS__, __VA_ARGS__) template <typename Arg1> void __f(const char* name, Arg1&& arg1) { cerr << name <...
[ "apaarsaxena@gmail.com" ]
apaarsaxena@gmail.com
e1a817336f81c0f346d202afe17f0da6b2525910
825baeebcab670220ee929252c78a42fe2c5fc7f
/dragonpoop_prealpha/dragonpoop/gfx/model/model_group_instance/model_group_instance_writelock.cpp
93c897a7f534d65c753d8fd894c6620d12974ddd
[]
no_license
rvaughn4/dragonpoop_prealpha
45e381cd06eea83aa022decf730688085e2b87a3
e16b41838a42fed417cfeef075509f744fe6f38a
refs/heads/master
2016-09-05T11:36:02.701048
2015-07-25T02:15:20
2015-07-25T02:15:20
37,826,187
0
0
null
null
null
null
UTF-8
C++
false
false
1,820
cpp
#include "model_group_instance_writelock.h" #include "model_group_instance.h" namespace dragonpoop { //ctor model_group_instance_writelock::model_group_instance_writelock( model_group_instance *t, dpmutex_writelock *l ) : model_component_writelock( t, l ) { this->t = t; } //dtor mode...
[ "richard@richards-Mac-mini.local" ]
richard@richards-Mac-mini.local
897e3244ffe124f91ccf045a244300f3c95bf89c
6b2a8dd202fdce77c971c412717e305e1caaac51
/solutions_1483488_1/C++/DenXX/c.cpp
e53d0794630c209fbd0ed9d4dd5392dd57afc86a
[]
no_license
alexandraback/datacollection
0bc67a9ace00abbc843f4912562f3a064992e0e9
076a7bc7693f3abf07bfdbdac838cb4ef65ccfcf
refs/heads/master
2021-01-24T18:27:24.417992
2017-05-23T09:23:38
2017-05-23T09:23:38
84,313,442
2
4
null
null
null
null
UTF-8
C++
false
false
745
cpp
#include <iostream> #include <vector> #include <set> #include <math.h> using namespace std; int check(int a, int b, int n) { int res = 0; int digcount = (int)(log(n)/log(10)) + 1; set<int> ns; for (int i = 1; i < digcount; ++i) { int dec = pow(10, i); int dec2 = pow(10, digcount - i); int left = n / dec; ...
[ "eewestman@gmail.com" ]
eewestman@gmail.com
eee04280c3246d7c601b7a438a089586dbf7a4a7
31ac1d5aa829e459527e110bccce82d0f9d02231
/tomjerry.cpp
28daa92facf55431773af5b75d588d6b338d12b3
[]
no_license
nv-piyush/CodeChef-June-Challenge-2020
67f2d870478b788ae9f3b8067b40306d18bb8c2c
f7a519243ffd0afd5511ead65a805077e9d197a4
refs/heads/master
2022-11-07T15:45:10.083701
2020-06-27T12:19:09
2020-06-27T12:19:09
275,362,167
0
0
null
null
null
null
UTF-8
C++
false
false
822
cpp
#include <iostream> using namespace std; int main() { // your code goes here int t; cin>>t; while(t--){ long long int ts; cin>>ts; while(ts%2==0) ts/=2; ts/=2; cout<<ts<<endl; /*if(ts==1){ cout<<"0"<<endl; } while(i<=ts && ts>1){ ...
[ "noreply@github.com" ]
nv-piyush.noreply@github.com
9321de9ca49afe7fa691ee61406a58ed7c4d329e
ab0dcab89f39d12746ad2b3506e1c2c34d8f1bf4
/POJ/1947/9310297_AC_16ms_752kB.cpp
8b260d53f1a854dfa7fd2339aa1b92b52b878e72
[]
no_license
lum7na/ACM
f672583ff3022bc916d9cd3d721f0a464b287042
fa667f4105450ec48e9b1d1b062f1444b6f0da32
refs/heads/main
2023-05-06T21:23:13.069269
2021-06-01T11:56:16
2021-06-01T11:56:16
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,132
cpp
#include<cstdio> #include<algorithm> #include<cstdlib> #include<iostream> #include<cstring> #include<cmath> using namespace std; const int maxn=150; int root; struct edge { int to,nxt; } edges[maxn+5]; int n,fa[maxn+5],p; int tot,head[maxn+5]; int f[maxn+5][maxn+5]; inline void add_edge(int from,int to) { edges[...
[ "aster2632@gmail.com" ]
aster2632@gmail.com
fbfa26849ea73a19b1fa498d8d4c65a4fc20bb73
b8cb3acc677efcb6e73c0f884e2f8a639d5536c3
/variational_fluids/VariationalViscosity3D/pcgsolver/sparse_matrix.h
728e89f628543daab2f7f3107ab6dfe8ecfe72ae
[ "Apache-2.0" ]
permissive
OrionQuest/Nova_Examples
89af95cf696442b198073d06812eea0e3b3526e4
482521902bc3afa7d0caefeb9ce9595456384961
refs/heads/master
2021-06-03T02:25:39.100078
2020-12-13T02:37:23
2020-12-13T02:37:23
141,195,357
3
2
null
null
null
null
UTF-8
C++
false
false
8,114
h
#ifndef SPARSE_MATRIX_H #define SPARSE_MATRIX_H #include <iostream> #include <vector> #include "../util.h" //============================================================================ // Dynamic compressed sparse row matrix. template<class T> struct SparseMatrix { unsigned int n; // dimension std::vector<std...
[ "mridul.aanjaneya@gmail.com" ]
mridul.aanjaneya@gmail.com
23c963fe0be9322bb3edee7faa012f773163756b
07074962be026c67519a0ccfb3d48bd95ede38ed
/Forms/c5saledoc.h
06685ae163cca1ebba2977147efb552467d77df7
[]
no_license
End1-1/Cafe5
2fa65c62f395c186e2204f3fb941a2f93fd3a653
ba2b695c627cf59260a3ac1134927198c004fe53
refs/heads/master
2023-08-17T02:39:29.224396
2023-08-14T06:37:55
2023-08-14T06:37:55
151,380,276
2
1
null
null
null
null
UTF-8
C++
false
false
2,543
h
#ifndef C5SALEDOC_H #define C5SALEDOC_H #include "c5widget.h" #include "cpartners.h" #include "odraftsale.h" #include "odraftsalebody.h" #include <QJsonObject> namespace Ui { class C5SaleDoc; } static const int PRICEMODE_RETAIL = 1; static const int PRICEMODE_WHOSALE = 2; #define REPORT_HANDLER_SALE_DOC_OPEN_DRAFT ...
[ "end1_1@yahoo.com" ]
end1_1@yahoo.com
03a303c9b9445d9da259ed70285d63e4c9c298a7
6c66f928a42f891a8b585015b2f71e44ac7b9f8d
/TutIntV30/Act2DosBI.h
1ad857286ced9449fc04096f2a6806d4f11cfdce
[]
no_license
FelipeSegovia/TutInt
5857e20d3aa0b5c10a61a788c2f73d3bde888c75
7b30644d2f9b0ca0f8901da4e70d7b2ff607c53a
refs/heads/master
2020-03-17T19:10:19.103492
2018-05-17T17:53:22
2018-05-17T17:53:22
133,848,477
0
0
null
null
null
null
ISO-8859-1
C++
false
false
30,820
h
#pragma once #include "BaseDeDatos.h" #include "AgenteControlador.h" #include "TiempoMI.h" #include "TiempoGUI.h" namespace TutIntV30 { using namespace System; using namespace System::ComponentModel; using namespace System::Collections; using namespace System::Windows::Forms; using namespace System::Data; using...
[ "felipe.segovia.rod@outlook.com" ]
felipe.segovia.rod@outlook.com
db63a5de55386dfc18dc873daa6cab98dfd6fa1d
4bf98ef4b80d7029eab3873cdf0b09e44d79abac
/include/api/segmenter/segmenter_cimg.hpp
eab354f7b492e86d37052fccef84e2e9f17f8e5a
[]
no_license
cy20lin/2018_fall_image_processing_final_api_segmenter
8899bea3779f5cd4bb52ea2eabd4d988102f2be4
7e727a45d123ba908ad7b42feb1c201dbda6d823
refs/heads/master
2020-04-12T20:52:12.228571
2018-12-27T08:02:43
2018-12-27T08:03:13
162,749,064
0
1
null
null
null
null
UTF-8
C++
false
false
3,950
hpp
#ifndef FINAL_MODULE_SEGMENTER_INCLUDE_API_SEGMENTER_SEGMENTER_CIMG_HPP_INCLUDED #define FINAL_MODULE_SEGMENTER_INCLUDE_API_SEGMENTER_SEGMENTER_CIMG_HPP_INCLUDED #include "core.hpp" #include <exception> // #include "cv_cimg_bridge.hpp" // #include "cv_bridge.hpp" #include "cimg_bridge.hpp" // #include <opencv/cv.h> n...
[ "cy20lin@gmail.com" ]
cy20lin@gmail.com
7dd405f94de1491bbfcf3131eca527d4d7972a1e
42b38ab2e841846d9b63d6dacf1a4227be117308
/Krkr/XP3Viewer-121113/krkr2/tjs2/tjs.tab.h
13ec86cdb4460b29ce3b7bc0aabded71e8bcc585
[]
no_license
Inori/FuckGalEngine
0905a9a2ad17db186a445dd7c938c4730b76fc2c
c966c2bf82975d078beb3b9c0b53f7390d3618d9
refs/heads/master
2023-07-29T00:33:53.672955
2022-02-06T01:52:40
2022-02-06T01:52:40
17,017,253
706
186
null
2022-02-06T01:52:41
2014-02-20T10:49:38
C
UTF-8
C++
false
false
7,997
h
namespace TJS { /* A Bison parser, made by GNU Bison 2.3. */ /* Skeleton interface for Bison's Yacc-like parsers in C Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the ...
[ "811197881@qq.com" ]
811197881@qq.com
b054b91fec32f20447d5f82b98b91b9d9f4edbcc
653afab7f94dfb44c3cf857e845e82ca87214eeb
/src/CryptoFilter.h
44dfdbc9d87179f9b31e2499313d478aa3896922
[ "BSD-2-Clause" ]
permissive
Helios-vmg/zekvok
e98c4f5397e635553ad53c8ff1dba662b93ed799
b90ec897af2bdb55764f9de00d5a1f38f80fe70f
refs/heads/master
2021-01-21T04:33:02.594608
2015-10-31T23:37:29
2015-10-31T23:37:29
43,264,987
1
0
null
null
null
null
UTF-8
C++
false
false
1,375
h
/* Copyright (c), Helios All rights reserved. Distributed under a permissive license. See COPYING.txt for details. */ #pragma once #include "Filters.h" enum class Algorithm{ Rijndael, Twofish, Serpent, }; class CryptoOutputFilter : public OutputFilter{ protected: bool flushed; virtual std:...
[ "helios.vmg@gmail.com" ]
helios.vmg@gmail.com
2328ffd6676b8dc4c55c782f3de9930307146b05
a1135c0745cf2210d547af55a9bb732818cd4216
/src/cpp/omicron/api/context/__context.hpp
c78a939eeb95c89d40859a6b0118a30a1ecb8371
[]
no_license
DavidSaxon/Omicron
bb8138ed55af8769a757c2493d66174dbd7e80b7
88adf810740f6728deb02ebeeb3808bb4a5f1ed2
refs/heads/master
2020-04-05T22:58:10.105260
2018-01-17T09:57:20
2018-01-17T09:57:20
68,196,461
0
0
null
null
null
null
UTF-8
C++
false
false
368
hpp
/*! * \file * \brief Documents the omi::context namespace. * \author David Saxon */ #ifndef OMICRON_API_CONTEXT_HPP_ #define OMICRON_API_CONTEXT_HPP_ namespace omi { /*! * \brief Module for providing and managing the context in which Omicron is * running. */ namespace context { } // nam...
[ "davidesaxon@gmail.com" ]
davidesaxon@gmail.com
239d429cf3c180997a43501a9240f56ebcaaec57
eb583dfc1709950c4f61244d0f0e7666c09e0d8e
/Reverse pair.cpp
9b166200298b4197b7b11e95439e8531016384e7
[]
no_license
tanyasri02/Maths-for-Interview
54005bb581d7536e0ab401c01758eb8444699b38
893650b554490352c7420ca959627eff5b939f72
refs/heads/main
2023-06-26T20:44:59.092739
2021-07-30T05:02:36
2021-07-30T05:02:36
390,594,728
1
0
null
null
null
null
UTF-8
C++
false
false
1,243
cpp
class Solution { public: int merge(vector<int>&nums,int low,int mid,int high) { int count=0; int j=mid+1; for(int i=low;i<=mid;i++) { while(j<=high && nums[i]>nums[j]*2LL) { j++; } count+=(j-(mid+1)); ...
[ "noreply@github.com" ]
tanyasri02.noreply@github.com
852e97c4d3ed73246ce22c3d1c4a0134b301d908
d98404868eafa300b07fc90f98e14890bdf148a4
/preMacro.cpp
a23b0464df793ff753751df7e8182637212fb5f7
[]
no_license
eltroneur/newbeeCpp
4f4974727b33fd9fa64fd334c46775c237943506
d9a8f77b7c9d5e7b8eb2623315d7713ce28c4bea
refs/heads/master
2022-02-10T22:10:37.758263
2022-01-27T09:58:18
2022-01-27T09:58:18
182,321,626
0
0
null
null
null
null
UTF-8
C++
false
false
336
cpp
// preMacro.cpp -- using pre-defined MACRO #include <iostream> int main() { std::cout << "Current line is " << __LINE__ << std::endl; std::cout << "Current filename is " << __FILE__ << std::endl; std::cout << "Current date is " << __DATE__ << std::endl; std::cout << "Current time is " << __TIME__ << std::endl;...
[ "cherishdevice@163.com" ]
cherishdevice@163.com
d4e3eb0742a8c144eea7cae9c4f894fa18c32639
24e95324f159c58077637c6deaae8073e8052837
/share_tuning/shared_tools/clientMsg&structAnalysis/Analysis/CRange.h
a5bcb591c86632b3a85c5776882028878de09bb0
[]
no_license
jgyh1987/eagle_server
21ff627ef5c9bc0b961f16114c4c0dfce92c9c57
341ea9649b6ddac82fe6ab89a5cb4df044df7443
refs/heads/master
2022-10-07T11:35:18.559726
2020-06-08T11:06:59
2020-06-08T11:06:59
270,552,049
1
2
null
null
null
null
GB18030
C++
false
false
45,682
h
// 从类型库向导中用“添加类”创建的计算机生成的 IDispatch 包装类 //#import "D:\\Office\\Office14\\EXCEL.EXE" no_namespace // CRange 包装类 class CRange : public COleDispatchDriver { public: CRange(){} // 调用 COleDispatchDriver 默认构造函数 CRange(LPDISPATCH pDispatch) : COleDispatchDriver(pDispatch) {} CRange(const CRange& dispatchSrc) : ...
[ "jgyh1987@outlook.com" ]
jgyh1987@outlook.com
45253955364c0db8a10e29bae253c14d45c22c56
7068afe0784327e29aef5436762317ff863f8333
/Login.h
5dd758cafe4f74f75e7aa2019f7494ede71ee030
[]
no_license
Michal198803/AdressBookObjectCPP
d97af9784b7ee96590de65335192f187953f9ecf
cc814e1f8b4b5d6d9ceb9d8a210ab1f429efbe16
refs/heads/master
2021-05-03T07:23:48.693110
2018-02-07T11:45:46
2018-02-07T11:45:46
120,607,711
0
0
null
null
null
null
UTF-8
C++
false
false
340
h
#ifndef LOGIN #define LOGIN #include <iostream> using namespace std; class Login { private: int userId; string login; string password; public: string getLogin(); void setLogin(string login); string getpassword(); void setpassword(string password); int getUserID(); void setUserID(int user...
[ "noreply@github.com" ]
Michal198803.noreply@github.com
de3f0598ead2227c2596415e15ae4a9ca57e6fbb
adc6ec6f7845f5c3ca81a17c09a938b6c399c8a7
/Chapter 6 - Threaded safe stack using mutex - A class definition example.cpp
fdf4e18f648d11f0952409562a62007288a1a262
[]
no_license
CyberExplosion/Concurrency-In-Action
57d9eb7cd885c3bb01a2618d94fbfd105239894c
a5786650874bdec36d5dffe34cb677be819c0d7b
refs/heads/main
2023-06-02T11:44:05.662065
2021-06-18T10:49:02
2021-06-18T10:49:02
324,660,323
0
0
null
null
null
null
UTF-8
C++
false
false
1,706
cpp
#include <thread> #include <stack> #include <mutex> #include <exception> using namespace std; struct empty_stack : std::exception { const char* what () const noexcept; }; template <typename T> class threadsafe_stack { private: stack<T> data; mutable mutex m; public: threadsafe_stack () {}; threadsafe_stack (cons...
[ "minhkhoi632000@gmail.com" ]
minhkhoi632000@gmail.com
00f0ca5d14ff88baae7c7655489c74e858810520
1fdfea493b09e075f4fceb5f9a1ae631a39bed0c
/botDriver/lib/Driving/Driving.cpp
f1c0c67f8e1b346f39e826305aa4e301f18d90da
[]
no_license
datduyng/unlRobotic2018
c14f617250132320f285d3c12fbe5e09bb161cb2
1dd839a2546c2a0aa53823a9d4fc222800ec7470
refs/heads/master
2020-03-19T04:22:24.051655
2018-07-19T14:47:58
2018-07-19T14:47:58
135,820,788
0
0
null
null
null
null
UTF-8
C++
false
false
11,168
cpp
/* Author: CheeTown Liew Version of June 10, 2017 This algorithm is designed to drive the robot and run with precise displacement using motor encoder, the algorithm includes simple proportion controller and displacement-encoder count convertor, speed comparator and path tracking. Micro-controller Board: Arduino Mega ...
[ "ctliew2@gmail.com" ]
ctliew2@gmail.com
e5a05e200f69060dc361c41b12108219f358b032
d73597607f21311105742ba4cd27b12091d8169e
/4.cpp
18778eb8dbf761af1cec6d6607385627a0af0646
[]
no_license
kndixx/lab-12
daad32b960c9cde42696979203aea34f91987ee7
ee523cfb622225a6599d913ecfc593d1cf259f63
refs/heads/main
2023-03-03T05:27:19.895535
2021-02-14T13:00:21
2021-02-14T13:00:21
338,805,956
0
0
null
null
null
null
UTF-8
C++
false
false
2,638
cpp
#include <iostream> using namespace std; int main() { int a; int d; cin >> a; d = a / 100; if (d == 1) { cout << "Сто "; } else if (d == 2) { cout << "Двести "; } else if (d == 3) { cout << "Триста "; } else if (d == 4) { cout <...
[ "noreply@github.com" ]
kndixx.noreply@github.com
c2eb45cb56d1a4f31c7ec183b071cc642b9c533d
57b96c6b71e76fb7b45f9cc66a64638c31c29c5e
/2_example/example21_talk/example21_talk.ino
019782541d13367ea7cfc5cd327a954a4047a549
[ "MIT" ]
permissive
kghrlabo/esp
04d3b945b8964c8ad40e0d6b94f92055508e2897
64c3f92c90198de3171a2a394231598b9f35f078
refs/heads/master
2020-04-03T11:43:34.139559
2018-10-08T07:49:16
2018-10-08T07:49:16
null
0
0
null
null
null
null
UTF-8
C++
false
false
7,021
ino
/******************************************************************************* Example 21: AquosTalkを使った音声出力器(HTTP版) Copyright (c) 2016 Wataru KUNINO *******************************************************************************/ #include <ESP8266WiFi.h> ...
[ "xbee@dream.jp" ]
xbee@dream.jp
3dad10cdfdf0c06265557453e09bad8b9d417fdd
71dae8653492a02c77f67d03a0824f920d5fd9ee
/Sparky-core/src/graphics/font_manager.cpp
27d03f1f57b246ab960d2dc72119787cc6584004
[ "Apache-2.0" ]
permissive
TheCherno/LD32
8ad6aeb6f1345ecb04a351e2632ac9cf343a595c
9654d71c62d94f3c00de9029ea42e248438fc02a
refs/heads/master
2016-09-06T06:35:55.806350
2015-04-21T05:01:45
2015-04-21T05:01:45
34,146,855
15
1
null
null
null
null
UTF-8
C++
false
false
798
cpp
#include "font_manager.h" namespace sparky { namespace graphics { std::vector<Font*> FontManager::m_Fonts; void FontManager::add(Font* font) { m_Fonts.push_back(font); } Font* FontManager::get() { return m_Fonts[0]; } Font* FontManager::get(const std::string& name) { for (Font* font : m_Fonts) { ...
[ "cherno21@hotmail.com" ]
cherno21@hotmail.com
08bdb373fdbf67aadfb6f8101385efbb65a38f14
b5a9d42f7ea5e26cd82b3be2b26c324d5da79ba1
/tensorflow/compiler/jit/clone_constants_for_better_clustering_test.cc
7944d8ebd12be754cec6e0c3633ee55bceb1fe5b
[ "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
6,717
cc
/* Copyright 2019 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
01c243cfaca7d5887fcce46b74cb6dc1d53a14cc
802e71f0fba696021f7e9e2bf11fdd7e72e48529
/project/framework/Source/Util/ShapeX.cpp
6716fb15f1a1296aaca0559ea8ef2876f1987dd4
[]
no_license
Supreeth55/Metronome
7754e303dbe4c02282f865b2331865deaa19202a
244a3f1b61a441ab3565137e32b7af3158e8373f
refs/heads/master
2020-12-20T02:57:31.338973
2020-01-24T04:36:43
2020-01-24T04:36:43
235,939,199
0
0
null
null
null
null
UTF-8
C++
false
false
972
cpp
/** * @file ShapeX.h * @author Romil Tendulkar * @date 10/22/2019 * @brief This file implements the shape classes that are used for collision detection * Copyright (C) 2019 DigiPen Institute of Technology. Reproduction or disclosure of this file or its contents without the prior written consent of DigiPen Insti...
[ "58317818+Supreeth55@users.noreply.github.com" ]
58317818+Supreeth55@users.noreply.github.com
a70b3a501a3203ad2271f55db077834dd084f1a0
333d2817fe023dc6b25f1669023fcd40dea54bb7
/samples/nanovg/src/nanovg/demo.cpp
2f93e2826e21b5506eccc586f0dff92028699913
[]
no_license
jaune/hope
48f9d8a67f0956e60bb02e0827eb867918ca2076
97a3ecddfdb3119cfbfd4fe693ba0b9c9ba64953
refs/heads/master
2021-01-21T06:59:09.610369
2015-05-22T11:16:09
2015-05-22T11:16:09
35,205,122
0
0
null
null
null
null
UTF-8
C++
false
false
30,766
cpp
#include "demo.h" #include "asset/asset.h" #include <stdio.h> #include <string.h> #include <math.h> #include <GLES2/gl2.h> #include "nanovg.h" #if defined(_MSC_VER) && _MSC_VER >= 1400 #define _CRT_SECURE_NO_WARNINGS // suppress warnings about fopen() #pragma warning(push) #pragma warning(disable:4996) // suppres...
[ "JauneLaCouleur@gmail.com" ]
JauneLaCouleur@gmail.com
d5dfc6655be8265a97162ec9f4a42ef9aa2012c3
5740ea2c2d9d5fb5626ff5ad651f3789048ae86b
/Extensions/Editor/AppCommands.cpp
d3de4866c9b37ede48e45d9421a034527b9f65ec
[ "LicenseRef-scancode-scintilla", "MIT" ]
permissive
donovan680/Plasma
4945b92b7c6e642a557f12e05c7d53819186de55
51d40ef0669b7a3015f95e3c84c6d639d5469b62
refs/heads/master
2022-04-15T02:42:26.469268
2020-02-26T22:32:12
2020-02-26T22:32:12
null
0
0
null
null
null
null
UTF-8
C++
false
false
6,640
cpp
#include "Precompiled.hpp" namespace Plasma { void OpenHelp() { Os::SystemOpenNetworkFile(Urls::cUserHelp); } void OpenPlasmaHub() { Os::SystemOpenNetworkFile(Urls::cUserPlasmaHub); } void OpenDocumentation() { Os::SystemOpenNetworkFile(Urls::cUserOnlineDocs); } void ExitEditor() { PL::gEditor->RequestQuit(...
[ "dragonCASTjosh@gmail.com" ]
dragonCASTjosh@gmail.com
6dd95251dfbc82633b1cba0a1130f72e4caca765
f28f1ed1620edd7aceb2166b1003d7a492763bda
/algorithms_projects/ga15_pointrobotshortestpath.h
464b5330e3947a0f2a598a9313ecdbd395205e0b
[]
no_license
Augus518/GeometryAlgorithms
047bda393db6f3ae7c1a63084051db334bfdc266
6fae7adcb64803817641c9e43679b1c047c3f9d0
refs/heads/master
2023-03-18T06:36:45.703066
2019-01-14T03:16:08
2019-01-14T03:16:08
null
0
0
null
null
null
null
UTF-8
C++
false
false
7,107
h
/* Autor: Matei Jon Stancu 1137/2015 Godina: 2018 Kratak opis problema: Dat je skup prepreka u ravni i dve tacke, potrebno je naci najkraci put izmedju datih tacaka, takav da ne sece unutrasnjost datih prepreka. */ #ifndef GA15_POINTROBOTSHORTESTPATH_H #define GA15_POINTROBOTSHORTESTPATH_H #i...
[ "mdfkprekid@gmail.com" ]
mdfkprekid@gmail.com
571f1a62584bad7d372c366ce30f5fe3955fa9a7
9b527d9e39ff2b33e2e86af842031bf27d4bebe4
/C/C-DS/C-AVL/src/main.cpp
c9d602b73ec3b03c5e762a2cf7b2ae65cbab1b2d
[]
no_license
Brinews/jacky
c50cdc5471ef7a764c2a27313ebf848e41c4aee0
e3f0f4bdf4253448f22306b353cb45560e882587
refs/heads/master
2021-01-17T08:32:11.034322
2017-12-03T08:28:17
2017-12-03T08:28:17
14,444,828
1
2
null
null
null
null
UTF-8
C++
false
false
2,753
cpp
#include <iostream> #include <string> #include <cassert> #include <vector> // local includes #include "AVLTree.h" #include "Data.h" using namespace std; void testDoubleData(){ // testing getData DoubleData d1 {}; DoubleData d2 {5}; assert (d1.getData() == 0); // default value assert (d2.getData() == 5); // testi...
[ "brinewsor@gmail.com" ]
brinewsor@gmail.com
47febedda61077f35cfd6caec90895854a7d3a41
1d0def2ec8eacce21b33b641229bb8dbcb4dfd8a
/sailfishclient/TapMenu.cpp
98debd00c3313697e4e9e59ad5ff2505d757bb04
[]
no_license
Nokius/monavsailfish
64dda8536c12852545e0454b9fa8a8ac43eac543
a762d58c765a4959d55dc5f31cce669513aaf33b
refs/heads/master
2020-12-24T23:11:30.830226
2015-03-08T18:04:35
2015-03-08T18:04:35
31,856,840
0
0
null
2015-03-08T16:34:03
2015-03-08T16:34:03
null
UTF-8
C++
false
false
1,737
cpp
#include "TapMenu.h" #include "interfaces/iaddresslookup.h" #include "interfaces/irenderer.h" #include "utils/qthelpers.h" #include "client/mapdata.h" #include "client/routinglogic.h" TapMenu::TapMenu(QObject *parent) : QObject(parent) { } TapMenu::~TapMenu() { } void TapMenu::searchTextChanged(QString text) { I...
[ "jettis@gmail.com" ]
jettis@gmail.com
851fbf1ba4355da7fdab1061d22fa598e4bf2052
d40efadec5724c236f1ec681ac811466fcf848d8
/tags/volition_import/fs2_open/code/network/multiteamselect.cpp
3edeca2fdf8c0c105c4da888ac762f764b53253d
[]
no_license
svn2github/fs2open
0fcbe9345fb54d2abbe45e61ef44a41fa7e02e15
c6d35120e8372c2c74270c85a9e7d88709086278
refs/heads/master
2020-05-17T17:37:03.969697
2015-01-08T15:24:21
2015-01-08T15:24:21
14,258,345
0
0
null
null
null
null
UTF-8
C++
false
false
100,422
cpp
/* * Copyright (C) Volition, Inc. 1999. All rights reserved. * * All source code herein is the property of Volition, Inc. You may not sell * or otherwise commercially exploit the source or things you created based on the * source. * */ /* * $Logfile: /Freespace2/code/Network/MultiTeamSelect.cpp $ * $Revisio...
[ "(no author)@387891d4-d844-0410-90c0-e4c51a9137d3" ]
(no author)@387891d4-d844-0410-90c0-e4c51a9137d3
602554a88c73c1f548cabb64b767c372b4c88526
98ab3e12ce3db4896ffa976fd258dffdbadb138c
/oxygine-framework/oxygine/src/Polygon.h
6fff8918d0bb586161ebcbcf61c93836f309a8e0
[ "MIT" ]
permissive
vlad-d-markin/dethgame
ce0a0f7868e59f12824fe9120c895a49ff3d1e19
bcb4bf7f432c14faf77ae9a7411c3c9df629bbd1
refs/heads/master
2021-01-17T16:56:34.567317
2016-07-19T21:42:01
2016-07-19T21:42:01
62,659,600
6
2
null
2016-07-17T21:06:13
2016-07-05T18:22:24
C
UTF-8
C++
false
false
902
h
#pragma once #include "oxygine_include.h" #include "Sprite.h" namespace oxygine { class ResAnim; DECLARE_SMART(Polygon, spPolygon); class Polygon : public _Sprite { public: DECLARE_COPYCLONE_NEW(Polygon); Polygon(); ~Polygon(); /** if *own* is true Polygon...
[ "vlad.d.markin@gmail.com" ]
vlad.d.markin@gmail.com
b3c2f91638773c24d19815fb73b012aa51d7d493
5499e8b91353ef910d2514c8a57a80565ba6f05b
/zircon/system/utest/nand-redundant-storage/nand-rs-tests.cc
621b0b70cab556cd7b8b21716abf65bb3b346f22
[ "BSD-3-Clause", "MIT" ]
permissive
winksaville/fuchsia
410f451b8dfc671f6372cb3de6ff0165a2ef30ec
a0ec86f1d51ae8d2538ff3404dad46eb302f9b4f
refs/heads/master
2022-11-01T11:57:38.343655
2019-11-01T17:06:19
2019-11-01T17:06:19
223,695,500
3
2
BSD-3-Clause
2022-10-13T13:47:02
2019-11-24T05:08:59
C++
UTF-8
C++
false
false
7,163
cc
// Copyright 2019 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 <lib/mtd/mtd-interface.h> #include <lib/nand-redundant-storage/nand-redundant-storage.h> #include <stdint.h> #include <vector> #include <zxtest/...
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
eb3afd1aa517b5baadf8fda81b2dd795c77500f2
91b36a305a65a601f93fad94ef19b995db6e5d83
/NativePlugin/Src/Runtime/GfxDevice/opengles/ApiGLES.cpp
e17459a42962abe7915baa7794c2a1995e558b3e
[]
no_license
maksym-pasichnyk/NativeParticleSystem
0d79d093ef1144f60afb941d1928546005ebca62
35187e5d9a43e7db5264d1f953f4383873d3decf
refs/heads/master
2021-12-14T15:41:24.820604
2017-05-10T16:42:23
2017-05-10T16:42:23
437,383,171
1
1
null
2021-12-11T20:34:42
2021-12-11T20:34:41
null
UTF-8
C++
false
false
46,262
cpp
#include "PluginPrefix.h" #include "ApiTranslateGLES.h" #include "ApiGLES.h" #include "ApiConstantsGLES.h" #include "GfxContextGLES.h" #include "DeviceStateGLES.h" #include "Runtime/GfxDevice/opengles/AssertGLES.h" #include "Runtime/Shaders/GraphicsCaps.h" #include "Runtime/Utilities/ArrayUtility.h" //#include "Runti...
[ "akheyun@gmail.com" ]
akheyun@gmail.com
cd53bae4d9ea63bc540a6b48a70ae266f1adeca8
947e2d199cdd0adb5f34befb17e639c9e0cc8867
/按键流程分析/InputReader.cpp
5bb64831c76058ed57f7c908d521cf554277db0e
[]
no_license
qfkongyan/AndroidFramework
9b11a9d273c820d2db23cc8fa158e38d554e40da
3cd1c042b13f0048b8bd59ae8092cc6f81a94738
refs/heads/master
2022-12-14T07:22:39.986361
2020-09-14T13:37:05
2020-09-14T13:37:05
null
0
0
null
null
null
null
UTF-8
C++
false
false
268,279
cpp
/* * Copyright (C) 2010 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...
[ "wl5201314_@126.com" ]
wl5201314_@126.com
cccf48f490f421ac49b75c17882585a4ac773adf
6a47b5f04c74ed475b632e6561a675135e3baa80
/test/mock/core/consensus/grandpa/voting_round_mock.hpp
95491367d64505b9e253114c5311c213513d4665
[ "Apache-2.0" ]
permissive
DiamondNetwork/kagome
3f89afcc7432c7047b2ce2a3ef6bf7a6ee878423
c018130a5595eeb69e439ea4695c7b7db1c7ee43
refs/heads/master
2023-08-05T01:19:31.739959
2021-10-08T14:01:45
2021-10-08T14:01:45
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,847
hpp
/** * Copyright Soramitsu Co., Ltd. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0 */ #ifndef KAGOME_CONSENSUS_GRANDPA_VOTINGROUNDMOCK #define KAGOME_CONSENSUS_GRANDPA_VOTINGROUNDMOCK #include "consensus/grandpa/voting_round.hpp" #include <gmock/gmock.h> namespace kagome::consensus::grandpa { clas...
[ "noreply@github.com" ]
DiamondNetwork.noreply@github.com
aa3cd6fdd4626ba635625988403aabc85c8d84b5
5bbeacc09bcb942112cb506f3bfce3ef4269e9b0
/ElliotEngine/src/ElliotEngineView.h
f3651cfd6775c27848e53c8d9dceef8d6235345b
[]
no_license
schaed/finance
cf62f898cf31e8c0060a57a3bed06d1acea44ca9
64a2d91f01f6abf39b9d1399e47a1f16a529fe41
refs/heads/master
2021-01-13T03:14:15.898981
2017-05-25T14:34:15
2017-05-25T14:34:15
77,621,789
0
3
null
null
null
null
UTF-8
C++
false
false
4,051
h
// ElliotEngineView.h : interface of the CElliotEngineView class // ///////////////////////////////////////////////////////////////////////////// #if !defined(AFX_ELLIOTENGINEVIEW_H__6022A139_5151_45DC_95EB_202FEBC1912E__INCLUDED_) #define AFX_ELLIOTENGINEVIEW_H__6022A139_5151_45DC_95EB_202FEBC1912E__INCLUDED_ ...
[ "schae@cern.ch" ]
schae@cern.ch
8af99273daa74669ab403ad115c8de1c9536af78
64bd2dbc0d2c8f794905e3c0c613d78f0648eefc
/Cpp/SDK/OnlineSubsystem_functions.cpp
9029d704aa120b6cfb0bb84cfc22c3472c36c7a9
[]
no_license
zanzo420/SoT-Insider-SDK
37232fa74866031dd655413837813635e93f3692
874cd4f4f8af0c58667c4f7c871d2a60609983d3
refs/heads/main
2023-06-18T15:48:54.547869
2021-07-19T06:02:00
2021-07-19T06:02:00
387,354,587
1
2
null
null
null
null
UTF-8
C++
false
false
1,816
cpp
// Name: SoT Insider, Version: 1.103.4306.0 #include "../pch.h" /*!!DEFINE!!*/ /*!!HELPER_DEF!!*/ /*!!HELPER_INC!!*/ #ifdef _MSC_VER #pragma pack(push, 0x01) #endif namespace CG { //--------------------------------------------------------------------------- // Functions //---------------------------------------...
[ "zp2kshield@gmail.com" ]
zp2kshield@gmail.com
44590293364cce2f65278bb659654bd3a991cebe
32411cce4a91a3a4b693b963af77fcb83b3c0764
/src/gruppe3/src/laser.cpp
1f322b2fad74245b624353b9ad81a410e867643e
[]
no_license
IchBinZeyuan/Robotic_CPP
2d1279898ab7e348a3d2dca7bd08626f56c9c562
099592490b583c39cece3b7c7abd1a85e3b74063
refs/heads/master
2020-05-02T07:04:19.241923
2019-03-26T19:44:58
2019-03-26T19:44:58
177,808,938
0
1
null
null
null
null
UTF-8
C++
false
false
1,178
cpp
#include <ros/ros.h> #include <iostream> #include <sensor_msgs/LaserScan.h> using namespace std; double datalaser[360] = {0} ; //void AutoExp::processLaserScan(const sensor_msgs::LaserScan::ConstPtr& scan){ //ROS_INFO("laser messages:",scan->ranges[]); //} //int main(int argc,char** argv) //{ //ros::init(argc,argv,"la...
[ "zeyuan.zhang@tum.de" ]
zeyuan.zhang@tum.de
73d6f0566dd9864b3423a486eae3bba868582991
1dd825971ed4ec0193445dc9ed72d10618715106
/examples/extended/polarisation/Pol01/src/StepMaxMessenger.cc
6a1c8aca373acdc93d2b880e393e8510731ad2e4
[]
no_license
gfh16/Geant4
4d442e5946eefc855436f4df444c245af7d3aa81
d4cc6c37106ff519a77df16f8574b2fe4ad9d607
refs/heads/master
2021-06-25T22:32:21.104339
2020-11-02T13:12:01
2020-11-02T13:12:01
158,790,658
0
0
null
null
null
null
UTF-8
C++
false
false
2,991
cc
// // ******************************************************************** // * License and Disclaimer * // * * // * The Geant4 software is copyright of the Copyright Holders of * // * the Geant4 Collaboration...
[ "gfh16@mails.tsinghua.edu.cn" ]
gfh16@mails.tsinghua.edu.cn
43134827e35602e8ae1f49eeed13910cd9028cbe
f82aa8969f093aeccc55d0724da3605185a29ae4
/templates/examples/videoexample.cpp
4a398b6e511a918f8b4aa26c8d720269c8b19da6
[]
no_license
EricMiddleton1/CPRE575-HW3
d78d0579377972357c5ec6704a45f0c7604173b2
e9fcef27e132b62ec8e141dce080907e75d41b3a
refs/heads/master
2021-03-19T17:30:06.717523
2018-02-22T09:13:08
2018-02-22T09:13:08
122,440,611
0
0
null
null
null
null
UTF-8
C++
false
false
1,638
cpp
// Headers #include <opencv2/core/core.hpp> #include <opencv2/highgui/highgui.hpp> #include <opencv2/imgproc/imgproc.hpp> #include <opencv2/opencv.hpp> #include <iostream> using namespace cv; int main(int argc, char* argv[]) { // Load input video // If your video is in a different source folder than...
[ "ericm@iastate.edu" ]
ericm@iastate.edu
be2c5d334b998cd2228c105cdbbfea0578cd2d5b
5586d98bf5f5d3336d5ec427eaa3a2b7c6f6d9da
/Practice/lab1.cpp
bcb9a74627772df5a58aa890a2ee54ee57f99235
[]
no_license
maybeabhishek/PDC_Lab
b09a00f3b25586601084861c42bac545e87843c1
eefb0d15b5344dceb5c089e0eb8f7829155aa0a0
refs/heads/master
2022-03-29T16:09:50.853593
2019-12-24T18:48:12
2019-12-24T18:48:12
198,183,784
1
0
null
null
null
null
UTF-8
C++
false
false
992
cpp
#include<iostream> #include<omp.h> using namespace std; int main(){ int num = omp_get_max_threads(); cout<<"Num threads: "<<num<<endl; int n = 400; double a[n][n], b[n][n], c[n][n]; int i,j,k; double wtime = omp_get_wtime(); srand(time(0)); #pragma omp shared(a,b,c,n) private(i,j,k) ...
[ "abhishek.satapathy01@gmail.com" ]
abhishek.satapathy01@gmail.com
4af6534731eb3b414a2a55422c4c9012c768eb34
045ad86b79d87f501cfd8252ecd8cc3c1ac960dd
/DDS/Policy/QosPolicyBase.h
46c582f7f146b30c98205ca4fd62c7c5c7389f02
[ "MIT" ]
permissive
intact-software-systems/cpp-software-patterns
9513e4d988342d88c100e4d85a0e58a3dbd9909e
e463fc7eeba4946b365b5f0b2eecf3da0f4c895b
refs/heads/master
2020-04-08T08:22:25.073672
2018-11-26T14:19:49
2018-11-26T14:19:49
159,176,259
1
0
null
null
null
null
UTF-8
C++
false
false
3,151
h
/* * QosPolicy.h * * Created on: 10. july 2012 * Author: KVik */ #ifndef DDS_QosPolicy_QosPolicyBase_h_IsIncluded #define DDS_QosPolicy_QosPolicyBase_h_IsIncluded #include"DDS/CommonDefines.h" #include"DDS/Policy/PolicyKind.h" #include"DDS/Export.h" namespace DDS { namespace Policy { /** * @brief * * ...
[ "intact.software.systems@gmail.com" ]
intact.software.systems@gmail.com
98f14a305ef75ed6f3303bf0106d8fde28800cf1
98066229ed99c9c1f92fdf8915ab6a11fb8cf60f
/source/response.cpp
fa27221379bd2ea4ba3f9586bfe21484cd9762a8
[]
no_license
NickRegistered/webServer-select
4313faa3516946d5c4a2633e2a139be47014bb50
249a117c3aa80a1ae8e148450f797a3d8b78dec3
refs/heads/master
2020-05-03T20:19:16.746382
2019-04-07T02:04:10
2019-04-07T02:04:10
178,800,364
3
1
null
null
null
null
UTF-8
C++
false
false
2,498
cpp
#include "response.h" using namespace std; const map<string, string> ExtnToType = { { ".gif","image/gif\r\n" },{ ".mp3","audio/mp3\r\n" } , { ".ogg","application/ogg\r\n" },{ ".mp4","audio/mp4\r\n" } , { ".webm","video/webm\r\n" },{ ".html...
[ "36127069+NickRegistered@users.noreply.github.com" ]
36127069+NickRegistered@users.noreply.github.com
ceea9ac8fd76a3d13cc8cec5831a2eed6853f85f
815ba6cc98dedf268cf66ef0a5207cfc4d3f5eb9
/mca-2.0.3/mcapi/src/mcapi_trans/mcapi_trans_sm/Fragments/mcapi_trans_smt_initialize_abl.cpp
6a4cb2a09d3222e50379304478f796b61cfc5291
[]
no_license
ke4harper/MxAPI
65b0c1fca9e58dd4670d1752c7f2a1d8f9ba78a7
fc4e2e4037cfb41360f0d0974f3142ba948d9bd7
refs/heads/master
2023-04-03T07:09:04.452807
2023-03-14T21:23:35
2023-03-14T21:23:35
185,410,427
1
0
null
2022-09-29T23:45:15
2019-05-07T13:43:25
C
UTF-8
C++
false
false
4,818
cpp
/* Copyright (c) 2012, ABB, 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 the above copyright notice, this list of conditions and the following disc...
[ "keharper@wt.net" ]
keharper@wt.net
22588425b27fc86a53fd743533098c88593f3751
5d4753b7e463827c9540e982108de22f62435c3f
/cc/subtle/prf/streaming_prf_wrapper_test.cc
875d6747aa9d648fd878eb35d10f03ed8d0ccecf
[ "Apache-2.0" ]
permissive
thaidn/tink
8c9b65e3f3914eb54d70847c9f56853afd051dd3
2a75c1c3e4ef6aa1b6e29700bf5946b725276c95
refs/heads/master
2021-07-25T02:02:59.839232
2021-02-10T17:21:31
2021-02-10T17:22:01
337,815,957
2
0
Apache-2.0
2021-02-10T18:28:20
2021-02-10T18:28:20
null
UTF-8
C++
false
false
4,640
cc
// 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 law or agreed to in writing, software // distributed ...
[ "copybara-worker@google.com" ]
copybara-worker@google.com
8e3f2e3ab5b71a5bbc66053b5302ce944161c804
3943f4014015ae49a2c6c3c7018afd1d2119a7ed
/final_output/output_myrecur_abs_1_cp/laguerre_formula_0.9_1.1/3-6.cpp
06fb0675062f122b5c4dc02db7a92807b07d57df
[]
no_license
Cathy272272272/practicum
9fa7bfcccc23d4e40af9b647d9d98f5ada37aecf
e13ab8aa5cf5c037245b677453e14b586b10736d
refs/heads/master
2020-05-23T10:10:15.111847
2019-06-08T00:23:57
2019-06-08T00:23:57
186,689,468
0
0
null
null
null
null
UTF-8
C++
false
false
2,852
cpp
#include <iostream> #include <stdio.h> #include <assert.h> #include <math.h> extern "C" { #include "quadmath.h" } #ifndef IFT #define IFT float #endif #ifndef OFT #define OFT __float128 #endif //#include <cmath> using namespace std; //static const int k = 3; template <class T> T n_factorial(T n){ if ( n == 0 ) ...
[ "cathyxu@Cathys-MacBook-Pro.local" ]
cathyxu@Cathys-MacBook-Pro.local
c227fd87bad21b3935bdbc6acdf59f7ab7350b41
1d68c8a01ed498a99d4797f8c845b89d4bfe92c0
/VK9-Library/CVertexDeclaration9.h
d7fdba2c283135fedb83e4800056123160f84e4c
[ "Zlib" ]
permissive
lorendias/VK9
4edd16f4defaa470e208f2e9bf7237463e86c6a1
c788b63ac307dcae5891cf19b0a11a40a0e96d82
refs/heads/master
2020-05-09T19:20:58.189090
2019-04-14T03:19:11
2019-04-14T03:19:11
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,582
h
#pragma once /* Copyright(c) 2016-2019 Christopher Joseph Dean Schaefer This software is provided 'as-is', without any express or implied warranty.In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any p...
[ "disks86@gmail.com" ]
disks86@gmail.com
8301e048f1a2c75efe7cd5747e94a4ffcec1c3dd
276f0b31f669b3e1e36b7e2f332c4df86aec800d
/Mateusz Machaj Connect Four Source Code/Connect Four/Game Classes/Game.h
2f9122d52e6f9cba3ae7d40c703ac402f1a95d1d
[]
no_license
mateuszmachaj/Code-Foo
c06b5c5f821ca29224fa778cf97e0ae2e44eb23d
9b4279581f580b4b625b4cc362caf48a9e858f37
refs/heads/master
2021-01-13T02:29:52.554462
2012-05-01T04:25:10
2012-05-01T04:25:10
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,005
h
#pragma once #include "../Framework/Graphics.h" #include "../Framework/Input.h" #include "../Framework/Audio.h" // Sprite structure typedef struct { // sprite details float width; float height; // sprite position float posX; float posY; bool visible; }Sprite; class Game { public: Game...
[ "mateuszmachaj@yahoo.com" ]
mateuszmachaj@yahoo.com
716ead90c8053dff43b2b8e2d754ee1137dbe2b2
1ab9ced624ad3518554548b7bed92a13c5d05faa
/Solutions/Daily Temperatures.cpp
a4f8a7b922222122c9c2ef10e30eabe2329cdd5c
[]
no_license
shehab-ashraf/Problem_Solving
361674efde765b705402d1971cf0206e604d92c7
2cb4d241bcc885251fdaf2757f3f0738b08f521f
refs/heads/master
2023-07-02T19:25:04.780816
2021-07-30T22:30:01
2021-07-30T22:30:01
381,096,647
0
0
null
null
null
null
UTF-8
C++
false
false
474
cpp
// O(n) time | O(n) space class Solution { public: vector<int> dailyTemperatures(vector<int>& temperatures) { stack<int> st; vector<int> ans(temperatures.size(),0); for(int i = 0 ; i < temperatures.size() ; i++){ while(!st.empty() && temperatures[st.top()] < temperatures[i]){ ...
[ "ashrafshehab377@gmail.com" ]
ashrafshehab377@gmail.com
0a9fcc33c4a2939430b6d0a810d4ac09375e73b8
087dea2f7147663ba90a213f59b70ddd59f6aec4
/main/stltest/bind2nd2.cpp
4949eb68852cab1062e669d946aa6f4a64a893a6
[ "MIT" ]
permissive
stormbrew/stir
b5c3bcaf7c7e8c3a95dd45bf1642c83b6291a408
2d39364bfceb87106daa2338f9dfe6362a811347
refs/heads/master
2022-05-24T17:52:26.908960
2022-04-28T03:39:42
2022-04-28T03:39:42
1,130,258
0
0
null
null
null
null
UTF-8
C++
false
false
469
cpp
#ifndef SINGLE // An adapted ObjectSpace example for use with SGI STL #include <iostream> #include <algorithm> #include <functional> #ifdef MAIN #define bind2nd2_test main #endif #endif int bind2nd2_test(int, char**) { std::cout<<"Results of bind2nd2_test:"<<std::endl; int array [3] = { 1, 2, 3 }; std::repla...
[ "megan@stormbrew.ca" ]
megan@stormbrew.ca
b1773c2ec4e1fb80e2e3dbd5904ecfd5627d91b2
94847d787dfe5695eeaa5e0bfd65eb11b6d4e6ef
/include/rllib/util/Vector3.hpp
ed28eb98ad8604a8ab5197fbd8ebe399436e4c06
[ "MIT" ]
permissive
loriswit/rllib
70bc3161e998d71355536a977f1ce74fdb172ec0
a09a73f8ac353db76454007b2ec95bf438c0fc1a
refs/heads/main
2021-06-15T19:12:58.385115
2021-02-07T17:44:39
2021-02-07T17:44:39
144,877,014
1
0
null
null
null
null
UTF-8
C++
false
false
1,212
hpp
#ifndef RLLIB_VECTOR3_HPP #define RLLIB_VECTOR3_HPP #include <ostream> namespace rl { /** * Structure representing a three-dimensional vector. * * @tparam T The type of the vector components */ template<typename T> struct RL_API Vector3 { /** * The horizontal component of the vector. */ T x; ...
[ "loris.wit@gmail.com" ]
loris.wit@gmail.com
1bf6158d4778df4d204abe2699364432bdb10209
e1adcd0173cf849867144a511c029b8f5529b711
/ros_ws/install/include/baxter_maintenance_msgs/UpdateSource.h
01db0d7739d138f6ee9fb041e903ba16298fbf1d
[]
no_license
adubredu/cartbot_arm_subsystem
20a6e0c7bacc28dc0486160c6e25fede49f013f2
3e451272ddaf720bc7bd24da2ad5201b27248f1c
refs/heads/master
2022-01-04T23:01:25.061143
2019-05-14T16:45:02
2019-05-14T16:45:02
null
0
0
null
null
null
null
UTF-8
C++
false
false
6,794
h
// Generated by gencpp from file baxter_maintenance_msgs/UpdateSource.msg // DO NOT EDIT! #ifndef BAXTER_MAINTENANCE_MSGS_MESSAGE_UPDATESOURCE_H #define BAXTER_MAINTENANCE_MSGS_MESSAGE_UPDATESOURCE_H #include <string> #include <vector> #include <map> #include <ros/types.h> #include <ros/serialization.h> #include <...
[ "alphonsusbq436@gmail.com" ]
alphonsusbq436@gmail.com
11da73a7609b400d1f32fffc741d4bf3fea24596
107dd749c9886d781894e5238d9c2419f7952649
/src/qt/bitcoingui.h
483fa2b75e701a13a46e904982aad166dee03137
[ "MIT" ]
permissive
Coin4Trade/Coin4Trade
ae58e76e09ed5a0cb62def5b91efd848cd77a284
fb5c4b7580212cd7e3daacd93fabf1be4d20ff7c
refs/heads/master
2023-08-23T22:42:33.681882
2021-10-02T20:58:21
2021-10-02T20:58:21
281,785,399
1
0
null
null
null
null
UTF-8
C++
false
false
9,416
h
// Copyright (c) 2011-2014 The Bitcoin developers // Copyright (c) 2017-2018 The PIVX developers // Copyright (c) 2020 The C4T developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_QT_BITCOINGUI_H #defin...
[ "68502813+Coin4Trade@users.noreply.github.com" ]
68502813+Coin4Trade@users.noreply.github.com
0dd68be4b85d753fe732558602078b139e87ed0e
6fe17c32ba5bb492e276e13128c516a3f85f01ff
/New folder/stones on the table.cpp
385fd81f1bbde63893ea12f81cdf4a3b3416c12c
[ "Apache-2.0" ]
permissive
YaminArafat/Codeforces
35c5c527c8edd51c7f591bfe6474060934241d86
3d72ba0b5c9408a8e2491b25b5b643e9f9be728b
refs/heads/master
2023-08-17T03:12:04.596632
2021-10-06T14:49:29
2021-10-06T14:49:29
351,042,898
0
0
null
null
null
null
UTF-8
C++
false
false
326
cpp
#include <bits/stdc++.h> using namespace std; int main() { int n,i,x=0; scanf("%d",&n); char str[n+1]; for (i=0 ; i<n; i++) { cin>>str[i]; } str[i]='\0'; for(i=0;i<n-1;i++) { if(str[i]==str[i+1]) { x++; } } cout<<x<<endl; return...
[ "yaminarafat032@gmail.com" ]
yaminarafat032@gmail.com
af878b71446af13a25c84154d07c56691cfb77d4
d4876d852d32d64391f4eaf67b38a461a219cf73
/src/GameCuaTao/Castlevania/Models/Weapons/Whip.cpp
dbd1ef7f96eb2fa5d63547c912f9c3d5a207cbcc
[]
no_license
ngb0511/Castlevania
1894988743bfcd622e4eb01d13329cffaf31c91a
c2c8a33fcbe9c67cb22b0fe15fbe65b313f0b8aa
refs/heads/master
2022-03-21T03:16:26.013207
2019-10-15T12:55:57
2019-10-15T12:55:57
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,261
cpp
#include "Direct2DGame/MathHelper.h" #include "Whip.h" #include "../Settings.h" #include "WhipFlashingRenderingSystem.h" #include "../../Utilities/AudioManager.h" using namespace Castlevania; const auto HITPOINTS = std::map<int, int> { { 1, 1 }, { 2, 2 }, { 3, 2 }, }; Whip::Whip() : GameObject{ ObjectId::Whip } {...
[ "near.huscarl@gmail.com" ]
near.huscarl@gmail.com
81c1afc23b0bf8396ccb7cfb078d27d5c4e40585
e17f365bf6d40cc0325ed0dc6ec1c5ecd9132b99
/arduino/libraries/EZKey/EZKey.cpp
440783316bb0a99c8709a7d18096ef0f37f97c34
[ "MIT" ]
permissive
wyolum/VPD
70740230807ba4c74eb1455507ff60149c91d618
52baa1d7046b004015e4c9d727df13d7cfa4bf23
refs/heads/master
2016-09-05T08:44:23.418769
2015-05-24T13:56:39
2015-05-24T13:56:39
35,377,369
1
0
null
null
null
null
UTF-8
C++
false
false
537
cpp
#include "EZKey.h" void keyCommand(SoftwareSerial BT, uint8_t modifiers, uint8_t keycode1, uint8_t keycode2, uint8_t keycode3, uint8_t keycode4, uint8_t keycode5, uint8_t keycode6) { BT.write(0xFD); // our command BT.write(modifiers); // modifier! BT.write((byte)0x00); // 0x00 BT.writ...
[ "wyojustin@gmail.com" ]
wyojustin@gmail.com
132408885f75e8a40b0f4ea9c497342073d408b6
e94caa5e0894eb25ff09ad75aa104e484d9f0582
/data/s30l/mp2/cp_corrected/20/AB/cc-pVQZ/2_ghosts/cbas_mp2/restart.cc
6dd50a8da7a2af525c343189c32bacc56e590290
[]
no_license
bdnguye2/divergence_mbpt_noncovalent
d74e5d755497509026e4ac0213ed66f3ca296908
f29b8c75ba2f1c281a9b81979d2a66d2fd48e09c
refs/heads/master
2022-04-14T14:09:08.951134
2020-04-04T10:49:03
2020-04-04T10:49:03
240,377,466
0
0
null
null
null
null
UTF-8
C++
false
false
444
cc
$chkbas= 1570771.54340576 $nucrep= 505.009748775714 $chkaux= 13179617163.0805 $chkupro= 1.00000000000000 $chkipro= 2.00000000000000 $chklasrep= 1.00000000000000 $chkisy6= 4.00000000000000 $chkmos= 2036.89531322081 $chkCCVPQ_ISQR= 52880.6863318043 $chkbqia= 55.1374803240782 $chkr0...
[ "bdnguye2@uci.edu" ]
bdnguye2@uci.edu
bcf16128971fb4c7345db6e518ead319194cef9e
f442bfabec358023bfdb5d2f25158e2e13e26227
/Homework 1/homework1/staff.h
d9bd42dc916f1c4106d3f7bf7b68f48b2102ed38
[]
no_license
snchvz/CS202
203797e74c90db7ee5ebc8b471e1413c526a4741
abbf296f4e60e1164579791426a3e147932090ff
refs/heads/master
2020-04-17T15:48:48.723959
2019-01-20T22:07:09
2019-01-20T22:07:09
166,714,380
1
0
null
null
null
null
UTF-8
C++
false
false
567
h
/* Andrew Sanchez File name: Staff.h Date: 4/19/17 Description: initialize class Staff percentage: 100% */ #ifndef STAFF_H #define STAFF_H #include <iostream> #include <string> #include <vector> #include "Employee.h" using namespace std; class Staff { private: vector<Employee> members; int fin...
[ "noreply@github.com" ]
snchvz.noreply@github.com
889e592fd4c76f9c96705afbbb3ea6f8719a23bb
b2b10f8ba5b3a2b023fe3dbfb9fe9900c111a8e7
/common/columnlistview/haiku/ColumnListView.cpp
37ee3eee3dc67a0abc1549d96878b323dd92dd35
[ "BSD-3-Clause" ]
permissive
HaikuArchives/IMKit
0759451f29a15502838e9102c0c4566a436fd9c0
9c80ad110de77481717d855f503d3de6ce65e4d8
refs/heads/master
2021-01-19T03:14:00.562465
2009-11-27T16:17:29
2009-11-27T16:17:29
12,183,169
1
0
null
null
null
null
UTF-8
C++
false
false
117,906
cpp
/* Open Tracker License Terms and Conditions Copyright (c) 1991-2000, Be Incorporated. All rights reserved. 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...
[ "plfiorini@8f1b5804-98cd-0310-9b8b-c217470a4c7c" ]
plfiorini@8f1b5804-98cd-0310-9b8b-c217470a4c7c
528fab0165064c94b8656aae326d9ff93590b227
f98e981fc25fc883c1550613a6c70ba1ccb0115d
/lib/dra818v.cpp
c4a1cfd0773472e003eb1cbfc795413d8718a2f8
[]
no_license
invictus1123/ssiRadio
f25d2b77e901d6777b27a593cf9a897441864ebe
03de7244843e8f6091d20921697a9fc483748ade
refs/heads/master
2020-05-22T01:20:48.508329
2017-01-09T06:01:53
2017-01-09T06:01:53
65,703,918
0
0
null
null
null
null
UTF-8
C++
false
false
4,501
cpp
#include "dra818v.h" DRA818V::DRA818V(uint8_t PTT, uint8_t audioOut, uint8_t mic, uint8_t draTX, uint8_t draRX) { pttPin = PTT; pttDelay = PTT_DELAY; audioOutPin = audioOut; micPin = mic; #if USE_HW_SERIAL== true radioSerial = &Serial1; #else radioSerial = new SoftwareSerial(dra...
[ "noreply@github.com" ]
invictus1123.noreply@github.com
44496751581b6f2b80791871729c24c53d5c64e3
de35ee3cb9e95affb2971ca96d3d67d2cb89d3fe
/src/Game.h
bb080cd3cbbacff8071bc34ddab19871e0a0dc47
[]
no_license
ratanraj/triangle
45d8d655579db8b603314593212ffbe9188b0cd3
a263ed7ee7389be2ff71a5e6ce2a2767a8d7c4b7
refs/heads/master
2020-12-20T18:49:26.338201
2020-01-25T17:29:43
2020-01-25T17:29:43
236,176,383
0
0
null
null
null
null
UTF-8
C++
false
false
543
h
// // Created by ratanraj on 25/01/20. // #ifndef TRIANGLE_GAME_H #define TRIANGLE_GAME_H #include <iostream> #include <SDL2/SDL.h> #include <SDL2/SDL_image.h> class Game { private: bool isRunning; SDL_Window *window; int cnt = 0; public: Game(); ~Game(); void init(const char *title, int xpo...
[ "ratanraj.r@gmail.com" ]
ratanraj.r@gmail.com
243365f568677d6f2311811a20efb11b75c580fd
5f2f9dcb47bb810cf55291825ab2be3028a201a5
/HNU/2015 暑期培训训练赛之八 1004/main2.cpp
7302a98eb36fad4a79fc480a0320e926713e8c4a
[]
no_license
Linfanty/ACM-ICPC
19480155d6e461b728147cfd299e8bce8930f303
2d23ef8013df4eb55dc27aa8f7149420a1b5d3a7
refs/heads/master
2021-01-24T00:24:39.585748
2017-08-27T08:27:32
2017-08-27T08:27:32
122,764,304
1
0
null
2018-02-24T17:48:03
2018-02-24T17:48:03
null
UTF-8
C++
false
false
531
cpp
/* * this code is made by crazyacking * Verdict: Accepted * Submission Date: 2015-08-16-21.49 * Time: 0MS * Memory: 137KB */ #include <queue> #include <cstdio> #include <set> #include <string> #include <stack> #include <cmath> #include <climits> #include <map> #include <cstdlib> #include <iostream> #include <vector> #i...
[ "11301655@qq.com" ]
11301655@qq.com
205ad586f27ce5575493985251c76edeef916cd1
08d7df69e27d359f30110a3438b891e2a14cac35
/include/snek/ast/position.hpp
f25167d8b7c4176d5ebfb4e8eeb6492fbad3695c
[ "BSD-2-Clause" ]
permissive
RauliL/snek
c06e4553e8260d38187a1013d58465b71babeee4
ad530c0485addaf71fd01469860b83a16d16bf9d
refs/heads/master
2021-06-07T00:23:55.729775
2021-06-03T15:04:19
2021-06-03T15:04:19
291,930,396
0
0
BSD-2-Clause
2020-09-15T16:54:17
2020-09-01T07:40:01
C++
UTF-8
C++
false
false
2,141
hpp
/* * Copyright (c) 2020, Rauli Laine * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditi...
[ "rauli.laine@iki.fi" ]
rauli.laine@iki.fi
a1e7d1781673d8224587d0bc836808e2e55466c0
3e1ac5a6f5473c93fb9d4174ced2e721a7c1ff4c
/build/iOS/Preview/include/Fuse.Internal.CacheRef-2.h
ce5b60c3dcb5b0eac560458bc1ffe1f4669d3f79
[]
no_license
dream-plus/DreamPlus_popup
49d42d313e9cf1c9bd5ffa01a42d4b7c2cf0c929
76bb86b1f2e36a513effbc4bc055efae78331746
refs/heads/master
2020-04-28T20:47:24.361319
2019-05-13T12:04:14
2019-05-13T12:04:14
175,556,703
0
1
null
null
null
null
UTF-8
C++
false
false
1,839
h
// This file was generated based on /usr/local/share/uno/Packages/Fuse.Common/1.9.0/Internal/Cache.uno. // WARNING: Changes might be lost if you edit this file directly. #pragma once #include <Uno.IDisposable.h> #include <Uno.Object.h> namespace g{namespace Fuse{namespace Internal{struct Cache;}}} namespace g{namespac...
[ "cowodbs156@gmail.com" ]
cowodbs156@gmail.com
f2b96fe3cce8de49105796a4e25830df341131d6
fec81bfe0453c5646e00c5d69874a71c579a103d
/blazetest/src/mathtest/operations/dmatsmatsub/UHbUCb.cpp
bbe5ce937dc99f5427d41e501de214028caf4914
[ "BSD-3-Clause" ]
permissive
parsa/blaze
801b0f619a53f8c07454b80d0a665ac0a3cf561d
6ce2d5d8951e9b367aad87cc55ac835b054b5964
refs/heads/master
2022-09-19T15:46:44.108364
2022-07-30T04:47:03
2022-07-30T04:47:03
105,918,096
52
7
null
null
null
null
UTF-8
C++
false
false
4,190
cpp
//================================================================================================= /*! // \file src/mathtest/operations/dmatsmatsub/UHbUCb.cpp // \brief Source file for the UHbUCb dense matrix/sparse matrix subtraction math test // // Copyright (C) 2012-2020 Klaus Iglberger - All Rights Reserved // ...
[ "klaus.iglberger@gmail.com" ]
klaus.iglberger@gmail.com
cad8586476cab3d1e1e4da1d1c1b646d1689aee1
526332cee7ef8b68854512f590943db7cb574ca1
/src/tools.cpp
5bedf695016c53571bd0bb182b42f2c89cd4ce81
[]
no_license
yabdelhadi/CarND-Extended-Kalman-Filter-Project
d5c6032f6780d108d69b8edbfe4fe81a3320e79e
6bbab213914f64aabbc631be71f39a3dca6660ed
refs/heads/master
2021-05-09T17:02:04.305030
2018-01-27T03:36:59
2018-01-27T03:36:59
119,127,882
0
0
null
null
null
null
UTF-8
C++
false
false
2,074
cpp
#include <iostream> #include "tools.h" using Eigen::VectorXd; using Eigen::MatrixXd; using std::vector; Tools::Tools() {} Tools::~Tools() {} VectorXd Tools::CalculateRMSE(const vector<VectorXd> &estimations, const vector<VectorXd> &ground_truth) { /** TODO: * Calculate the RMSE...
[ "noreply@github.com" ]
yabdelhadi.noreply@github.com
cfefaf4cdf63b5692c396e21d7902d8a138910a3
ae68403fba102765271c28ad47a9cf17650f5623
/ch16/DebugDelete.h
dd9444d78872157010ea36db18365feec887fab6
[]
no_license
yangcnju/cpp_primer_5
a3b0a903f81b5b281053adc01b5a1a66704819c0
81152ad4277405082613f29de6fb89a6176e4fa4
refs/heads/master
2021-01-01T19:06:22.280063
2015-11-20T03:05:42
2015-11-20T03:05:42
40,577,238
0
0
null
null
null
null
UTF-8
C++
false
false
372
h
#ifndef _DebugDelete_h #define _DebugDelete_h #include <iostream> // function-obj class that calls delete on a given ptr class DebugDelete { public: DebugDelete(std::ostream &s = std::cerr) : os(s) {} template <typename T> void operator()(T *p) const { os << "deleting unique_ptr" << std::endl; delete p; } private:...
[ "yangcnju@gmail.com" ]
yangcnju@gmail.com
bb366dd7995357dcb2fe21bff61c83d1e3037f46
3fcc27c255db2da950af5b9b08c7e4cceea2ef75
/src/rpcwallet.cpp
3a7cd1b2664f0b871c8937a1c20e732b288775de
[ "MIT" ]
permissive
legendcoin/legendcoin
dfda212512f9c31b335cb9f169241c9cdfa93f34
5eeb4ef47dacece3a314d4944217b36a1f2e71c1
refs/heads/master
2021-01-10T20:49:46.572694
2014-05-14T09:52:43
2014-05-14T09:52:43
null
0
0
null
null
null
null
UTF-8
C++
false
false
55,117
cpp
// Copyright (c) 2010 Satoshi Nakamoto // Copyright (c) 2009-2014 The Bitcoin developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include <boost/assign/list_of.hpp> #include "wallet.h" #include "walletdb.h" #include...
[ "sunchaoqun@126.com" ]
sunchaoqun@126.com
afeeb5ef42f822403b4fd9048a2be1c94dc1ed50
ab01f5ba3e2130f1160a5fa51f7a993c7aa8d14f
/Projects/IMeteorite/Meteorite.h
cc101e616ef13d1ed49f053932d04e68531e18e4
[]
no_license
HinsSyr/Shoot-Game
b6400ae8239d02a5e7bf1f838b29de3b0297aac2
7415791f069b6bbee5913c51256c18a31600a4bb
refs/heads/master
2023-03-02T00:35:11.171213
2021-02-08T01:15:07
2021-02-08T01:15:07
336,927,469
0
0
null
null
null
null
UTF-8
C++
false
false
2,545
h
#ifndef METEORITE_H #define METEORITE_H /////////////////////////////////////////////////////////////////////// // Meteorite.h Meteorite object // // // // ver 1.0 ...
[ "bqiu03@syr.edu" ]
bqiu03@syr.edu
18aa0c2584ee9c9addc69129d37c52442bdc8f68
c53bbbdb65378437e05ef1e0de0041684e1797cb
/CONTRIB/LLVM/src/lib/Support/ManagedStatic.cpp
9868207b14ff2733ba7c8ea75b81ec6a98b7abe4
[ "Spencer-94", "BSD-3-Clause", "Apache-2.0" ]
permissive
Maeiky/CpcdosOS2.1-1
b4d087b85f137f44fc34a521ebede3a5fc1d6c59
95910f2fe0cfeda592d6c47d8fa29f380b2b4d08
refs/heads/main
2023-03-26T08:39:40.606756
2021-03-16T05:57:00
2021-03-16T05:57:00
345,801,854
0
0
Apache-2.0
2021-03-08T21:36:06
2021-03-08T21:36:06
null
UTF-8
C++
false
false
2,683
cpp
//===-- ManagedStatic.cpp - Static Global wrapper -------------------------===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===-------------------------------------------------------...
[ "cpcdososx@gmail.com" ]
cpcdososx@gmail.com
e2b1bd304976789735eb1ec74676e74907ab870f
309e9e43f6c105f686a5991d355f201423b6f20e
/old study/c++/c_++ yuanma/appliance/light.h
71df3d0b4fecd81b6e049e96c7c82120db70e83c
[]
no_license
jikal/mystudy
d1e106725154730de0567fe4d7a7efa857b09682
ff51292c3fcb93d354c279e2c5222bc17b874966
refs/heads/master
2020-05-30T09:36:55.439089
2015-06-30T02:58:22
2015-06-30T02:58:22
35,258,479
0
0
null
null
null
null
UTF-8
C++
false
false
257
h
#ifndef _LIGHT_H_ #define _LIGHT_H_ #include "appliance.h" #define WHITE 1 #define GREEN 2 class Light : public Appliance{ public: Light(int price, int color); ~Light(); void on(); void off(); string toString(); private: int m_color; }; #endif
[ "zhk@ubuntu.(none)" ]
zhk@ubuntu.(none)
9bd21eec6afbc87007020e6dc7253210fd7602cf
d4bfae1b7aba456a355487e98c50dfd415ccb9ba
/media/filters/decrypting_demuxer_stream.cc
bc35d5bd109c40db26380e75932b9629161fa39f
[ "BSD-3-Clause" ]
permissive
mindaptiv/chromium
d123e4e215ef4c82518a6d08a9c4211433ae3715
a93319b2237f37862989129eeecf87304ab4ff0c
refs/heads/master
2023-05-19T22:48:12.614549
2016-08-23T02:56:57
2016-08-23T02:56:57
66,865,429
1
1
null
2016-08-29T17:35:46
2016-08-29T17:35:45
null
UTF-8
C++
false
false
12,383
cc
// 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. #include "media/filters/decrypting_demuxer_stream.h" #include "base/bind.h" #include "base/callback_helpers.h" #include "base/location.h" #include "b...
[ "serg.zhukovsky@gmail.com" ]
serg.zhukovsky@gmail.com
75c86ef28b23bc232f55ba04c982ebc7f691e34f
2c0d2a9c349365c27e7e7dd980c607c48d58c234
/s1257.cpp
c08fbaf0bebea562435291a2c5daa9fa6991fb4f
[]
no_license
h77h7/sw_expert_academy
3598d229ab7e7675d216a7a22fb9db2a6b94724b
efd0141301ce6bbd65856dc33845a11b1eb90dea
refs/heads/main
2023-06-03T11:48:46.539845
2021-06-08T06:43:38
2021-06-08T06:43:38
353,582,837
0
0
null
null
null
null
UTF-8
C++
false
false
1,752
cpp
//K번째 문자열 #include <iostream> #include <stdio.h> using namespace std; const int MAX = 400; int arrLen = 0; char arr[MAX] = { 0, }; int str_cmp(int idx1, int idx2) { while (idx1 < arrLen && idx2 < arrLen && arr[idx1] == arr[idx2]) { idx1++; idx2++; } return (arr[idx1] - arr[idx2]); } int str_cmp_(int idx1, in...
[ "noreply@github.com" ]
h77h7.noreply@github.com
04c0a8bbc1eb6d8a834a02fee0d51bf070fba784
ef3fa8e089c53422db4a5bbff9721268976bae53
/cases/mixerVessel2D/150/uniform/time
08677b802582989a4172a79f1f321292383cac84
[]
no_license
will214/CFDcourse
6b22f00a86f5ac83378e059074eb907e288693f2
37bd665013d77095f85ea4e6bc464caa11f91db1
refs/heads/master
2021-05-09T18:51:12.192394
2016-11-20T10:02:50
2016-11-20T10:02:50
null
0
0
null
null
null
null
UTF-8
C++
false
false
968
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: 4.0 | ...
[ "victormavi_1995@hotmail.com" ]
victormavi_1995@hotmail.com
e669675136ccb263e0d7f18eed8ab42d4ec7c9a2
84827d73992a00aa28a6baabf6ff660af55657db
/1.0/code/interface/AndroidQQDecryptSDK.hpp
f32962424645cf052e364569df523b8c951f30ea
[]
no_license
mogeku/mytest
6b167c503330740df7f0127878e3a045539db981
cd3e474aaada674991c4d40761e9be9db77abd2f
refs/heads/main
2023-01-09T23:26:07.936899
2020-11-10T10:24:04
2020-11-10T10:24:04
310,562,755
0
0
null
null
null
null
UTF-8
C++
false
false
1,447
hpp
// The following ifdef block is the standard way of creating macros which make exporting // from a DLL simpler. All files within this DLL are compiled with the ANDROIDQQDECRYPTSDK_EXPORTS // symbol defined on the command line. This symbol should not be defined on any project // that uses this DLL. This way any other pr...
[ "local@email.com" ]
local@email.com
52211ec7167cbe4534272b0dfe158ab6edae8c5d
89016fcda83d19cf880a3671e7923d69b8cb7c39
/spriterengine/global/settings.h
8ec7bd60521f147648da2e3de563344d2f2c7538
[ "Zlib" ]
permissive
lucidspriter/SpriterPlusPlus
9f83e68cd81295642dd3814ab800cd92967ee6c0
8fb550e1633036b42acd1cce0e05cfe60a3041c0
refs/heads/master
2023-08-10T10:29:03.386422
2021-02-17T22:13:10
2021-02-17T22:13:10
45,448,363
97
55
NOASSERTION
2023-07-23T13:17:31
2015-11-03T07:09:45
C++
UTF-8
C++
false
false
875
h
#ifndef SETTINGS_H #define SETTINGS_H #include <iostream> #include <string> namespace SpriterEngine { typedef void(*ErrorFunctionPointer)(const std::string &errorMessage); class Settings { public: static bool renderDebugBoxes; static bool renderDebugPoints; static bool renderDebugBones; static bool en...
[ "lucid@brashmonkey.com" ]
lucid@brashmonkey.com
45cd2f2228f37422e3a3ad9ffe0f1bfaa4124892
4bad7578931dd47c38dc283aec7eb961be6e1f30
/tests/core_tests/v2_tests.h
76a3b24728e4221a8a750a92818b212e4c9b96fd
[ "BSD-3-Clause", "LicenseRef-scancode-unknown-license-reference" ]
permissive
cyberstormdotmu/electroneum-classic
d034453071a3c9fa37f494c212e3ffc6d0effc9b
494bd2b5f9d9d759c10568e0326dde1737cefad6
refs/heads/master
2020-04-01T06:25:43.262217
2018-10-17T04:16:13
2018-10-17T04:16:13
152,947,188
0
0
null
2018-10-14T06:47:32
2018-10-14T06:47:32
null
UTF-8
C++
false
false
5,069
h
// Copyrights(c) 2018, The Electroneum Classic Project // Copyrights(c) 2017-2018, The Electroneum Project // Copyrights(c) 2014-2017, The Monero Project // // All rights reserved. // // Redistribution and use in source and binary forms, with or without modification, are // permitted provided that the following condi...
[ "vans_163@yahoo.com" ]
vans_163@yahoo.com
e4897687d6455ae0e5b051345063725b9547303a
6a69d57c782e0b1b993e876ad4ca2927a5f2e863
/vendor/samsung/common/packages/apps/SBrowser/src/ui/views/controls/button/image_button.h
5d71ec42fc17647aaf9f23a6f205679f35e69d53
[ "BSD-3-Clause" ]
permissive
duki994/G900H-Platform-XXU1BOA7
c8411ef51f5f01defa96b3381f15ea741aa5bce2
4f9307e6ef21893c9a791c96a500dfad36e3b202
refs/heads/master
2020-05-16T20:57:07.585212
2015-05-11T11:03:16
2015-05-11T11:03:16
35,418,464
2
1
null
null
null
null
UTF-8
C++
false
false
5,566
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_CONTROLS_BUTTON_IMAGE_BUTTON_H_ #define UI_VIEWS_CONTROLS_BUTTON_IMAGE_BUTTON_H_ #include "base/gtest_prod_util.h" #include "base/me...
[ "duki994@gmail.com" ]
duki994@gmail.com
c2f76efc3bc25c376acece49eb70ac0c1c618eb2
6e017be8782f3978f2bb235ef2d90dff16409e65
/Dev_class11Brofiler_handout/Motor2D/j1Scene.cpp
5e817ccabb642c29917cd38d847796cde3a4223c
[]
no_license
joseppi/Dev-Class
03fb4c2fde3cbd1628c9a24aca3cdf6646d51507
e12693f6a5e8f1786b33402e589e4498b3dfe124
refs/heads/master
2018-09-27T02:19:03.000505
2018-06-07T10:54:34
2018-06-07T10:54:34
112,933,525
0
0
null
null
null
null
UTF-8
C++
false
false
3,414
cpp
#include "p2Defs.h" #include "p2Log.h" #include "j1App.h" #include "j1Input.h" #include "j1Textures.h" #include "j1Audio.h" #include "j1Render.h" #include "j1Window.h" #include "j1Map.h" #include "j1PathFinding.h" #include "j1Scene.h" j1Scene::j1Scene() : j1Module() { name.create("scene"); } // Destructor j1Scene::~...
[ "josep.pi.serra@gmail.com" ]
josep.pi.serra@gmail.com
5f05584b9468a039ee59c83807d43557e34b3ef6
aab5af1da9e52c9f49d8d063868da0a0a929f085
/inputValidation.hpp
2c576fae9aaa325a3f63b64ed2fc76604494c480
[]
no_license
mcopland/home-invasion
47a1fb470f574aea3a4683e93598d7d2b7ef8907
3dcf1a8b27a367caab4a0483e3faf08d3f3715ce
refs/heads/master
2021-08-19T20:22:06.448986
2020-07-24T22:56:26
2020-07-24T22:56:26
207,384,800
0
0
null
null
null
null
UTF-8
C++
false
false
812
hpp
/******************************************************************************* ** Program: homeInvasion ** File: inputValidation.hpp ** ----------------------------------------------------------------------------- ** This is the inputValidation class specification (header) file. There are ** functions to validate ...
[ "mcopland@users.noreply.github.com" ]
mcopland@users.noreply.github.com
1b9c983f3a69410d0321641d8935ff4d1dc11745
9f35bea3c50668a4205c04373da95195e20e5427
/ash/assistant/assistant_web_ui_controller.cc
fe627906dc6b3ccfbc67192a73cdb36f74bc4a0b
[ "BSD-3-Clause" ]
permissive
foolcodemonkey/chromium
5958fb37df91f92235fa8cf2a6e4a834c88f44aa
c155654fdaeda578cebc218d47f036debd4d634f
refs/heads/master
2023-02-21T00:56:13.446660
2020-01-07T05:12:51
2020-01-07T05:12:51
232,250,603
1
0
BSD-3-Clause
2020-01-07T05:38:18
2020-01-07T05:38:18
null
UTF-8
C++
false
false
4,976
cc
// Copyright 2019 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. #include "ash/assistant/assistant_web_ui_controller.h" #include "ash/assistant/assistant_controller.h" #include "ash/assistant/ui/assistant_web_container...
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
c7bf8ef392302de54ca6cd1ea6bedeb80926ab4f
0e4f37b4dd9754203ea3cfe61d24c4db900ff1b1
/ch14 Augmenting Data Structures/IntervalTree_test.cpp
9728fc8e42671df24ef0a2ea77172bb11fceb1dc
[]
no_license
HongfeiXu/LearnCLRS
1c8eacb6ed7396c061e00444629224c8f5c07116
403a6da7ea89ac61642557b013df48de7ab04909
refs/heads/master
2021-01-10T23:01:48.120537
2018-04-11T14:21:58
2018-04-11T14:21:58
70,452,998
2
0
null
null
null
null
WINDOWS-1252
C++
false
false
4,168
cpp
/*************************************************************************** * @file IntervalTree_test.cpp * @author Alex.Xu * @mail icevmj@gmail.com * @date 7.6 2017 * @remark Test the functionality of IntervalTree template * @platform visual studio 2013, windows 10 ******************...
[ "icevmj@gmail.com" ]
icevmj@gmail.com
add8c74707964611e16d7c21d04f9d8f8a933f36
bdb9af8381619e483ef1a9e5cbe1c1fc408a0bf9
/tools/grpc/cpp/gobgp_api_client.cc
938b9f0e5a8255ca267f4794853d88313f1afd11
[ "Apache-2.0" ]
permissive
gitter-badger/gobgp
06bc9396cd9f684aedf96e04a67bca2bb93349e8
e41e86f9d1d1d23c90219efd7c93aec7f01510c6
refs/heads/master
2021-01-18T10:33:54.814163
2015-09-03T11:40:55
2015-09-04T05:51:49
41,905,487
0
0
null
2015-09-04T08:31:01
2015-09-04T08:31:01
null
UTF-8
C++
false
false
1,663
cc
#include <iostream> #include <memory> #include <sstream> #include <string> #include <grpc/grpc.h> #include <grpc++/channel.h> #include <grpc++/client_context.h> #include <grpc++/create_channel.h> #include <grpc++/security/credentials.h> #include "gobgp_api_client.grpc.pb.h" using grpc::Channel; using grpc::ClientCont...
[ "fujita.tomonori@lab.ntt.co.jp" ]
fujita.tomonori@lab.ntt.co.jp
d51bcc14984b55b544b69af2d5810dca24ea36b3
c13fe33b9ccf0e6857388405ef791071aa753c0f
/mythread.cpp
295791a01ac4914d0dc8b0d6985e7d231a317443
[]
no_license
Cirnoo/game-server
8b1c8b1fdff4b92c42812e2de2ff5d825abed675
b4970692fd980240e58543454f127c1713a8e2ae
refs/heads/master
2020-04-01T22:55:29.567920
2018-11-17T16:35:27
2018-11-17T16:35:27
153,732,972
0
0
null
null
null
null
UTF-8
C++
false
false
266
cpp
#include "mythread.h" #include <QTcpSocket> #include <QMetaType> MyThread::MyThread() { qRegisterMetaType<DATA_PACKAGE>("DATA_PACKAGE"); } void MyThread::Reply(QTcpSocket * socket, const DATA_PACKAGE &pack) { socket->write((char *)&pack,sizeof (pack)); }
[ "42065449+Cirno0@users.noreply.github.com" ]
42065449+Cirno0@users.noreply.github.com
92a0f299fe1f364e129d42f4650b39e87b29f4c7
8f7c8beaa2fca1907fb4796538ea77b4ecddc300
/chrome/installer/zucchini/disassembler_win32.h
0241257c082d0c9e63373019cbaa047822399929
[ "BSD-3-Clause" ]
permissive
lgsvl/chromium-src
8f88f6ae2066d5f81fa363f1d80433ec826e3474
5a6b4051e48b069d3eacbfad56eda3ea55526aee
refs/heads/ozone-wayland-62.0.3202.94
2023-03-14T10:58:30.213573
2017-10-26T19:27:03
2017-11-17T09:42:56
108,161,483
8
4
null
2017-12-19T22:53:32
2017-10-24T17:34:08
null
UTF-8
C++
false
false
3,832
h
// Copyright 2017 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_INSTALLER_ZUCCHINI_DISASSEMBLER_WIN32_H_ #define CHROME_INSTALLER_ZUCCHINI_DISASSEMBLER_WIN32_H_ #include <stddef.h> #include <stdint.h> ...
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
817a1e920ec10374737864a4c0d8602b44fbd624
180492f944459ac416476603f601407e9c4c6988
/NeoGUI/Connector.h
22cd1e1666b232c92f43f28a216f95e01cce6149
[]
no_license
bratao/NeoLoader
3a05068f104fa82c853a3ccf8bcc079c5a61a527
7885abdb71dc98ef1b45273faaad699eda82c57b
refs/heads/master
2021-01-15T08:48:06.483422
2015-04-02T18:04:54
2015-04-02T18:04:54
35,004,681
0
1
null
2015-05-03T23:33:38
2015-05-03T23:33:38
null
UTF-8
C++
false
false
1,321
h
#pragma once #if QT_VERSION < 0x050000 #include <QtGui> #else #include <QWidget> #include <QHBoxLayout> #include <QTreeWidget> #include <QFormLayout> #include <QLineEdit> #include <QCheckBox> #include <QPushButton> #include <QSplitter> #include <QHeaderView> #include <QApplication> #include <QMessageBox...
[ "xanatosdavid@gmail.com" ]
xanatosdavid@gmail.com
ba075a5618803e90bb72c0c15f910c2bf2e61c85
ccfbf5a9ee9c00282c200945bbe36b387eb38b19
/UVA Solutions/uva 674.cpp
10a42902b8480662d2d5e0567e6f904a72b67b95
[]
no_license
sakiib/OnlineJudge-Solutions
e070d4b255d036cdefaf087e9f75b69db708406c
b024352aa99efe548b48ef74c492cb69c1fa89f9
refs/heads/master
2023-01-07T20:57:04.259395
2020-11-16T08:41:27
2020-11-16T08:41:27
288,191,980
0
0
null
null
null
null
UTF-8
C++
false
false
644
cpp
#include <iostream> #include <cstdio> #include <cstring> #include <algorithm> using namespace std; int Coin[] = {1, 5, 10, 20, 25}; int dp[7][7493]; int makeCoin(int I, int H){ if(I >= 5){ if(!H)return 1; else return 0; } if(dp[I][H] != -1)return dp[I][H]; int Way1 = 0, Way2 = 0; i...
[ "sakibalamin162@gmail.com" ]
sakibalamin162@gmail.com
35a37ab15b20f5c99aa417b860e2e1a79f98b9c3
ec68c973b7cd3821dd70ed6787497a0f808e18e1
/Cpp/SDK/BP_RandomMapActor_classes.h
0ae829b86b9867a57c06c1a26ae73215a86770a4
[]
no_license
Hengle/zRemnant-SDK
05be5801567a8cf67e8b03c50010f590d4e2599d
be2d99fb54f44a09ca52abc5f898e665964a24cb
refs/heads/main
2023-07-16T04:44:43.113226
2021-08-27T14:26:40
2021-08-27T14:26:40
null
0
0
null
null
null
null
UTF-8
C++
false
false
783
h
#pragma once // Name: Remnant, Version: 1.0 /*!!DEFINE!!*/ /*!!HELPER_DEF!!*/ /*!!HELPER_INC!!*/ #ifdef _MSC_VER #pragma pack(push, 0x01) #endif namespace CG { //--------------------------------------------------------------------------- // Classes //------------------------------------------------------------...
[ "zp2kshield@gmail.com" ]
zp2kshield@gmail.com
84ae28000560b6103020accf566949083b972462
9aaa39f200ee6a14d7d432ef6a3ee9795163ebed
/Algorithm/C++/009. Palindrome Number.cpp
1061308f3faa138c3eb9b5a655dc81263f8c010c
[]
no_license
WuLC/LeetCode
47e1c351852d86c64595a083e7818ecde4131cb3
ee79d3437cf47b26a4bca0ec798dc54d7b623453
refs/heads/master
2023-07-07T18:29:29.110931
2023-07-02T04:31:00
2023-07-02T04:31:00
54,354,616
29
16
null
null
null
null
UTF-8
C++
false
false
928
cpp
/* * Created on Thu Apr 19 2018 14:41:13 * Author: WuLC * EMail: liangchaowu5@gmail.com */ // method 1, convert number to string class Solution { public: bool isPalindrome(int x) { string s = std::to_string(x); int left = 0, right = s.length()-1; while(left...
[ "liangchaowu5@gmail.com" ]
liangchaowu5@gmail.com
bc8a31f28ed687ebbb33bd15d10d3f3373154da8
f40a9ea8fcc5cf34e132181aed9076978161dc45
/mba/cpp/include/readers/common.h
7eaa467bc5160e02751dcd431d6960fa25ca85ca
[]
no_license
azeroman/Livingstone-2
7cb7373e58457ab09f979a966eed2ae043285dee
c422a8264900860ff6255c676e254004766486ec
refs/heads/master
2022-04-12T20:35:36.050943
2020-04-08T14:58:50
2020-04-08T14:58:50
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,727
h
/*** *** See the file "mba/disclaimers-and-notices-L2.txt" for *** information on usage and redistribution of this file, *** and for a DISCLAIMER OF ALL WARRANTIES. ***/ /* $Id: common.h,v 1.17 2004/02/18 23:50:16 lbrown Exp $ */ #ifndef COMMON_H #define COMMON_H #define L2_READER_MAGIC "L211" #include <livingst...
[ "kbshah1998@outlook.com" ]
kbshah1998@outlook.com
3ba0853664f970541666c81e085fecaf601f430b
92e67b30497ffd29d3400e88aa553bbd12518fe9
/assignment2/part6/Re=110/12.5/p
d4fc3a93bef16e746100e42729eab6138aa9df9f
[]
no_license
henryrossiter/OpenFOAM
8b89de8feb4d4c7f9ad4894b2ef550508792ce5c
c54b80dbf0548b34760b4fdc0dc4fb2facfdf657
refs/heads/master
2022-11-18T10:05:15.963117
2020-06-28T15:24:54
2020-06-28T15:24:54
241,991,470
0
0
null
null
null
null
UTF-8
C++
false
false
20,094
/*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org \\ / A nd | Version: 7 \\/ M anipulation | \*-------...
[ "henry.rossiter@utexas.edu" ]
henry.rossiter@utexas.edu
eddd44313e6274eeb0acac7ff02b8121405143a2
b34cd2fb7a9e361fe1deb0170e3df323ec33259f
/Applications/ChiaMarketDataFeedClient/Include/ChiaMarketDataFeedClient/ChiaMdProtocolClient.hpp
79e338cd94ddcf9fa10332d3f5e997b550d703bf
[]
no_license
lineCode/nexus
c4479879dba1fbd11573c129f15b7b3c2156463e
aea7e2cbcf96a113f58eed947138b76e09b8fccb
refs/heads/master
2022-04-19T01:10:22.139995
2020-04-16T23:07:23
2020-04-16T23:07:23
null
0
0
null
null
null
null
UTF-8
C++
false
false
8,468
hpp
#ifndef NEXUS_CHIAMDPROTOCOLCLIENT_HPP #define NEXUS_CHIAMDPROTOCOLCLIENT_HPP #include <string> #include <Beam/IO/NotConnectedException.hpp> #include <Beam/IO/OpenState.hpp> #include <Beam/Pointers/Dereference.hpp> #include <Beam/Pointers/LocalPtr.hpp> #include <boost/noncopyable.hpp> #include <boost/throw_exception.hp...
[ "kamal@eidolonsystems.com" ]
kamal@eidolonsystems.com
334410342f21d7015da0ee58b08c9923ab1171cf
c6b483cc2d7bc9eb6dc5c08ae92aa55ff9b3a994
/hazelcast/include/hazelcast/util/Comparator.h
4345b0bf2911757cd6803a1dc73321c91ea60e48
[ "Apache-2.0" ]
permissive
oguzdemir/hazelcast-cpp-client
ebffc7137a3a14b9fc5d96e1a1b0eac8aac1e60f
95c4687634a8ac4886d0a9b9b4c17622225261f0
refs/heads/master
2021-01-21T02:53:05.197319
2016-08-24T21:08:14
2016-08-24T21:08:14
63,674,978
0
0
null
2016-07-19T08:16:24
2016-07-19T08:16:23
null
UTF-8
C++
false
false
1,238
h
/* * Copyright (c) 2008-2015, Hazelcast, Inc. 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 ...
[ "ihsan@hazelcast.com" ]
ihsan@hazelcast.com
899cf420ecb8531f47b155a42fef0df93aed0d9e
9a488a219a4f73086dc704c163d0c4b23aabfc1f
/tags/Release-0_9_15/src/FbTk/Button.cc
e2ba7b5e5a7c1a0b19c8caeebffe40df17382548
[ "LicenseRef-scancode-unknown-license-reference", "MIT" ]
permissive
BackupTheBerlios/fluxbox-svn
47b8844b562f56d02b211fd4323c2a761b473d5b
3ac62418ccf8ffaddbf3c181f28d2f652543f83f
refs/heads/master
2016-09-05T14:55:27.249504
2007-12-14T23:27:57
2007-12-14T23:27:57
40,667,038
0
0
null
null
null
null
UTF-8
C++
false
false
4,356
cc
// Button.cc for FbTk - fluxbox toolkit // Copyright (c) 2002 - 2006 Henrik Kinnunen (fluxgen at fluxbox dot org) // // 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, in...
[ "simonb@54ec5f11-9ae8-0310-9a2b-99d706b22625" ]
simonb@54ec5f11-9ae8-0310-9a2b-99d706b22625