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
73a7e024058986963130229848e70773d02d65ad
2f09c608e6337ba6ef465202a9e27467d7169b65
/spoj/TOANDFRO-1495658-src.cpp
8f5985b2e10c63366da4cac5dadd8aaf9a9c2feb
[]
no_license
ssrivathsan/OnlineJudgeSolutions
34748bb348ceb1db0279aaf3a5696c68614228ca
964592d0ae9ef821c2df637d6fd077ca3dc10c7a
refs/heads/master
2021-01-01T15:23:50.280291
2011-07-10T11:23:11
2011-07-10T11:23:11
1,860,350
0
0
null
null
null
null
UTF-8
C++
false
false
651
cpp
#include<iostream> #include<string> #include<cmath> #include<algorithm> #include<vector> using namespace std; int main() { int n; while(cin>>n && n!=0) { string t; cin>>t; int len=t.length(); int rows=len/n; string s=""; for(int i=0,j=0;i<rows && j<len;i++) { if(i%2==0) {int k; f...
[ "ssrivathsan_ss@yahoo.com" ]
ssrivathsan_ss@yahoo.com
de21b9b7c181c676029e6b065a14fd93d7e15428
6ec1d7d31095bcf45c19ead0a6449d9e694f87b6
/Code/AssetManager/Image.cpp
c22ae461a82754eaae58159c243c9af7674bfcdc
[]
no_license
ChrisTohFer/GE2
0659d04f5d19b63a43a91191d002c410b1a35550
6ffd2ab5cd66f03c92e61c7d4aece2bbe3531016
refs/heads/main
2023-08-29T05:20:09.556780
2021-10-02T11:40:51
2021-10-02T11:40:51
340,955,808
0
0
null
null
null
null
UTF-8
C++
false
false
1,314
cpp
#include "Image.h" #include "stb_image.h" #include <iostream> ge2::assets::Image::Image(std::wstring const& filepath) { std::string fileNarrow(filepath.begin(), filepath.end()); stbi_set_flip_vertically_on_load(1); m_data = stbi_load(fileNarrow.c_str(), &m_width, &m_height, &m_nChannels, 0); if (!m_...
[ "chrisrkemp@hotmail.co.uk" ]
chrisrkemp@hotmail.co.uk
d8cdd0b0574ac67ef8a4f8399af081e29231116d
a5da02227cbbc30effaf43d52bdca26223daf98e
/TopCoder/588/a.cpp
44444f6dec38744439f8cde054de63b83e83839e
[ "MIT" ]
permissive
zzh8829/CompetitiveProgramming
853edabdfc728504abaa27333bd4900a7f97c8c9
36f36b10269b4648ca8be0b08c2c49e96abede25
refs/heads/master
2021-01-01T15:41:08.984386
2018-03-25T17:32:39
2018-03-25T17:32:39
35,587,680
1
0
null
null
null
null
UTF-8
C++
false
false
1,267
cpp
#include <iostream> #include <cstdio> #include <cstdlib> #include <string> #include <vector> #include <map> #include <set> #include <fstream> #include <bitset> #include <cstring> #include <cmath> #include <ctime> using namespace std; class KeyDungeonDiv2 { public: int countDoors(vector <int> doorR,...
[ "zzh8829@gmail.com" ]
zzh8829@gmail.com
82db66776cf99ff08f203bd3a798dffd959df9a6
dcc3272aa1f6ef7cc6cace5097566e34e981fab1
/Engine/src/graphics/data/Mesh.cpp
0f257febb70084745d84a530e6826acd78035748
[]
no_license
jkstpierre/Elgar-Game-Engine
11edcf0cf61b39c78cb06f2c72318d878a884716
47f993e196f6c67c598801a1ac88d3e8c0197302
refs/heads/master
2020-04-10T03:07:23.017246
2019-03-03T15:19:16
2019-03-03T15:19:16
160,761,342
0
0
null
null
null
null
UTF-8
C++
false
false
1,109
cpp
/* Elgar Game Engine Author: Joseph St. Pierre Year: 2018 */ // INCLUDES // #include "elgar/graphics/data/Mesh.hpp" #include "elgar/core/Exception.hpp" namespace elgar { // FUNCTIONS // Mesh::Mesh( const std::vector<Vertex> &vertices, const std::vector<GLuint> &indices, const std::vector<cons...
[ "jkstpierre@wpi.edu" ]
jkstpierre@wpi.edu
422f2625575b26e196ecb31826ef74653e294c62
c432cf3a7db8cd558c7d8b66f9a7be62064ae5a8
/C++/101_l_adv_topics/01_chap_13_functor/functor.cpp
a17190392938a283cd467b31eb34a4ea25b3d2ce
[]
no_license
babakpst/Learning
19867acf37145fed8acfd1321ec49b7eba217042
945ffb6136b4cb7944810834db1366d8ee5128ad
refs/heads/master
2023-08-09T06:57:49.476966
2023-08-04T13:48:02
2023-08-04T13:48:02
158,579,987
4
0
null
2020-08-28T21:07:05
2018-11-21T16:53:53
C++
UTF-8
C++
false
false
594
cpp
// functor.cpp by Bill Weinman <http://bw.org/> #include <sstream> class Multiply{ int _mult = 1; Multiply(); public: Multiply(int n):_mult(n){}; // operator overload: // the overload operator is the function overload operator () int operator () (int n) const {return _mult*n;} }; int main(){ const...
[ "babakpst@gmail.com" ]
babakpst@gmail.com
a3b7b68c0b577d44118fb8ab84f904371eb46b40
18482a1767f6a1f37e1640183a8b34779a32907e
/SWEA_1215_회문1_200203.cpp
d742474167e20ad9622aba945c3701909e55b388
[]
no_license
du-dung/algorithm
12f6e9448f98243ef86052e126e7eec98281a4ae
649916f7f08a23157e0b11cb61b1987a6b43295c
refs/heads/master
2021-07-07T16:49:27.323301
2020-10-14T15:29:28
2020-10-14T15:29:28
197,013,515
0
0
null
null
null
null
UTF-8
C++
false
false
2,602
cpp
/* 1215. [S/W 문제해결 기본] 3일차 - 회문1 D3 https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV14QpAaAAwCFAYi&categoryId=AV14QpAaAAwCFAYi&categoryType=CODE - 회문의 길이만큼 배열 자르기 -> 회문인지 판단 */ #include <iostream> #include <vector> using namespace std; bool isPalindrome(vector<char> str){ //회문인지 판...
[ "triaina0@gmail.com" ]
triaina0@gmail.com
9cdfccdcb3f13d941f50e843509c99abc364712e
fc34d4769e7abe29562cbe074cc509d27fec4e2a
/Code/functionsfolder/myawgnfunction/codegen/lib/add_awgn_noise/add_awgn_noise.cpp
81b03b82283841557da64c9fe331275201cbaa13
[]
no_license
JXK-111/msthesisieee80211p
6385f46e16187cd1ce4a8677aef1dfb4b6260398
62615a93a7ba78a8663110016b29bf91a4d985a6
refs/heads/master
2022-04-02T10:01:53.725037
2020-02-18T18:42:43
2020-02-18T18:42:43
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,361
cpp
// // File: add_awgn_noise.cpp // // MATLAB Coder version : 3.3 // C/C++ source code generated on : 14-May-2017 01:59:14 // // Include Files #include "rt_nonfinite.h" #include "add_awgn_noise.h" #include "randn.h" // Function Declarations static double rt_powd_snf(double u0, double u1); // Function Defin...
[ "gvkk123@gmail.com" ]
gvkk123@gmail.com
ac987abf6f23ec27f0860288eb73de9ccc36d548
c98e28ad2eabd7164864e7bbfe414041425c18af
/ash/assistant/assistant_state_controller_unittest.cc
286cf8de00973d6d0189045a78e12e225e7f076b
[ "BSD-3-Clause" ]
permissive
zewu82/chromium
07564a54cb0797087d4a8a35d269a16343cb0201
9f214327762c1287c770ce420afa98e3853d95c3
refs/heads/master
2023-03-06T13:13:00.736016
2019-08-27T08:04:24
2019-08-27T08:04:24
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,630
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_state_controller.h" #include <memory> #include "ash/assistant/assistant_controller.h" #include "ash/session/session_co...
[ "commit-bot@chromium.org" ]
commit-bot@chromium.org
d3f0cc4dcce00d7dda3df94abcc4581ae4ca3605
8372462df2cde38c1dfa8caeea332d6a01ff81f3
/Roguelike/src/game/items/equipment/weapon/ironsword.cpp
1d888a688e4707e64609d4ddbf7b6a4bf4e25f47
[]
no_license
mobdevelopment/CPPLS1
eb9a3821aab1a33e4df1c6f7e430bfa9a10df83a
e06365fee8d6280015e9ffedb8ec226b25362b12
refs/heads/master
2021-01-17T23:02:53.608075
2017-05-15T09:53:37
2017-05-15T09:53:37
84,209,726
0
0
null
null
null
null
UTF-8
C++
false
false
885
cpp
#include "ironsword.h" #include <boost\algorithm\string.hpp> game::items::equipment::weapon::IronSword::IronSword() noexcept { } game::items::equipment::weapon::IronSword::~IronSword() noexcept { name.clear(); description.clear(); iType.clear(); } void game::items::equipment::weapon::IronSword::SetName() { name...
[ "mkleef@avans.nl" ]
mkleef@avans.nl
55f1caf854519f5e7741f40dac04e2eacf2b4568
27bb5ed9eb1011c581cdb76d96979a7a9acd63ba
/aws-cpp-sdk-rds/source/model/DescribeReservedDBInstancesRequest.cpp
7674fef7a5ddef1c39a64a49b5136226a0b68d4d
[ "Apache-2.0", "JSON", "MIT" ]
permissive
exoscale/aws-sdk-cpp
5394055f0876a0dafe3c49bf8e804d3ddf3ccc54
0876431920136cf638e1748d504d604c909bb596
refs/heads/master
2023-08-25T11:55:20.271984
2017-05-05T17:32:25
2017-05-05T17:32:25
90,744,509
0
0
null
2017-05-09T12:43:30
2017-05-09T12:43:30
null
UTF-8
C++
false
false
2,950
cpp
/* * Copyright 2010-2016 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...
[ "henso@amazon.com" ]
henso@amazon.com
8ba6f8d522605c6eb40aec00c8b637e427143166
0eff74b05b60098333ad66cf801bdd93becc9ea4
/second/download/collectd/gumtree/collectd_old_hunk_600.cpp
419dd7c65f8324bf08ceda2965dd0b9b1337b895
[]
no_license
niuxu18/logTracker-old
97543445ea7e414ed40bdc681239365d33418975
f2b060f13a0295387fe02187543db124916eb446
refs/heads/master
2021-09-13T21:39:37.686481
2017-12-11T03:36:34
2017-12-11T03:36:34
null
0
0
null
null
null
null
UTF-8
C++
false
false
378
cpp
double timeout = 0.0; char **plugins = NULL; size_t plugins_num = 0; char **identifiers = NULL; size_t identifiers_num = 0; size_t i; #define PRINT_TO_SOCK(fh, ...) \ do { \ if (fprintf (fh, __VA_ARGS__) < 0) { \ char errbuf[1024]; \ WARNING ("handle_flush: failed to write to socket #%i: %s", \ fi...
[ "993273596@qq.com" ]
993273596@qq.com
a3d206523b9194ec3976f698133387e571ade71a
2d6540b36e33def9d311e46c9aba314f4c59f668
/ch10/10_34.cc
60efeebe0b1e983fa106e0e3ead62ca0b7303e64
[]
no_license
MasonSu/cplusplus
234481162eb95a55a76a14ab87aee880fc6d9da0
45078576a5013e8678040a7cc0431d369ffe02fe
refs/heads/master
2021-07-03T08:27:11.541487
2016-12-29T14:27:32
2016-12-29T14:27:32
57,936,062
0
0
null
null
null
null
UTF-8
C++
false
false
382
cc
#include <vector> using std::vector; #include <iostream> using std::cout; using std::endl; int main() { vector<int> vec{0, 1, 2, 3, 4, 5}; for(auto r_iter = vec.crbegin(); r_iter != vec.crend(); ++r_iter) cout << *r_iter << " "; cout << endl; for(auto iter = --vec.cend(); iter != vec.cbegin(); --iter) cout <...
[ "xiaxzheng@gmail.com" ]
xiaxzheng@gmail.com
c447e4545caabcccc8af7e6529d9b431225bddaf
230d7c720950a33a7be0f0d8dff7cd6393a78dce
/1/main.cpp
27d83f8a6e523333b61d08115d1d909cc3f17806
[]
no_license
klewinski/ZAP
256fd07f7e8fc856d3c1aa601461b0d02d10e8bc
3c1173aae80b0393d8e4a7085cc3ae8a7671af4a
refs/heads/master
2021-01-01T18:22:17.819272
2012-01-09T17:44:04
2012-01-09T17:44:04
2,659,030
0
0
null
null
null
null
UTF-8
C++
false
false
360
cpp
#include <iostream> using namespace std; int main() { int a ; int b ; int c ; double d ; cout << "Podaj pierwsza liczbe \n " ; cin >> a ; cout << "Podaj druga liczbe \n " ; cin >> b ; cout << "Podaj trzecia liczbe \n " ; cin >> c ; cout << "Srednia wynosi : " ; d=(a+b+c...
[ "deftones099@gmail.com" ]
deftones099@gmail.com
0a588fba1e53fafcc9244f43a2869e95da5eefc0
8ff529ae1c35b4d3eeecf65f0c13c1aa58aeeaf1
/solvers/jfs/src/runtime/SMTLIB/SMTLIB/unittests/BitVector/Native/BvSRem.cpp
279336feb8e4acc04d168f03077ac2b1307f64f4
[ "MIT" ]
permissive
mc-imperial/jfs-fse-2019-artifact
68b9bb0093859f567f16adc03c4931bde9f7109d
c3e08057ecd55126241793def6a5beb2bec0c3af
refs/heads/master
2022-12-13T16:09:08.285779
2019-07-18T17:35:10
2019-07-19T06:27:13
194,575,023
0
0
null
null
null
null
UTF-8
C++
false
false
1,726
cpp
//===----------------------------------------------------------------------===// // // JFS - The JIT Fuzzing Solver // // Copyright 2017-2019 REDACTED // // This file is distributed under the MIT license. // See LICENSE.txt for details. // //===----------------------------------------------------...
[ "afd@imperial.ac.uk" ]
afd@imperial.ac.uk
8966497549a8ec58791f7628ea507bcfd64474ea
031660cd9b6eebc01c06c38bb4b4c1b6c0a78448
/treewidget.h
8df920584ad5d9446f838b6c3c6b2a255e5906d2
[]
no_license
yuriyoung/tree-xml
ffdf40ceda584573033d3f7e43ff858747f16634
bc590740e60778d4bc77dfedd2fcf60975f177a3
refs/heads/master
2021-05-28T13:52:52.553281
2015-03-19T06:24:25
2015-03-19T06:24:25
32,461,581
2
0
null
null
null
null
UTF-8
C++
false
false
703
h
#ifndef TREEVIEW_WIDGET_H #define TREEVIEW_WIDGET_H #include <QTreeWidget> #include "xmlreader.h" #include "xmlwriter.h" class QAction; class QMenu; class QContextMenuEvent; class TreeWidget : public QTreeWidget { Q_OBJECT public: explicit TreeWidget(QWidget *parent = 0); ~TreeWidget(); bool loadFil...
[ "yuri.young@newdebug.com" ]
yuri.young@newdebug.com
5d26195096157eac258c869db1f0d6c89415d479
6b40e9dccf2edc767c44df3acd9b626fcd586b4d
/NT/admin/cys/mys/util.hpp
1abea7856259d44c15435727b110f0bd4d2b9a3e
[]
no_license
jjzhang166/WinNT5_src_20201004
712894fcf94fb82c49e5cd09d719da00740e0436
b2db264153b80fbb91ef5fc9f57b387e223dbfc2
refs/heads/Win2K3
2023-08-12T01:31:59.670176
2021-10-14T15:14:37
2021-10-14T15:14:37
586,134,273
1
0
null
2023-01-07T03:47:45
2023-01-07T03:47:44
null
UTF-8
C++
false
false
356
hpp
// Copyright (c) 2000 Microsoft Corporation // // utility grab bag // // 28 Mar 2000 sburns #ifndef UTIL_HPP_INCLUDED #define UTIL_HPP_INCLUDED HRESULT CreateAndWaitForProcess(const String& commandLine, DWORD& exitCode); DWORD MyWaitForSendMessageThread(HANDLE hThread, DWORD dwTimeout); ...
[ "seta7D5@protonmail.com" ]
seta7D5@protonmail.com
7ec229ca197dd25ffa50bc0647a3f76a8045884b
4d42762ddb5034b84585170ca320f9903024fa7f
/build/iOS/Debug/include/Fuse.Triggers.BusyTask.h
1ea77f1367dfe1ad11ce7504157f98d178e754b4
[]
no_license
nikitph/omkareshwar-ios
536def600f378946b95362e2e2f98f8f52b588e0
852a1d802b76dbc61c2c45164f180004b7d667e6
refs/heads/master
2021-01-01T18:58:16.397969
2017-08-01T18:53:20
2017-08-01T18:53:20
98,473,502
0
0
null
null
null
null
UTF-8
C++
false
false
2,957
h
// This file was generated based on '/Users/Omkareshwar/Library/Application Support/Fusetools/Packages/Fuse.Triggers/1.1.1/$.uno'. // WARNING: Changes might be lost if you edit this file directly. #pragma once #include <Uno.Object.h> namespace g{namespace Fuse{namespace Scripting{struct Context;}}} namespace g{namespa...
[ "nikitph@gmail.com" ]
nikitph@gmail.com
ba58425be65a29c1d1debb0f2d7eafd1d0cf3f9a
ba4a12527a297c3d1478e89a2e0c0b0fca55c57a
/PointerTypeSpecifyAST.h
3882e4f9b7bbbc72061065c525d6c11c8310833a
[]
no_license
ZouXinn/Horizon_Team_Backend
9760856b6e05bda9ecea10f4efdbd283e4609594
43d32d8f953d95f3de114ab2ca4f615a2e7ad379
refs/heads/master
2022-04-01T21:17:50.716614
2019-10-31T10:45:42
2019-10-31T10:45:42
null
0
0
null
null
null
null
UTF-8
C++
false
false
384
h
#pragma once #include "TypeSpecifyAST.h" #include "DirectTypeSpecifyAST.h" #include "PointerAST.h" class PointerTypeSpecifyAST : public TypeSpecifyAST { public: DirectTypeSpecifyAST* directTypeSpecifyAST; PointerAST* pointerAST; PointerTypeSpecifyAST(DirectTypeSpecifyAST* directTypeSpecifyAST, Pointer...
[ "1598244350@qq.com" ]
1598244350@qq.com
5123e0968b96252142a13948675c66d72d367ef9
9589b921b164a8d28ac28ad7e7c809f06a6a037b
/Labs/Lab_07_ObjectLab/Lab7dogObject.cpp
828b2cd381ff76ad17dcda821f47bd1f892f4460
[]
no_license
JamesKalebby/CSCI-1370
c59eaec6e47ffacede535319e77188ec896a25d4
8dbd700d3259f71b39fb4878256893fbdc586753
refs/heads/master
2020-03-15T17:43:44.730969
2018-05-05T18:46:08
2018-05-05T18:46:08
132,146,994
0
0
null
null
null
null
UTF-8
C++
false
false
2,302
cpp
#include "stdafx.h" #include<iostream> #include<string> using namespace std; class dog { public: string name; double weight; string breed; //default dog() { breed = "mutt"; } //name and weight dog(string b, double w) { breed = b; weight = w; } //weight dog(double w) { breed = "mutt"; weight...
[ "JamesKalebby@users.noreply.github.com" ]
JamesKalebby@users.noreply.github.com
09ff926b58ff455570ed35c0ed28165f9b92299e
877fff5bb313ccd23d1d01bf23b1e1f2b13bb85a
/app/src/main/cpp/dir7941/dir29315/dir29712/dir34037/dir34040/file34130.cpp
abf6119806aa6b38fffa2f6707e50f070548a56d
[]
no_license
tgeng/HugeProject
829c3bdfb7cbaf57727c41263212d4a67e3eb93d
4488d3b765e8827636ce5e878baacdf388710ef2
refs/heads/master
2022-08-21T16:58:54.161627
2020-05-28T01:54:03
2020-05-28T01:54:03
267,468,475
0
0
null
null
null
null
UTF-8
C++
false
false
115
cpp
#ifndef file34130 #error "macro file34130 must be defined" #endif static const char* file34130String = "file34130";
[ "tgeng@google.com" ]
tgeng@google.com
47c651fbc387c1cced524da7a5396c871d675677
fb689146cc19e1113e095e6dfd12f8b73177b22f
/include/deal.II/meshworker/local_results.h
aba272ad1d8d2929620cad9cc2870d60caff8f40
[]
no_license
qsnake/deal.II
0418a4c9371e2630a0fce65b8de3529fa168d675
79c0458c8cc3fa03e5d89357a53a4f9397ead5c3
refs/heads/master
2021-01-01T15:55:27.801304
2012-07-27T13:31:57
2012-07-27T14:16:10
5,205,180
3
1
null
null
null
null
UTF-8
C++
false
false
18,456
h
//--------------------------------------------------------------------------- // $Id: local_results.h 24247 2011-09-04 17:20:00Z young $ // // Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and licens...
[ "ondrej.certik@gmail.com" ]
ondrej.certik@gmail.com
4039f379b15a97d9bfdbb0d582ce614a13b1665e
3bece67e5f7af1f558d0457a61669c99296ac040
/submission/Move_Zeroes.cpp
f4251cf5d5d97f6db5462b82cd4ab08170c50f13
[]
no_license
DerrickPikachu/Leetcode
2566faa872021c3d3ba97f8f3d871b5d6354221c
764011a746a78b548613aabc34462213e50f97c6
refs/heads/master
2022-11-25T10:14:16.803921
2020-08-03T03:49:12
2020-08-03T03:49:12
278,987,120
0
0
null
null
null
null
UTF-8
C++
false
false
485
cpp
class Solution { public: void moveZeroes(vector<int>& nums) { int index,i,len; len = nums.size(); for (i=0;i<len;i++) { if (nums[i] == 0){ index = i; break; } }//find out the first 0 in the array for (i=i+1;i<le...
[ "derrfgh4563@gmail.com" ]
derrfgh4563@gmail.com
107237d75526774a2b882451e984170c064e912b
3b161008c643de556752a01ecf5a84661cf61020
/203._Remove_Linked_List_Elements.cpp
95e45f7f0ca3ded032fdc1cd012fb7c5fd658344
[]
no_license
ritvikkhanna09/Leetcode
8cc3320a7a34f93b9e809408973f7e2cea99c044
4a563b03f239ff2e578f684eb45cbea086042ee0
refs/heads/master
2021-04-28T14:23:39.394122
2019-02-03T12:54:18
2019-02-03T12:54:18
121,964,009
1
0
null
null
null
null
UTF-8
C++
false
false
719
cpp
/** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x) : val(x), next(NULL) {} * }; */ class Solution { public: ListNode* removeElements(ListNode* head, int val) { while(head!=nullptr&&head->val==val){ head=head->next; ...
[ "ritvikkhanna09@gmail.com" ]
ritvikkhanna09@gmail.com
c930020e55c6e1820524df16e4c63db31fc275a5
778b52feabea2b3f0e919a4381120497f09fdb3e
/8queen.cpp
112cf4dde88b218e95b1b6160141221a209d1f7c
[]
no_license
chenzifeng1/ALGORITHM
ff4055866a6525ba0dfe01a1f3b28171625416d9
7b4c20c27c601cf5e28f863ed7080028e4874c67
refs/heads/master
2020-04-22T15:33:42.434509
2019-03-29T01:14:46
2019-03-29T01:14:46
170,481,412
0
0
null
null
null
null
GB18030
C++
false
false
1,201
cpp
#include <cstdio> #include <iostream> #include <math.h> #include <stdlib.h> using namespace std; const int maxi=11; int counter=0; int index; int hashTable[maxi]={false}; int n,P[maxi]; void generateQ(int index); int main(){ cin>>n; generateQ(1); cout<<endl; for(int i=0;i<n;i++){ cout<<P[i]<<"...
[ "chenzifeng527@gmail.com" ]
chenzifeng527@gmail.com
f0babc2606404bd29769ec2b8dc966f760c13c01
1a95b776a434b69490bbcf77e696714fd3e3b0cb
/cuts/reco/Helicity.h
674160e884102313d8ce00964e2adcdf6dddf092
[]
no_license
MinervaExpt/NucCCNeutrons
5d48af220068f1ed78401ef9fa20f58d57c48247
11ae38d7c21a9dac922476ffcb45982ec98835fd
refs/heads/master
2023-08-03T10:26:20.473973
2021-10-29T21:30:10
2021-10-29T21:30:10
229,083,699
0
0
null
null
null
null
UTF-8
C++
false
false
914
h
//File: Helicity.h //Brief: A Cut on a range of values in reco 3-momentum transfer. //Author: Andrew Olivier aolivier@ur.rochester.edu #ifndef RECO_HELICITY_H #define RECO_HELICITY_H //cut includes #include "cuts/reco/Cut.h" //TODO: Do I need any includes for YAML::Node? namespace evt { class Universe; } namespac...
[ "andrew@djoinc.com" ]
andrew@djoinc.com
db52df0e84685573926714dc40d797ff8f4d0b73
a80fb9a780318a776388767d30f2d7698c9ad747
/run/cavityRAS/14.5/epsilon
3e62b144b81037ea965cb3a107fdacaf37d5bfdf
[]
no_license
SebastianJohansen/openFOAM
31bef4c8437fd468e3094d510d3ff392e2ea7d94
59ce09358ccf3c2390450183257373292e1b72ee
refs/heads/master
2020-03-20T09:03:31.969919
2018-07-02T14:31:58
2018-07-02T14:31:58
137,327,058
0
0
null
null
null
null
UTF-8
C++
false
false
6,927
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: 5.x | ...
[ "cebastian.johansen@gmail.com" ]
cebastian.johansen@gmail.com
b9ab46d8dca84bfc247cad627df4ae213f207985
9b1db037821b0debaf3bb690824ae95f41dcc648
/Assembler.cpp
9c06f83a61b62b5f62b593e2702e5e6f63d28941
[]
no_license
cubuspl42/aghsm
0751bef56a4fc66a40de6c34f91042964997024e
20dadffed10dc1fec122bd038d049b1a41d7ebab
refs/heads/master
2021-01-10T12:41:02.387332
2015-11-23T20:16:32
2015-11-23T20:16:32
46,642,257
2
0
null
null
null
null
UTF-8
C++
false
false
1,107
cpp
/// Copyright (c) 2015 Jakub Trzebiatowski /// /// 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...
[ "cubuspl42@stgn.pl" ]
cubuspl42@stgn.pl
32a89bd85f0ea43e6c71fa1136985c1fe94625be
0185fbdeb9ec84275a5b870be35faffe339c8255
/_singleton.h
7220b7fef7a62c72acff9a0c7e4ca03beb64dc84
[]
no_license
l2306/__uitls
4b4bd6038921fd06e3fdfd4b94b83838effa2133
ef5893a6dc727e459800a86c12fa1cff924b5a02
refs/heads/master
2020-08-31T11:45:55.833071
2020-06-05T04:05:28
2020-06-05T04:05:28
218,683,109
0
0
null
null
null
null
UTF-8
C++
false
false
1,522
h
#ifndef _singleton_H_ #define _singleton_H_ template<typename T> class Singleton { struct object_creator{ object_creator(){ Singleton<T>::instance(); } inline void do_nothing() const {} }; static object_creator create_object; public: typedef T object_type; static T& instance(){ stati...
[ "895553893@qq.com" ]
895553893@qq.com
2f8c089c05e02c438094d62074451ee45c4773c8
7579d827cb7b50b438dfd9ef6fa80ba2797848c9
/sources/plug_wx/include/luna/wrappers/wrapper_wxEventBlocker.h
e2f81842bfa0cb6a2d7b6984ca2f3d2559498d4e
[]
no_license
roche-emmanuel/sgt
809d00b056e36b7799bbb438b8099e3036377377
ee3a550f6172c7d14179d9d171e0124306495e45
refs/heads/master
2021-05-01T12:51:39.983104
2014-09-08T03:35:15
2014-09-08T03:35:15
79,538,908
3
0
null
null
null
null
UTF-8
C++
false
false
4,304
h
#ifndef _WRAPPERS_WRAPPER_WXEVENTBLOCKER_H_ #define _WRAPPERS_WRAPPER_WXEVENTBLOCKER_H_ #include <plug_common.h> #include "lua/LuaObject.h" #include <wx/event.h> class wrapper_wxEventBlocker : public wxEventBlocker, public luna_wrapper_base { public: ~wrapper_wxEventBlocker() { logDEBUG3("Cal...
[ "roche.emmanuel@gmail.com" ]
roche.emmanuel@gmail.com
4d12968fa9f2f53f1f3ad712d203ddd32e5d2c29
971e4b3c68df26e461bc86fbc262304c1ed6a348
/interface/LowPileupSelector.h
2b68c448cabe57db8be37eb07af457b410ccfd65
[]
no_license
dteague/VVAnalysis
a8d9f7262dd9752a34c4854ba5086b2f54072780
182a2b824e7c5ed656aae4444ff737654e2343cf
refs/heads/master
2021-07-06T18:21:45.318860
2020-08-12T15:20:36
2020-08-12T16:13:20
143,030,262
0
1
null
2019-11-11T10:14:11
2018-07-31T15:04:38
Jupyter Notebook
UTF-8
C++
false
false
1,376
h
#ifndef LowPileupSelector_h #define LowPileupSelector_h #include <TROOT.h> #include <TChain.h> #include <TFile.h> #include <TSelector.h> #include <TH1.h> #include <TH2.h> #include <TLorentzVector.h> #include <exception> #include <iostream> // Headers needed by this particular selector #include <vector> #include "Anal...
[ "kdlong@hep.wisc.edu" ]
kdlong@hep.wisc.edu
b40af5d9571ae443de181b283551a95c144dff6c
5e9c396ea5d81dce62ef4e6f260db21385608922
/src/chrono_models/vehicle/man/MAN_7t_Vehicle.cpp
41a6229af19cfc4a7d0838f15a3d1e8c8632f499
[ "BSD-3-Clause" ]
permissive
gvvynplaine/chrono
357b30f896eb6c1dcabcebd0d88f10fab3faff20
a3c0c8735eb069d5c845a7b508a048b58e022ce0
refs/heads/develop
2023-01-05T08:43:13.115419
2020-07-09T08:24:34
2020-07-09T08:24:34
278,308,549
0
0
BSD-3-Clause
2020-10-30T12:17:47
2020-07-09T08:33:24
null
UTF-8
C++
false
false
10,715
cpp
// ============================================================================= // PROJECT CHRONO - http://projectchrono.org // // Copyright (c) 2014 projectchrono.org // All right reserved. // // Use of this source code is governed by a BSD-style license that can be found // in the LICENSE file at the top level of th...
[ "serban@wisc.edu" ]
serban@wisc.edu
0b90bd3386eca02db361ded7a81715feba8d2ff5
d20d39a87315ee0103e2792c02e310b970feb30e
/Usart_2_vcom.cpp
553fb162adb75230edfa671cbda83012be38f6b6
[]
no_license
davidanew/synth1
98502ee3a033bac338cbe082bb5f6d2ee3565fd7
de157e1d21ffcfb384b427acf2baa4a31d3242cf
refs/heads/master
2020-06-08T22:53:07.944925
2019-08-01T08:45:27
2019-08-01T08:45:27
193,321,016
0
0
null
null
null
null
UTF-8
C++
false
false
1,232
cpp
#include "Usart_2_vcom.h" UART_HandleTypeDef Usart_2_vcom::huart2 = {}; void Usart_2_vcom::init(void) { __HAL_RCC_USART2_CLK_ENABLE(); __HAL_RCC_GPIOA_CLK_ENABLE(); GPIO_InitTypeDef GPIO_InitStruct {}; GPIO_InitStruct.Pin = GPIO_PIN_2|GPIO_PIN_3; GPIO_InitStruct.Mode = GPIO_MODE_AF_PP; GPIO_InitStru...
[ "davidanew@googlemail.com" ]
davidanew@googlemail.com
02c5dd5d69e45b7500aa0d055d5b00f7b0beb7d8
7649449c62fef919badc07178f0f3b9cd70b579b
/ECMedia/source/ec_live_engine/ec_hls_puller.cpp
f8a4e8eb45aab59db38dcdd5897ec295ccfa8184
[]
no_license
Okrio/ecmedia
1c0dec7b513b447ce16f2daebf5f404fd37dcd23
75fe1767d43f68715f065f025195aee47ae783d4
refs/heads/master
2023-03-24T15:43:30.815590
2020-05-22T02:15:02
2020-05-22T02:15:02
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,564
cpp
// // ec_hls_puller.cpp // ECMedia // // Created by 葛昭友 on 2017/8/21. // Copyright © 2017年 ronglianyun.com. All rights reserved. // #include "ec_hls_puller.h" using namespace std; // project lib #include "htl_core_log.hpp" #include "htl_core_error.hpp" #include "htl_main_utility.hpp" #include "ec_play_buffer_cach...
[ "gezhaoyou@126.com" ]
gezhaoyou@126.com
24c03d6494cd80d77faebde8a3caae89edbf2640
6f21bb3ad97984eece685d0e7da237f921290dbf
/Source/TPS/TPSDeveloperSettings.h
1ed951782eb95f56808695ec29f8ae9fed803e23
[ "MIT" ]
permissive
AingeLu/TPS
e27e119540db2459d42aa83c4f471fa5536ae4e0
a17438ed043f1986513c3398b54bd564a2a941b1
refs/heads/master
2023-03-06T03:59:32.591937
2021-02-21T12:01:38
2021-02-21T12:01:38
277,064,797
0
0
null
null
null
null
UTF-8
C++
false
false
1,251
h
// Fill out your copyright notice in the Description page of Project Settings. #pragma once #include "CoreMinimal.h" #include "Engine/DeveloperSettings.h" #include "TPSDeveloperSettings.generated.h" /** * */ UCLASS(config = TPSDeveloperSettings) class TPS_API UTPSDeveloperSettings : public UDeveloperS...
[ "13617338374@163.com" ]
13617338374@163.com
7ff113fe247f39203a031eb8bb754050fc48c436
18a76fb348cfe34d828a22d016834dec41adf42d
/2019/day8/8_1.cpp
f99883bb3ae436fd8c65a12950b556fab7c317b7
[]
no_license
giackserva/adventofcode
2e9cf6d0c9936ebc6045a4df56d63c73fbb42173
c7d267aa0db0236b1d385324a061bbb481c0d387
refs/heads/master
2021-12-15T02:07:46.633700
2021-12-08T22:18:23
2021-12-08T22:18:23
225,143,870
0
0
null
null
null
null
UTF-8
C++
false
false
654
cpp
#include <iostream> #include <array> #include <limits> using namespace std; int main() { string input; cin >> input; const int height = 6; const int width = 25; const int layerSize = height * width; const int layers = input.size() / layerSize; int min = numeric_limits<int>::max(); in...
[ "giackserva@gmail.com" ]
giackserva@gmail.com
b79fd132f06387734c42fbd9dc84aa9e9bf3a12a
8324434add67923baf1dc46128727f020ac91172
/rozp1/rozp1/generate_moments.cpp
28b46e12b6ea61e16ab83b11604e0644709d452c
[]
no_license
EmiM/images-recognition-exercises
3f9a088f1949e991fa678e13f73099559a80c509
4ef3d1b1990277ab6031a522502fd6ddc819f837
refs/heads/master
2021-01-13T08:45:35.209501
2016-11-30T16:19:59
2016-11-30T16:19:59
71,969,212
0
0
null
null
null
null
WINDOWS-1250
C++
false
false
3,850
cpp
#include "opencv2/highgui/highgui.hpp" #include "opencv2/imgproc/imgproc.hpp" #include <iostream> #include <fstream> #include <cstdio> #include <set> #include <iomanip> using namespace cv; using namespace std; int const max_BINARY_value = 255; int threshold_value = 0; int threshold_type = 0; int PRECISION = 6; strin...
[ "emi.marczyk@gmail.com" ]
emi.marczyk@gmail.com
57284f31e34212b4492f70e171c82da4e67e4649
af0ecafb5428bd556d49575da2a72f6f80d3d14b
/CodeJamCrawler/dataset/14_14686_55.cpp
bf978b6794595e2a9bb7c15eb1dd004bc1ba6b31
[]
no_license
gbrlas/AVSP
0a2a08be5661c1b4a2238e875b6cdc88b4ee0997
e259090bf282694676b2568023745f9ffb6d73fd
refs/heads/master
2021-06-16T22:25:41.585830
2017-06-09T06:32:01
2017-06-09T06:32:01
null
0
0
null
null
null
null
UTF-8
C++
false
false
968
cpp
#include <stdio.h> #include <algorithm> #include <iostream> using namespace std; int main() { int t; scanf("%d",&t); for(int cc=1;cc<=t;cc++) { printf("Case #%d: ",cc); double nao[1005],ken[1005]; int n; scanf("%d",&n); for(int i=1;i<=n;i++) scanf("%lf",&nao[i]); for(int i=1;i<=n;i++) scanf("%...
[ "nikola.mrzljak@fer.hr" ]
nikola.mrzljak@fer.hr
cc667bbe3f422acadee2b2a79bcfafee6279dbf5
903dfaa0d5725f47decce70cc5a0caa33189c5d0
/Chapter6/6.11.cpp
71d523583a844ec083b340e3c310804cec902670
[]
no_license
Gapex/CppPrimer
45fb499fca544fc9f82f3862fd2f8f03db5a2179
f86bdf44ee0b6f471999cabf1cd3d14e81346c16
refs/heads/master
2022-04-25T14:39:16.645854
2020-04-30T03:26:25
2020-04-30T03:26:25
256,712,628
0
1
null
null
null
null
UTF-8
C++
false
false
253
cpp
#include <iostream> using std::cout; using std::endl; void reset(int &number){ number = 0; } int main(){ int number = 11; cout << "number = " << number << endl; reset(number); cout << "number = " << number << endl; return 0; }
[ "1377762942@qq.com" ]
1377762942@qq.com
954ba1921f1d06af8e66d20eb1d8c61d221a491f
ed8f4ff0619cc4a6847f707643fa3a17fb939ec6
/ArithmeticDerivative/alt.cpp
4748a154f5b30e0d4c37d76bf104619a9260e8a1
[]
no_license
sebasgarcep/ComputationalProblems
e901f0f89f372d0659fbc9bf5db86d5930571246
c7544599aba9e5db1a8dba6b7930884a52729bb0
refs/heads/master
2023-04-29T21:20:53.504866
2023-04-25T04:54:01
2023-04-25T04:54:01
171,159,915
2
0
null
null
null
null
UTF-8
C++
false
false
2,435
cpp
#include <chrono> #include <math.h> #include <stdio.h> #include <vector> // Problem parameters const long n = 5e15; // Algorithm parameters const long bound = (long) sqrt(n); // Static variables std::vector<long> prime_list; long explore(long limit, long start_pos) { long result = limit; for (long pos = st...
[ "sebasgarcep@gmail.com" ]
sebasgarcep@gmail.com
b68ecfd8c4f8ab83da8524d970e012ac7d4901f7
cfd3eb53a34a6711b8cf4735ff6c52d08e80cf23
/smolengine/include/Libraries/Frostium3D/Vulkan/VulkanRenderPass.h
09cef4d9a0f18945f5ea515a68a66dc38f13483f
[ "Apache-2.0" ]
permissive
wangscript007/SmolEngine
2536ea4a3c825950d8d7f0ff8d24246e1ac52836
db89dfb7e3eeba83029837562148992c512f6eb0
refs/heads/master
2023-04-30T08:09:15.578132
2021-05-17T06:47:55
2021-05-17T06:47:55
null
0
0
null
null
null
null
UTF-8
C++
false
false
669
h
#pragma once #ifndef FROSTIUM_OPENGL_IMPL #include "Vulkan/Vulkan.h" #include "Common/FramebufferSpecification.h" namespace Frostium { struct RenderPassGenInfo { VkFormat ColorFormat; VkFormat DepthFormat; VkSampleCountFlagBits MSAASamples = VK_SAMPLE_COUNT_1_BIT;...
[ "flouritte199@gmail.com" ]
flouritte199@gmail.com
63533d317e001a56d2bb7498b5740db9a59c78f1
ce71ba08e9094a4d76c8cc1e0cc7891ae016ff60
/Lib/Chip/MKL03Z4.hpp
d4a7d9bf0b6246902d4c20b0353c91fdc32c0d38
[ "Apache-2.0" ]
permissive
operativeF/Kvasir
9bfe25e1844d41ffefe527f16117c618af50cde9
dfbcbdc9993d326ef8cc73d99129e78459c561fd
refs/heads/master
2020-04-06T13:12:59.381009
2019-01-25T18:43:17
2019-01-25T18:43:17
157,489,295
0
0
Apache-2.0
2018-11-14T04:12:05
2018-11-14T04:12:04
null
UTF-8
C++
false
false
1,628
hpp
#pragma once #include <Chip/CM0+/Freescale/MKL03Z4/FTFA_FlashConfig.hpp> #include <Chip/CM0+/Freescale/MKL03Z4/FTFA.hpp> #include <Chip/CM0+/Freescale/MKL03Z4/TPM0.hpp> #include <Chip/CM0+/Freescale/MKL03Z4/TPM1.hpp> #include <Chip/CM0+/Freescale/MKL03Z4/ADC0.hpp> #include <Chip/CM0+/Freescale/MKL03Z4/RTC.hpp> #includ...
[ "holmes.odin@gmail.com" ]
holmes.odin@gmail.com
5d531215527c06561b44ce0a5e91a3fcc11c7646
5f87e2b7a17dc72b6b93546b6284d3b228c51b76
/src/c++/test/MemoryOutputStream.cc
74940af0f93b18302c431edd7ad74e86732df623
[ "BSD-3-Clause", "MIT", "Zlib", "LicenseRef-scancode-protobuf", "Apache-2.0", "LicenseRef-scancode-unknown-license-reference", "LicenseRef-scancode-generic-cla" ]
permissive
Azure/azure-kusto-orc-conv
cc6bdc7893009d993580fb2b48344d78a66d50de
030e4a78166cdddaecf67518886cc23998b06e76
refs/heads/master
2023-09-03T10:52:55.672273
2022-01-18T08:19:05
2022-01-18T08:19:05
220,925,147
1
1
MIT
2020-11-19T09:27:27
2019-11-11T07:29:08
null
UTF-8
C++
false
false
1,062
cc
/** * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you...
[ "mispecto@microsoft.com" ]
mispecto@microsoft.com
5a9dd4e37cf71f11cfe2c5ddab1d9f3c09abbdec
e1ba67e6eeb50522316f346fe0aca49c00a72089
/traverse_tree/cxx/TreeNode.h
21c7afb33741c2bc3323280d88e416439a32a650
[]
no_license
davidxk/Algorithm-Implementations
620982ca19ef8368febe72219a49f7f45dd77861
cbd658ac052d4407e2567c9abc2a457dfe242bf8
refs/heads/master
2023-04-16T06:37:25.426960
2023-04-13T12:56:37
2023-04-13T12:56:37
104,098,062
37
3
null
null
null
null
UTF-8
C++
false
false
194
h
#ifndef __TREE_NODE__ #define __TREE_NODE__ #include <iostream> struct TreeNode { int val; TreeNode *left; TreeNode *right; TreeNode(int x) : val(x), left(NULL), right(NULL) {} }; #endif
[ "davidxk@qq.com" ]
davidxk@qq.com
a6e527f04bc3a580783601d7163c669dedefe1d0
d588d74f888ad2cf7d373a5725bfe135d0d1f417
/Bootcamp season two by NSUPS/bonus.cpp
72fdda75bf11cf73fa4edc0c25d8b964c3708505
[]
no_license
HridoyAlam/ProblemsSolvedFromOnlineJudges
150c044cf10bd044b6ba45b4ec2e430c8087b55b
ec446b3f1026aa3560d62a3b29f3b63cfae5d4a5
refs/heads/master
2022-01-29T00:03:08.814257
2022-01-10T04:46:35
2022-01-10T04:46:35
125,612,895
0
0
null
null
null
null
UTF-8
C++
false
false
724
cpp
#include<bits/stdc++.h> using namespace std; int a, b, c, d, e, f; int arr[10001]; int fn( int n ) { arr[0]=a; arr[1]=b; arr[2]=c; arr[3]=d; arr[4]=e; arr[5]=f; for(int i=6;i<=n;i++){ arr[i]=arr[i-1]+arr[i-2]+arr[i-3]+arr[i-4]+arr[i-5]; arr[i] = arr[i] % 10000007; } retur...
[ "optimus5289@gmail.com" ]
optimus5289@gmail.com
18d6c6ee6e3948bcd72928cebce60e89ce8db868
6e885215bf7526dfe2129765edb6e5f77c834510
/xmlutils/XMLUtils2.cpp
cd21c2584f81978c8f5cce8f43bcbd152bba984b
[]
no_license
yodergj/HandDetection
09f6bb6b4fce26f8626fc999669b4718f0f80add
22838b05e9917393f41b7c9bfec808066bce0ea5
refs/heads/master
2021-01-21T05:06:00.408907
2015-08-15T00:28:38
2015-08-15T00:28:38
3,496,532
1
0
null
null
null
null
UTF-8
C++
false
false
2,081
cpp
#include "XMLUtils2.h" #include <xercesc/util/PlatformUtils.hpp> void InitXerces() { static bool initialized = false; if ( initialized ) return; xercesc::XMLPlatformUtils::Initialize(); initialized = true; } double GetDoubleValue(xercesc::DOMElement* node, const char* propertyName, double defaultValue) {...
[ "gabe.yoder@gmail.com" ]
gabe.yoder@gmail.com
b070419ed8711c3c8cb4c82e4256fde7807fda14
edbe6966098d925e831b4e3054c76e4ae1c1891a
/leetcode_archived/LeetCode_3.cpp
4913038adb01b0e8502e7db7b4a31ddb667f690c
[ "BSD-3-Clause" ]
permissive
Sean10/Algorithm_code
242fcb21de97186ed1caea30ab967c3f4b4e9351
8ba923150102e16a9072b8f32ced45d15b18223b
refs/heads/master
2023-06-22T17:47:07.241192
2023-06-19T15:22:23
2023-06-19T15:22:23
107,443,471
0
0
BSD-3-Clause
2021-06-08T20:35:47
2017-10-18T17:51:56
C++
UTF-8
C++
false
false
381
cpp
class Solution { public: int lengthOfLongestSubstring(string s) { vector<int> charIndex(256, -1); int len = 0, max_len = 0; int n = s.size(); for(int i = 0;i < n;i++) { len = max(charIndex[s[i]]+1, len); charIndex[s[i]] = i; max_len = max(m...
[ "sean10reborn@gmail.com" ]
sean10reborn@gmail.com
3c4afd9cd3e2751e719d3daa791014fa96b23e15
bbd60945bc060827483ec5ac53f653d893617f4c
/test/reverse/core/var_unittest.cpp
8307c8e09b0b7dce2308a84bb171ed7e1847663e
[ "MIT" ]
permissive
JamesYang007/FastAD
118749e3d3064cb2c9ba7bb721b0022e0c79fb75
2eaed52f4f2874a6ced554e7cd6488b50025ec6d
refs/heads/master
2022-12-13T17:04:40.818349
2022-12-06T09:41:32
2022-12-06T09:41:32
181,966,964
84
6
MIT
2022-12-02T03:30:14
2019-04-17T20:56:03
C++
UTF-8
C++
false
false
616
cpp
#include <gtest/gtest.h> #include <fastad_bits/reverse/core/var.hpp> namespace ad { namespace core { struct var_fixture : ::testing::Test { protected: using value_t = double; using scl_v_t = Var<value_t, scl>; using vec_v_t = Var<value_t, vec>; using mat_v_t = Var<value_t, mat>; template <class T...
[ "jamesyang916@gmail.com" ]
jamesyang916@gmail.com
74c010a1f86b625b1d11a77d047a90e0ecc5c85a
74f8e0152cfd23225f1cd25e0a329c62236cb1a5
/env/Lib/site-packages/spacy/symbols.cpp
8b838511da56dfa8759698bb2f778d6a9e9d3a9b
[]
no_license
saisahas/text_summary
e1ee9b8251274eb587d7b0a96fb3fea9418cfd16
4aaed755ff72463f96f4bbb8ddbde944fd498bdc
refs/heads/master
2023-04-11T01:59:18.141903
2021-04-06T16:42:38
2021-04-06T16:42:38
355,259,429
0
1
null
null
null
null
UTF-8
C++
false
true
491,501
cpp
/* Generated by Cython 0.29.22 */ /* BEGIN: Cython Metadata { "distutils": { "extra_compile_args": [ "-std=c++11" ], "include_dirs": [ "C:\\hostedtoolcache\\windows\\Python\\3.8.7\\x64\\lib\\site-packages\\numpy\\core\\include", "C:\\hostedtoolcache\\wind...
[ "saisahas96@gmail.com" ]
saisahas96@gmail.com
bea1d8b74ef635385d53b4a9d8013c53cd22225a
ad1562fb99b04b99a21f48e56f3c54ea0d6f6d6b
/LearningTexture/Classes/Textures.hpp
98137d651a10cb7547187d583cb1c2cc3248c0ca
[]
no_license
GustavoGLD/OpenGL
3c9ef1b0abc142e8ded55363c3e518090c3f4dbd
ec4e133de7a666fbee83f03a5d414db03e2e6909
refs/heads/master
2023-05-26T20:21:51.444454
2021-06-05T15:22:43
2021-06-05T15:22:43
357,226,810
6
0
null
null
null
null
UTF-8
C++
false
false
2,062
hpp
#include "../Libs/glad/glad.h" #include <GLFW/glfw3.h> #include <iostream> #define STB_IMAGE_IMPLEMENTATION #include "../Libs/stb_image.h" class Textures{ public: unsigned int texture; inline void SettingUpTextures(){ SettingUpFilter(); SettingUpImage(); } private: inline void Settin...
[ "lidiodamaceno@gmail.com" ]
lidiodamaceno@gmail.com
c84f67849b7c50e6653eccaa075524b3c35183b7
ec3a754ac21137a04250ef7dc9e5152e94fb7bd3
/damBreakFine/processor3/0.8/alpha.water
dc361b2cef4c948e8b3266584af1d94457979349
[]
no_license
johnathoncobabe/425
2336a62cd0f575b777cd549a886a15b5799b6c72
e1ee61fb87a1078683d71a1d15131713c435cfae
refs/heads/master
2021-01-10T10:00:11.128510
2015-10-02T17:54:40
2015-10-02T17:54:40
43,466,206
0
0
null
null
null
null
UTF-8
C++
false
false
1,535
water
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: 2.4.0 | ...
[ "johnathoncobabe@gmail.com" ]
johnathoncobabe@gmail.com
cbce5838f456baf3d8e964476886089086af049d
3727e8c458021964b37c03cd1a6090298df75349
/codeforces/old/586/b.cpp
96dee86b2d53dd22688ed194ecce589aa7613d15
[]
no_license
descrip/competitive-programming
7e9b09ef48e87083d922b8bf46f58793249edce9
b2bdeba24569bbded7688d638b3c595529774e70
refs/heads/master
2021-01-11T19:53:17.724987
2017-01-19T05:40:10
2017-01-19T05:40:10
79,419,215
0
1
null
2017-11-02T18:13:21
2017-01-19T05:35:04
C++
UTF-8
C++
false
false
610
cpp
#include <bits/stdc++.h> using namespace std; int main(){ ios_base::sync_with_stdio(0); cin.tie(0); int n; cin >> n; int ans1 = 0xfffffff, ans2 = 0xfffffff; vector<int> a1 (n), a2 (n), b(n); for (int i = 1; i < n; ++i){ cin >> a1[i]; a1[i] += a1[i-1]; } for (int i = 0; i < n-1; ++i) cin >> a2[i]; for (in...
[ "jezhao1999@gmail.com" ]
jezhao1999@gmail.com
0aa2cd56ec5dedf6cb14df7574cd22d6b274aaf9
3da1c543033ab5b20de0398395681011ea2c39b5
/test6.cpp
3475a0fbf556172237edfe5ff048599e637662f4
[]
no_license
arnabs542/CP
f2a27d6134c10b60eedc5b61aed98d821a4d6126
6f585b2f8c540257c2b3605089e4608b63820d1a
refs/heads/master
2023-06-27T19:18:31.715213
2021-04-27T04:46:58
2021-04-27T04:46:58
null
0
0
null
null
null
null
UTF-8
C++
false
false
788
cpp
/* longest valid parenthesis */ #include <bits/stdc++.h> using namespace std; #define int long long int int longestValidParentheses(string s) { stack<int> st; st.push(-1); int ans = 0; for (int i = 0; i < s.length(); i++) { if (s[i] == '(') { st....
[ "harshit02gangwar@gmail.com" ]
harshit02gangwar@gmail.com
2145204ec8015b08c3f6d8b61a686dfa7f85417e
de90599856ce6994cce2f760947e610c363b9f1f
/Projects/Calculator/BMI Calculator/Src/Main.cpp
c51ac5a4a0fd3fed5682f9de56ae4340c0c8c313
[]
no_license
CarMoli/CPlusPlusProgramming
eb72c819d09d2fec0cbafbf5b7db493d9ef1f646
154b7d03a521b8efbdc8401077c7fae42b45cf69
refs/heads/master
2023-04-19T19:56:12.038271
2021-04-28T03:17:47
2021-04-28T03:17:47
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,034
cpp
#include <iostream> using namespace std; class bmiCalculator { private: //Body max index (BMI) calculator //Weight(kg) / Height * height(m) //Underweight < 18.5 //Normal weight 18.5 - 24.9 //Overweight > 25 double Weight, Height, Bmi; public: bmiCalculator() { this->...
[ "69786531+BillyFrcs@users.noreply.github.com" ]
69786531+BillyFrcs@users.noreply.github.com
0ead44c227b17fd4651b550b7bf18e38bf682ab1
ee6ff3af175a37c2b2377c5ed5f184609e134755
/oshgui/Cursor/IBeam.cpp
bb78725346ae8bf5cf034e24c65bb02dbf3ee851
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
EternityX/DEADCELL-CSGO
c1363ecf5a62941954514d946137a4b791da3b36
7b873216637977d914b2eeb6893cb0cc4708aff2
refs/heads/master
2023-08-28T07:09:39.914038
2021-11-30T12:27:01
2021-11-30T12:27:01
175,938,531
597
233
MIT
2020-09-27T02:29:08
2019-03-16T07:07:59
C++
UTF-8
C++
false
false
838
cpp
/* * OldSchoolHack GUI * * by KN4CK3R https://www.oldschoolhack.me/ * * See license in OSHGui.hpp */ #include "IBeam.hpp" #include "../Drawing/Graphics.hpp" namespace OSHGui { //--------------------------------------------------------------------------- //Runtime-Functions //---------------------------------...
[ "jeramie@protonmail.com" ]
jeramie@protonmail.com
f848e35a57ceb0f71e5dfc6865fdeed9bba45eeb
a26ba6712111b27ca75d8dda8fe5e9ed5a21e5d1
/Chapter 1 - Code Patterns/1.9.3-global-variables-improvement.cpp
e9bc520fddf52794358702d3ee20490151aef706
[]
no_license
nextco/RE4B
e14255cae199318516f7d3e4a587ef01765ada21
298d25e126a73cd6b6c344bbefc9eb4ef8151c2c
refs/heads/master
2023-08-13T10:26:19.290567
2017-11-05T23:09:40
2017-11-05T23:09:40
98,169,449
3
0
null
null
null
null
UTF-8
C++
false
false
258
cpp
// cl 1.9.3-global-variables-improvement.cpp /Fa1.9.3-global-variables-improvement.asm #include <stdio.h> // Now x is Global initialized Variable int x = 123 ; int main(){ printf("Enter x:\n"); scanf("%d", &x); printf("Your entered value = %d\n", x); }
[ "maro@nextco.me" ]
maro@nextco.me
8d54971c18f78d4e565425cdd3a5e93a1b884656
3d1c35eb2bfcfd06751d8336f7a0c627dab33a42
/rubik/texture.cpp
ea85e1b22739ecd95340557d3a6a0ef44144b08e
[ "Unlicense" ]
permissive
erincones/rubik
cc71393c9ab4ad929babc92d44918d1230145847
acf8ead0f97d55f81561eddc1e541be69284624e
refs/heads/master
2021-09-07T22:59:06.551653
2018-02-27T00:13:08
2018-02-27T00:13:08
121,081,893
1
1
null
null
null
null
UTF-8
C++
false
false
1,609
cpp
#include <texture.h> // Construye la textura void Texture::build (GLubyte *const image, const GLsizei &width, const GLsizei &height) { // Textura glGenTextures(1, &texture); glBindTexture(GL_TEXTURE_2D, texture); // Asignacion de datos glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, width, height, 0, GL_RGBA, GL_UNSIGNE...
[ "rogers.ucv@gmail.com" ]
rogers.ucv@gmail.com
568a06c4af48da2ef3961d9b2ffcd9f8e10a311a
8be083e9fbf15606201217d6c4b87c929e418065
/trunk/gui/drag-value-ctrl.cpp
5f42a135ad468c2eb015ff714fe056d668251542
[ "Apache-2.0" ]
permissive
BGCX067/faint-graphics-editor-svn-to-git
430768d441f3e9b353fbc128e132f7406ee48c0e
dad252f820d29ab336bcfa57138625dae6dfed60
refs/heads/master
2021-01-13T00:56:26.685520
2015-12-28T14:22:44
2015-12-28T14:22:44
48,752,914
1
1
null
null
null
null
UTF-8
C++
false
false
4,805
cpp
// -*- coding: us-ascii-unix -*- // Copyright 2013 Lukas Kemmer // // 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 a...
[ "you@example.com" ]
you@example.com
db88b3abf32b40380cb8f6cc2fb7d4edeb83dfd0
ede874b59555fd65ab2aa44f17a71a5a748eafa6
/test/src/dot.cpp
969228c9e0ef24e04ed1610c5684e7557528f549
[ "MIT", "LicenseRef-scancode-unknown-license-reference" ]
permissive
bechirzf/etl-2
aad392dc07f42dd772914931ed192829d2d64a74
32e8153b38e0029176ca4fe2395b7fa6babe3189
refs/heads/master
2020-06-11T10:52:16.362349
2018-05-07T08:41:17
2018-05-07T08:41:17
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,314
cpp
//======================================================================= // Copyright (c) 2014-2018 Baptiste Wicht // Distributed under the terms of the MIT License. // (See accompanying file LICENSE or copy at // http://opensource.org/licenses/MIT) //==================================================================...
[ "baptiste.wicht@gmail.com" ]
baptiste.wicht@gmail.com
9c2b0d8b2c2e3613bdcf0a4260432893bc37030e
54504561f1e2fcfdcfaefed30e3e2d8cd5ecf5a6
/Plot/Plot.ino
ed6e372360f0c0d58d9202e7bae7560baeb041e8
[]
no_license
chinjihoe/Peoplecounter
be23b35814ec96622ba2f10d1dd56892be0a70b7
6878d8d2006f20d1c8344286b8e46b34294918c6
refs/heads/master
2021-01-23T07:29:47.860843
2017-01-31T10:27:45
2017-01-31T10:27:45
80,510,144
0
0
null
null
null
null
UTF-8
C++
false
false
580
ino
#include <SharpIR.h> #define sharpIR A0 #define model 20150 SharpIR sharp(sharpIR, 40, 5, model); void setup() { Serial.begin(9600); } void loop() { voltageToDistance(); } //calculate Vout of the Sharp IR and print the results void voltageToDistance() { int sensorValue = analogRead(sharpIR); int d...
[ "chinji.hoe@hotmail.com" ]
chinji.hoe@hotmail.com
6da7a8547aea5364acbac57ade36df3b4d6c5a14
97a768eb52eb78845cbfb73b9ee7f98d3065b869
/osrm-backend-5.11.0/src/updater/updater.cpp
569cf30983b4af643e69d1e81bc06d74af0b570a
[ "BSD-2-Clause" ]
permissive
nbailey/amod-abm
541e1d5f6c3e9aebd77f95f62fc62a2258860fe8
458bc8c1b16c0d00b656547b75ba2f9f759f4fd6
refs/heads/master
2021-09-16T21:28:10.295587
2017-09-18T14:00:14
2017-09-18T14:00:14
103,445,393
1
3
null
2017-09-13T20:08:34
2017-09-13T20:08:34
null
UTF-8
C++
false
false
35,195
cpp
#include "updater/updater.hpp" #include "updater/csv_source.hpp" #include "extractor/compressed_edge_container.hpp" #include "extractor/edge_based_graph_factory.hpp" #include "extractor/files.hpp" #include "extractor/node_based_edge.hpp" #include "extractor/packed_osm_ids.hpp" #include "extractor/restriction.hpp" #inc...
[ "wenjian0202@gmail.com" ]
wenjian0202@gmail.com
7b8189b86a0a2bc2fd18edb80b00a7156987f3d8
f23fea7b41150cc5037ddf86cd7a83a4a225b68b
/SDK/BP_HarpoonLauncher_functions.cpp
97b2f93dceb3e606944df98a717073f7c5e4e7b2
[]
no_license
zH4x/SoT-SDK-2.2.0.1
36e1cf7f23ece6e6b45e5885f01ec7e9cd50625e
f2464e2e733637b9fa0075cde6adb5ed2be8cdbd
refs/heads/main
2023-06-06T04:21:06.057614
2021-06-27T22:12:34
2021-06-27T22:12:34
380,845,087
0
0
null
null
null
null
UTF-8
C++
false
false
867
cpp
// Name: SoT, Version: 2.2.0b #include "../pch.h" /*!!DEFINE!!*/ /*!!HELPER_DEF!!*/ /*!!HELPER_INC!!*/ #ifdef _MSC_VER #pragma pack(push, 0x01) #endif namespace CG { //--------------------------------------------------------------------------- // Functions //-----------------------------------------------------...
[ "Massimo.linker@gmail.com" ]
Massimo.linker@gmail.com
f9826d72b6964923d782e42c4d0e96f8c7d89272
11efa4c4c2f2a36f9d8c81dd470899e38a02d432
/DNA.cpp
f5897ddf5f93c0ef48b33e1863522c85a1c7cd2a
[]
no_license
JennyBloom/DNAComparison
db389599e26e76906d393dab7100a6b2f7378547
3743178557d3cd2206eeeebd0ac7e922fb48c57a
refs/heads/master
2020-03-25T22:42:05.284584
2018-08-11T03:57:21
2018-08-11T03:57:21
144,236,871
0
0
null
null
null
null
UTF-8
C++
false
false
3,052
cpp
/* Jenny Bloom 10.9.2015 Homework 5 With help/brainstorming from: Collin Duncan, Darwin, and Jeff (in class) https://en.wikipedia.org/wiki/Hamming_distance http://stackoverflow.com/questions/557170/bit-operation-for-finding-string-difference DESCRIPTION: This program calculates hamming distance and similarity scores f...
[ "hawking@Jennifers-Air.hsd1.co.comcast.net" ]
hawking@Jennifers-Air.hsd1.co.comcast.net
9b6dc8425fc3df573a88d7ffffe6320913e111eb
756c30611bc3d7c9b46ae475f4e98a1babb36117
/src/qtfilechooser.cpp
09df05a044b5e64c6cd4ffb469c8376c144a6619
[]
no_license
vzhr/bnc
315f42c587dbca7440812face70e59e128b5e4c9
43a73f4a7319c1a38c4ae952eed612f3589fb610
refs/heads/master
2022-04-02T13:36:13.626372
2019-10-25T10:09:37
2019-10-25T10:09:37
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,250
cpp
/* ------------------------------------------------------------------------- * Generally useful widget * ------------------------------------------------------------------------- * * Class: qtFileChooser * * Purpose: Widget for selecting a file or directory * * Author: L. Mervart * * Created: 1...
[ "mykhailo.lytvyn@tca.at" ]
mykhailo.lytvyn@tca.at
d4d54a521aabbdef2c99978bcb0004111a3c13cc
6108c8137c21f0f1753dd62b9b877e0eaef90a76
/leetcode_solutions/Remove_Element_27.cpp
7d312580641e1f4c92ff98f05e21ce90cc7da2af
[ "MIT" ]
permissive
lovms/code_snippets
079949d8452d0a56eb0e8b7dd8c2423756958a9f
b7fb16d747bc183b0bd3581703e248cd2cb43ad6
refs/heads/master
2023-05-27T16:11:20.444310
2023-05-16T10:03:28
2023-05-16T10:03:28
129,247,667
0
0
null
null
null
null
UTF-8
C++
false
false
1,107
cpp
#include <iostream> #include <vector> using std::vector; class Solution { public: int removeElement(vector<int>& nums, int val) { int i = 0; // index to the left-most element = `val` int j = 0; // index to the left-most element != `val` in the remain lists on the right of i, so j must be bigger ...
[ "billyxiao@tencent.com" ]
billyxiao@tencent.com
c9438921087810963c5809e41d2e2ceef289c7db
c23b0e4d8090be41fe0ad69a023fa676e4a7e726
/fruits.cpp
a481b4e4d3acff3c06cc668cdd7a28c2b34d0edb
[]
no_license
karan-uppal3/IP-workshop
e6e6883a841596882bbc91ebdbd7bdf033eb8278
7ef6e75d8e00e95a344f4692848ba6a93c1ffd58
refs/heads/master
2022-12-06T03:25:37.124142
2020-08-25T16:41:03
2020-08-25T16:41:03
290,268,712
0
0
null
null
null
null
UTF-8
C++
false
false
1,286
cpp
#include <iostream> #include "opencv2/imgproc.hpp" #include "opencv2/highgui.hpp" #include "opencv2/core/core.hpp" #include <bits/stdc++.h> using namespace std; using namespace cv; int main() { Mat img = imread ("fruits.png",1); int m = img.rows; int n = img.cols; int thrmax,thrmin,thbmax,thbmin,thgmax,thgmin; ...
[ "karan.uppal3@gmail.com" ]
karan.uppal3@gmail.com
60a61fb7e98ddd9a026a96495616183d4c884b92
0eff74b05b60098333ad66cf801bdd93becc9ea4
/second/download/rtorrent/gumtree/rtorrent_old_hunk_118.cpp
4df971d56da789a3dfe22eb6d5befaffecf2fdb5
[]
no_license
niuxu18/logTracker-old
97543445ea7e414ed40bdc681239365d33418975
f2b060f13a0295387fe02187543db124916eb446
refs/heads/master
2021-09-13T21:39:37.686481
2017-12-11T03:36:34
2017-12-11T03:36:34
null
0
0
null
null
null
null
UTF-8
C++
false
false
336
cpp
void WindowFileList::redraw() { m_slotSchedule(this, (cachedTime + rak::timer::from_seconds(10)).round_seconds()); m_canvas->erase(); if (m_download->get_download().size_file_entries() == 0 || m_canvas->get_height() < 2) return; int pos = 0; m_canvas->print( 2, pos, "File"); m_canvas->print(55...
[ "993273596@qq.com" ]
993273596@qq.com
6abd8429ea2f4ba4f39a3034260a3c49e331a62a
5ebd5cee801215bc3302fca26dbe534e6992c086
/blazetest/src/mathtest/dvecdvecadd/V6bVDb.cpp
7cccc4b0f81d6497742d4ff6e4d8ba1b4ad26b3a
[ "BSD-3-Clause" ]
permissive
mhochsteger/blaze
c66d8cf179deeab4f5bd692001cc917fe23e1811
fd397e60717c4870d942055496d5b484beac9f1a
refs/heads/master
2020-09-17T01:56:48.483627
2019-11-20T05:40:29
2019-11-20T05:41:35
223,951,030
0
0
null
null
null
null
UTF-8
C++
false
false
3,722
cpp
//================================================================================================= /*! // \file src/mathtest/dvecdvecadd/V6bVDb.cpp // \brief Source file for the V6bVDb dense vector/dense vector addition math test // // Copyright (C) 2012-2019 Klaus Iglberger - All Rights Reserved // // This file i...
[ "klaus.iglberger@gmail.com" ]
klaus.iglberger@gmail.com
a907fa7fa3f632dbef4988045eb50c685d25e9ae
f94c1cbc8b4cb25be83a1ceb7676082b7f5907c8
/behavioral/command/Editor.h
fdd952240e8820cbb5919f6ee8688b852d42eb62
[]
no_license
dong-nz/cplus_design_patterns
065a11df4f48710df1e28551edd78d99f2b164f8
a2f5b59c6125e2d4f4bbbfd3d6af4a5ba31d8e76
refs/heads/master
2020-07-18T23:53:38.467935
2019-09-11T05:05:05
2019-09-11T05:05:05
206,337,671
0
0
null
null
null
null
UTF-8
C++
false
false
565
h
#ifndef EDITOR_H #define EDITOR_H #include "string" namespace CommandPattern { class Editor { private: std::string text; std::string currentSelection; std::string clipboard; public: Editor(); ~Editor(); void setText(std::string &text); std::stri...
[ "dong@Dongs-MacBook-Pro.local" ]
dong@Dongs-MacBook-Pro.local
eceacb568a321e2451c9498ab63be94a87ccea52
6fa3d87c4df47a15186a7141a80f4aa90c908fc9
/src/hopfield.cpp
891e2254edb2adc9c115cf83c887f78c86823063
[ "MIT" ]
permissive
lorenzosquadrani/plasticity
4dc539c3a9513ea8cb3fa341349c2ee10f4f2df8
6ae648fe537ebbff8432ec04beb58e4acac5871e
refs/heads/main
2023-07-03T12:37:53.274114
2021-08-07T12:06:28
2021-08-07T12:06:28
367,437,263
0
1
NOASSERTION
2021-05-14T17:37:25
2021-05-14T17:37:25
null
UTF-8
C++
false
false
3,398
cpp
#include <hopfield.h> Hopfield :: Hopfield (const int & outputs, const int & batch_size, update_args optimizer, weights_initialization weights_init, int epochs_for_convergency, float convergency_atol, float decay, float delta, floa...
[ "nico.curti2@unibo.it" ]
nico.curti2@unibo.it
fc3d68c0e3504b61cb622194ec8952dcd206f09e
64e4e482243c34b9ebc480f98b9e3eec4cb20a55
/src/crypto/chacha8.h
4df634b9114b1a3dbce861e6bae5cd87ce07bd1c
[ "BSD-3-Clause", "LicenseRef-scancode-unknown-license-reference" ]
permissive
slipperyicarus/external
9b413d6038aa956b112ebf47670973b98dca7838
f0b712571a01f86e793ccc0df0204dbde64e5a7d
refs/heads/master
2021-04-28T16:15:45.217873
2017-11-20T23:23:12
2017-11-20T23:23:12
122,009,880
1
0
null
null
null
null
UTF-8
C++
false
false
3,264
h
// Copyright (c) 2014-2017, The Superior Project // // 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...
[ "mike@asinetworkhn.com" ]
mike@asinetworkhn.com
0e72b794b4854cd741e48373c8291b03415db599
d082515a476ba9487e8942a4b1e23b3919b0172d
/J08/ex01/span.cpp
1ba3afc2ba32f5b4a368e53e0d7c4000e555e3a6
[]
no_license
Sconso/CPP-Pool
eb720718f6d22f908d836943704ac164cbf783e6
c43e77677f6eafcdbd029772059e25fd05bed642
refs/heads/master
2016-09-06T01:51:54.411777
2015-01-16T01:57:31
2015-01-16T01:57:31
29,265,830
0
0
null
null
null
null
UTF-8
C++
false
false
4,710
cpp
// ************************************************************************** // // // // ::: :::::::: // // span.cpp :+: :+: :+: ...
[ "sconso@e1r4p12.42.fr" ]
sconso@e1r4p12.42.fr
0ea6942b163fdd46e81b23c288c0b2fa04746ad2
7f92e3ecfc41a58c3e675d9797d703ef6dd90611
/UninitializedVariables.cpp
2b0b827b86a9db9e52f13ec1a44bf621ecf3d5bb
[]
no_license
vysakhpr/Compiler-Design--Assignment-1
94686c3387c4ad605534d2ace7491d8085067e38
fa53353b45b5f531e6feb7a67b907d5ebfa0b2aa
refs/heads/master
2021-01-19T13:18:00.630857
2017-03-02T06:20:29
2017-03-02T06:20:29
82,374,258
0
0
null
null
null
null
UTF-8
C++
false
false
7,066
cpp
#include "llvm/Pass.h" #include "llvm/IR/Function.h" #include "llvm/Support/raw_ostream.h" #include "llvm/IR/BasicBlock.h" #include "llvm/IR/InstIterator.h" #include "llvm/IR/Instruction.h" #include "llvm/IR/Use.h" #include "llvm/IR/CFG.h" #include <set> #include <algorithm> #include <iterator> using namespace llvm; ...
[ "emailofvysakh@gmail.com" ]
emailofvysakh@gmail.com
a240b21dc4aad554ebd9523375d2bfa03dab6761
e6e9bf6863abe9e23ab561e2edbf29297ba6c38b
/src/test/fuzz/crypto_aes256.cpp
c94009631fcc7b0ea6c55de0c37b888b9a6eee0a
[ "MIT" ]
permissive
SinnerPolska/ocvcoin
665efb258ddcc3862e669313a8ca63d941f090e9
2ef2f7d6ca042837517d68bbba7c3729692576a9
refs/heads/master
2023-08-22T07:23:06.390344
2021-10-22T12:05:46
2021-10-22T12:05:46
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,164
cpp
// Copyright (c) 2020 The Ocvcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include <crypto/aes.h> #include <test/fuzz/FuzzedDataProvider.h> #include <test/fuzz/fuzz.h> #include <test/fuzz/util.h> #includ...
[ "dev@ocvcoin.com" ]
dev@ocvcoin.com
e912d8b20936f5ca0bcea54486119dfb2d4400c0
1cc2387c379afe38390dcaa2374f7b0b84431dfd
/Proxy.h
3036419734311de0f91fcf86ccafd3ed4cccdba9
[ "MIT" ]
permissive
aurimasc/android-jni-bridge
70fa0201877d9799009311404af9eb75d697388e
a2055d5602330376a471b9fbc05748e70349c854
refs/heads/master
2020-03-27T23:54:46.404826
2018-09-06T16:14:54
2018-09-06T16:14:54
147,357,735
0
0
MIT
2018-09-04T14:18:09
2018-09-04T14:18:08
null
UTF-8
C++
false
false
1,754
h
#pragma once #include "API.h" namespace jni { class ProxyObject : public virtual ProxyInvoker { // Dispatch invoke calls public: virtual jobject __Invoke(jclass clazz, jmethodID mid, jobjectArray args); // These functions are special and always forwarded protected: virtual ::jint HashCode() const; virtual ::jboo...
[ "sternevald@gmail.com" ]
sternevald@gmail.com
1ec0acaa9532ebd3531d023f81ef9b1d017806b9
b9c4c1dc7e62f630c5464a19573fa211dc666ac8
/Source/GraphFormatter/Private/FormatterHacker.cpp
aab83be10382fb083ba1132c08b487fee338309d
[ "MIT" ]
permissive
ProjectBorealis/graphformatter
9f0df3ddb3655b81f2e5327c43563c5321561201
a2ebf5f44acf81321ee73ed908fdb6db2e68cd3c
refs/heads/master
2021-01-03T00:04:35.246146
2020-03-02T10:18:47
2020-03-02T10:18:56
239,826,442
4
0
NOASSERTION
2020-02-11T17:47:09
2020-02-11T17:47:08
null
UTF-8
C++
false
false
12,624
cpp
/*--------------------------------------------------------------------------------------------- * Copyright (c) Howaajin. All rights reserved. * Licensed under the MIT License. See License in the project root for license information. *-----------------------------------------------------------------------------...
[ "howaajin@outlook.com" ]
howaajin@outlook.com
a83f09b71d73c26a6b2255e3c8045902c20fb67c
9c7c58220a546d583e22f8737a59e7cc8bb206e6
/Project/MyProject/MyProject/Plugins/ExportAssetDependecies/Source/ExportAssetDependecies/Public/ExportAssetDependecies.h
4f1448a1102da06016a4e1b87d55f402bab87b86
[]
no_license
SiCoYu/UE
7176f9ece890e226f21cf972e5da4c3c4c4bfe41
31722c056d40ad362e5c4a0cba53b05f51a19324
refs/heads/master
2021-03-08T05:00:32.137142
2019-07-03T12:20:25
2019-07-03T12:20:25
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,456
h
// Copyright 1998-2018 Epic Games, Inc. All Rights Reserved. #pragma once #include "ModuleManager.h" #include "DependicesInfo.h" class FToolBarBuilder; class FMenuBuilder; class UExportAssetDependeciesSettings; class FAssetRegistryModule; //struct FDependicesInfo; DECLARE_LOG_CATEGORY_EXTERN(LogExportAssetDependeci...
[ "kuangben2001@163.com" ]
kuangben2001@163.com
0091331312affcdf34568b93b44b3c30acac79f2
73831cf7a998d649f47264798a3d13f3939a9049
/gitcpplibs/exercism-exercises/.svn/pristine/e9/e9a83c8c38cf267afb19b49ff1055bf6a9214d8e.svn-base
ba0aa38a139b43c5eaa3135b1514933e167d8799
[]
no_license
abhi3700/cpp-playground
2c4fa8f0d768e509f4f2ec603ee6322e362bbd8f
53392afc5d7e298e4307c10579c31830987fc1c3
refs/heads/master
2021-08-18T18:18:14.480713
2021-06-11T05:11:24
2021-06-11T05:11:24
149,982,064
0
0
null
null
null
null
UTF-8
C++
false
false
895
#include "all_your_base.h" #include <vector> namespace all_your_base { std::vector<unsigned int> convert(unsigned int input_base, const std::vector<unsigned int>& input_digits, unsigned int output_base) { std::vector<unsigned int> b; ...
[ "dalvath3700@gmail.com" ]
dalvath3700@gmail.com
bf77a54a83ed3b0fb2e3a3ee7a9e3e5489f4348a
33420a7cbd83614c246d5cea320f83819779438b
/PA_Lab_00/source/tipo_pelo.cpp
6b93d32f59146ca9e9d04bf236ea0592f9337e2e
[]
no_license
cmgp/LabProgAvan0
0abbbdf762f6c0849be557b085520080c2928983
85f5bd4ddcae7f8b8c3a13cdb0e7f1148073e14a
refs/heads/master
2020-05-17T08:35:01.841896
2019-04-26T11:43:03
2019-04-26T11:43:03
183,610,083
0
0
null
null
null
null
UTF-8
C++
false
false
448
cpp
#include <ostream> #include "tipo_pelo.hpp" std::ostream& operator<<(std::ostream& os, TipoPelo const tipo_pelo) { switch (tipo_pelo) { case TipoPelo::Corto: os << "Corto"; break; case TipoPelo::Mediano: os << "Mediano"; break; ...
[ "cmgpguerracarlos1987@gmail.com" ]
cmgpguerracarlos1987@gmail.com
8c24924b5e8bb7e566b5c21b98e9466e48487d29
3b9b4049a8e7d38b49e07bb752780b2f1d792851
/src/native_client/toolchain/linux_x86/pnacl_newlib/include/llvm/CodeGen/SelectionDAGISel.h
a8743754f40eee9b21dde0786e0de086828b3344
[ "BSD-3-Clause", "Apache-2.0", "Zlib", "Classpath-exception-2.0", "BSD-Source-Code", "LZMA-exception", "LicenseRef-scancode-unicode", "LGPL-3.0-only", "LGPL-2.0-or-later", "LicenseRef-scancode-philippe-de-muyter", "LicenseRef-scancode-warranty-disclaimer", "LicenseRef-scancode-intel-osl-1993", ...
permissive
webosce/chromium53
f8e745e91363586aee9620c609aacf15b3261540
9171447efcf0bb393d41d1dc877c7c13c46d8e38
refs/heads/webosce
2020-03-26T23:08:14.416858
2018-08-23T08:35:17
2018-09-20T14:25:18
145,513,343
0
2
Apache-2.0
2019-08-21T22:44:55
2018-08-21T05:52:31
null
UTF-8
C++
false
false
10,994
h
//===-- llvm/CodeGen/SelectionDAGISel.h - Common Base Class------*- C++ -*-===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===-------------------------------------------------------...
[ "changhyeok.bae@lge.com" ]
changhyeok.bae@lge.com
08b16a843027bfa5c758d258491e2aa904accef7
f6cf14142621b8c4709c6f2073172f39577b1964
/api2/lib/rec/robotino3/iocom/tag/InfoFwd.h
a0378ea32380afb1251a478bfc05b245678a6e5e
[]
no_license
BusHero/robotino_api2
f3eef6c1ace2ff5a8b93db691aa779db8a9ce3a1
9757814871aa90977c2548a8a558f4b2cb015e5d
refs/heads/master
2021-06-18T21:32:14.390621
2021-02-18T15:21:48
2021-02-18T15:21:48
165,231,765
1
0
null
null
null
null
UTF-8
C++
false
false
316
h
#ifndef _REC_ROBOTINO3_IOCOM_TAG_InfoFWD_H_ #define _REC_ROBOTINO3_IOCOM_TAG_InfoFWD_H_ #include <QtCore> namespace rec { namespace robotino3 { namespace iocom { namespace tag { class Info; typedef QSharedPointer< Info > InfoPointer; } } } } #endif //_REC_ROBOTINO3_IOCOM_TAG_InfoFWD_H_
[ "petru.cervac@gmail.com" ]
petru.cervac@gmail.com
2b1f8b641cf20f382fd8bc153e778ba14981d09c
7b544a8e53114d4239e94702ccb30fbd30f99dbb
/app/jni/sqlcipher.cpp
3c8dfac09ad7756890fb61f0a63aded7ed77887a
[]
no_license
khmermenten/AndroidMakeEncryption
5a600c974f0d9c39e550117d85a4ece27f3b0006
c32cb318c230c75aea8ec35a803aee36863e26c7
refs/heads/master
2020-05-12T22:27:00.153410
2019-04-18T20:41:03
2019-04-18T20:41:03
181,557,646
0
0
null
null
null
null
UTF-8
C++
false
false
1,183
cpp
#include <jni.h> #include <syscall.h> #define SQLITE_HAS_CODEC // make sure this line is here #include <sqlite3.h> #include <android/log.h> static int callback(void *NotUsed, int argc, char **argv, char **azColName) { int i; for(i = 0; i<argc; i++) { __android_log_print(ANDROID_LOG_DEBUG, "TAG", "%s: %...
[ "randy_yiv@yahoo.com" ]
randy_yiv@yahoo.com
2fd7c48a510d30198279b4ad49bd40eb97c6afa2
8b6b8639ba21cb271dacf60a2c999d852b1aa998
/flens/vectortypes/impl/dv/elementclosure.h
2871490157270b3da56f62613fe4b62f9630f365
[ "BSD-2-Clause" ]
permissive
michael-lehn/FLENS
6673450461f2607a8b6c8242aa4f7927a70c4e23
80495fa97dda42a0acafc8f83fc9639ae36d2e10
refs/heads/public
2022-02-14T13:05:37.624164
2022-01-26T13:27:47
2022-01-26T13:27:47
2,981,988
111
33
NOASSERTION
2021-08-04T01:13:31
2011-12-14T18:21:41
C++
UTF-8
C++
false
false
2,736
h
/* * Copyright (c) 2010, Michael Lehn * * 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,...
[ "michael.lehn@uni-ulm.de" ]
michael.lehn@uni-ulm.de
51c09bcbd3e5ef29a3e74bd81b7d5e5435d390be
5d37b94cc2ad37e6d651dad41b555ef0616f0a01
/mediatek/proprietary/hardware/mtkcam/middleware/v1.4/v1/StreamBufferProviders/ZsdShotStreamBufHandler.cpp
b86cc111cad238181674e43dc44a56c0dbe30046
[]
no_license
SupaSaiyajinRoze/vendor_AOSP
965de33f39192e2d998b3577050deade08b7e326
4e7966126c5475a20df2733bcadf358694711550
refs/heads/master
2021-01-20T06:04:04.328759
2016-11-08T01:09:37
2016-11-08T01:09:37
null
0
0
null
null
null
null
UTF-8
C++
false
false
14,000
cpp
/* Copyright Statement: * * This software/firmware and related documentation ("MediaTek Software") are * protected under relevant copyright laws. The information contained herein * is confidential and proprietary to MediaTek Inc. and/or its licensors. * Without the prior written permission of MediaTek inc. and/or ...
[ "fetpoh@mail.ru" ]
fetpoh@mail.ru
bd198fd1a9c249c0ae0f581a7ee9bf63479127ad
f3480118a206e14633e39d6590c49baafdc743ec
/PolkinAV.h
e1d0ef95640899954a7442bcad2d22b4f570b1da
[]
no_license
mrsu-ru/2016-203
3ff7f008e769dafcb5b4e058941c81f3a66a4368
d81847cd3c97e5f99daa0c4c0cf7e1cea139ed03
refs/heads/master
2020-12-24T12:05:25.825233
2017-02-03T06:12:01
2017-02-03T06:12:01
76,524,344
0
2
null
2017-02-03T06:12:02
2016-12-15T04:38:24
C++
UTF-8
C++
false
false
649
h
#pragma once #include "lab.h" class PolkinAV : public lab { /** * Метод Гаусса */ virtual void lab1(); /** * Метод Гаусса с выбором главного элемента */ virtual void lab2(); /** * Метод квадратного корня (метод Холецкого) */ virtual void lab3(); /** * Метод прогонки */ virtual v...
[ "metuct@mail.ru" ]
metuct@mail.ru
9a5c224969398255364efae893ad74d750d651ea
0934782cc900ef32616d3c5204bca05b2aa34032
/SDK/RC_WBP_PlayerAwardsScreen_functions.cpp
456c62183cb9f652f169995d67508f3f057ef906
[]
no_license
igromanru/RogueCompany-SDK-9-24-2020
da959376e5464e505486cf0df01fff71dde212cf
fcab8fd45cf256c6f521d94f295e2a76701c411d
refs/heads/master
2022-12-18T05:30:30.039119
2020-09-25T01:12:25
2020-09-25T01:12:25
null
0
0
null
null
null
null
UTF-8
C++
false
false
9,613
cpp
// RogueCompany (4.24) SDK #ifdef _MSC_VER #pragma pack(push, 0x8) #endif #include "../SDK.hpp" namespace SDK { //--------------------------------------------------------------------------- //Functions //--------------------------------------------------------------------------- // Function WBP_PlayerAwardsScreen....
[ "60810131+frankie-11@users.noreply.github.com" ]
60810131+frankie-11@users.noreply.github.com
fd89d6625635eeefadc8e27f6502e2117282b9a8
09a3aab994edd43caf331f92d6e659fdd53b26ff
/src/driver/lib/falcon_api.cpp
7e3d27f8cc0c2716ab51d4fe36419a5d65814745
[]
no_license
RReichert/novint-falcon
11bb057ec592868484d7e850ef723dc362e55bc7
4f036218e118219a4e8608b25f444a9261fa6d0e
refs/heads/master
2021-01-20T06:03:44.441847
2017-04-30T07:20:38
2017-04-30T07:20:38
89,835,430
0
0
null
null
null
null
UTF-8
C++
false
false
23
cpp
#include <falcon_api.h>
[ "reichert.rodrigo@gmail.com" ]
reichert.rodrigo@gmail.com
a52f859782ca629da3b20266539747529623f773
e6cd51943f682a006da8b1245e6585e453334687
/Classes/Native/AssemblyU2DCSharp_WMG_Events_WMG_Click_H316241947.h
33ded12fdea587a0ee29aa64042f7893d23034c4
[]
no_license
JasonRy/Seer_0.9.1
a7495d385a6c5bcec6040ce061410d9eea4d09eb
f727a9442015b2dc03fc19d2fa68dc88ca8bfac0
refs/heads/master
2021-07-23T06:23:40.432032
2017-11-03T07:57:23
2017-11-03T08:53:35
109,366,091
0
0
null
null
null
null
UTF-8
C++
false
false
897
h
#pragma once #include "il2cpp-config.h" #ifndef _MSC_VER # include <alloca.h> #else # include <malloc.h> #endif #include <stdint.h> // WMG_Series struct WMG_Series_t2715102821; // WMG_Node struct WMG_Node_t3041788272; // UnityEngine.EventSystems.PointerEventData struct PointerEventData_t1848751023; // System.IAsyn...
[ "renxiaoyi@me.com" ]
renxiaoyi@me.com
afd6718202cff0721b5a20011a804ece07911f7f
cbb2f00025426660f9817bec941b5d2077dfd034
/Bargaining Table.cpp
06487d581de54ee994102891d9b0c00e7affd925
[]
no_license
aymanmahran/CPP-Problem-Solving
3aa3896f046c3410e8c53aa9bcd452f14b1bc2c7
8b29e3aad1bb06628e821ed670268ccd807a4b9f
refs/heads/main
2023-07-27T10:28:19.251499
2021-09-14T13:28:01
2021-09-14T13:28:01
406,370,031
0
0
null
null
null
null
UTF-8
C++
false
false
1,707
cpp
#include<bits/stdc++.h> using namespace std; int x,y,st,ans,p; char s[27][27]; bool flag; void tot(int r){ int cnt=0; int pp=0; for(int i=0;i<=y;i++){ if(s[r][i]=='0'){ cnt++; } else{ if(cnt>0){ pp=1+cnt; pp*=2; ans=max(ans,pp); cnt=0;...
[ "aymang.abdallah@gmail.com" ]
aymang.abdallah@gmail.com
2b79bd90342e3ed3235411ccb2df4d25f978e9d0
6c8a10281ee8ea359692a93ded70821126dfc111
/LinkedListSimple/LinkedListSimple/LinkedListSimple.cpp
efff6341adb78ebbc038a07adea2ec76384282b7
[]
no_license
johnsonj/SimplyAcademic
d5309e624dfdba8dfbcedb023f96355ba1b9fe38
6bda1be31431ab1cb2b622b4eeab8e4a83c0c853
refs/heads/master
2021-01-11T01:33:26.403727
2016-04-22T03:20:07
2016-04-22T03:20:07
24,214,835
0
0
null
null
null
null
UTF-8
C++
false
false
3,909
cpp
// LinkedListSimple.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include "TestSuite.h" #include<memory> #define SENTINAL_VALUE -1 /* struct Node { Node* next; int val; Node() : next(nullptr), val(SENTINAL_VALUE) {} Node(int val) : next(nullptr), val(val) {} }; Node* merge_b...
[ "jeff@classbug.com" ]
jeff@classbug.com
2ce69a0942939fac414ab2d91b27b2f4d8e6b6cf
fc02f04faa04a863a2ff5775137cbbae2ad1d490
/src/PipelineLayout.cpp
46340eb604e2d3583f89bb657f83e34c25c2054c
[ "MIT" ]
permissive
ComicSansMS/GhulbusVulkan
2e6f9527fcf2aa3e77c309a80ebbef8c40aca722
b24ffb892a7573c957aed443a3fbd7ec281556e7
refs/heads/master
2021-01-12T10:03:15.408140
2020-12-07T14:03:50
2020-12-07T14:03:50
76,333,420
0
0
null
null
null
null
UTF-8
C++
false
false
719
cpp
#include <gbVk/PipelineLayout.hpp> #include <gbVk/Exceptions.hpp> #include <gbBase/Assert.hpp> namespace GHULBUS_VULKAN_NAMESPACE { PipelineLayout::PipelineLayout(VkDevice logical_device, VkPipelineLayout pipeline_layout) :m_pipelineLayout(pipeline_layout), m_device(logical_device) { } PipelineLayout::~Pipelin...
[ "der_ghulbus@ghulbus-inc.de" ]
der_ghulbus@ghulbus-inc.de
f173cad87def63297dc36fc33044d147466e3dc3
fe3e32d4beef492b25eb6315047f83174377cf07
/Server/include/variant-marshaler.h
5b1d3f8c2937c27ed4f5bafda49764eb0c683f5b
[]
no_license
ez8801/3G
b6450eb1f32373b1e01e47eec18478480baf1eac
87ab9b72ac133f5d6a8d64bf39b02eba4daf7cf4
refs/heads/master
2021-01-22T08:09:49.949265
2017-12-14T14:00:37
2017-12-14T14:00:37
92,603,043
1
2
null
null
null
null
UTF-8
C++
false
false
646
h
/* 106 228 203 199 203 251 69 164 171 249 223 147 102 233 72 137 119 94 82 90 79 10 155 183 241 217 150 77 172 108 93 173 68 19 40 212 204 206 54 180 157 223 26 99 125 119 19 97 77 110 19 247 97 96 131 5 72 145 14 214 105 62 226 154 70 6 217 121 223 90 234 52 213 76 97 23 184 */ #pragma once #include "Variant.h" #i...
[ "lsj616hi@gmail.com" ]
lsj616hi@gmail.com
b1121b1e4632feab40aa909507fc44812e982cde
3e079a72fac6589d9ced45f0eb09b346c8b15683
/base/enumerate.h
2c46e91800b59b93a54fa80ebe597b4df89a14bf
[ "MIT" ]
permissive
vasiliykarasev/dungeon
97fadbd3e0dab7b002ce246c8874caae08acb9c2
0ea62593ec68ddb0069ef5d79356a1245d4364d5
refs/heads/master
2021-08-08T02:19:54.241098
2020-07-18T19:59:35
2020-07-18T19:59:35
202,946,529
0
0
null
null
null
null
UTF-8
C++
false
false
1,027
h
#pragma once #include <tuple> namespace dungeon { // Python-like syntax for enumerating a collection. // Mostly stolen from: // http://reedbeta.com/blog/python-like-enumerate-in-cpp17/ // See enumerate_test for usage examples. // This is primarily useful with C++17. template <typename T, typename IteratorT...
[ "karasev00@gmail.com" ]
karasev00@gmail.com
f8144e09b5caeda202e6ed736ec31fce4cbb4a00
14fcfff8666f78d95289c6f37a953e9688265b25
/Source/StairwayLanding.cpp
00502269d4b644edaf27e1e882bcd02c4a4c0c40
[]
no_license
AkrionXxarr/Text-Adventure-Game
e916d62b033b28f9e75b814ae1e8b2e8432e8b90
c4036717080fc6350f22330cef94227504193903
refs/heads/master
2021-01-02T08:09:19.710089
2015-04-22T19:28:15
2015-04-22T19:28:15
30,620,675
0
0
null
null
null
null
UTF-8
C++
false
false
2,503
cpp
#include "LocalHeaders.hpp" #include "GlobalHeaders.hpp" #include "DefaultObjEvents.hpp" using namespace std; #include <stdlib.h> #include <time.h> static enum OBJECTS { NO_OBJECT, STAIRS_UP, STAIRS_DOWN, DOUBLE_DOORS }; static void doubleDoors_Examine(Obj::Template* obj) { srand((unsigned int)time(NULL)); ...
[ "AkrionXxarr@gmail.com" ]
AkrionXxarr@gmail.com
943973b5af6965d77cbc9ede65da8027e40c7740
78d9c81137f5b19fc8ceea489593ad32d8b12c2f
/c/036.cpp
8326b4914c40382cbf4e6feee4db5af35e2c8292
[]
no_license
tscholl2/project-euler-problems
54dfa23de67616e3845cd61b00bfdd7e72daaa03
511adb8013329e4b6b5e8888748bbb23d37f83b2
refs/heads/main
2022-12-22T02:16:07.343742
2020-09-17T20:47:20
2020-09-17T20:47:20
288,541,302
0
0
null
null
null
null
UTF-8
C++
false
false
845
cpp
/* The decimal number, 585 = 10010010012 (binary), is palindromic in both bases. Find the sum of all numbers, less than one million, which are palindromic in base 10 and base 2. (Please note that the palindromic number, in either base, may not include leading zeros.) */ #include <iostream> #include <vector> bool is_...
[ "traviswscholl@gmail.com" ]
traviswscholl@gmail.com
751f8263468ae9a3b9df515e640e0cc08760cc53
1069ac1e9c3371c8b2ac95fc277b6fc776ba2e86
/lockout_client/lockout.ino
abf72a44b3bae55dd0e2ab40e1af8a9bdafea801
[]
no_license
tkendo/makerspace
a9279a8ba11c0d1b742e440377989ebcdd5411bc
b1415f23ba967d68cdd3d6e2f8e5d6ba16afa23c
refs/heads/master
2021-01-11T11:38:11.222532
2017-05-01T23:11:39
2017-05-01T23:11:39
79,832,179
0
0
null
null
null
null
UTF-8
C++
false
false
3,699
ino
/* lockout.ino * * Authors: Evan Cooper * Jack Watkin * * Date Version Initials Comments *------------------------------------------- * 20Jan17 01.00.00 EC Initial release * */ #include <ESP8266WiFi.h> #define MACHINE_ID 1 #define SOLENOID 5 #define GREEN_LED 0 #define RED_LED 4 ...
[ "thomaskendo@gmail.com" ]
thomaskendo@gmail.com
6d5b46060d2bc8aeccc1d0d8dbf3c0bf4194a7e8
b5cd18802393ad76e31ed524dc5b500d49166e09
/src/qt/qrcodedialog.cpp
eaab06cef6b999c2271a4d419abce40fa241606e
[ "MIT" ]
permissive
frontibit/riestercoin
c5b2d129ca914ae705ae68cf34573b2201862b34
71243841f72031537c99750d2045ab376c5c41bf
refs/heads/master
2020-04-26T09:57:11.666980
2013-12-25T22:07:42
2013-12-25T22:07:42
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,347
cpp
#include "qrcodedialog.h" #include "ui_qrcodedialog.h" #include "bitcoinunits.h" #include "guiconstants.h" #include "guiutil.h" #include "optionsmodel.h" #include <QPixmap> #if QT_VERSION < 0x050000 #include <QUrl> #endif #include <qrencode.h> QRCodeDialog::QRCodeDialog(const QString &addr, const QString &label, bo...
[ "max@miner3" ]
max@miner3
ec725b8dd436bf4c41af5731fb1a284008c73a35
a5054df3fa38dbf5c7c03d8721f9bcfe04db570f
/DisplayLib/OpenGL/GLWin32.h
c06dc792f752fb35925749793d6b18eb7274dbc2
[ "MIT" ]
permissive
Bjohh/SuperPlay
850a5baa3f114ea65b8ed4629bdff9c0e4c040e9
e2d33cb52635251cd3f180b73f5fb08944940d18
refs/heads/master
2023-03-16T20:27:49.749763
2020-12-09T19:58:16
2020-12-09T19:58:16
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,019
h
// This code is part of the Super Play Library (http://www.superplay.info), // and may only be used under the terms contained in the LICENSE file, // included with the Super Play Library. // // THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY // KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING B...
[ "cdoty@rastersoft.net" ]
cdoty@rastersoft.net
b428196774874c9a7c80f20cd18b75d3514e5b89
ba9485e8ea33acee24dc7bd61049ecfe9f8b8930
/aoj/itp1_5_a.cpp
326cabccc4b07032ad5bee30cc1dbe0f7a16a6c5
[]
no_license
diohabara/competitive_programming
a0b90a74b0b923a636b9c82c75b690fef11fe8a4
1fb493eb44ce03e289d1245bf7d3dc450f513135
refs/heads/master
2021-12-11T22:43:40.925262
2021-11-06T12:56:49
2021-11-06T12:56:49
166,757,685
1
0
null
null
null
null
UTF-8
C++
false
false
578
cpp
#include <bits/stdc++.h> #define rep(i, n) for (int i = 0; i < n; i++) #define repr(i, n) for (int i = n; i >= 0; i--) #define for1(i, m, n) for (int i = m; i < n; i++) #define ll long long #define endl '\n' using namespace std; int main() { cin.tie(0); ios::sync_with_stdio(false); while(true) { in...
[ "kadoitakemaru0902@g.ecc.u-tokyo.ac.jp" ]
kadoitakemaru0902@g.ecc.u-tokyo.ac.jp
779ede86795649185200ba3f292c3941e7443262
ed10dc841d5b4f6a038e8f24f603750992d9fae9
/lldb/source/Plugins/UnwindAssembly/InstEmulation/UnwindAssemblyInstEmulation.cpp
04ce23908fd166c6b94b36118e94dd9fa37c9387
[ "NCSA", "LLVM-exception", "Apache-2.0" ]
permissive
WYK15/swift-Ollvm10
90c2f0ade099a1cc545183eba5c5a69765320401
ea68224ab23470963b68dfcc28b5ac769a070ea3
refs/heads/main
2023-03-30T20:02:58.305792
2021-04-07T02:41:01
2021-04-07T02:41:01
355,189,226
5
0
null
null
null
null
UTF-8
C++
false
false
28,493
cpp
//===-- UnwindAssemblyInstEmulation.cpp --------------------------*- C++-*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===---------------------------...
[ "wangyankun@ishumei.com" ]
wangyankun@ishumei.com
66441924ed67eb7357a42af4e746aad3e82c3a01
922b0e3fce5d6eb540efae5ab51e8a1e0503649a
/TouchGFX/generated/images/src/BitmapDatabase.cpp
9c8d94be5d41166cc7df0b52c906e769ce2da825
[]
no_license
saurabh-nishad/STM32WB-TouchGFX
826c7df1c4649adff1076b8a5f61ed97e62159fe
801631f3bfc439eb6428bf39f69882dfeec6738b
refs/heads/master
2023-04-23T18:11:23.775820
2021-05-12T14:21:50
2021-05-12T14:21:50
360,816,182
0
0
null
null
null
null
UTF-8
C++
false
false
1,774
cpp
// 4.16.1 0xcbed9797 // Generated by imageconverter. Please, do not edit! #include <BitmapDatabase.hpp> #include <touchgfx/Bitmap.hpp> extern const unsigned char image_blue_clocks_backgrounds_clock_classic_background[]; // BITMAP_BLUE_CLOCKS_BACKGROUNDS_CLOCK_CLASSIC_BACKGROUND_ID = 0, Size: 233x243 pixels extern con...
[ "saurabh.nishad@outlook.com" ]
saurabh.nishad@outlook.com