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
905 values
visit_date
timestamp[us]date
2015-08-09 11:21:18
2023-09-06 10:45:07
revision_date
timestamp[us]date
1997-09-14 05:04:47
2023-09-17 19:19:19
committer_date
timestamp[us]date
1997-09-14 05:04:47
2023-09-06 06:22:19
github_id
int64
3.89k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
22 values
gha_event_created_at
timestamp[us]date
2012-06-07 00:51:45
2023-09-14 21:58:39
gha_created_at
timestamp[us]date
2008-03-27 23:40:48
2023-08-21 23:17:38
gha_language
stringclasses
141 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
115 values
content
stringlengths
3
10.4M
authors
listlengths
1
1
author_id
stringlengths
0
158
7fac65588b769ef0ac6b7a2beecd51a2f0016085
69b4f7c49f18fc193f49275a2d32ffbcbe70471d
/Hacker Earth/Comrades - II.cpp
5801831920184efaef8a529d936e88f03d473c62
[]
no_license
TD2106/Competitive-Programming
05f322a14f1e7a1d62633b713f1416ab0c547b3b
2905c9d5f36909330fc3637f5461aaba8928a154
refs/heads/master
2020-04-03T12:59:49.790124
2019-09-21T14:51:08
2019-09-21T14:51:08
155,270,877
0
0
null
null
null
null
UTF-8
C++
false
false
1,273
cpp
#include <bits/stdc++.h> #define fr(a) freopen(a,"r",stdin) #define fw(a) freopen(a,"w",stdout) #define reset(a) memset(a,0,sizeof(a)) #define all(a) a.begin(),a.end() #define pb push_back #define ins insert #define mp make_pair #define fi first #define se second #define bug(x) cout << #x << " = " << x << endl; using n...
[ "duy.le@ubitec.ch" ]
duy.le@ubitec.ch
e464fc2a1c6d0482fcea0518a0857a16f65bc558
e52363338f1a6ba12af60679d76d61ac0864833f
/7粘包/MessageHeader.hpp
6d24df0b976e38b3274c438b6545c6e93df5dd52
[]
no_license
MathsionYang/CPLUSLUS_SOCKET_01
e7461075314304b47eed696660c4a500afdebd5d
d52460ce1f72cec26094c0b662cff6662c30099c
refs/heads/main
2023-02-21T03:09:25.626178
2021-01-20T14:12:39
2021-01-20T14:12:39
321,373,259
16
1
null
2020-12-15T07:09:09
2020-12-14T14:28:20
C++
UTF-8
C++
false
false
1,110
hpp
#ifndef _MessageHeader_hpp_ #define _MessageHeader_hpp_ enum CMD { CMD_LOGIN, CMD_LOGIN_RESULT, CMD_LOGOUT, CMD_LOGOUT_RESULT, CMD_NEW_USER_JOIN, CMD_ERROR }; struct DataHeader { DataHeader() { dataLength = sizeof(DataHeader); cmd = CMD_ERROR; } short dataLength; short cmd; }; //DataPackage struct Log...
[ "1114809057@qq.com" ]
1114809057@qq.com
1969489bcc7efa01f268d39627d53cb618c98a04
ceeffead0dac4f372a363bd3d00c9591f2e8c34c
/04-實習演練/程式規劃二/20200324_StringStruct/2.cpp
748a34e4768f0c59c64863852e49725e7e823a8b
[ "MIT" ]
permissive
Yu-Zhuang/C
d5604718ce965243abbf20269466c096cc8ae553
256ddc3d01f047f12a0de3685cb7b203fa30dd05
refs/heads/master
2022-12-25T10:28:02.617426
2020-10-07T00:30:35
2020-10-07T00:30:35
247,274,487
0
0
null
null
null
null
UTF-8
C++
false
false
1,610
cpp
#include<stdio.h> #include<stdlib.h> #include<string.h> /* 2. 切割字 將原字串copy到另一個字元陣列。使用函式strtok()將str的副本依照空白、逗號、句號、驚嘆號、 左括弧、右括弧等字元切割,然後將切割出來的子字串一一copy到一個「字串陣列」中。 並判斷切出來的子字串是不是都是數字或是全部大寫,例如23, NBA。 Ex: 原字串: "The C library function char *gets(char *str) reads a line from stdin and stores it into the string pointed to by" ...
[ "106711129@gms.tcu.edu.tw" ]
106711129@gms.tcu.edu.tw
da7f92d708996e03337fba3ff74e0fb0475a7820
39cf627c4019a824c970a75a448ffa7187d589f4
/utils/locale_setter.cpp
5c837a9650ca6f1d52dfb61031652cd325dbfb11
[]
no_license
bakwc/ozifi
bf725255493f10c1fd6629164551340228bd510f
dd1e2530b7a8405d12316006279147b65c7067a4
refs/heads/master
2021-01-10T18:43:40.883312
2014-10-05T12:59:08
2014-10-05T12:59:08
13,170,957
1
3
null
2014-08-22T20:17:32
2013-09-28T10:15:52
C++
UTF-8
C++
false
false
309
cpp
#include <locale.h> #include <iostream> #include "locale_setter.h" void InitLocale() { static bool initialized = false; if (!initialized) { #ifdef __WIN32__ setlocale(0, ""); #else setlocale(LC_CTYPE, "en_US.UTF-8"); #endif initialized = true; } }
[ "ozinov@quantion.ru" ]
ozinov@quantion.ru
2fdade028c0775a6a681d978779705b899028846
1553d8eacb531f7beeca36a0c20e3f72d030f0d9
/NewtonModule/core/dgDelaunayTetrahedralization.cpp
3391895cd1b603e1e44bd5b8df20ffa523b61b18
[]
no_license
Hurleyworks/NewtonBlock
152fdf8dcec45c088f5b77e5832a2edd97d33960
bb40720f1c97f46814762cbe07756262d10f2f28
refs/heads/master
2021-01-10T17:55:53.942620
2015-12-06T11:26:35
2015-12-06T11:26:35
45,901,502
5
1
null
null
null
null
UTF-8
C++
false
false
6,982
cpp
/* Copyright (c) <2003-2011> <Julio Jerez, Newton Game Dynamics> 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 purpo...
[ "github@hurleyworks.com" ]
github@hurleyworks.com
90d6affb1f796b2d558509147b8903296f747dbb
70304a28d8c4e83194318bdf08fcdb21252e567d
/src/interpreter/bytecode-generator.cc
f4983f8e01809c5e37927c9e651c1e5a9cd3807e
[ "BSD-3-Clause", "bzip2-1.0.6", "SunPro" ]
permissive
anhsirkias/v8
68d3ae27cec00753c9d7b25dbb954b43d635f01b
6f105c7a582d3820ebce9bc0111f3d7017798d5b
refs/heads/master
2021-08-05T13:02:14.435094
2017-10-30T10:17:05
2017-10-30T10:49:13
null
0
0
null
null
null
null
UTF-8
C++
false
false
174,543
cc
// Copyright 2015 the V8 project 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 "src/interpreter/bytecode-generator.h" #include "src/ast/ast-source-ranges.h" #include "src/ast/compile-time-value.h" #include "src/ast/scopes...
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
2b00b8e0bfef6f241dfecdfaf8c17f7e1d28b473
9a0d361d26ea092972a689663b9a8228f9018caa
/AlgorithmC++/Algorithm/ProblemSolving/week6/21.05.04/11048-1.cpp
56a54fa6769e50acc73735bbc8dbab304dbcfa7a
[]
no_license
Dev-RubinJo/AlgorithmCpp
b555e3e2b39565d92a64cfeed9890d26589647e3
cac74f7a3bdb4797b28ca4d3bc7f1618fc56c1f4
refs/heads/master
2023-06-03T08:52:35.733749
2021-06-22T14:32:04
2021-06-22T14:32:04
null
0
0
null
null
null
null
UTF-8
C++
false
false
733
cpp
#include <bits/stdc++.h> using namespace std; int n, m; int dp[1001][1001], a[1001][1001]; void input() { ios::sync_with_stdio(0); cin.tie(0); cout.tie(0); cin >> n >> m; for(int i = 0; i < n; i++) { for(int j = 0; j < m; j++) { cin >> a[i][j]; } } dp[0][0] = a[0][0]; } ...
[ "dbqlsdl1234@naver.com" ]
dbqlsdl1234@naver.com
bb4f9585e1c32005a98134c9486636b4d2a49c00
01ec5fae952211e0a0ab29dfb49a0261a8510742
/backup/source/cpp/[226]翻转二叉树.cpp
28b73a4109ef117a6b297d94e1de2ec1377724a9
[]
no_license
algoboy101/LeetCodeCrowdsource
5cbf3394087546f9051c493b1613b5587c52056b
25e93171fa16d6af5ab0caec08be943d2fdd7c2e
refs/heads/master
2021-02-20T00:18:51.225422
2020-06-21T09:04:24
2020-06-21T09:04:24
245,323,834
10
4
null
2020-03-09T02:23:39
2020-03-06T03:43:27
C++
UTF-8
C++
false
false
886
cpp
//翻转一棵二叉树。 // // 示例: // // 输入: // // 4 // / \ // 2 7 // / \ / \ //1 3 6 9 // // 输出: // // 4 // / \ // 7 2 // / \ / \ //9 6 3 1 // // 备注: //这个问题是受到 Max Howell 的 原问题 启发的 : // // 谷歌:我们90%的工程师使用您编写的软件(Homebrew),但是您却无法在面试时在白板上写出翻转二叉树这道题,这太糟糕了。 // Related Topics 树 //leetcode...
[ "chenwenwen0210@126.com" ]
chenwenwen0210@126.com
8bd83826aabcc36c18428a43d6f5de9efe4e76ca
91daa3b182aaf3e937efb3b4977a46b548774ecc
/1347.cpp
7c4b4568db0a3959f4c7236ee3d283f2b9b3fc0e
[]
no_license
Yearss/leetcode
4bafbcd250e09da3beb079fe52404278b3ac72fd
3289a83f9c759e9eb667f5312189c8c93b638941
refs/heads/master
2023-01-27T13:29:52.211446
2020-12-03T11:55:34
2020-12-03T11:55:34
287,920,052
1
0
null
null
null
null
UTF-8
C++
false
false
564
cpp
#include <vector> #include <string> using namespace std; class Solution { public: int minSteps(string s, string t) { // 计算s vector<int> index(50); int N = s.size(); for(int i = 0; i < N; i++){ index[s[i] - 'a']++; } // 遍历t int ret = 0...
[ "songbohan@tencent.com" ]
songbohan@tencent.com
232ca6c1f6c4170b07520154e96bc3584010b788
6abb92d99ff4218866eafab64390653addbf0d64
/AtCoder/abc/abc208/a.cpp
13a3737ba97a2b62dd805151af12b6d2b4b99c8a
[]
no_license
Johannyjm/c-pro
38a7b81aff872b2246e5c63d6e49ef3dfb0789ae
770f2ac419b31bb0d47c4ee93c717c0c98c1d97d
refs/heads/main
2023-08-18T01:02:23.761499
2023-08-07T15:13:58
2023-08-07T15:13:58
217,938,272
0
0
null
2023-06-25T15:11:37
2019-10-28T00:51:09
C++
UTF-8
C++
false
false
342
cpp
#include <bits/stdc++.h> #define rep(i, n) for(int i = 0; i < (n); ++i) #define rep1(i, n) for(int i = 1; i < (n); ++i) using namespace std; using ll = long long; int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); int a, b; cin >> a >> b; if(a <= b && b <= 6*a) puts("Yes"); else puts("...
[ "meetpastarts@gmail.com" ]
meetpastarts@gmail.com
70cff79384259fbc915e30c007ea82b298e2fc41
254d708794f4e70434366b5f7b7442d100fe25de
/Gomoku/src/board.h
a25f7371e37ca638f21a64f8edfee1064ccd0cdf
[]
no_license
luliyucoordinate/QT_Gomoku
5a237e9fb90bd0a12a58932bf25c3c0a0a3e508a
ef25367b2c5d48ba284f91a838dbc40b6dc4203a
refs/heads/master
2020-03-16T01:23:19.589287
2018-10-31T06:52:08
2018-10-31T06:52:08
132,438,941
0
0
null
null
null
null
UTF-8
C++
false
false
1,677
h
#ifndef BOARD_H #define BOARD_H #include <QWidget> #include <QStack> #include "piece.h" class Board : public QWidget { Q_OBJECT public: explicit Board(QWidget *parent = nullptr); //Get member functions int GetPieces() const { return _pieces; } QColor GetColor() const { return _pieceColor; } ...
[ "luliyucoordinate@outlook.com" ]
luliyucoordinate@outlook.com
191445b0e85a3940de259a1b4ca1b6bb416e6e2c
a947e022a8d9d2214e83386ddf1c4908a42255d7
/M_03/ex03/ScavTrap.hpp
b9fe4cffc7bbebf113b79d14419cf82588d33a13
[]
no_license
BooDeer/CPP_modules
03c4c3a6a7e9c7ef9cd24d34f53af09db22d8dca
36219b52ed30fd226870a61b8938a1c1c11bedbe
refs/heads/master
2022-03-11T08:05:31.545415
2022-02-07T16:55:19
2022-02-07T16:55:19
249,405,415
0
0
null
null
null
null
UTF-8
C++
false
false
362
hpp
#ifndef SCAVTRAP_HPP # define SCAVTRAP_HPP #include "ClapTrap.hpp" class ScavTrap: public ClapTrap { public: ScavTrap( void ); ScavTrap(const std::string name); ScavTrap( const ScavTrap& src); ~ScavTrap( void ); ScavTrap& operator=(const ScavTrap& rhs); void attack(std::string name); void guardGate...
[ "hsissi3a@gmail.com" ]
hsissi3a@gmail.com
c80510a75a402f0fdd21f6fbd314f2b0cdf36089
36be6f045b48c0ed1890e71bf6795cf81a7f8434
/src/SARibbonBar/SARibbonComboBox.h
d77b67bb2fc2bf40f72ff17bd42b77d1941c67ed
[ "MIT" ]
permissive
SammyEnigma/SARibbon
ef10141ae35c0e5bf27d61f9f866959b7dfe0623
d918df2354a46b30b5394801205406c09f21676d
refs/heads/master
2023-08-07T15:28:40.152849
2023-06-09T08:46:24
2023-06-09T08:46:24
235,953,291
0
0
MIT
2023-09-03T11:46:58
2020-01-24T06:46:06
C++
UTF-8
C++
false
false
361
h
#ifndef SARIBBONCOMBOBOX_H #define SARIBBONCOMBOBOX_H #include "SARibbonGlobal.h" #include <QComboBox> /** * @brief QComboBox的Ribbon显示,可以显示QIcon和windowTitle在左侧 */ class SA_RIBBON_EXPORT SARibbonComboBox : public QComboBox { Q_OBJECT public: SARibbonComboBox(QWidget *parent = Q_NULLPTR); }; #endif // SARI...
[ "czy.t@163.com" ]
czy.t@163.com
a2a701d0a60dd1a110fca838b4bfcba1cf78aeea
7f0a0660cc25e4a61172170b8e57f15f19417b48
/2018-19-2/tuesday16-18/01_ex/hello2.cpp
64a428db316b2ed447de0e21af996c5b66abfd49
[]
no_license
Szelethus/cpp_courses
f1e38b477b6d81cb4563b6829ecdf0c8bd14c346
6673a62f5bda4d4d81dfb9478b0098fde90e826c
refs/heads/master
2023-08-18T03:59:28.960836
2023-05-23T07:43:00
2023-05-23T07:43:00
171,329,370
1
0
null
null
null
null
UTF-8
C++
false
false
42
cpp
#include <iostream> static void f() { }
[ "dkszelethus@gmail.com" ]
dkszelethus@gmail.com
afed601e7fb36dbe2feb688c4d17d0e763c1bda7
f81b774e5306ac01d2c6c1289d9e01b5264aae70
/gpu/vulkan/vulkan_image.cc
c0f4655cbad884fa573af491dab723fa8d6e5a3d
[ "BSD-3-Clause" ]
permissive
waaberi/chromium
a4015160d8460233b33fe1304e8fd9960a3650a9
6549065bd785179608f7b8828da403f3ca5f7aab
refs/heads/master
2022-12-13T03:09:16.887475
2020-09-05T20:29:36
2020-09-05T20:29:36
293,153,821
1
1
BSD-3-Clause
2020-09-05T21:02:50
2020-09-05T21:02:49
null
UTF-8
C++
false
false
11,538
cc
// Copyright 2020 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 "gpu/vulkan/vulkan_image.h" #include <vulkan/vulkan.h> #include <algorithm> #include "base/logging.h" #include "base/macros.h" #include "base/...
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
242cb8e7d64ba91f450f0ba1808f702b75ccec44
3bc203afa5eb7fd87d207862f5752887602b71f1
/src/irc.cpp
00c76aea22969a33ca7519bf564ce2bd8de45ecc
[ "MIT" ]
permissive
filebit/FileBit
00649d645548edfabf0baae3a09ddfdc831bf4e8
3b4ba9ff20c25d6ad7c894e37490593bb737ee5a
refs/heads/master
2016-09-03T03:54:49.431978
2014-08-09T18:29:22
2014-08-09T18:29:22
null
0
0
null
null
null
null
UTF-8
C++
false
false
10,993
cpp
// Copyright (c) 2009-2010 Satoshi Nakamoto // Copyright (c) 2009-2012 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 "irc.h" #include "net.h" #include "strlcpy.h" #include "base58.h" using ...
[ "filebit07@hotmail.com" ]
filebit07@hotmail.com
f92a409c3f3412de7b1dbf9b3943bc613d16bc35
b873c7fab30910fab2185d52ac53c33a4ad49dd4
/src/qt/coincontroldialog.cpp
f5afeb7059dfe1601f32f46bfd712253280b0da1
[ "MIT" ]
permissive
QuotationCoin/QUOT-Coin
f6d8c735932c42bb25c6d743ad47d2c21a6ede7d
16a32e64dc62acdeb9bec2e967372fe3b165b160
refs/heads/master
2021-06-26T05:29:58.323114
2020-10-25T17:09:28
2020-10-25T17:09:28
158,283,386
6
5
MIT
2020-10-25T17:09:29
2018-11-19T20:07:17
C++
UTF-8
C++
false
false
37,941
cpp
// Copyright (c) 2011-2014 The Bitcoin developers // Copyright (c) 2014-2015 The Dash developers // Copyright (c) 2015-2017 The PIVX developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "coincontroldialog.h" #...
[ "root@localhost" ]
root@localhost
97aae8b5b0a8d7240d5b3d2e2eeadc6704bd7153
9b0277505af705a8a62bf4658a4a954bfd80935a
/rete-reasoner/ExplanationToDotVisitor.cpp
66fce2091f7d646e03ae24f15db173f93c86153d
[ "BSD-3-Clause" ]
permissive
sempr-tk/rete
cc03cf27c285fa596e3a76812c51587d0b7c9720
a6fd29f50f9e6a259d40ac0850acff7874ccdba0
refs/heads/master
2023-07-04T08:31:04.439888
2021-08-13T12:24:14
2021-08-13T12:24:14
395,630,683
6
0
null
null
null
null
UTF-8
C++
false
false
7,181
cpp
#include "ExplanationToDotVisitor.hpp" #include "InferenceState.hpp" #include "../rete-core/Util.hpp" namespace { std::string dotId(void* ptr) { return "\"" + rete::util::ptrToStr(ptr) + "\""; } } namespace rete { void ExplanationToDotVisitor::visit(WME::Ptr wme, size_t depth) { bool isFirs...
[ "nils.niemann@dfki.de" ]
nils.niemann@dfki.de
d8e6bcda536f60effe6df2927e038c49e9f50dd3
0a7c429c78853d865ff19f2a75f26690b8e61b9c
/CadKit/SceneGraph/Core/SgCoordinate4.cpp
62738b14079ee657aa13f5792c4f5104bf1f917f
[ "BSD-3-Clause" ]
permissive
perryiv/cadkit
2a896c569b1b66ea995000773f3e392c0936c5c0
723db8ac4802dd8d83ca23f058b3e8ba9e603f1a
refs/heads/master
2020-04-06T07:43:30.169164
2018-11-13T03:58:57
2018-11-13T03:58:57
157,283,008
2
2
null
null
null
null
UTF-8
C++
false
false
1,926
cpp
/////////////////////////////////////////////////////////////////////////////// // // Copyright (c) 2002, Perry L. Miller IV // All rights reserved. // BSD License: http://www.opensource.org/licenses/bsd-license.html // /////////////////////////////////////////////////////////////////////////////// ///////////////...
[ "pep4@73d323f7-f32a-0410-a0ec-c7cf9bc3a937" ]
pep4@73d323f7-f32a-0410-a0ec-c7cf9bc3a937
9952dc3faba70d302cf431bd8d9084fa7f41bcff
afad6586165ca3cfcea42150696d6d0d3d7bac2a
/Math/fizzbuzz.cpp
37c3522d75e74b4d9333b612d67816d3cbef7fe9
[]
no_license
vivekiitm/Interviewbit-Solutions
251cba4a14e06eab2841a2e8ae1877e3d112353a
8003c2ee334670d43229b93c3dca9433a0825167
refs/heads/master
2020-12-26T18:28:50.643285
2020-05-27T16:57:51
2020-05-27T16:57:51
237,596,791
1
0
null
null
null
null
UTF-8
C++
false
false
395
cpp
vector<string> Solution::fizzBuzz(int A) { vector<string>ans; for(int i=1;i<=A;i++) { if((i%3!=0)&&(i%5!=0)) ans.push_back(to_string(i)); if((i%3==0)&&(i%5!=0)) ans.push_back("Fizz"); if((i%3!=0)&&(i%5==0)) ans.push_back("Buzz"); if((i%3==0...
[ "44374277+vivekiitm@users.noreply.github.com" ]
44374277+vivekiitm@users.noreply.github.com
98253942423114b489721afb544f71cb7685d3b9
c51febc209233a9160f41913d895415704d2391f
/library/ATF/$_TypeDescriptor$_extraBytes_538.hpp
323506b9fe677f9abca6fcb89bbdc9d8047338d4
[ "MIT" ]
permissive
roussukke/Yorozuya
81f81e5e759ecae02c793e65d6c3acc504091bc3
d9a44592b0714da1aebf492b64fdcb3fa072afe5
refs/heads/master
2023-07-08T03:23:00.584855
2023-06-29T08:20:25
2023-06-29T08:20:25
463,330,454
0
0
MIT
2022-02-24T23:15:01
2022-02-24T23:15:00
null
UTF-8
C++
false
false
371
hpp
// This file auto generated by plugin for ida pro. Generated code only for x64. Please, dont change manually #pragma once #include <common/common.h> START_ATF_NAMESPACE #pragma pack(push, 2) struct $_TypeDescriptor$_extraBytes_538 { const void *pVFTable; void *spare; char name[53...
[ "b1ll.cipher@yandex.ru" ]
b1ll.cipher@yandex.ru
5bbf730b409b41361d4bf0dc1daf216ed7f593f9
895e1f0af56518c7956594f7c650211d9fc2467a
/labs/game_engine/prototypes/prototype_4/src/ext_core/Behavior.cpp
fcce18dd898dbbdf4a7385bc1ef471f90cfb5408
[]
no_license
lythm/orb3d
b6061ebf839381a35aaeab8baf08a38fcfe03a71
2defcbf86ef7dd2a27fe7bdc89bf709ed8bf2a79
refs/heads/master
2016-09-15T15:55:19.069094
2013-07-12T17:09:29
2013-07-12T17:09:55
4,442,482
1
1
null
null
null
null
UTF-8
C++
false
false
364
cpp
#include "core_ext_pch.h" #include "..\..\include\core\ext\Behavior.h" #include "CorePackage.h" namespace engine { Behavior::Behavior(GameObjectManagerPtr pManager):GameObjectComponent(L"Behavior", pManager) { } Behavior::~Behavior(void) { } void Behavior::Update() { } bool Behavior::OnAttach() { return ...
[ "lythm780522@gmail.com" ]
lythm780522@gmail.com
0ce9a51a81fe25b01f1961702f8a36b59fb0ae90
48f91d400b46cdcbc995edf7dcfa3afd2df52867
/C++Builder_Example_USB-CAN/set1.cpp
3838f7f236e131f8297e93680f9c6f691cf8bc2b
[]
no_license
cishudian/GY850X-CAN-EXAMPLES
2f733145d09c8aa8f4b129c21664397c1dcc995d
4054214e76ab94dbda027d63f2de1ffc4a0104a6
refs/heads/master
2020-05-25T18:55:15.182907
2019-05-21T17:22:29
2019-05-21T17:23:10
187,938,565
0
0
null
null
null
null
UTF-8
C++
false
false
505
cpp
//--------------------------------------------------------------------------- #include <vcl.h> #pragma hdrstop #include "set1.h" //--------------------------------------------------------------------------- #pragma package(smart_init) #pragma resource "*.dfm" TForm2 *Form2; //-----------------------------------------...
[ "2565724815@qq.com" ]
2565724815@qq.com
dc4328c2b21d07172554b71e948efa8d48b21844
c047518e0bc0be1d1a46b734fbf53610cb8a407f
/URI/1469.cpp
1507ccc1e04ba70d275a3bd188f913306ab928bb
[]
no_license
fernandozanutto/competitive_programming
c3e006544ddba1702a37eeb437cb015713e8c2d1
cf721a7bcce6c5d5fc9f739ad729079c939fc421
refs/heads/master
2020-06-19T06:57:32.288602
2020-04-04T14:58:45
2020-04-04T14:58:45
196,607,123
2
0
null
null
null
null
UTF-8
C++
false
false
1,516
cpp
#include <bits/stdc++.h> using namespace std; int grafo[505][505]; int idades[505]; int idade; int n,m,I; int visitados[505]; void dfs(int v){ for(int u=1; u<=n; u++) if(visitados[u]==0 && grafo[v][u] == 1){ visitados[u] = 1; //cout << "a: " << u << endl; idade =...
[ "ferzanutto1999@gmail.com" ]
ferzanutto1999@gmail.com
e942a755e6662394f750ae9b438aa10bb4496d1d
719ca866888053c63c4f76207f3792b0a46b5c8a
/Libraries/OsgAnimatSim/OsgJoint.cpp
984fa65aa4010ae40f9bacaa71da56e10936851a
[]
no_license
silicondosa/AnimatLabPublicSource
08e71f28c221881bf8527bb95df8cf530c455ca0
c5b23f8898513582afb7891eb994a7bd40a89f08
refs/heads/master
2023-03-20T02:16:00.390767
2016-10-04T18:17:59
2016-10-04T18:17:59
null
0
0
null
null
null
null
UTF-8
C++
false
false
12,511
cpp
// OsgJoint.cpp: implementation of the OsgJoint class. // ////////////////////////////////////////////////////////////////////// #include "StdAfx.h" #include <stdarg.h> #include "OsgMovableItem.h" #include "OsgBody.h" #include "OsgJoint.h" #include "OsgRigidBody.h" #include "OsgStructure.h" #include "OsgUserData.h" #i...
[ "dcofer@NeuroRoboticTech.com" ]
dcofer@NeuroRoboticTech.com
7253bddfcd2feb29c7a8fd1bedb454523af670fa
c23c543011148f84296294094c21ae80ccb9ea79
/cc/debug.hh
842f1e2daaf1ea9d01b7505623fb4c93f8667a2c
[ "MIT" ]
permissive
skepner/dtra2
995ea133c8084e2ff2d48d144e51dce0a3c52268
892100a824abdbddb341cf834784997cbb904820
refs/heads/master
2023-02-21T07:14:50.360074
2023-02-18T20:13:59
2023-02-18T20:13:59
157,518,973
0
0
null
null
null
null
UTF-8
C++
false
false
1,678
hh
#pragma once #include "stream.hh" // ---------------------------------------------------------------------- #define DEBUG_LINE_FUNC_S (std::string{__FILE__} + ":" + std::to_string(__LINE__) + ": " + __PRETTY_FUNCTION__) #define DEBUG_LINE_FUNC (std::string{" ["} + __FILE__ + ":" + std::to_string(__LINE__) + ": " + _...
[ "github@skepner.eu" ]
github@skepner.eu
8791ba3d42836f1224465e792ac444f4f1a0dee6
1dca551611e643f5692f726f6f3e90c6c00eb7f7
/UnitsModule/MeasurementTypes/weightperlengthdeclarations.h
9105736f8336a92080256d62a6b3d76febe45d05
[ "MIT" ]
permissive
HowCanidothis/DevLib
d47b977dfa01999e4fd8f26cad7ef2c9c77471fa
58fb0fa099cc6cb5f58ad2e8481bc4ca3758cdfb
refs/heads/master
2023-08-22T21:21:47.705274
2023-08-16T09:41:32
2023-08-21T15:40:18
282,774,252
0
1
MIT
2022-12-22T05:17:14
2020-07-27T02:23:37
C++
UTF-8
C++
false
false
427
h
#ifndef WEIGHTPERLENGTHDECLARATIONS_H #define WEIGHTPERLENGTHDECLARATIONS_H #include "UnitsModule/measurementdeclarations.h" namespace WeightPerLengthUnits { DECLARE_MEASUREMENT_UNIT(KilogramPerMeter) DECLARE_MEASUREMENT_UNIT(KilogramPerCantimeter) DECLARE_MEASUREMENT_UNIT(PoundPerFoot) DECLARE_MEASUR...
[ "des_av@mail.ru" ]
des_av@mail.ru
81c108e45a5d0e04ec85e52d62246e042ed0e994
2fe7b5a2d2c2d79ad28e9fbed8dcd2f1eec890c4
/Spoons Tavern Defence/Spoons Tavern Defence/Glasses.cpp
bfc9af3ee40ae7a5e6cebd5e4d0906ddc2c7320b
[]
no_license
OnlySpoons/Spoons-Tavern-Defence
cba718915b3b25046f0a5456d91f3343b5a7cae9
503dbba68b305d44584af27af1281767d8f0ee91
refs/heads/main
2023-04-18T05:51:48.500211
2021-05-07T01:13:34
2021-05-07T01:13:34
305,983,004
0
0
null
null
null
null
UTF-8
C++
false
false
304
cpp
#include "Glasses.h" Glasses::Glasses(const Spoonity::ObjectData& data, const std::string& modelPath, const Spoonity::Shader& postProcessShader) : Entity(data, modelPath), _PostProcessShader(postProcessShader) { } void Glasses::update(float& deltaTime) { //TODO: bobbing and rotating code }
[ "Martin.A.D.Harvey@hotmail.co.uk" ]
Martin.A.D.Harvey@hotmail.co.uk
c4356a2ceedb7c12c1da887487d94ddc304475cd
acab31c92958229072cd2a71abbb7743706c3494
/chp6_LinkedList/linearList.h
ce9ab9c80dce45a38401e82824da93921b9f1125
[]
no_license
haowenchao123/DataStructureAndAlgorithms
fd9ba6083d64704cc722a195eb3a429c9fb1092d
b75c665b3dab9f0da9724a17e9bd8a4fea64ae74
refs/heads/master
2022-04-13T18:15:25.039930
2020-04-02T12:27:04
2020-04-02T12:27:04
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,067
h
// abstract class linearList // abstract data type specification for linear list data structure // all methods are pure virtual functions #ifndef linearList_ #define linearList_ #include <iostream> using namespace std; template<class T> class linearList { public: virtual ~linearList() {}; virtual bool...
[ "haowenchao123@gmail.com" ]
haowenchao123@gmail.com
dec96c247b70ac234c0297114625469ff14b4325
cfc04415ead6fda6950dc63dc6aee9f6791800aa
/cc/subtle/subtle_util.cc
071c5ec2de02957eb84fb1432913fa36489b0d46
[ "Apache-2.0" ]
permissive
jpettitt/tink
0a2b5893ca73081a4b707723dcda257837e48d1a
8296f7de5ec84a0016baf0568ef9dcc207643956
refs/heads/master
2020-07-13T05:06:32.992369
2019-08-23T19:39:28
2019-08-23T19:40:08
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,140
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
8d916d536be02ec36b66968197310e4c21232619
2e7b6081bce442caee09aac86712ae04c326032d
/Library3rdParty/mcafeelib/stdafx.cpp
58c7921ebb54cbd732e027c097ca0aa31f28ab9c
[]
no_license
clayderhua/EI-Agent
6ba0bc566b4596fa9d453b9fa2d1e3919fe2d60d
28807262e657be51d7acb2360aa6a04b9db66ad7
refs/heads/master
2022-11-20T08:05:20.359617
2020-07-21T05:43:33
2020-07-21T05:43:33
281,305,934
1
1
null
null
null
null
UTF-8
C++
false
false
288
cpp
// stdafx.cpp : source file that includes just the standard includes // mcafeelib.pch will be the pre-compiled header // stdafx.obj will contain the pre-compiled type information #include "stdafx.h" // TODO: reference any additional headers you need in STDAFX.H // and not in this file
[ "charles.huang@advantech.com.tw" ]
charles.huang@advantech.com.tw
108c1e754886f07c8a54ff55a85076e0cc353569
ca3183ce0dc677c76766ff022a719a2874656237
/core/TransferShare.test.cpp
de17a896b004688d7db2893ab00326e686525c73
[]
no_license
choosyg/Buchhaltung
b8acbc28f057eb7ee5a7fa5cc89f55080891bfab
b0e248bed68e084be70609024cb589b7e5f25fec
refs/heads/master
2021-06-24T04:29:21.142873
2020-10-22T18:40:15
2020-10-22T18:40:15
131,003,102
0
0
null
null
null
null
UTF-8
C++
false
false
378
cpp
#include "TransferShare.h" #include <gtest/gtest.h> TEST( TransferShareTest, ShouldRoundToCorrectDirection ) { TransferPtr t = std::make_shared< Transfer >( QDate(), "", 100 ); ASSERT_EQ( 33, TransferShare( t, 1.0 / 3.0 ).cents() ); TransferPtr m = std::make_shared< Transfer >( QDate(), "", -100 ); A...
[ "stefan@schiffler-bremen.de" ]
stefan@schiffler-bremen.de
01c614abfd8636f7b709db4e0cb168f8c6f9941b
9118d25949e805d92070be29d05db6b5e5363f9f
/libalt/libalt/altDX/altMouse.h
b24a4dd706dc25af7b9d4e6ea9a30ad623b0a67e
[]
no_license
azusanakano/labo
4859c637b729f2718a86e745a428110c341475f6
35af9a3877e6ac8a83e6be616bf721d90264cedc
refs/heads/master
2021-03-12T20:38:57.429452
2014-05-22T09:51:24
2014-05-22T09:51:24
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,289
h
#ifdef ALT_USE_DX // If you use DirectX, define ALT_USE_DX. #ifndef ALTMOUSE_H #define ALTMOUSE_H /*--------------------------------------------------------------------------* Alternative Llibrary Copyright (C) 2007-2013 Azusa Nakano All Rights Reserved. This program is released under term of the Apache Li...
[ "nakano.azs@gmail.com" ]
nakano.azs@gmail.com
e8fc3bc3d7922a307f2fe8edd417b0acb53d7203
0bc8ede923979fe128fb285ff078ea49fa3879fa
/src/jpp/JLang/JBool.hh
d50ed8a906e388d0006fd4a67471009b0497def1
[ "MIT" ]
permissive
KM3NeT/jppy
2f70ccab27352ea905d14f8ba01db449a8143929
609aee22d2097d7218f0125dbb4c82bf39099ef7
refs/heads/master
2022-11-23T20:39:55.149023
2022-11-07T08:22:19
2022-11-07T08:22:19
243,485,643
0
0
null
null
null
null
UTF-8
C++
false
false
7,029
hh
#ifndef __JLANG__JBOOL__ #define __JLANG__JBOOL__ /** * \author mdejong */ namespace JLANG {} namespace JPP { using namespace JLANG; } namespace JLANG { /** * Auxiliary template class for type bool. * This class can be used for boolean expressions at compile time. */ template<bool __value__> st...
[ "himself@tamasgal.com" ]
himself@tamasgal.com
1c9cd0de5c4daf32ed52f842f19a49187ee4f4f0
210e10f006d950bd38478d6a4b11a39fddf14410
/PP12.Vector2D/Vector2D.h
9b14788257e532ef74f622bd9f96943350972f9a
[]
no_license
KimYeoJeong/GameFramework.20171121
afea30f703c21dc1b6f77195ee155d7e6a5566c4
09d5e7fcc09c941a062d248c86b527737812e6ef
refs/heads/master
2020-03-28T13:50:51.903416
2018-11-19T08:46:29
2018-11-19T08:46:29
148,430,687
0
0
null
null
null
null
UTF-8
C++
false
false
1,278
h
#include<math.h> #pragma once class Vector2D { public: Vector2D() {}; Vector2D(float x, float y) : m_x(x), m_y(y) {} float getX() { return m_x; } float getY() { return m_y; } void setX(float x) { m_x = x; } void setY(float y) { m_y = y; } private: float m_x; float m_y; Vector2D operator+(const Vector2D& v2) c...
[ "jong687@naver.com" ]
jong687@naver.com
2c35b6907454f20bf290be02903a5c1a3f517f41
6f53cf87a94c53a277fa13147f37156a08ccb214
/HACKATHON/include/SpinningKnifes.hpp
b25714648f55d8258fb87264c2092d067ec1e727
[]
no_license
pfigiel/Keystroker
bf3b8b5a329b8343f192187ae7fe63a55ab1d16b
a4093320ceb7dba3cbbab57d6091e281df2caf3b
refs/heads/master
2021-04-15T03:52:35.885046
2018-03-26T20:40:41
2018-03-26T20:40:41
null
0
0
null
null
null
null
UTF-8
C++
false
false
342
hpp
#pragma once #include "GameObject.hpp" class SpinningKnifes : public GameObject { public: SpinningKnifes(Game* gameState, sf::Vector2f position, sf::Vector2f size, std::string fileName); void setPosition(sf::Vector2f position); void update(sf::RenderWindow& window, const double& deltaTime) ; void draw(sf::Ren...
[ "pawefig221@student.polsl.pl" ]
pawefig221@student.polsl.pl
752cb3304b53028f73b6f2582792de5adbad99c0
bb518103e85a3679e2fc12434d16983bf638c253
/leetcode/c++/Populating_Next_Right_Pointers_in_Each_Node_2.cpp
0c92b698934defa5ebc11a318ac9a2915c8f9ea9
[]
no_license
andy2git/coding
17d2b1b7405035ddfadb75dab9a3a36b31d798cc
e3188141211869046629ff19219b07a67edfe73f
refs/heads/master
2022-07-17T20:50:05.645214
2022-06-30T05:57:07
2022-06-30T05:57:07
31,408,027
0
0
null
2016-03-24T04:44:16
2015-02-27T07:19:20
C++
UTF-8
C++
false
false
731
cpp
/** * Definition for binary tree with next pointer. * struct TreeLinkNode { * int val; * TreeLinkNode *left, *right, *next; * TreeLinkNode(int x) : val(x), left(NULL), right(NULL), next(NULL) {} * }; */ class Solution { public: void connect(TreeLinkNode *root) { if(!root) return; if(!root-...
[ "andy.cj.wu@gmail.com" ]
andy.cj.wu@gmail.com
fd911f870f379bacb0f5bb1b75cf286f7f12ec34
a5af07e6bd5ee8559663730e63c217f3b2806d25
/Image_Processing_Approach/undistort_image_perspective_sobel_histogram.cpp
b0bafa5b87b60ee16b608f1cc030e485b7720634
[]
no_license
pranaypourkar/Autonomous-lane-follower
c4dc65d78da0066fd4b813a8add0cf25dd7fa601
9b8f6d3a5051f1b729fba5dce974102de3bad016
refs/heads/master
2020-04-25T10:18:16.495671
2019-05-02T06:34:13
2019-05-02T06:34:13
172,704,329
0
0
null
null
null
null
UTF-8
C++
false
false
5,343
cpp
#include "opencv2/objdetect/objdetect.hpp" #include "opencv2/highgui/highgui.hpp" #include "opencv2/imgproc/imgproc.hpp" #include <iostream> #include <stdio.h> using namespace std; using namespace cv; //intrinsic and extrinsic parametrs float camera_matrix[9] = {819.752611, 0.000000, 329.461908, 0.000000, 819.01154...
[ "pranay.pourkar@gmail.com" ]
pranay.pourkar@gmail.com
1979089e4c8cb989cf1ea1fee11f6a2430a4e016
48341608d6141a16f636b248496f9faf33c50a7e
/Academic/C/Aps/Lista_de_Vetores_e_Matrizes/vetores/ex_13.cpp
f5fe2c97a438b695b9ad575f017fd741a175b896
[]
no_license
joaogqueiroz/Projetos_C
0b036974f64fb654b454c3281ac4a404d222efed
95e66540f78bac74a5d481c33ba39d123e5178e4
refs/heads/master
2020-04-08T21:31:30.879603
2019-11-20T14:01:32
2019-11-20T14:01:32
159,747,566
1
0
null
null
null
null
ISO-8859-1
C++
false
false
514
cpp
/*13. Fazer um programa para ler 5 valores e, em seguida, mostrar a posição onde se encontram o maior e o menor valor*/ #include<stdio.h> main(){ int vet[5],menor=0,posi; for(int i=0;i<5;i++){ printf("Digite o valor da posicao[%d]:\n", i); scanf("%d", &vet[i]); } menor=vet[0]; ...
[ "joaogilberto350@hotmail.com" ]
joaogilberto350@hotmail.com
ceec23dc209fce33974d3683da7a7f8650197524
0aaf927ad224c063b0bf0c68956e04379f0945d6
/sources/include/ndt/address.h
27b85396578eafa67e1f7857810ab20dd2350369
[]
no_license
rokoDev/ndt
56f9177498fda89494a4793cbe5211eb17b9da95
de8bafc26a70bde1c5914c7af25ad69b20a4f19f
refs/heads/master
2023-08-17T02:04:10.889370
2021-09-29T19:01:16
2021-09-29T19:19:48
323,092,894
0
0
null
2021-04-16T14:35:32
2020-12-20T14:39:06
C++
UTF-8
C++
false
false
9,358
h
#ifndef ndt_address_h #define ndt_address_h #include <string> #include <variant> #include "bin_rw.h" #include "buffer.h" #include "exception.h" #include "sys_socket_ops.h" #include "tag.h" #include "utils.h" namespace ndt { inline const char *kAddressErrorCategoryCStr = "ndt_address_ec"; inline const std::string kIn...
[ "mishaDoter@gmail.com" ]
mishaDoter@gmail.com
4c7704026e1dd4ba4153ff6a0c25838c372d4bd2
040aa7259530cd0ca274248a266cd7c8ed480556
/tools/driver-tool/secure/payload.cpp
11dc1641db5580e54be13115ce7e307ba518572e
[ "LicenseRef-scancode-us-govt-public-domain", "LicenseRef-scancode-ncbi", "LicenseRef-scancode-public-domain", "LicenseRef-scancode-unknown-license-reference" ]
permissive
hzm220/sra-tools
062c3ea8b78008d5fba4f90f1ca7ebf568fea859
7080ccad8006bb76fd97596e86c1481d6f2d83d2
refs/heads/master
2022-04-20T20:26:23.122777
2020-04-02T22:03:02
2020-04-02T22:03:02
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,440
cpp
/*=========================================================================== * * PUBLIC DOMAIN NOTICE * National Center for Biotechnology Information * * This software/database is a "United States Government Work" under the * terms of the United States Copyright Act. I...
[ "rodarmer@ncbi.nlm.nih.gov" ]
rodarmer@ncbi.nlm.nih.gov
51b4fe878016951370cceadb5959020a76212cd3
126e18d87dcd274477dfea3c8c81ee58c3f7517b
/src/zoj1073.cpp
5e8236733adf55e9d491b5563564f96835b59c97
[]
no_license
hzqtc/zoj-solutions
260014b9ac8a5acf46ef118d210d8486089adc7f
76efc95fb0c4d5a6e62f62c5d07e61cc9fdc5109
refs/heads/master
2021-01-18T14:58:00.753417
2012-06-26T04:07:07
2012-06-26T04:07:07
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,494
cpp
#include <cstdio> #include <cstring> using namespace std; bool belong(int a[],int b[],int len); int main() { const int LEN = 64; char s[LEN]; int num[LEN]; int multi[LEN]; bool ok; while(scanf("%s",s) != EOF) { int len,i,j; len = strlen(s); for(i=0;i<len;i++) { num[i] = s...
[ "hzqtc1229@gmail.com" ]
hzqtc1229@gmail.com
a6642119320cc178fe2a728fd21b72e22db08a5b
5c1e40f2f0ba0a1598f81ce8c3746540d89d9e4e
/src/main/cpp/kernelscore_gen_vanilla.cpp
c135f4921c0b40cd9e334f28651b0090546aadd7
[ "BSD-2-Clause" ]
permissive
ehsantn/data-analytics-benchmarks
ee7c59dc8a51916207846eaedb8a7b5bd6c05ccb
db6ecf8c3e1d899a146ced47a8cc3e92b52fca69
refs/heads/master
2020-06-24T20:31:14.764983
2017-04-27T18:07:06
2017-08-24T04:45:31
74,623,894
1
0
null
null
null
null
UTF-8
C++
false
false
27,747
cpp
#include <random> #include <mpi.h> #include <stdint.h> #include <float.h> #include <limits.h> #include <complex> #include <math.h> #include <stdio.h> #include <iostream> #include "/home/etotoni/.julia/v0.5/ParallelAccelerator/src/../deps/include/j2c-array.h" #include "/home/etotoni/.julia/v0.5/ParallelAccelerator/src/....
[ "ehsan.totoni@intel.com" ]
ehsan.totoni@intel.com
c6b88f22db3abcdd76949b0227e60a050b20ef4a
8cd51b4885680c073566f16236cd68d3f4296399
/src/controls/QskPushButtonSkinlet.h
b2d2583c6819cc012915bf91c334f67c8ff73fb4
[ "BSD-3-Clause" ]
permissive
uwerat/qskinny
0e0c6552afa020382bfa08453a5636b19ae8ff49
bf2c2b981e3a6ea1187826645da4fab75723222c
refs/heads/master
2023-08-21T16:27:56.371179
2023-08-10T17:54:06
2023-08-10T17:54:06
97,966,439
1,074
226
BSD-3-Clause
2023-08-10T17:12:01
2017-07-21T16:16:18
C++
UTF-8
C++
false
false
1,272
h
/****************************************************************************** * QSkinny - Copyright (C) 2016 Uwe Rathmann * SPDX-License-Identifier: BSD-3-Clause *****************************************************************************/ #ifndef QSK_PUSH_BUTTON_SKINLET_H #define QSK_PUSH_BUTTON_SKINL...
[ "Uwe.Rathmann@tigertal.de" ]
Uwe.Rathmann@tigertal.de
5d70ecf5d5af6e37d1424f64ad812e0754108e2e
e0a27d2b4276438d072c4bdfd0127f6364ababc9
/src/common/dtl/rude/rudesession/DatabasePersistance.h
b16bedba13deab9839a3280790a00d004b47d3d7
[]
no_license
hanxin1987216/DTL
ab1da2c171a17af382dfcce1523e56ee2d35d3d4
2858770cbd645cff0c29911f9518f12a9fb2d5b1
refs/heads/master
2021-01-13T14:20:39.364470
2013-04-27T03:13:12
2013-04-27T03:13:12
5,611,146
2
1
null
null
null
null
UTF-8
C++
false
false
1,600
h
// DatabasePersistance.h // // Copyright (C) 2005 Matthew Flood // See file AUTHORS for contact information // // This file is part of RudeSession. // // RudeSession is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Softw...
[ "hanxin1987216@foxmail.com" ]
hanxin1987216@foxmail.com
ec5a1a0e3eb7972a68a114924afbbbb7fd91e8be
3f98867864019b68634e0aab9e0abb168e4c67be
/src/Card/Deck.cpp
04c5f45add1fbcbb9fdbe7c0a042ac064bdc60f4
[]
no_license
jsutcodes/forbidden-island-game
5251106102889b73277bc06290800d2ba5eb4fe2
e28dd5d64000dd8a5c3ac91e036cfc1d611419ae
refs/heads/master
2020-11-27T22:15:25.542231
2019-12-22T19:57:53
2019-12-22T19:57:53
229,622,526
0
0
null
null
null
null
UTF-8
C++
false
false
328
cpp
#include "Card/Deck.hpp" template <class T> Deck<T>::Deck() { } template <class T> Deck<T>::~Deck() { } template <class T> void Deck<T>::shuffle() { } template <class T> void Deck<T>::discard(T t) { } template <class T> T* Deck<T>::draw() { return new T(); //NULL OBJE...
[ "jorsutton92@gmail.com" ]
jorsutton92@gmail.com
6dd52f9132657192032513836bfe1bb59d4b8196
ef23ae86df646cd3192b62066ec8abbdb6a26426
/dev/g++/projects/embedded/gps/src/ublox.cc
9ab5462da3506123defdf6bc6966034b9e3c1f6e
[ "MIT" ]
permissive
YannGarcia/repo
9e3c43248814a9084a5ab9480c352a8f17e9076b
0f3de24c71d942c752ada03c10861e83853fdf71
refs/heads/master
2021-06-15T22:25:21.873408
2021-05-06T06:22:14
2021-05-06T06:22:14
74,947,093
0
1
null
null
null
null
UTF-8
C++
false
false
1,215
cc
/** * @File ublox.cpp * @brief Implementation file for the lightweight UBLOX GPS device library. * @author garciay.yann@gmail.com * @copyright Copyright (c) 2015 ygarcia. All rights reserved * @license This project is released under the MIT License * @version 0.1 */ #include <chrono> #include "ublox.hh" ...
[ "garcia.yann@gmail.com" ]
garcia.yann@gmail.com
cc82ff544b3319f1d02f753da8756ce847d15a4d
6bd7c0108f87ad1bdddef6e90d5ac4101cf2d16e
/qtreports/src/tags/detail.hpp
46d587498990a7b1c2067099cde84bcc087ceb46
[ "MIT" ]
permissive
renwinping/QtReports
a82a9a3975baa66644979e002bd0870fdd4afb6c
c9a22ac9dc0453c3ddbfcd0c4fd63a4341dff788
refs/heads/master
2023-08-31T17:44:33.375203
2019-05-14T03:47:55
2019-05-14T03:47:55
null
0
0
null
null
null
null
UTF-8
C++
false
false
526
hpp
#pragma once #ifndef DETAIL_HPP #define DETAIL_HPP #include <QSharedPointer> #include "section.hpp" namespace qtreports { namespace detail { /*! @~russian @brief Класс, реализующий тэг <detail> Класс, реализующий тэг <detail> */ class Detail : public Section { ...
[ "dr.claws.sakh@gmail.com" ]
dr.claws.sakh@gmail.com
b812695f2b192749a79e558084ee7fee78b6995a
9228dff422a1a66d2b111c931fcd7411dfe14d31
/Classes/SceneManager.h
be6fb459380abdb85862b7227112e5de2d52e6d8
[]
no_license
ken4500/zoo
3c253533ba2d3f457065927cc730abae460f2db1
56268c45448263bf2a3b480849099f09e36cb7a2
refs/heads/master
2021-01-10T19:12:45.203175
2015-09-02T15:11:35
2015-09-02T15:11:35
38,766,863
1
1
null
2015-08-22T14:40:48
2015-07-08T16:42:30
C++
UTF-8
C++
false
false
1,472
h
// // SceneManager.h // Tetrominos // // Created by Ken Watanabe on 2015/07/01. // // #ifndef __Tetrominos__SceneManager__ #define __Tetrominos__SceneManager__ #include "CommonInclude.h" #include "WorldSceneInterface.h" #include "NetworkManagerDelegate.h" #include "NetworkingWrapper.h" class MainScene; class Multi...
[ "ken.watanabe@gree.co.jp" ]
ken.watanabe@gree.co.jp
333cd4aa803a26ea7aeb14d6b51afb231b15fef9
f9f77c94f0734f8fd3e16d23d604dd656642d771
/src/testApp.h
001c3bb4f3319559e12d81fd1518b660eca550f2
[]
no_license
Awesome-CV/ofxKinectMeshRecorder
59feace3a6cc2716df469c6d74f9eeddeaba1332
7e9ff677e9ceac5101f2f29c694d23bf636e4a3b
refs/heads/master
2021-05-26T14:10:16.799857
2012-08-15T10:38:02
2012-08-15T10:38:02
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,136
h
#pragma once #include "ofMain.h" #include "ofxOpenCv.h" #include "ofxKinect.h" #include "ofxKinectMeshRecorder.h" // uncomment this to read from two kinects simultaneously //#define USE_TWO_KINECTS class testApp : public ofBaseApp { public: void setup(); void update(); void draw(); void exit(); void drawPoin...
[ "pelayo@welovecode.net" ]
pelayo@welovecode.net
33d06fb6bd6cfe54a078a176a80a69b98596103e
91a882547e393d4c4946a6c2c99186b5f72122dd
/Source/XPSP1/NT/com/rpc/midl/codegen/paddict.hxx
07634366c8b84cfe1414f518528248be93c128cb
[]
no_license
IAmAnubhavSaini/cryptoAlgorithm-nt5src
94f9b46f101b983954ac6e453d0cf8d02aa76fc7
d9e1cdeec650b9d6d3ce63f9f0abe50dabfaf9e2
refs/heads/master
2023-09-02T10:14:14.795579
2021-11-20T13:47:06
2021-11-20T13:47:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
6,642
hxx
/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Copyright (c) 1989-1999 Microsoft Corporation Module Name: paddict.hxx Abstract: Implements a dictionary for handling padding expressions for unknown represent as data types. Notes: History: Jan 25, 1994 ...
[ "support@cryptoalgo.cf" ]
support@cryptoalgo.cf
488f74d047fbb191ab81fb7393f4c7accb107dc6
a21930bdcc5208a47829b589ec9f127f889a45b0
/template_project_cmake/src/main.cpp
00eb387487cf5f070402a51cac54ae3985e38747
[]
no_license
yxdunc/templates_cpp
d876559da58d48d5b48674a298b65d16600d4975
bc1f9e419a2ab4ebd2201be75d4aea52c7965de3
refs/heads/master
2021-01-17T16:06:38.910580
2017-03-06T21:22:36
2017-03-06T21:22:36
84,121,880
0
0
null
null
null
null
UTF-8
C++
false
false
1,224
cpp
#include <iostream> #include <math.h> #include <vector> #include <algorithm> template <typename T> std::string serialize(const std::vector<T> &vec) { std::string str; str = "["; for (unsigned int i = 0; i < vec.size(); ++i) { str += std::to_string(vec[i]); str += (i + 1 < vec.size()) ? "," : ""; } str += "]...
[ "yxdunc@users.noreply.github.com" ]
yxdunc@users.noreply.github.com
dd88c69c8165d548fb63163fc418b32c6f11510f
49c65445f67978a43ada8cba264e45b1495d2382
/src/kernel.cpp
f80ab5c4bc5293d3c0f83ddf726baa02564dae75
[ "MIT" ]
permissive
cryptocollectibles-dev/pulsar
e9e6e38601d41b19ef18ca93603925a05cb3fd8b
cebbf1bbeff9cdd0ee572b13cdc41229ee252982
refs/heads/master
2021-09-07T01:26:08.646862
2018-02-14T21:49:21
2018-02-14T21:49:21
110,594,110
0
2
null
null
null
null
UTF-8
C++
false
false
16,868
cpp
// Copyright (c) 2012-2013 The PPCoin developers // Copyright (c) 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 "kernel.h" #include "txdb.h" #includ...
[ "cryptocollectibles1@gmail.com" ]
cryptocollectibles1@gmail.com
37e764c8d54013ef95ef4f30701180133600679a
5aaa3824fe15e80c7ee5a5150a7a14d15d8d3089
/engine/include/Social/MatWrapper.h
6985bb8ef35b226b627de7f4ac916d737f1e7905
[ "MIT" ]
permissive
Vbif/geometric-diversity
a7314d5eb2c4182925e8cb901ba054a6d39e1933
6e9d5a923db68acb14a0a603bd2859f4772db201
refs/heads/master
2021-09-04T02:15:33.285195
2018-01-14T13:56:50
2018-01-14T13:56:50
115,753,012
0
0
null
null
null
null
UTF-8
C++
false
false
2,194
h
#pragma once #include <string> #include <vector> namespace MatWrapper { struct MatPurchaseInfo { // Имя события, для разных плаформ могут быть разные std::string eventName; // Название товара std::string productId; // Уникальный идентификатор покупки std::string orderId; // Код валюты std::string c...
[ "gmvbif@mail.ru" ]
gmvbif@mail.ru
edd16d2d62a632bd1e5fa608dc4b78ab51ab9227
009293987dfbb55c524d4693d47daa7e345cf117
/Binary Trees/binary_trees.cpp
81f51a3e691ebab804d971f2a332bec78920983d
[]
no_license
forum2k-smit/DSA-OPEN-SOURCE
7affd7a517f5d0658c42e75e19d68d883846f78c
a298de436b495f482e4490fb47f9081b3bf9f3a6
refs/heads/main
2023-09-04T10:05:13.892953
2021-10-23T15:17:45
2021-10-23T15:17:45
412,650,256
5
18
null
2021-10-06T19:43:36
2021-10-02T00:18:02
Python
UTF-8
C++
false
false
1,266
cpp
// Binary Tree in C++ #include <stdlib.h> #include <iostream> using namespace std; struct node { int data; struct node *left; struct node *right; }; // New node creation struct node *newNode(int data) { struct node *node = (struct node *)malloc(sizeof(struct node)); node->data = data; node->left = NU...
[ "" ]
0b9f732bcfd9c72180878c5e4cfa29c0c3fce922
cd75778c4e7d1dd2f1ead556dd3a8568b35f9e62
/Source/Processor/Modules/ControlGroup/ControlGroup.h
952fdb55f1e5010b630d597843f39736f55255a6
[]
no_license
yesitsfebreeze/spool
c94c6ada7da250eb844468f1c457afaec7a1de4e
4fc8cb582c57f3b385cf5690019c22ce4dbe2d37
refs/heads/master
2023-06-13T00:32:09.246537
2021-07-12T13:16:52
2021-07-12T13:16:52
373,948,552
0
1
null
2021-07-10T07:21:25
2021-06-04T20:06:09
C++
UTF-8
C++
false
false
1,113
h
#pragma once #include <JuceHeader.h> #include "Config.h" class SpoolProcessor; class Track; class Effect; class ControlGroup { public: enum Group { Unassinged, A, B }; ControlGroup(SpoolProcessor* processor) : processor(processor) { for (int i = ...
[ "sh@dasistweb.de" ]
sh@dasistweb.de
04b1223edc3957463184b6eff38aa642c2d7ede3
1918a1ec0eb9dc9a90cead00aa528a5b870102e8
/xx/qtmaterialcheckbox.cpp
39783053a02e22a10a274a202e8e6186bcbf3726
[]
no_license
VIPERWorld/qt-material-widgets
6781ef5da0a0807f56a613ad7652e7d79fa75bd3
c144f850dd3d40781ce07cf5230c558dde85dad4
refs/heads/master
2021-01-01T18:52:48.514160
2016-07-22T05:47:07
2016-07-22T05:47:07
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,186
cpp
#include "xx/qtmaterialcheckbox.h" #include "xx/qtmaterialcheckbox_p.h" #include <QPropertyAnimation> #include <QSignalTransition> #include <QState> #include "xxlib/qtmaterialcheckable_internal.h" /*! * \class QtMaterialCheckBoxPrivate * \internal */ /*! * \internal */ QtMaterialCheckBoxPrivate::QtMaterialChe...
[ "johannes@isomorphic.co" ]
johannes@isomorphic.co
4823c535840e0f4b7330c16e01e579fdc5fc7e65
ee9d5f3f4284cf7dd6e0111745fdc800ab1a0b74
/.legacy/init01/src/Eyes.cpp
1e93bcb6430f4dd9f06078608223a0473a6e879c
[]
no_license
drdurczok/ProjectIcarus
ca3c7b3191f73a83ff8d7c9f6b2f67c9ec506081
dac79b9ede2d89e922f7d663c98334a400ce475e
refs/heads/master
2021-01-25T14:16:24.611871
2018-06-14T07:00:08
2018-06-14T07:00:08
123,675,952
1
1
null
null
null
null
UTF-8
C++
false
false
14,185
cpp
#include "../include/Eyes.h" /* * Initialization of the class involves setting the correct camera indexes. * If during setup the cameras are swapped, it is possible to switch the * indexes in software and share the correct setup with getCameraState(). */ Eyes::Eyes() { unsigned i[2] = {1, 2}; initializeCam...
[ "drdurczok@gmail.com" ]
drdurczok@gmail.com
dc6626b3f6c1d68f33005d453faac2961692f14c
fd6398be2ae23e924a8eeaf9ff047cfee24240ee
/camera.h
92e8a6eca324bd1dabde73ff9920f81a315e4af8
[]
no_license
Chockichoc/RayTracing
4fdab09bfc1e48250c348702abc67720464b8fbf
9c2b9f8685a7b2f972fac8cd0aa6e8867dd27a11
refs/heads/master
2020-04-20T17:26:00.603421
2019-10-04T08:17:15
2019-10-04T08:17:15
168,988,233
0
0
null
null
null
null
UTF-8
C++
false
false
1,286
h
#ifndef CAMERAH #define CAMERAH #include "ray.h" vec3 random_in_unit_disk() { vec3 p; do { p = 2.0*vec3(drand48(), drand48(), 0.0) - vec3(1, 1, 0); } while (dot(p, p) >= 1.0); return p; } class camera { public: camera(const vec3& lookfrom, const vec3& lookat, const vec3& vup, float vfov,...
[ "alexandre.yos@gmail.com" ]
alexandre.yos@gmail.com
26ce6b17f9b95fdefb2aab2299413dd0f131608a
e0a1a90d3acfff979fac8c95755f86d062996815
/example/basic/transform.cpp
c2510c51cf545870fb030727246a3699a5635b0c
[ "BSL-1.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
iboB/boost.mixin
58edf53c103cb512018ae39415a74fff656afc06
1922feb589ee928ea759014575d3808b5f4eee04
refs/heads/master
2021-01-09T20:48:44.249179
2016-06-26T18:02:32
2016-06-26T18:02:32
7,848,098
26
3
null
2015-07-10T14:51:17
2013-01-27T04:25:04
C++
UTF-8
C++
false
false
784
cpp
// // Copyright (c) 2013 Borislav Stanimirov, Zahary Karadjov // // Distributed under the Boost Software License, Version 1.0. // See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt // #include "basic.hpp" #include "transform.hpp" #include "system_messages.hpp" #include "transform_m...
[ "b.stanimirov@abv.bg" ]
b.stanimirov@abv.bg
e2388b971e7e4d29969e04911c70b3db7004f89b
f156c3b0e0fb9a78996cbc330f0574dc12e2ede2
/yolo/plugins/gst-yoloplugin-tegra/gstyoloplugin.h
e7266f545220181db9f34891046c52741c6657ff
[ "MIT" ]
permissive
adujardin/deepstream_reference_apps
591dbae2af94d97bc97f775705c5abc0178c42ed
39e554a9d2b021e814ef97ce2a6ff95878966ff2
refs/heads/master
2020-06-07T05:09:01.087948
2019-06-20T14:13:00
2019-06-20T14:13:00
192,932,083
0
0
MIT
2019-06-20T14:11:53
2019-06-20T14:11:52
null
UTF-8
C++
false
false
3,897
h
/** MIT License Copyright (c) 2018 NVIDIA CORPORATION. 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 limitation the rights to use, co...
[ "chandrahasj@nvidia.com" ]
chandrahasj@nvidia.com
3b67b29daf72c64aa8dd559d1caa5971bfa60118
cc168c4fd0c62457d9edd9129c90039408f6ac12
/standard_ver/SDLTest.cpp
9278961c350fa0561959114251f337c7d7d90314
[]
no_license
hisatake-chuo/SDL_Samples
8daa25c641635b239753ae8a717f45cf92c91cac
ae0b077c148ca8b5c912daf76b1005db0e5c4b45
refs/heads/master
2020-04-24T15:04:04.433416
2019-02-23T23:55:05
2019-02-23T23:55:05
172,050,494
0
0
null
null
null
null
UTF-8
C++
false
false
3,208
cpp
#include <iostream> #include "SDLTest.hpp" SDLTest::SDLTest() { init(); window = SDL_CreateWindow("SDL test", 150, 150, 640, 360, 0); render = SDL_CreateRenderer(window, -1, 0); rect = {10, 10, 120, 50}; std::string image_file_name = "test.png"; img = new ImageTest(render, image_file_name); ...
[ "" ]
d8922ed967cb0dd956598dc92379498c98a55609
10d02c0db5ca3e2c98559fd60b7510fc9e885d0f
/DHCPFlood.cpp
fb992c0efda51e88bd589aee311d3a7d01faca47
[]
no_license
amirsafiallah/dhcpflood
2f3c494ca367f89459385b565ed8b97fa56ddfcd
cedceff1501e614a4dd1fe8b3a1b23fd44e54c81
refs/heads/master
2020-03-18T10:03:09.821943
2018-05-23T16:12:53
2018-05-23T16:12:53
134,594,640
2
0
null
null
null
null
UTF-8
C++
false
false
3,375
cpp
// // Created by root on 5/6/18. // #include "DHCPFlood.h" SnifferConfiguration DHCPFlood::getSnifferConfig() { SnifferConfiguration config; config.set_filter("(udp and ( port 67 or port 68 ))");//filter for dhcp config.set_promisc_mode(true); config.set_snap_len(400); config.set_immediate_mode(tr...
[ "amirsafiallah@gmail.com" ]
amirsafiallah@gmail.com
89e4d10d5cc877a70211d8b93b2b3ef015c89334
ad509e161a9de6e211fbd072e023518cbf3c1be4
/samplers/abstractions/prmlite.hpp
f274c820381245f51203a10ddce9433495aec040
[]
no_license
skiesel/moremotionplanning
20e3c053db9d7ff079d3ef61a312eeebcb83460b
29755227b17ee4b6fce4801ea897f927ee3e79e0
refs/heads/master
2021-01-21T04:50:13.953464
2016-07-09T11:21:07
2016-07-09T11:21:07
48,070,346
3
0
null
null
null
null
UTF-8
C++
false
false
4,217
hpp
#pragma once #include "abstraction.hpp" #include <ompl/base/SpaceInformation.h> #include <ompl/datastructures/NearestNeighborsSqrtApprox.h> #include <ompl/datastructures/NearestNeighborsGNAT.h> #include <ompl/datastructures/NearestNeighborsGNATNoThreadSafety.h> class PRMLite : public Abstraction { public: PRMLite...
[ "skiesel@cs.unh.edu" ]
skiesel@cs.unh.edu
909d42dbc69919887279048b665bfdb6ead3c62f
f1d0ea36f07c2ef126dec93208bd025aa78eceb7
/Zen/Studio/WorkbenchCommon/I_ExplorerModel.hpp
9a4cdd99e5af76a94c73f091ac0d4789fe51b7c4
[]
no_license
SgtFlame/indiezen
b7d6f87143b2f33abf977095755b6af77e9e7dab
5513d5a05dc1425591ab7b9ba1b16d11b6a74354
refs/heads/master
2020-05-17T23:57:21.063997
2016-09-05T15:28:28
2016-09-05T15:28:28
33,279,102
3
0
null
null
null
null
UTF-8
C++
false
false
2,573
hpp
//-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~-~ // Zen Studio // // Copyright (C) 2001 - 2009 Tony Richards // // 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 thi...
[ "mgray@wintermute" ]
mgray@wintermute
fc89943ba1bcd2898536598edac17a554ae6f743
0dce5bf386e6fa305c9fc72a5a862a141491a6b1
/contrib/brl/bbas/brdb/tests/test_driver.cxx
a3d163dd13012e87bd584af28a86bf590f5d3f0f
[]
no_license
rfabbri/vxl-1
743c4e7aae8809792ac029fce588742ab67f5271
097373e8775f6ca2bc808ed773233ba7a2eb7868
refs/heads/master
2020-04-06T04:01:10.354273
2019-01-14T05:01:15
2019-01-14T05:01:15
83,073,791
3
0
null
2017-02-24T19:05:17
2017-02-24T19:05:17
null
UTF-8
C++
false
false
413
cxx
#include <testlib/testlib_register.h> DECLARE( test_value ); DECLARE( test_tuple ); DECLARE( test_relation ); DECLARE( test_database ); DECLARE( test_query ); //DECLARE( test_database_manager ); void register_tests() { REGISTER( test_value ); REGISTER( test_tuple ); REGISTER( test_relation ); REGISTER( test_...
[ "mundyj@users.sourceforge.net" ]
mundyj@users.sourceforge.net
3d7880de6c4b3f19e3cc608e3a86015ffb04381b
549275146dc8ecdba9144a6aed2796baa1639eb3
/Codes/shengyaqingfeng/leetcode/editor/cn/[13]RomanToInteger.cpp
51a45d4f4a44a62c0e0878c14889864baf81cb83
[ "Apache-2.0" ]
permissive
asdf2014/algorithm
fdb07986746a3e5c36bfc66f4b6b7cb60850ff84
b0ed7a36f47b66c04b908eb67f2146843a9c71a3
refs/heads/master
2023-09-05T22:35:12.922729
2023-09-01T12:04:03
2023-09-01T12:04:03
108,250,452
270
87
Apache-2.0
2021-09-24T16:12:08
2017-10-25T09:45:27
Java
UTF-8
C++
false
false
1,443
cpp
// title : [13]RomanToInteger // date : 2022-10-01 15:29:52 // author : creazyboyone // note : 上一题的反转,每次读两个字符,不匹配就读1个字符。 #include <iostream> #include <cmath> using namespace std; //leetcode submit region begin(Prohibit modification and deletion) class Solution { public: string arr[6] = {"IV", "XL", "CD", "IX", ...
[ "shengyaqingfeng@gmail.com" ]
shengyaqingfeng@gmail.com
6e523045c9d4b559c5d9fd815700002801596f6b
ea34814fc922dedd06542048e2d518804a4bdab7
/include/__algorithm/sg_algo_heap.h
09b0e7dfc66b92cff0d634930a2fd803d775e30e
[]
no_license
RAND1925/sg_stl
ecabb8de31fef4ffbd2598378c13d919396148d7
4be861d6d7550096d70db7f8fd8a0e092ea30527
refs/heads/master
2023-04-18T04:29:50.716669
2021-04-28T06:23:27
2021-04-28T06:23:27
226,311,577
0
0
null
null
null
null
UTF-8
C++
false
false
4,753
h
// // Created by dell on 2019/12/22. // #ifndef SG_STL_SG_ALGO_HEAP_H #define SG_STL_SG_ALGO_HEAP_H #include <functional> template <typename RandomIter, typename Comp> constexpr RandomIter sg_is_heap_until(RandomIter begin, RandomIter end, Comp comp) { size_t len = end - begin; if (len > 1) { // 遍历到一半的位置 fo...
[ "rand1925@outlook.com" ]
rand1925@outlook.com
6cf7c4fb759f61e70452689c6ee572682da03528
0b1111e870b496aae0d6210806eebf1c942c9d3a
/Periodic/FFTTest.cpp
e648a818f9828de8af7e0e4d6a42e0fd246d4041
[ "WTFPL" ]
permissive
victorliu/Templated-Numerics
8ca3fabd79435fa40e95e9c8c944ecba42a0d8db
35ca6bb719615d5498a450a2d58e2aa2bb7ef5f9
refs/heads/master
2016-09-05T16:32:22.250276
2009-12-30T07:48:03
2009-12-30T07:48:03
318,857
3
1
null
null
null
null
UTF-8
C++
false
false
720
cpp
#include "FFT.hpp" #include <complex> #include <iostream> typedef std::complex<double> complex_t; int main(){ const size_t N = 14; complex_t *data = new complex_t[N]; for(size_t i = 0; i < N; ++i){ data[i] = i; } std::cout << "Original:" << std::endl; for(size_t i = 0; i < N; ++i){ std::...
[ "victor@onyx.(none)" ]
victor@onyx.(none)
66e9ecc704d4c678a384138cf973e819d71ffb0d
07f049d4b9dee0a35d524f08552302fa1664efd7
/run/tutorials/incompressible/simpleFoam/pitzDailyNew/900/nut
95bb7b5e0424014b9e5625678043eff0345d4984
[]
no_license
crisefd/MyOpenfoam231
759913f01be33392e5f042e74114d4c195d91fd4
82974f3688b850f26b24dfecea4d5c1165d997cd
refs/heads/master
2021-01-10T13:15:49.943263
2015-12-17T01:25:22
2015-12-17T01:25:22
45,358,477
0
0
null
null
null
null
UTF-8
C++
false
false
2,179
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: 2.3.1 | ...
[ "cristhian.fuertes@correounivalle.edu.co" ]
cristhian.fuertes@correounivalle.edu.co
8226d149c4727f539fc430d68775eb6f69f14bde
2abb5b2237e5b879e2fcf414e0400c70099291de
/Flood/Utilities/PatternRecognitionUtilities.cpp
677de1e263c384798b312dc96c421d07d6609102
[]
no_license
dimitarpg13/FloodV3
860e6e3fc726def8851408aea573ebe531d406d1
d816a635161656b65b0edc9675336f10fadc8f27
refs/heads/master
2021-01-11T04:19:49.944314
2017-04-03T18:06:31
2017-04-03T18:06:31
71,177,040
0
1
null
null
null
null
UTF-8
C++
false
false
53,137
cpp
/****************************************************************************************************************/ /* */ /* Flood: An Open Source Neural Networks C++ Library ...
[ "dimitar_pg13@hotmail.com" ]
dimitar_pg13@hotmail.com
320a86b0a4898f5535828400ae483cb576cc10a1
a6a05d7679e1fd7f2014d8152701b79ef7b49d10
/src/main/cpp/Subsystems/Drive.cpp
66766d78474769f1f653d19d7b82bff19d73197d
[]
no_license
SCsailors/2020RobotCode
7f1056c9a7f4f4fc73c7a8dd6dd349966e1c05bc
c2df65c8e86beb79b34eebc6b6735265d69dbb27
refs/heads/master
2022-04-26T09:53:30.155395
2020-04-18T15:40:03
2020-04-18T15:40:03
235,230,822
0
0
null
null
null
null
UTF-8
C++
false
false
28,090
cpp
/*----------------------------------------------------------------------------*/ /* Copyright (c) 2018 FIRST. All Rights Reserved. */ /* Open Source Software - may be modified and shared by FRC teams. The code */ /* must be accompanied by the FIRST BSD license file in the root directory of...
[ "44417864+mattwalstra@users.noreply.github.com" ]
44417864+mattwalstra@users.noreply.github.com
53780cf559603b14a74fdaef588eb99216fa29c5
439c92b465279d70c068548b197f0ea4a5f565fb
/plan.hh
d76972c8e78d0d74a02c32534579aeca3ac08c72
[]
no_license
Li0nMo0se/ray_tracer
0cf1d0a96ca5c026d4d9987229e331efc3919f42
c4e5c23e1526a25bf1102451122d3561820db15d
refs/heads/main
2023-04-15T20:27:10.109468
2021-04-16T15:11:51
2021-04-16T15:11:51
342,230,768
0
0
null
null
null
null
UTF-8
C++
false
false
717
hh
#pragma once #include "object.hh" #include "vector.hh" namespace scene { class Plan final : public Object { public: Plan(const space::Point3& origin, const space::Vector3& normal, const std::shared_ptr<TextureMaterial>& texture); ~Plan() = default; virtual std::optional<space::Interse...
[ "ilan.guenet@epita.fr" ]
ilan.guenet@epita.fr
b508497b57ec299896f17b05d88debce75aeeb88
1f1406ec5ec36cfd94a9afb1e66378b294b558cd
/src/free_list_queue_alternatives/cds_container_optimisticqueue.hpp
62c871e019a29b7d11112176b74cd3978571aa95
[]
no_license
iMax3060/zero-details-evaluation
195fb94f223e6b909116e14d07282e5581477b63
d9f7cc1e9b210f2d1a52d8de5b61c086fb67b997
refs/heads/master
2021-08-24T01:55:23.769582
2017-12-07T14:55:34
2017-12-07T14:56:33
109,209,952
0
0
null
null
null
null
UTF-8
C++
false
false
2,397
hpp
#ifndef ZERO_DETAILS_EVALUATION_CDS_CONTAINER_OPTIMISTICQUEUE_HPP #define ZERO_DETAILS_EVALUATION_CDS_CONTAINER_OPTIMISTICQUEUE_HPP #include "free_list.hpp" #include "config.hpp" #include "helper_functions.hpp" #include <atomic> #include <cds/opt/options.h> #include <cds/container/optimistic_queue.h> class CDSContai...
[ "m_gilbert13@cs.uni-kl.de" ]
m_gilbert13@cs.uni-kl.de
dbc10229cd594857d46b70a1519aa30a75cb54cc
98bcdd949929beec920167bc2066db61b394da97
/src/cpps_lock.cpp
fcd1f6b5a5eb7b4505815466455d447e70f84342
[ "MIT" ]
permissive
johnsonyl/cpps
3795fd3e4379ca682671f90ab054d8592ac2bedb
62bc3eab7bc0745c063c501bb546ed99849be75a
refs/heads/master
2023-04-13T04:02:14.133259
2023-04-12T04:41:07
2023-04-12T04:41:07
78,904,641
26
5
null
null
null
null
UTF-8
C++
false
false
214
cpp
#include "cpps/cpps.h" namespace cpps { void cpps_reglock(C *c) { cpps::_module(c)[ _class<cpps_lock>("mutex") .def("lock", &cpps_lock::lock) .def("unlock", &cpps_lock::unlock) ]; } }
[ "88481106@qq.com" ]
88481106@qq.com
444b50c02dc5236e800954923906b573cef17d6a
62908c7962ac81dbf992ff7c8eaf39a329e87571
/170319/计科1703-2017040334-孟铃翔-模板库/map_test.cpp
4652cbfaf7a4f73e3e089cf49e5ea76b584a3069
[]
no_license
Ice-Jeffrey/cpp-Object-oriented-Programming
92287c3c193511ad36f932b50f698f9348727c04
0dc581690e7fb21e27ff656f72d630d2860bcf66
refs/heads/master
2020-08-08T17:43:38.293580
2020-02-17T11:50:19
2020-02-17T11:50:19
213,880,724
0
0
null
null
null
null
UTF-8
C++
false
false
449
cpp
#include<iostream> #include"Jeffrey's_map.hpp" //#include<map> using namespace std; int main() { map<int, int> m; m.insert(make_pair(23, 3)); cout << m[23] << endl; cout << "Number of elements in map: " << m.size() << endl; m.erase(23); cout << "If map is empty? " << m.empty() << endl; for(int i=0; i<12; i++) {...
[ "735429132@qq.com" ]
735429132@qq.com
63b08d09536a504c5de93241d813d2dbe68b3b3f
a77124c5406b48066108de499fc23655e9183ed3
/src/Game/.svn/text-base/UpdateData.h.svn-base
5752a848b9b551561f9654eb52b0add2ef77edc1
[]
no_license
vata/prebcwow
37fcd28f948126cb276a6496850f0cc62dbb490c
3d0e38e757d2fc1d506e756877f975aa0d655611
refs/heads/master
2021-01-10T02:07:57.253451
2015-12-13T10:42:49
2015-12-13T10:42:49
45,391,138
0
1
null
null
null
null
UTF-8
C++
false
false
1,141
// // UpdateData.h // #ifndef __UPDATEDATA_H #define __UPDATEDATA_H class WorldPacket; enum OBJECT_UPDATE_TYPE { UPDATETYPE_VALUES = 0, // 8 bytes - GUID // Goto Update Block UPDATETYPE_MOVEMENT = 1, // 8 bytes - GUID // Goto Position Update UPDATETYPE_CREATE_OBJECT = 2, // 8 bytes ...
[ "zip_hornet@ukr.net" ]
zip_hornet@ukr.net
dfaf42ea5ab8f65afeea2d337f18c1abc735808c
88eac2181a24b57271e86c2d14327f7bfb8c7cad
/features/skinchanger.cpp
37f885dfb39bb50ca66739f69445b4440ca23905
[]
no_license
fetusfinn/pwned
e0994d9590164140cdc7f3dc5327f8f0f1c5d869
ca2a49344d4b8b03b497f8de87b5bca17190bcf4
refs/heads/master
2022-12-10T17:02:46.193624
2019-11-24T00:56:27
2019-11-24T00:56:27
null
0
0
null
null
null
null
UTF-8
C++
false
false
13,869
cpp
/* * skinchanger */ #include "common.h" #include "skinchanger.h" #include "config.h" skinchanger_t g_skins; std::unordered_map<int, item_t> g_item_def_index_map; void init_g_item_def_index_map1() { static bool _done = false; if(_done) return; g_item_def_index_map = { std...
[ "finn@Finns-MacBook-Pro.local" ]
finn@Finns-MacBook-Pro.local
91bfb402c16644aa06894303d977c1498df32d3c
730b30df4205dfa8bdebb99cc001ad82ad3b8058
/open_source/main.cpp
afe678315f58f81c4452b72fe5e040510b1299d6
[]
no_license
andyrobert3/UVa-Online-Judge
8a0b5b7c53a5ae39df555b1638da601bfcdd0abf
29df99a0e7c7dfc33f5692d07c65f38af0dfc609
refs/heads/master
2021-04-06T11:07:25.046498
2019-03-16T14:33:04
2019-03-16T14:33:04
124,901,376
0
0
null
null
null
null
UTF-8
C++
false
false
1,902
cpp
#include <iostream> #include <map> #include <set> #include <algorithm> #include <vector> using namespace std; bool cmp(const pair<string,int> &p1, const pair<string,int> &p2) { if (p1.second == p2.second) return p1.first < p2.first; return p1.second > p2.second; } int main() { string line; while (ge...
[ "andyrobert3@users.noreply.github.com" ]
andyrobert3@users.noreply.github.com
a68f55c9055b6b9f6dfd54fb0dd04e4d13a8185c
dd656493066344e70123776c2cc31dd13f31c1d8
/MITK/BlueBerry/Bundles/org.blueberry.core.expressions/src/berryPropertyTester.cpp
6757a42315e971ac8ae90cb05246424b6b0314cd
[]
no_license
david-guerrero/MITK
e9832b830cbcdd94030d2969aaed45da841ffc8c
e5fbc9993f7a7032fc936f29bc59ca296b4945ce
refs/heads/master
2020-04-24T19:08:37.405353
2011-11-13T22:25:21
2011-11-13T22:25:21
2,372,730
0
1
null
null
null
null
UTF-8
C++
false
false
1,661
cpp
/*========================================================================= Program: BlueBerry Platform Language: C++ Date: $Date$ Version: $Revision$ Copyright (c) German Cancer Research Center, Division of Medical and Biological Informatics. All rights reserved. See MITKCopyright.txt or http://www.mitk.or...
[ "dav@live.ca" ]
dav@live.ca
2838122f2c68849387c71a5c1ad16fe2eb478cf7
246a16842feb7633edbe6291ff36b4c93edbb3c7
/simple-websocket-server-first/ws_client_forever.cpp
deba8fffda5c377f170025d4e61f9bcb1435d424
[]
no_license
curtkim/c-first
2c223949912c708734648cf29f98778249f79346
f6fa50108ab7c032b74199561698cef087405c37
refs/heads/master
2023-06-08T10:57:35.159250
2023-05-28T05:52:20
2023-05-28T05:52:20
213,894,731
3
1
null
null
null
null
UTF-8
C++
false
false
1,142
cpp
#include <simple-websocket-server/client_ws.hpp> using namespace std; using WsClient = SimpleWeb::SocketClient<SimpleWeb::WS>; int main() { WsClient client("localhost:8080/echo"); client.on_message = [](shared_ptr<WsClient::Connection> connection, shared_ptr<WsClient::InMessage> in_message) { cout << "Clien...
[ "curt.k@kakaocorp.com" ]
curt.k@kakaocorp.com
8bb1a52188c0bda5440fb896272875ee31ccb29f
71d8d5f36876f4a40e0e840c10981347c667e9b3
/Source/Colyseus/Serializer/SchemaSerializer.hpp
52de4648c88729f6115c2743523f4c291ee0e6f9
[ "MIT" ]
permissive
ashK7/colyseus-cocos2d-x
1b6b7dadc7c40c8e22351cff9520310eeaeb7bc8
96a12a15d1f70f061365769e6cc84ba9bde49c72
refs/heads/master
2023-03-17T07:38:50.902149
2020-10-15T18:10:39
2020-10-15T18:10:47
null
0
0
null
null
null
null
UTF-8
C++
false
false
997
hpp
#ifndef SchemaSerializer_hpp #define SchemaSerializer_hpp #include "schema.h" #include "Serializer.hpp" template <typename S> class SchemaSerializer : public Serializer<S> { public: SchemaSerializer() { state = new S(); it = new colyseus::schema::Iterator(); } ~SchemaSerializer() { ...
[ "endel.dreyer@gmail.com" ]
endel.dreyer@gmail.com
22ea16a26bc1df9ff94adbe4ad74b61f7b162bda
73e7c20803be5d8ae467af1feba8a4a7fe219f4b
/Modules/Core/Common/include/itkThreadedIndexedContainerPartitioner.h
e0e0daef1cde3b8533ce1dba9479dd607f5673bc
[ "LicenseRef-scancode-other-permissive", "SMLNJ", "BSD-3-Clause", "LicenseRef-scancode-mit-old-style", "LicenseRef-scancode-free-unknown", "BSD-4.3TAHOE", "LicenseRef-scancode-warranty-disclaimer", "LicenseRef-scancode-proprietary-license", "LicenseRef-scancode-unknown-license-reference", "IJG", ...
permissive
CIBC-Internal/itk
deaa8aabe3995f3465ec70a46805bd333967ed5b
6f7b1014a73857115d6da738583492008bea8205
refs/heads/master
2021-01-10T18:48:58.502855
2018-01-26T21:25:51
2018-01-26T21:25:51
31,582,564
0
2
Apache-2.0
2018-05-21T07:59:53
2015-03-03T06:12:12
C++
UTF-8
C++
false
false
3,583
h
/*========================================================================= * * Copyright Insight Software Consortium * * 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 * * h...
[ "ayla@sci.utah.edu" ]
ayla@sci.utah.edu
eae4713e2ab2ed9f3582579622e2008fcd7aefe2
536656cd89e4fa3a92b5dcab28657d60d1d244bd
/chrome/browser/performance_manager/render_process_host_proxy_unittest.cc
823883f1c4434bab15d3e2459cd18e4343f90bc2
[ "BSD-3-Clause" ]
permissive
ECS-251-W2020/chromium
79caebf50443f297557d9510620bf8d44a68399a
ac814e85cb870a6b569e184c7a60a70ff3cb19f9
refs/heads/master
2022-08-19T17:42:46.887573
2020-03-18T06:08:44
2020-03-18T06:08:44
248,141,336
7
8
BSD-3-Clause
2022-07-06T20:32:48
2020-03-18T04:52:18
null
UTF-8
C++
false
false
6,445
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 "components/performance_manager/public/render_process_host_proxy.h" #include "base/memory/weak_ptr.h" #include "base/process/process.h" #include...
[ "pcding@ucdavis.edu" ]
pcding@ucdavis.edu
b355b7c38a7618ebd18881b8ad612439086cf044
b88eeed20d442c3e164c727a97db7bdf1935b70f
/contrib/brl/bseg/boxm2_multi/algo/boxm2_multi_refine.cxx
29908ad0be74649c7d099d5ff5880ceacf0f4406
[]
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
18,769
cxx
#include "boxm2_multi_refine.h" //: // \file #include <boxm2_multi_util.h> #include <vcl_algorithm.h> #include <boxm2/boxm2_scene.h> #include <boxm2/boxm2_util.h> #include <bocl/bocl_manager.h> #include <boxm2/ocl/boxm2_ocl_util.h> #include <boxm2/ocl/boxm2_opencl_cache.h> #include <boxm2/ocl/algo/boxm2_ocl_camera_co...
[ "huanghailiang711@163.com" ]
huanghailiang711@163.com
0eaf0e398c0496c746c90056f9d8af111028c17a
b3710dfdd0eeb3e28d3a4c666af5df6558a03553
/cgodeps/godot_engine/servers/camera_server.cpp
3caea6b7c3800a999d8121163e5ea01029acbcce
[ "MIT", "LicenseRef-scancode-free-unknown", "CC-BY-3.0", "OFL-1.1", "BSD-3-Clause", "Bitstream-Vera", "FTL", "MPL-2.0", "Zlib", "LicenseRef-scancode-nvidia-2002", "BSL-1.0", "Apache-2.0", "LicenseRef-scancode-public-domain", "BSD-2-Clause", "CC-BY-4.0" ]
permissive
gabstv/godot-go
5befd7539ef35a9e459046644dd4b246a0db1ad9
e0e7f07e1e44716e18330f063c9b3fd3c2468d31
refs/heads/master
2021-05-21T23:48:25.434825
2020-08-27T16:52:18
2020-08-27T16:52:18
252,864,512
10
3
MIT
2020-08-27T16:52:20
2020-04-03T23:26:52
C++
UTF-8
C++
false
false
5,715
cpp
/*************************************************************************/ /* camera_server.cpp */ /*************************************************************************/ /* This file is part of: */ /* ...
[ "gabs@gabs.tv" ]
gabs@gabs.tv
438886577c03a0cc7ff50dbd51ece90c6059ebf0
115c6d0b28478f068cc666d1be0f7aa0b645fc41
/e01_07/src/e01_07.cpp
4c759401eb46aa401caf2dcf4b21d77d2c910409
[]
no_license
ddtBeppu/meikaicpp_beppu
586e758911472323a8f0b4fa6f5eba5d568ff1b9
c0aa321ca8a7886789181e4265901c0d47c17183
refs/heads/master
2021-04-28T20:09:23.297808
2018-05-02T02:35:41
2018-05-02T02:35:41
121,744,700
0
0
null
null
null
null
UTF-8
C++
false
false
872
cpp
//============================================================================ // Name : e01_07.cpp // Author : Naoto Beppu // Version : // Copyright : Your copyright notice // Description : Hello World in C++, Ansi-style //============================================================================ ...
[ "ddt.naoto@gmail.com" ]
ddt.naoto@gmail.com
0b6e1d4034b2b0b44117583a716135c41d2211d9
690cbd8fddafe05247b1ef07909c3de99cfb1ab6
/classes/move_assignment_operator/main.cpp
5f90c5daec6318b23d5ca99578570d0c82e9cf66
[]
no_license
ccdle12/modern-c-plus-plus
d82463477585b25a3ffdb42818221110424cf8d0
e7245a4b56f688acb2ee46d87a57f3fadd731723
refs/heads/master
2022-04-30T09:24:28.776716
2022-04-26T13:47:41
2022-04-26T13:47:41
204,351,268
1
0
null
null
null
null
UTF-8
C++
false
false
678
cpp
#include <algorithm> #include <iostream> #include <vector> using namespace std; class Human { public: Human(int kindness) : kindness_{kindness} {} // const after function will meant that it cannot change the internal state // of the member variables of the class. bool operator <(const Human& other)...
[ "chris.coverdale24@gmail.com" ]
chris.coverdale24@gmail.com
2500dae64e6b109eedc1f6c73d25b92ce259ef11
33fff98352d9758c81a01c8724307d50ff17130a
/src/main/java/com/github/xmuyulab/sparkscRNAseq/jstar/Parameters_openReadsFiles.cpp
c5d85ea806f88278ee5ae8b6ea86bd47ef9e6e18
[]
no_license
xmuyulab/spark-scRNASeq-Analysis
915121acaba3beb18e63781e814a7c94ffc19afd
81009016cc375779813f2a933087f07f30aaeacd
refs/heads/master
2023-07-09T17:48:15.933694
2021-08-07T14:29:55
2021-08-07T14:29:55
232,518,192
0
0
null
null
null
null
UTF-8
C++
false
false
5,077
cpp
#include "Parameters.h" #include "ErrorWarning.h" #include <fstream> #include <sys/stat.h> #include "GetFastq.h" void Parameters::openReadsFiles() { if (readFilesCommandString=="") {//read from file //readFilesIn.pop(); // 修改的部分,不用,for (uint ii=0;ii<readFilesIn.size();ii++) {//open readIn files ...
[ "1272635425@qq.com" ]
1272635425@qq.com
727483b5fc10b32cc737d0f8b7e89727aab06c88
7e62f0928681aaaecae7daf360bdd9166299b000
/external/DirectXShaderCompiler/tools/clang/lib/Sema/SemaCXXScopeSpec.cpp
d45d0e25a9e83ef35ce35b9c38329b606004bfc8
[ "NCSA", "LicenseRef-scancode-unknown-license-reference" ]
permissive
yuri410/rpg
949b001bd0aec47e2a046421da0ff2a1db62ce34
266282ed8cfc7cd82e8c853f6f01706903c24628
refs/heads/master
2020-08-03T09:39:42.253100
2020-06-16T15:38:03
2020-06-16T15:38:03
211,698,323
0
0
null
null
null
null
UTF-8
C++
false
false
43,462
cpp
//===--- SemaCXXScopeSpec.cpp - Semantic Analysis for C++ scope specifiers-===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===------------------------------------------------...
[ "yuri410@users.noreply.github.com" ]
yuri410@users.noreply.github.com
dd88ac57fbb8c5d4426db531f7cde608607378fd
20ec1ffcb2cf45459b6abc81492331014f503878
/message/ServerStopS2C.pb.cc
dd110ae690511e48e4004516ed556b308c4c4cae
[]
no_license
love19862003/fly-server
e5dd5bc57ecc9dc7c9f557989d8cfbc1f5ced7c3
02413ef5bb8ced32b7820028817e740272e667ce
refs/heads/master
2021-01-10T08:17:09.052383
2017-01-16T09:35:23
2017-01-16T09:35:23
45,825,761
2
1
null
null
null
null
UTF-8
C++
false
true
7,521
cc
// Generated by the protocol buffer compiler. DO NOT EDIT! // source: ServerStopS2C.proto #define INTERNAL_SUPPRESS_PROTOBUF_FIELD_DEPRECATION #include "ServerStopS2C.pb.h" #include <algorithm> #include <google/protobuf/stubs/common.h> #include <google/protobuf/stubs/once.h> #include <google/protobuf/io/coded_strea...
[ "love19862003@163.com" ]
love19862003@163.com
4247769788451ff806f668a7ba6a5289eb9938af
600df3590cce1fe49b9a96e9ca5b5242884a2a70
/third_party/swiftshader/src/Main/FrameBufferX11.cpp
60e0e73227870ac25af390fedaad7f56d0ed7948
[ "BSD-3-Clause", "LGPL-2.0-or-later", "GPL-1.0-or-later", "MIT", "Apache-2.0" ]
permissive
metux/chromium-suckless
efd087ba4f4070a6caac5bfbfb0f7a4e2f3c438a
72a05af97787001756bae2511b7985e61498c965
refs/heads/orig
2022-12-04T23:53:58.681218
2017-04-30T10:59:06
2017-04-30T23:35:58
89,884,931
5
3
BSD-3-Clause
2022-11-23T20:52:53
2017-05-01T00:09:08
null
UTF-8
C++
false
false
4,233
cpp
// Copyright 2016 The SwiftShader 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 b...
[ "enrico.weigelt@gr13.net" ]
enrico.weigelt@gr13.net
dcded3d35c9b1a4ea8b666553c3750741a894a7e
e894a94a5a9b2037a445d35dcde78f3f9f8e3af8
/CMHistograms.hh
6f6147196cfd38362225b7b749d8e1a163493b7b
[]
no_license
czepedaf/DQM
9b187204ee6c705e4ac22fb4ea89b7272aac92ac
b0a06d85172594127053ffd22efae76f36546e94
refs/heads/master
2021-01-22T11:47:49.185187
2014-09-17T12:33:15
2014-09-17T12:33:15
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,888
hh
// -*- C++ -*- // // Package: DQM/SiStripMonitorHardware // Class: CMHistograms // /**\class CMHistograms DQM/SiStripMonitorHardware/interface/CMHistograms.hh Description: DQM source application to produce CM monitoring histograms for SiStrip data */ // // Original Author: Anne-Marie Magnan // Creat...
[ "heber.zepeda@cern.ch" ]
heber.zepeda@cern.ch
0706aad74553679496a29eb3551f31312e96be71
92b6aaade5a3f323d7f8e7d02fb9fec09f4c2f50
/CP-Codes/Septcookoff.cpp
7d6dda197ccbba79df7a5243415e495eb849df66
[]
no_license
suraj1611/Competitive_Programming
846dee00396e2f2b6d13e2ea8aaed444a34062af
82bd88081ac067ad4170553afedc6c479bb53753
refs/heads/master
2020-04-22T17:27:18.116585
2019-12-16T19:42:29
2019-12-16T19:42:29
170,541,477
1
0
null
null
null
null
UTF-8
C++
false
false
386
cpp
#include<stdio.h> #include<iostream> #include<math.h> using namespace std; int main() { int i,j,t; cin>>t; char ar[7][50]={"cakewalk","simple","easy","easy-medium","medium","medium-hard","hard"}; while(t--) { cin>>n; char ch[n][50]; for(i=0;i<n;i++) cin>>ch[i]; ...
[ "surajsk1611@gmail.com" ]
surajsk1611@gmail.com
58178fb0c5855045e4c8df6ca18986b205901c4d
5c7d6a2513ca16eed61c91c193130e27c45c4e7d
/AI_Core/Graph.h
e313fcf227d5f90614e30a3a061daf4833ece969
[]
no_license
Wigglez/GSP420
65f1e9c11a87832b0893361fcfcfd0d9ba2e232f
9529fef7498dc47ff10e48e2e2bc19f91a8a4268
refs/heads/master
2021-01-06T20:37:59.658263
2013-02-14T19:07:39
2013-02-14T19:07:50
7,536,042
1
0
null
null
null
null
UTF-8
C++
false
false
2,554
h
#ifndef _GRAPH_H_ #define _GRAPH_H_ #include "Typedefs.h" class Connection; struct NodeRecord; //Individual Nodes that make up a graph class PathNode { private: Bool open; list<Connection*> connections; public: //constructor //return type: none //parameters : none PathNode(); //isOpen() //return type: Bool ...
[ "vsmeraldo@gmail.com" ]
vsmeraldo@gmail.com
66597b4af142ea18928e3918dd90dd948dfeacb4
3cc352b29b8042b4a9746796b851d8469ff9ff62
/src/util/Quala2Qualb.cc
1626057d070b2accd423968e4ea676bcad32b9f1
[ "BSD-3-Clause", "BSD-2-Clause" ]
permissive
CompRD/BroadCRD
1412faf3d1ffd9d1f9907a496cc22d59ea5ad185
303800297b32e993abd479d71bc4378f598314c5
refs/heads/master
2020-12-24T13:53:09.985406
2019-02-06T21:38:45
2019-02-06T21:38:45
34,069,434
4
0
null
null
null
null
UTF-8
C++
false
false
2,914
cc
// Copyright (c) 2000-2003 Whitehead Institute for Biomedical Research // Quala2Qualbb: convert a fasta quality score file into a qualb file. // Like Qualb, but without the need for PRE or a special extension. #include <ctype.h> #include <strstream> #include "MainTools.h" #include "FastIfstream.h" #include "Qualvec...
[ "neil.weisenfeld@gmail.com" ]
neil.weisenfeld@gmail.com
856b33ab41df9eb85555885e9bab3ede6d2498c9
ba454f239cde66084ea1eb17627f79bd18ac3f00
/mqtt_esp8266_t/mqtt_esp8266_t.ino
e258d65109f326b8aa22ee3730d5e76dac317d00
[]
no_license
isaiah7p/QualityThoughtArduinoLibs
d9b60ab313c046746759265e2b9aab2fa18c6cdc
416144b7de4479e669026a9d652ddad852582371
refs/heads/master
2020-07-08T14:57:19.864992
2019-09-09T16:41:10
2019-09-09T16:41:10
203,706,714
0
1
null
null
null
null
UTF-8
C++
false
false
3,733
ino
/* Basic ESP8266 MQTT example This sketch demonstrates the capabilities of the pubsub library in combination with the ESP8266 board/library. It connects to an MQTT server then: - publishes "hello world" to the topic "outTopic" every two seconds - subscribes to the topic "inTopic", printing out any messages ...
[ "qtiot.kumar@gmail.com" ]
qtiot.kumar@gmail.com
7da318e0d835d95df32e67cbb4fe10e34a318c4a
5d3404096286830fab472bdf9f30842f0f13a6b6
/LeetCode/Easy/438.Find_All_Anagrams_in_a_String/main.cpp
b4ec253e1d05ed875955ed48adaf98b352209ec4
[]
no_license
YeongjinOh/Algorithm-practice
0d4b2ed00e6eebc46667435c3fdc47f8fb1ae886
871428eed1158ef85ff31930588aaeb3d69661d2
refs/heads/master
2021-01-23T13:42:54.361325
2018-03-17T12:47:38
2018-03-17T12:47:38
54,641,868
2
0
null
null
null
null
UTF-8
C++
false
false
653
cpp
class Solution { public: bool checkAllZeros(unordered_map<char, int> count) { for (unordered_map<char,int> :: iterator it = count.begin(); it != count.end(); it++) { if (it->second != 0) return false; } return true; } vector<int> findAnagrams(string s, string p) { int n = s.size(), m = p.size();...
[ "oyj9109@snu.ac.kr" ]
oyj9109@snu.ac.kr
001549d74663511562fd78381580c7f3234e0ecf
bab26b9fa5e0ad642c1b3d6c61f0fd73b8d3bfab
/ARP/ARP/ARP.cpp
0e9c9e204ce410826cf5a30d2fe477b0eed98467
[]
no_license
icarus3023/ARP_04
b7d0f358af7f0eef6c0407d7ead60706ae076510
37d2c76a469ad1cfe253b5436913105b5549610d
refs/heads/master
2021-01-01T05:08:23.585987
2016-05-04T00:14:30
2016-05-04T00:14:30
58,010,012
0
0
null
null
null
null
UHC
C++
false
false
5,956
cpp
// ARP.cpp : 응용 프로그램에 대한 클래스 동작을 정의합니다. // #include "stdafx.h" #include "afxwinappex.h" #include "afxdialogex.h" #include "ARP.h" #include "MainFrm.h" #include "ARPDoc.h" #include "ARPView.h" #ifdef _DEBUG #define new DEBUG_NEW #endif // CARPApp BEGIN_MESSAGE_MAP(CARPApp, CWinAppEx) ON_COMMAND(ID_APP_ABOUT, &CA...
[ "sample3023@gmail.com" ]
sample3023@gmail.com
025b5d586fae3a4add634d34842fc014e80943e7
daaf2ed95a217a5d5c03055f8f563969827ead58
/допы/C/sem2labC(1)var8/sem2labC(1)var8/sem2labC(1)var8.cpp
a3acb10dee091a8ab7462863d5fe704f2c745465
[]
no_license
ShadowBLR/OAIP-1-course
ab66cdae49617b15a97b1cbc0c7377f1dd8b4606
14f58157082222f4742adac66fb375b6976ae77f
refs/heads/master
2023-04-06T12:47:26.813359
2021-04-02T22:24:33
2021-04-02T22:24:33
354,113,764
0
0
null
null
null
null
UTF-8
C++
false
false
1,019
cpp
//1 лаба #include <iostream> #include <stdio.h>. using namespace std; void func(char* arr1, char* arr2, int size) { int q = 0; for (int i = 0, y = size - 1; i <= y; i++, y--) { arr2[q] = arr1[i]; q++; arr2[q] = arr1[y]; q++; } } int main() { setlocale(LC_ALL, ""); int a; errno_t err; FILE* f; err = f...
[ "name.men777@mail.ru" ]
name.men777@mail.ru