blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 4 201 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2
values | repo_name stringlengths 7 100 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 260
values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 11.4k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 17
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 80
values | src_encoding stringclasses 28
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 8 9.86M | extension stringclasses 52
values | content stringlengths 8 9.86M | authors listlengths 1 1 | author stringlengths 0 119 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
aa20744cfdfaaae2a8c11f1cba9f3370ec270056 | fb95534e8519acb3670ee9743ddb15bf09232e70 | /examples/xtd.core.examples/network/udp_client_ip_v4/src/udp_client_ip_v4.cpp | 14837535d536ca48ef52bd801a91aecafdd24340 | [
"MIT"
] | permissive | niansa/xtd | a5050e27fda1f092cea85db264820d6518994893 | 4d412ab046f51da2e5baf782f9f2f5bb23c49840 | refs/heads/master | 2023-09-01T01:13:25.592979 | 2021-10-28T14:30:05 | 2021-10-28T14:30:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,143 | cpp | #include <xtd/xtd>
using namespace std;
using namespace std::literals;
using namespace xtd;
using namespace xtd::net;
using namespace xtd::net::sockets;
int main() {
auto terminate_app = false;
thread server([&] {
udp_client udp(ip_end_point(ip_address::any, 9400));
while (!terminate_app) {
... | [
"gammasoft71@gmail.com"
] | gammasoft71@gmail.com |
f1004bcaa17593c1e445d2463df1c292002911df | 708b5085608a4bbda3c95a490ef1b9d21df2e1bd | /Ex02/function.cpp | 7785a843b1426ebf903cd6aa9e8a07ee2910f525 | [] | no_license | nbnkhanh/cpp-fun | 5a00bd7902c8e75108aca2c9d0f0863e6518f542 | c3446f9de51b68d6eb5f4139ac01365b6df63e9b | refs/heads/master | 2020-04-25T18:50:17.438760 | 2019-05-28T18:32:48 | 2019-05-28T18:32:48 | 172,997,996 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,652 | cpp | #include"function.h"
void insert(int key, Node*&root) {
if (root == NULL) {
root = new Node;
root->num = key;
root->left = NULL;
root->right = NULL;
return;
}
Node* cur = root;
while (1) {
if (key > cur->num) {
if (cur->right == NULL) {
cur->right = new Node;
cur = cur->right;
cur->right ... | [
"nbnkhanh@apcs.vn"
] | nbnkhanh@apcs.vn |
598fca908431b2c43ad9dcd25a0e681755eba243 | a32df05a13f6642a1f8a0163b791b4b4ff75db7d | /CodingNinjas/min_chocs.cpp | d2d8494e6225c60a90b540445ac4fbccfceb22de | [] | no_license | keshavvinayak01/Competitive-questions | 1f699b069737889ec9b35883dff5b1fde7665d06 | f9ce4bc9e0d097e95b8988f1e86730a89fdfafbf | refs/heads/master | 2021-06-19T03:52:06.901347 | 2021-04-16T13:09:12 | 2021-04-16T13:09:12 | 204,683,295 | 7 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 635 | cpp | #include<bits/stdc++.h>
using namespace std;
int getMin(int *a, int n){
int dp[n];
dp[0] = 1;
for(int i=1; i < n; i++){
if(a[i] > a[i-1]){
dp[i] = dp[i-1] + 1;
}
else if(a[i] <= a[i-1]){
dp[i] = 1;
}
}
for(int i = n-2; i >= 0; i--){
if... | [
"keshavvinayakjha@gmail.com"
] | keshavvinayakjha@gmail.com |
9aca3b173d05988845f835279405be95677ac0d6 | 086dd8c69ed54e534cc8665284e0dc2b75a1f3ac | /proj/zadatak2/src/SectionManager.cpp | dc0c6169679729be67adf7cbfeebcf02703515a6 | [] | no_license | uros117/system_software_project | bb9d7cc8cedbfd816045307af59d36c59bd65289 | e473f24e5387c095623933d0a8bb705621f135e4 | refs/heads/main | 2023-08-28T21:10:09.836837 | 2021-11-06T17:31:50 | 2021-11-06T17:31:50 | 425,303,355 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,534 | cpp | #include <iostream>
#include <iomanip>
#include <string>
#include <list>
#include <vector>
#include "SectionData.hpp"
#include "SectionManager.hpp"
#include "LinkerException.hpp"
SectionManager::SectionManager() :
list(), currentSection(nullptr) {
//list.push_back(SectionData("UND"));
//list.push_back(Sec... | [
"uros@programmer.net"
] | uros@programmer.net |
d167da959cc9e09fd93a2c00cd469de52e94fa49 | 0115cfe0ca89264d3e25616943c3437d24ac0497 | /cpp/testing_frameworks/test_doctest.cpp | 88ccf95da14cc240a4f6ee97acef51bcad8f7cfe | [] | no_license | shakfu/polylab | 9024918681fe4807b4e5e2da4bba04453566bae1 | 9dce4d30120981e34bbbbc6f2caaff6e16a6cfbd | refs/heads/master | 2023-08-18T05:41:01.786936 | 2023-07-30T22:36:52 | 2023-07-30T22:36:52 | 62,841,098 | 3 | 0 | null | 2022-04-21T22:25:43 | 2016-07-07T22:08:47 | C | UTF-8 | C++ | false | false | 334 | cpp | #define DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN
#include "doctest.h"
int factorial(int number) { return number <= 1 ? number : factorial(number - 1) * number; }
TEST_CASE("testing the factorial function") {
CHECK(factorial(1) == 1);
CHECK(factorial(2) == 2);
CHECK(factorial(3) == 6);
CHECK(factorial(10) ==... | [
"shakeeb.alireza@rezayat.net"
] | shakeeb.alireza@rezayat.net |
106dd1e710ac5579a93689485c9b386b56465209 | 05d3020b5fdb58d7280bcf5b3417dc0343a629a5 | /GeneralNumber.h | 6bf0f6920b1c04c457231b9f8828402be0366e2c | [] | no_license | godeva/simpleCalc | 6aa8c43d0a5743d7fbd11ab649043cdfe5b7f7a5 | 7270787e6451752002f73b491c3e7b6125963158 | refs/heads/master | 2021-01-11T03:24:07.760916 | 2016-10-16T01:02:47 | 2016-10-16T01:02:47 | 71,012,765 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,610 | h |
// Maximum number of digits in a long integer, including possible sign
// Not necessarily portable -- this works for 64-bit longs.
#define MAX_DIGITS_IN_LONG (20)
// Class "prototypes" to solve the forward reference problem:
class GeneralNumber;
class GeneralLong;
class GeneralRational;
class GeneralDouble;
/********... | [
"noreply@github.com"
] | noreply@github.com |
c223c1cfb41241b1a2ac424461d731cb3e6fdf43 | 336fbff1ecfc3a49e473cf7b22c020067e71850f | /Ultimate/GptEntry.h | d52737365fd47efb5291e0464ab4cee9b674442b | [] | no_license | wadedeveloper4615/ultimate | 23612ff4fd9a5efe55f59e3cdb5b08679224f536 | a4d884a74dd73dcfecf750eba4c62849f8187e16 | refs/heads/main | 2023-07-14T06:28:48.094326 | 2021-08-27T18:19:20 | 2021-08-27T18:19:20 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,579 | h | #if !defined(AFX_GPTENTRY_H__37FE897B_D830_4A80_A01E_133F22E2C5CD__INCLUDED_)
#define AFX_GPTENTRY_H__37FE897B_D830_4A80_A01E_133F22E2C5CD__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// GptEntry.h : header file
//
/////////////////////////////////////////////////////////////////////////////
... | [
"wade4615@gmail.com"
] | wade4615@gmail.com |
2df35fe2401058bb40f20dd711c8ebafe14c2c3d | 4a212434c3b474f553f77da184251f5022598ab7 | /boost/boost_1_66_0/libs/asio/test/ts/buffer.cpp | a9c9bdee1d27c5a671f3fb93f47fd9d99b25468b | [
"BSL-1.0"
] | permissive | EKuliiev/3d_party | 8e905655a5d55b6dbd78126e8091858a61281483 | 0f0681e1f7271734efdb06ae548e4ce6d2e02dd7 | refs/heads/master | 2020-03-28T13:01:53.867869 | 2018-10-01T13:33:28 | 2018-10-01T13:49:44 | 148,359,451 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 803 | cpp | //
// buffer.cpp
// ~~~~~~~~~~
//
// Copyright (c) 2003-2017 Christopher M. Kohlhoff (chris at kohlhoff dot com)
//
// 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)
//
// Disable autolinking for unit tests... | [
"ekuliiev@luxoft.com"
] | ekuliiev@luxoft.com |
469b006503ae820796ca41deae4e80354da41f84 | b125a380034af850935172318cb553e7e97a0cc8 | /model.h | 37c9ba3db7954af34dae5f7abe84cbced363ef50 | [
"MIT"
] | permissive | graphitemaster/neothyne | 375a3f6835edeb525d2aa97f6f65d444bd1d2395 | 101dd7f96e5c62e32e797105d9fb23f975986626 | refs/heads/master | 2021-01-24T06:41:32.453686 | 2017-01-08T21:28:41 | 2017-01-08T21:28:41 | 22,590,787 | 82 | 21 | null | 2016-12-27T22:02:14 | 2014-08-04T03:27:46 | C++ | UTF-8 | C++ | false | false | 3,564 | h | #ifndef MODEL_HDR
#define MODEL_HDR
#include "mesh.h"
#include "m_mat.h"
#include "u_string.h"
struct Model {
Model();
~Model();
struct Batch {
void *offset;
size_t count;
size_t material; // Material index for rendering (calculated in r_model.cpp)
};
bool load(const u::... | [
"weilercdale@gmail.com"
] | weilercdale@gmail.com |
2e08cde1046212fb6c5aa588ae375947f59d966f | 99a466aba71f86a69fe38b47e87d9333d6251454 | /contest/34/b.cpp | 1e943141f15cbe835f72a9f1db5360ac888f6fc9 | [] | no_license | m-nny/Codeforces | ca84be67110c5c5ba0f986652b3b195f964a5026 | fbd5918f567a907005bb65b283595a2f0974e412 | refs/heads/master | 2021-09-04T20:37:02.533540 | 2018-01-22T07:47:39 | 2018-01-22T07:47:39 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 917 | cpp | #include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef map <int, int> mii;
typedef pair <int, int> pii;
typedef pair <ll, ll> pll;
int const maxn = int(1e5 + 12);
int const maxb = int(2e6 + 12);
int const inf = int(1e9 + 7);
ll const linf = ll(1e18 + 12);
double ... | [
"Alibek.manabayev@gmail.com"
] | Alibek.manabayev@gmail.com |
afd8b31f811d60c06d9d97492eac02b19791fc85 | b268d3851ca046c80cc2e052d8b853f19b59d3fb | /GameEngine/include/qt/QtGui/5.4.1/QtGui/qpa/qplatformfontdatabase.h | f2c2a0f948d1f0f7fe75b8aa7d38d1353a5427f9 | [] | no_license | windless1015/CppGameEngine3D | 03419c01baafc2b941649954c1549f155b396172 | a26d830b8cd795eb797a3284038a03786ac2dc64 | refs/heads/master | 2022-03-27T10:15:55.351490 | 2016-03-16T19:22:55 | 2016-03-16T19:22:55 | 473,269,117 | 1 | 0 | null | 2022-03-23T16:24:37 | 2022-03-23T16:24:36 | null | UTF-8 | C++ | false | false | 5,178 | h | /****************************************************************************
**
** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
**
** This file is part of the QtGui module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL21$
** Commercial License Usage
**... | [
"benwolverine2019@gmail.com"
] | benwolverine2019@gmail.com |
cbc26eca365bf3343833a2c9d04f36b37479bf40 | f767f30dd8da1b43e3dca45cdb980aaee1ff05ab | /Source/OOP Assignment/MedianBlending.h | 15695f24dbb9e35c9b0c3f34b3f03c04a9a73aca | [] | no_license | bdawson1993/ImageBlending | a795a397bdd4a4a147f141ce4e76a230623b7485 | 27e4db1066c7f261d3a5a5611b8aa291d515ddbb | refs/heads/master | 2020-04-17T19:50:02.940571 | 2019-04-14T17:20:21 | 2019-04-14T17:20:21 | 166,880,480 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 393 | h | #pragma once
#include "Blending.h"
#include <amp.h>
#include <amp_math.h>
using namespace std;
using namespace concurrency;
class MedianBlending : public Blending
{
public:
MedianBlending();
MedianBlending(vector<Image> &images);
~MedianBlending();
void Blend();
void AsyncBlend();
Image GetImage();
private:
... | [
"b.dawson1993@gmail.com"
] | b.dawson1993@gmail.com |
8429511e69a4546ca0cd71987377e7d12f3224d8 | 98a19e75864c2711284e6ea805c4d7c4a2ee0ed4 | /libgralloc/gralloc_buffer_priv.cpp | 54249dabc1e7552f87113a84ccbc91943618314e | [] | no_license | kasimling/Firefly_hardware_rockchip | 3c853ca35caf6d79188aab87a612be88792c9874 | ce9b8c274a65b9f7e52e3bdce96a16e7afb761a9 | refs/heads/master | 2021-05-02T15:29:33.484080 | 2018-02-08T02:02:33 | 2018-02-08T02:02:33 | 120,697,679 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,264 | cpp | /*
* Copyright (C) 2014 ARM Limited. All rights reserved.
*
* Copyright (C) 2008 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.a... | [
"alex.ling@harman.com"
] | alex.ling@harman.com |
83a0bfc6325c0cd5bf69a164b81de217fd69dab4 | 4c16902ec807a1125a6ba7add820623a90980e27 | /Visitor/EO.cpp | a5592d3c1e60fb910e95273ada155790842560ae | [] | no_license | andyfanplus/DesignPattern | fc7f86022912d50e3ccc580de8c2b81c94de5edc | f3200e4c1c85bda3d9be2ae0e77f683839d1171c | refs/heads/master | 2022-11-14T14:38:12.626884 | 2020-07-07T15:06:00 | 2020-07-07T15:06:00 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 323 | cpp | #include "EO.h"
#include"Engineer.h"
#include"Manager.h"
#include<iostream>
using namespace std;
CEO::CEO()
{
}
CEO::~CEO()
{
}
void CEO::visit(Engineer* engineer)
{
cout << "engineer's kpi:\t" << engineer->kpi() << endl;
}
void CEO::visit(Manager* manager)
{
cout << "manager's kpi:\t" << manager->kpi() << endl... | [
"Administrator@DESKTOP-9CQMC0O"
] | Administrator@DESKTOP-9CQMC0O |
b6e6726617fab05a420b1ab31e9657bd305fa0d4 | 29354f38285aaf8e1a50b1a4c89e4911db4cff2a | /EnCoBeta0.1/EnCoBeta0.1.ino | cda5c3756909256eb8cd55d92b8d14353b0c814d | [] | no_license | NotDeveloper111/EnglishCoach | 44680b46d216183b68dbd966631b4a45776a61ca | 6c08cfbbfed3602e053d48d9c90f5572cf8a53fd | refs/heads/master | 2020-09-22T23:13:00.015160 | 2020-01-15T07:45:16 | 2020-01-15T07:45:16 | 225,341,455 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,690 | ino | #include<Servo.h>
//
// Пины enable моторов
//
#define EnFl 9
#define EnFr 8
#define EnBl 6
#define EnBr 7
//
// Направления моторов
//
#define FL1 30
#define FL2 32
#define FR1 26
#define FR2 24
#define BL1 44
#define BL2 42
#define BR1 50
#define BR2 48
int DiFR = 1, DiFL = 1, DiBR = 1, DiBL = 1;
//
//Пины enable дра... | [
"loltroll666228@mail.ru"
] | loltroll666228@mail.ru |
cb35733391887d7c4f892abbfce87ff6a7752ee2 | b349f49d63777e692bcb525035169aa120ac6f08 | /ConsoleApplication-RTPVoice/ConsoleApplication-RTPVoice/stdafx.cpp | 6da04627eb99c756f742fd6e656267ea809a737e | [] | no_license | wnwtest/Console-master-RTPvoice | bc83532b3fb7bfddf36c010aff7f7dd849c9f5ae | cb6fa8b6d1f99832215cde66069739da5a8ffa0c | refs/heads/master | 2021-09-04T14:17:33.585359 | 2018-01-19T11:37:02 | 2018-01-19T11:37:02 | 290,082,711 | 1 | 0 | null | 2020-08-25T01:38:37 | 2020-08-25T01:38:36 | null | GB18030 | C++ | false | false | 280 | cpp | // stdafx.cpp : 只包括标准包含文件的源文件
// ConsoleApplication-RTPVoice.pch 将作为预编译头
// stdafx.obj 将包含预编译类型信息
#include "stdafx.h"
// TODO: 在 STDAFX.H 中
// 引用任何所需的附加头文件,而不是在此文件中引用
| [
"330713927@qq.com"
] | 330713927@qq.com |
05252e176157f251058b2bb90be64c6cd0862594 | 5fcacbc63db76625cc60ffc9d6ed58a91f134ea4 | /vxl/vxl-1.13.0/core/vgui/impl/wx/vgui_wx_dialog_impl.cxx | a6f46bf26b485a416eac2ea4e8d3ade7009a5e53 | [
"LicenseRef-scancode-warranty-disclaimer"
] | no_license | EasonZhu/rcc | c809956eb13fb732d1b2c8035db177991e3530aa | d230b542fa97da22271b200e3be7441b56786091 | refs/heads/master | 2021-01-15T20:28:26.541784 | 2013-05-14T07:18:12 | 2013-05-14T07:18:12 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 19,488 | cxx | // This is core/vgui/impl/wx/vgui_wx_dialog_impl.cxx
#include "vgui_wx_dialog_impl.h"
//=========================================================================
//:
// \file
// \brief wxWidgets implementation of vgui_dialog_impl.
//
// See vgui_wx_dialog_impl.h for details.
//=========================================... | [
"hieuza@gmail.com"
] | hieuza@gmail.com |
8df18e36c48dc3fdc6f8159285bc401374e5c1fd | 230fb8845f39bef0f30f5d3541eff5dc0641de14 | /Connect3/Export/windows/obj/src/openfl/display/_internal/DOMBitmap.cpp | 5bbca86c378cc7d900087d63b1870b7be6307664 | [] | no_license | vhlk/AlgoritmoMinMax | 76abd62a6e2859ed229e5831264b6d8af27e318d | 40eded4948794ca48d50d16d2133a9ab21207768 | refs/heads/main | 2023-06-30T15:16:17.492478 | 2021-08-02T13:29:32 | 2021-08-02T13:29:32 | 390,493,745 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | true | 8,223 | cpp | // Generated by Haxe 4.2.0
#include <hxcpp.h>
#ifndef INCLUDED_lime_app_IModule
#include <lime/app/IModule.h>
#endif
#ifndef INCLUDED_openfl_display_Bitmap
#include <openfl/display/Bitmap.h>
#endif
#ifndef INCLUDED_openfl_display_DOMRenderer
#include <openfl/display/DOMRenderer.h>
#endif
#ifndef INCLUDED_openfl_displa... | [
"vhlk@cin.ufpe.br"
] | vhlk@cin.ufpe.br |
5728469e76d28a859b4f38b75691e9a59d01ead1 | 5456502f97627278cbd6e16d002d50f1de3da7bb | /blimp/net/blimp_message_multiplexer.cc | 87b675965b209708fe63712d0a15bebe169941ef | [
"BSD-3-Clause"
] | permissive | TrellixVulnTeam/Chromium_7C66 | 72d108a413909eb3bd36c73a6c2f98de1573b6e5 | c8649ab2a0f5a747369ed50351209a42f59672ee | refs/heads/master | 2023-03-16T12:51:40.231959 | 2017-12-20T10:38:26 | 2017-12-20T10:38:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,185 | cc | // Copyright 2015 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 "blimp/net/blimp_message_multiplexer.h"
#include "base/logging.h"
#include "base/memory/ptr_util.h"
#include "blimp/common/create_blimp_... | [
"lixiaodonglove7@aliyun.com"
] | lixiaodonglove7@aliyun.com |
7ef578f9706e361bceb52bc40481bd1cc11d66a8 | 6795bdc3ba0745892581f6862e02b14a4f90cb9e | /include/lib/client/url/Url.hh | ca60084a4efd942f6aafb239d19321b3944e5049 | [] | no_license | xenerizes/downloader | 0a65c9bb5897255402b9c2a19254f8b7bccb47ed | 5dbcc916ebe2f1aa3bbcbdd7fe4553525bbf06dd | refs/heads/master | 2021-06-28T07:01:36.036003 | 2020-09-13T11:30:01 | 2020-09-13T11:30:01 | 135,067,962 | 1 | 1 | null | 2020-07-24T22:27:52 | 2018-05-27T17:36:03 | C++ | UTF-8 | C++ | false | false | 628 | hh | #pragma once
#include "Url.hh"
#include "Scheme.hh"
class Url {
private:
std::string url_str_; // to be initialized first
size_t idx_;
public:
explicit Url(std::string url_str);
bool operator==(const Url&rhs) const;
Scheme scheme;
std::string hostname;
std::string port;
std::string... | [
"xenerizes@users.noreply.github.com"
] | xenerizes@users.noreply.github.com |
9402bf4b0242a4e60ebc7fb2d373b0fa89f4ad33 | 3fc399887ef3462b2104710511c555a30d373714 | /src/draw_test.cpp | 7017745349477f0eb81f08ad613719987a671a16 | [] | no_license | MurpheyLab/sawyer_mechfilter | 5e65484b1421dd106d32b0bc869fa5e6d42d0fb9 | d5abd5c80a24dbed7b62179762d848eca4c6fe12 | refs/heads/master | 2023-08-28T10:42:51.196854 | 2021-10-22T16:58:49 | 2021-10-22T16:58:49 | 157,614,053 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,400 | cpp | /*
Kathleen Fitzsimons
This node runs a timer that uses the most recent update to the state of Sawyer's
end effector to accept or reject user inputs. It subscribes to the endpoint_state
and accelerometer of the robot limb and publishes an interaction control command.
A custom message for synchronized data collection ... | [
"fitzsi28@gmail.com"
] | fitzsi28@gmail.com |
090f9986349e461e638eda6f3d030879eff80192 | d6a63cd5f96f3a9a62596b971b142d666344869c | /Ms4/Date.cpp | 0a00087b9cf17edeeb4f2962e82c46d8162ea7ab | [] | no_license | Auios/OOP244 | 21ab42a3ecbf76e837641e58561643a5df811a7b | f244fd93294f9ceeb3b3175eb941cf26b3b9a473 | refs/heads/master | 2020-07-09T17:42:30.496852 | 2015-12-12T20:32:53 | 2015-12-12T20:32:53 | 46,214,429 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,768 | cpp | #include <iomanip>
#include <iostream>
#include <ctime>
using namespace std;
#include "Date.h"
#include "POS.h"
namespace sict
{
void Date::set()
{
time_t t = time(NULL);
tm lt = *localtime(&t);
_day = lt.tm_mday;
_month = lt.tm_mon + 1;
_year = lt.tm_year + 1900;
if (dateOnly())
{
_hour = _min = 0... | [
"LoneAuios@gmail.com"
] | LoneAuios@gmail.com |
0410d13c14fe147eb1f2240ce464c36250eec198 | 2f5fd6669ea05a8dcd8c0335372821cd45292831 | /T15DataBase/MyWidget2.cpp | b89187fac9ecb1527ef1607b6000cacdd20b2827 | [] | no_license | lingqing97/QT_files | 604e106e1bc6038e47fae69ad67301d03d5f693f | a54299a09d83616f20fbedf17343cb08594b286e | refs/heads/master | 2020-03-30T16:10:00.060370 | 2018-10-14T12:12:40 | 2018-10-14T12:12:40 | 151,396,193 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,456 | cpp | #include "MyWidget2.h"
#include <QVBoxLayout>
#include <QHBoxLayout>
#include <QPushButton>
#include <QMessageBox>
#include <QSqlError>
#include <QSqlRecord>
MyWidget2::MyWidget2(QWidget *parent) : QWidget(parent)
{
_model=new MySqlTableModel;
_model->setTable("menu");
_model->select(); //要先加载数据
_mode... | [
"wsk_lingqing@163.com"
] | wsk_lingqing@163.com |
8ad3b05ffcfbe3c9bde091686598953571e3fe45 | 29e46623d6245a960939b7b0141aedebd5a84fc5 | /SDL_AddingPixelMethod/SDL_AddingPixelMethod/Screen.h | 591d8d7595ef7664ef861eced77a2ec3e0522a70 | [] | no_license | pholton/Cave_IntroCpp | 53dfd2394afc01fd882967ac922e83080c3faf18 | dc850cb64dcc8ccca373c202b9ce5b11d4ca0d30 | refs/heads/master | 2020-09-18T18:25:54.884261 | 2016-09-11T02:21:19 | 2016-09-11T02:21:19 | 67,777,928 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 489 | h | #ifndef SCREEN_H_
#define SCREEN_H_
#include <SDL.h>
namespace cop {
class Screen {
public:
const static int SCREEN_WIDTH = 800;
const static int SCREEN_HEIGHT = 600;
private:
SDL_Window *m_window;
SDL_Renderer *m_renderer;
SDL_Texture *m_texture;
Uint32 *m_buffer;
public:
Screen();
~Screen();
... | [
"the.peter.holton@gmail.com"
] | the.peter.holton@gmail.com |
14f17a96a4a1eff3db9f088b18e53c224dcb2295 | 01d3a14aad2fcae4c50eeb11200abb000a61602d | /engine-kernelcpp/zschimmer/charset_messages.cxx | 06c6c3c06fbbaf6408e2dc7bd93249a92f2b1331 | [] | no_license | sos-berlin/scheduler-engine | 25718d27c879b8f66095080c029142cb7b7e6289 | bcbf5b7b033447428b13dde5ad8132068348c726 | refs/heads/release/1.13 | 2023-09-03T04:48:38.328859 | 2023-07-11T13:56:00 | 2023-07-11T13:56:00 | 5,357,855 | 11 | 12 | null | 2023-03-20T17:02:12 | 2012-08-09T16:08:16 | C++ | UTF-8 | C++ | false | false | 331 | cxx |
// Generiert mit XSLT.
// DO NOT MODIFY!
#include "../zschimmer/base.h"
#include "../zschimmer/message.h"
namespace zschimmer {
Message_code_text charset_messages[] =
{
{ "Z-CHARSET-001", "Unknown character encoding: $1" },
{ "Z-CHARSET-002", "Missing character encoding" },
{}
};
} //namespace... | [
"ss@c11b8382-0eeb-0310-9acf-d3b3cacd313b"
] | ss@c11b8382-0eeb-0310-9acf-d3b3cacd313b |
59ddc1d871f6ae31ed5847e64d7270842639520a | 77aa13a51685597585abf89b5ad30f9ef4011bde | /src/hearthstone-shared/Network/ListenSocketFreeBSD.h | c69202ec9ed3cfc9cdc268954e08e64a14be24bb | [] | no_license | Zic/Xeon-MMORPG-Emulator | 2f195d04bfd0988a9165a52b7a3756c04b3f146c | 4473a22e6dd4ec3c9b867d60915841731869a050 | refs/heads/master | 2021-01-01T16:19:35.213330 | 2009-05-13T18:12:36 | 2009-05-14T03:10:17 | 200,849 | 8 | 10 | null | null | null | null | UTF-8 | C++ | false | false | 2,652 | h | /*
* Multiplatform Async Network Library
* Copyright (c) 2007 Burlex
*
* ListenSocket<T>: Creates a socket listener on specified address and port,
* requires Update() to be called every loop.
*
*/
#ifndef _LISTENSOCKET_H
#define _LISTENSOCKET_H
#ifdef CONFIG_USE_KQUEUE
#include "SocketDefines.h... | [
"valroft@a6a5f009-272a-4b40-a74d-5f9816a51f88"
] | valroft@a6a5f009-272a-4b40-a74d-5f9816a51f88 |
49b503f45131058114534c67c5dd2c3d7527831f | 941b245eb2a3809cc4d99fab480ed5bd25b21fde | /lab3/zadanie-arytmetyka.cpp | 6e4133c1e8524961163eeaae79aeb618c19ae7b4 | [] | no_license | s20488/SOP | 265d298e9d0112ab5a924e603a0f7940b0cca82a | 08fa73e1b1c359b3f9ccd687d47ace15d4138e2a | refs/heads/main | 2023-06-01T20:44:01.504394 | 2021-06-18T14:09:43 | 2021-06-18T14:09:43 | 349,853,650 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,072 | cpp | #include <iostream>
#include <string>
#include <sstream>
#include <stdio.h>
#include <cstdlib>
#include <iomanip>
struct Czas {
using value_type = unsigned int;
value_type godzina;
value_type minuta;
value_type sekunda;
Czas(value_type, value_type, value_type);
auto to_String() const -> st... | [
"noreply@github.com"
] | noreply@github.com |
319815d34d368fbd25384c18033c05591ca311d6 | b269392cc4727b226e15b3f08e9efb41a7f4b048 | /CodeForces/CodeForces 1141E.cpp | f1afd92c0f363f0e5c03f92f267753148e29cf25 | [] | no_license | ThoseBygones/ACM_Code | edbc31b95077e75d3b17277d843cc24b6223cc0c | 2e8afd599b8065ae52b925653f6ea79c51a1818f | refs/heads/master | 2022-11-12T08:23:55.232349 | 2022-10-30T14:17:23 | 2022-10-30T14:17:23 | 91,112,483 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,453 | cpp | /*
********************************************************************************
* Author: ThoseBygones
* Version: V1.0
* Date: 2019-07-08
* Subject: ACM-ICPC
* Language: C/C++11
* OJ: CodeForces
* Algorithm:
********************************************************************************
* Algo-De... | [
"1273789365@qq.com"
] | 1273789365@qq.com |
4abe09c980c0d7bf2e709b3f25f6d5ef87e63098 | 1f027e34ad7bf3826f1edac05a8b2684b2755c27 | /Camera.cpp | f0d10ad85c640be504d6506cd4f109fa122598f5 | [] | no_license | MJobbins/StageL3 | 2bf2ebbbe154da6c88ba41bb9ac23231723d82ef | 624771c8fb451237d658a6bfe06599af98530489 | refs/heads/master | 2020-03-15T10:37:07.239973 | 2018-06-20T10:24:39 | 2018-06-20T10:24:39 | 132,102,937 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,925 | cpp | #include <cmath>
#include <string>
#include <vector>
#include <iostream>
#include "Camera.h"
#include "Point3d.h"
#include "Vector3d.h"
#include "Color.h"
#include "Image.h"
#include "Sphere.h"
#include "UniColor.h"
#include "Hit.h"
#include "Texture.h"
//Static default values
const Point3d Camera::DEFAULT_POSITION(Po... | [
"morgan.jobbins@gmail.com"
] | morgan.jobbins@gmail.com |
87e3a88e4fcbeaf275775431b097923e6452ac62 | 74da8653755ad25c5b0d9432ccfa2295f303a894 | /ABCBankTemplate06/BankClient/BankClient/UI/ReceiptForm.cpp | 04f8905e0be648eae53074eca5ea486c743a789d | [] | no_license | xy27/ABCBank | b245baf4a7b574e065c06b2f3617f72fc3a04dca | aecb89efe869919370f82df15a4eecfaf112c1bb | refs/heads/master | 2022-11-20T02:50:01.521662 | 2020-07-14T00:48:58 | 2020-07-14T00:48:58 | 279,446,153 | 0 | 0 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 2,704 | cpp | #include "ReceiptForm.h"
#include "FormManager.h"
#include "MainMenuForm.h"
#include "Validator.h"
#include "../BankSession.h"
#include "../TransactionManager.h"
#include "../JFC/JMessageBox.h"
#include "../../../Public/Exception.h"
using namespace UI;
ReceiptForm::ReceiptForm()
: JForm(0, 0, 0, 0),
rft_(RFT_... | [
"xy2015307200128@outlook.com"
] | xy2015307200128@outlook.com |
5ba9cb1c579119c7d5d3205e8bd090b8cc97818c | 2011b091db4305f334fdb0c1d582a07aa7c03f0b | /Vision/Tags/CalibrationSet.hpp | af5a827e6cc1f89b5c659cb647b32c7a280c6a37 | [] | no_license | Rhoban/hl_kid_public | 3f08c597ea368efa1bb6728f8c8d536a8ee7d759 | 5ecacb02b542027e9537a083df7051b265c9e45e | refs/heads/master | 2020-03-18T14:50:44.858011 | 2018-08-13T08:45:31 | 2018-08-13T08:45:31 | 134,870,637 | 4 | 6 | null | 2018-12-09T14:30:56 | 2018-05-25T15:00:28 | C++ | UTF-8 | C++ | false | false | 2,983 | hpp | #pragma once
#include "TagsCollection.hpp"
#include "TagsSheet.hpp"
/// Describe an aruco calibration set designed by Rhoban. It is composed of
/// 10 pannels, each pannel containing two sheets
///
/// P9 is the basis of the robot
/// P0 and P8 are horizontal (flat on the ground)
/// P1 to P7 are vertical
///
///
//... | [
"medrimonia@gmail.com"
] | medrimonia@gmail.com |
0a8ffbca3d747c15fe41ef4f338414fd7da7dc1b | 640f292949b3090b556ebbf4ba08128e7ebfa5b7 | /src/dfc.cc | 16d6211e6a19a00e7af68f6ef15f01a4cbe8dfe4 | [] | no_license | DuyDN/nadiv | 2ccf2f676cb56cc961334dfa75148e0693e7b9df | e4cabffcd92ddc88a2f8971d405a20325002529d | refs/heads/master | 2021-01-17T21:51:30.746207 | 2015-08-20T15:20:19 | 2015-08-20T15:20:19 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,749 | cc | #include "dfc.h"
extern "C"{
void dfc(
int *dam,
int *sire,
int *i,
int *j,
int *Ni,
int *exct
){
int k, idam, isire, jdam, jsire, idgd, idgs, isgd, isgs, jdgd, jdgs, jsgd, jsgs, dfcfbfs, dfcosfs;
for(k = 0; k < Ni[0]; k++){
dfcfbfs = 0;
dfcosfs = 0;
idam = dam[i[k]];
is... | [
"matthewwolak@gmail.com"
] | matthewwolak@gmail.com |
7544421d8d4c14a7d625894d6a4f7ce93b3b99ac | fb4ebb51b46ce0912458fc4e6891a288c1ad20c1 | /data_structure/sorting/countsort.cpp | e308f7b10b97b90b8a10a5babee53981a5c7b26a | [] | no_license | pratyush220498/Data_Structure-CPP | 982cfd3d0f689670a2b88d8913cce459d9f6b67d | 92638b99527f3a5e47cdb54d6e03595c89c868c6 | refs/heads/master | 2022-11-04T00:14:27.336093 | 2020-06-17T12:21:09 | 2020-06-17T12:21:09 | 272,966,059 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 780 | cpp | #include<iostream>
using namespace std;
int main()
{
int i,flag,temp,size,j,k,range;
cout<<"enter size ="<<endl;
cin>>size;
int ip[size];
cout<<"enter elements :-"<<endl;
for(i=0;i<=size-1;i++)
cin>>ip[i];
int max=0;
for(i=1;i<=size-1;i++)
{
if(ip[i]>ip[max])
max=i;
}
range=ip[max];
cout<<"range="<<ran... | [
"pratyushpare220498@gmail.com"
] | pratyushpare220498@gmail.com |
1cf2b62ae51c13191199b0ecabdf87ea11a900bc | 4963748e9d92c73c47818e625576e5995fd694a7 | /Fractal/src/fractal/graphics/batchRenderer2d.cpp | f488b165559ecc1f0ac5f1d006703782484547e3 | [] | no_license | YoungProducer/Fractal | d6ce1dfcb298c9cfa0ef14a03b450d87846beaec | d3b636c84a21ba8e06bb6e466c291c34a455aa90 | refs/heads/master | 2020-04-14T03:36:58.906695 | 2018-12-30T19:36:39 | 2018-12-30T19:36:39 | 163,611,590 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,319 | cpp | #include "batchRenderer2d.h"
namespace frc {
namespace graphics {
BatchRenderer2D::BatchRenderer2D()
: m_DefaultRenderer(true)
{
init();
}
BatchRenderer2D::BatchRenderer2D(GLuint* indices, GLuint iCount)
: m_IndexCount(iCount), m_DefaultRenderer(false)
{
init(indices, iCount);
... | [
"noreply@github.com"
] | noreply@github.com |
f53e8437c5b5872204b12fee4e0e361dd1ffb115 | ff508de5156a46237b632f97f2c6896265ab2df8 | /tags/2.01/AStyleTest/srccon/AStyleTestCon_Console2.cpp | b70b04c52e7495761156795810ad8bc9c0a2150f | [] | no_license | fengfeng0328/AStyle | 9728af0360a89bcdc9beab16d9514a7235d7d781 | cab16caba823cc3eee5506a8567a29758d6db393 | refs/heads/master | 2022-10-05T09:45:58.185735 | 2020-06-06T02:55:35 | 2020-06-06T02:55:35 | 269,841,977 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 42,222 | cpp | // AStyleTestCon tests the ASConsole class only. This class is used only in
// the console build. It also tests the parseOption function for options used
// by only by the console build (e.g. recursive, preserve-date, verbose). It
// does not explicitely test the ASStreamIterator class or any other part
// of the progr... | [
"m18819838082@163.com"
] | m18819838082@163.com |
9bc8951a4a592f29d65cb1a213593c2503b3d35e | 47cd4e2be27c39a9242dd0bc57b195c293cd93d5 | /Contest6/SearchBinary.cpp | f6048643794a95ed605eecada973291accb6a391 | [] | no_license | ntung1005/Algo | 18b403eb636333aa318b99fa37238403a21eef71 | 3e0942dc471ba03bb2da3736ebcc43f786834aec | refs/heads/master | 2022-11-30T22:34:58.865637 | 2020-08-08T10:35:12 | 2020-08-08T10:35:12 | 264,919,990 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 401 | cpp | #include<bits/stdc++.h>
using namespace std;
int BS(int a[],int n,int k){
int l=0,r=n-1,mid,res;
while(l<=r){
mid = (l+r)/2;
int key = a[mid];
if(key == k){
return 1;
}
if(key>k){
r=mid-1;
}
else if(key<k){
l=mid+1;
}
}
return -1;
}
int main(){
int n=10;
int a[]={2,3,1,45,2,5,6,2,9,2... | [
"ntung7965@gmail.com"
] | ntung7965@gmail.com |
b6539016579988c7207b430b8abdf919d1d050a2 | f45a450972efd98785ccf65f1dfa5a08ac832bc7 | /WinRT App/DirectXPage.xaml.h | 6d502ab782b6ae03da666bc6fd2121b14f975b5a | [] | no_license | Donnay-Splash/Engine-D3D11 | 159389dc816ed0dc6932f1c459f5d6bbc9a348f6 | f1f00161d5686e31e43367f31e4f0431bf093b38 | refs/heads/master | 2022-01-29T19:01:12.189418 | 2020-07-24T16:33:52 | 2020-07-24T16:33:52 | 67,720,427 | 7 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,168 | h | //
// DirectXPage.xaml.h
// Declaration of the DirectXPage class.
//
#pragma once
#include "DirectXPage.g.h"
#include "Common\DeviceResources.h"
#include "WinRT_AppMain.h"
#include "ExpandPanel.h"
#include <ppltasks.h>
namespace WinRT_App
{
/// <summary>
/// A page that hosts a DirectX SwapChainPanel.
... | [
"michael.daltrey@btinternet.com"
] | michael.daltrey@btinternet.com |
9a3baee03cc292e61a0c53ba03a6fe260b4e9981 | 16314a343d24a8a72c3acddb919b4cf0c8857163 | /src/clientversion.cpp | 48999641f819f415a1da3aba47e842c560875a18 | [
"MIT"
] | permissive | LeoHub-dev/tradingcoin | 93764598962e63a463afc4bc4300f04e51b73f25 | 213e033b8a5b3fefe78c66934e4ab9f8f83dd2f6 | refs/heads/master | 2020-04-07T10:52:21.819376 | 2018-04-02T19:54:28 | 2018-04-02T19:54:28 | 158,303,442 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,006 | cpp | // Copyright (c) 2012-2014 The Bitcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "clientversion.h"
#include "tinyformat.h"
#include <string>
/**
* Name of client reported in the 'version' messa... | [
"jimenezleonardop@gmail.com"
] | jimenezleonardop@gmail.com |
004e00a68bb425043d2a49af7811305713e9bc19 | 1a74d8ff5066d7c1b6aa4a0f8dff9d5ffc875f9e | /Number_Theory/prime_factors.cpp | f6afea5f5c8ed06ea5ec5a80f150f85d375929a2 | [] | no_license | AshishS-1123/Algorithms | 141819420cbf2896fe84c4c052cf93aaccb8f5cc | 12ac94bfe3dbc8a7e78c1fc825073ea312a02224 | refs/heads/master | 2023-06-27T01:17:50.273427 | 2021-07-22T11:33:25 | 2021-07-22T11:33:25 | 307,110,154 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 968 | cpp | #include <iostream>
using namespace std;
void print_prime_factors(int num)
{
// variable to store number of times a factor occurs
int count = 0;
// repeat for all numbers from 2 to sqrt(num)
for(int i = 2; i*i <= num; ++i)
{
// check if i divides num
if(num % i == 0)
{
// initialize count to 0
count... | [
"shevaleashish@gmail.com"
] | shevaleashish@gmail.com |
4a15eedcffedede075565c6290fa5c8ac563ff20 | 5476b1ebdadb5b964eddceea36f0fc82104918ee | /Temp/il2cppOutput/il2cppOutput/mscorlib6.cpp | 55aa17ab5bea195964711df0a1c81c3715ff4368 | [
"CC-BY-3.0"
] | permissive | Hechio/roller-splat | e6147adda391b7bec30a5f965049f68a85a2a5a7 | 84001ce7dfc33a522b95fdcb07d95de933fe826c | refs/heads/main | 2023-07-28T09:37:58.978587 | 2021-09-16T05:16:40 | 2021-09-16T05:16:40 | 405,433,089 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,181,734 | cpp | #include "pch-cpp.hpp"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <limits>
#include <stdint.h>
#include "vm-utils/icalls/mscorlib/System.Threading/Interlocked.h"
#include "icalls/mscorlib/System.Threading/InternalThread.h"
template <typename T1, typename T2, typename T3>
stru... | [
"stevehechio@Steves-iMac.local"
] | stevehechio@Steves-iMac.local |
7135fff64fefbb1863b652f0aa3734f4be1d8f0c | a4544d4f6683fe6ea0fb8a2bd9132555d39897cd | /src/nr/test/nr-test-interference-fr.h | 658b1674063da4893ad3b77cf8274b7eac784ff0 | [] | no_license | soiry/5gc | 99d178345e5f8002de0f4c8a4c51f4b2a5e218bd | 04123f4b10a042b87a7c6601756ad014ac526016 | refs/heads/master | 2021-11-03T10:00:33.214965 | 2019-01-10T07:49:46 | 2019-01-10T07:49:46 | 153,069,009 | 2 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 2,194 | h | /* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */
/*
* Copyright (c) 2014 Piotr Gawlowicz
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation;
*
* This program i... | [
"jk011981705@gmail.com"
] | jk011981705@gmail.com |
bab005c4d44463b4b3b94eec968d4e5f36690cd7 | 1b4b8359a52bda3164901ad24e2f0b1726d32a6b | /19_2/Maze/main.cpp | ae9b8241b2c4a17f86fe764a71ae3198951c7069 | [] | no_license | Naviigator/AdventOfCode2017 | 3a38aff6f854902f0b9438c568ab666d88cc6027 | 1b418ddb5bed4b3fe0ffedad3311173d0925616f | refs/heads/master | 2021-08-31T15:15:13.894860 | 2017-12-21T21:23:28 | 2017-12-21T21:23:28 | 113,240,010 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,684 | cpp | #include <utility>
#include <map>
#include <iostream>
#include <string>
#define UP std::pair<int, int>(0, -1)
#define DOWN std::pair<int, int>(0, 1)
#define LEFT std::pair<int, int>(-1, 0)
#define RIGHT std::pair<int, int>(1, 0)
std::pair<int, int> Move(std::pair<int, int> pairWhereToMove, std::pair<int, int> pairOri... | [
"tommekemc@hotmail.com"
] | tommekemc@hotmail.com |
5c1c5a1d81094aa0d2330b78b1ae3cf7918ee45f | afce9df3b30e4cba6d88d54c77d14dfd352972c7 | /src/Graphics/Camera.h | 3f02755c802324a8030154a9e5625bdd07cab0a8 | [] | no_license | SergeiBorzov/fbm-gen | 8e2a32acdf49329b9a7d99cd41cf91b2da2f8028 | 22f71df0f84ebf75e95ce9ea47223aa5a1f8eef0 | refs/heads/master | 2022-12-19T07:41:25.382754 | 2020-10-01T10:11:22 | 2020-10-01T10:11:22 | 269,775,074 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,686 | h | #pragma once
#include "../Core/types.h"
#include <glm/glm.hpp>
#include <glm/gtc/matrix_transform.hpp>
namespace fbmgen {
class Camera {
public:
glm::vec3 position = {0.0f, 0.0f, 3.0f};
f32 speed = 5.0f;
f32 sensitivity = 0.1f;
inline glm::mat4 GetViewMatrix() const {
... | [
"l.sergey.borzov.l@gmail.com"
] | l.sergey.borzov.l@gmail.com |
0955953d2723cfc162bfb9fc3a44c44f15a2f843 | 02dd918b5c8102ac4c059352d75c9933c2de0c05 | /estrutura_dados/aula10.cpp | 4f442e9d3f8b64c7baf8b3527524e0af3666d8ba | [] | no_license | f-nely/estrutura-dados-estacio | ee09683a3279fa06356d74f7f567dbf3c306324a | ccb7642e6ea8e6ca5f3006867561820fa01deb73 | refs/heads/main | 2023-06-12T01:53:43.493052 | 2021-07-02T11:30:36 | 2021-07-02T11:30:36 | 373,593,230 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,549 | cpp | #include <iostream>
#include <string>
#include <cstdlib>
using namespace std;
struct listaDE
{
int info;
struct listaDE* ant;
struct listaDE* prox;
};
listaDE* insere(listaDE* lista, int valor);
void exibe(listaDE* lista);
listaDE* remover(listaDE* lista, int valor);
listaDE* busca(listaDE* lista, int va... | [
"nelly.nf54@gmail.com"
] | nelly.nf54@gmail.com |
874886eceaf1852b4ec7d9f1649019486e58a8a4 | e76ea38dbe5774fccaf14e1a0090d9275cdaee08 | /src/chrome/browser/extensions/api/notifications/notifications_apitest.cc | a41b6565de4aa6fa4a488b9c7cc51877cbd44bf3 | [
"BSD-3-Clause"
] | permissive | eurogiciel-oss/Tizen_Crosswalk | efc424807a5434df1d5c9e8ed51364974643707d | a68aed6e29bd157c95564e7af2e3a26191813e51 | refs/heads/master | 2021-01-18T19:19:04.527505 | 2014-02-06T13:43:21 | 2014-02-06T13:43:21 | 16,070,101 | 1 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 28,509 | cc | // Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/strings/stringprintf.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/chrome_notification_types.h"
#include "chr... | [
"ronan@fridu.net"
] | ronan@fridu.net |
6505e6330bb0df88caa626d16a1da78dc9d53b54 | 4aa35fc1f415e068078f8889ae4e766d9338a7c0 | /S2Project13/students.cpp | 4eaca0a807356eb1505ec313c1c606e246aeffde | [] | no_license | ship51/nitm-codes | 30ba68c1b1a289de6f0b4ffd7cda077bab76ed68 | 36528615c1ca972190772a0ea016002899aab50a | refs/heads/main | 2023-06-29T19:33:40.439054 | 2021-08-01T19:54:17 | 2021-08-01T19:54:17 | 391,712,922 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 976 | cpp | #include <iostream>
using namespace std;
#define MAX 10
class student
{
char name[30];
char dept[30];
float marks;
public:
void getDetails(void);
void putDetails(void);
};
void student::getDetails(void){
cout << "Enter name: " ;
cin >> name;
cout<<"enter the D... | [
"spdata12@gmail.com"
] | spdata12@gmail.com |
fb9be37acc7472bcc0509ded85e75bc1cbd0ff1a | a9bc65ee14e95519ed6d6ad8549877c6db2b7993 | /Test_avec_String/Test_avec_String.ino | 1f727d74486173f92ffd27be44c4b9b10c29dcd1 | [] | no_license | DrScan7/Arduino-LedMatrice-bluetooth-control | b2543f54207550a6ea8b39445198643e15a61043 | 6b54deba27a4fcdb017bbe176b56fbeab23a777f | refs/heads/master | 2023-03-15T19:10:15.270559 | 2020-09-10T08:05:43 | 2020-09-10T08:05:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,690 | ino | #include "LedControl.h"
LedControl lc=LedControl(2,4,3,4);
String Espaces[][8] =
{{
"02",
"02",
"02",
"02",
"02",
"02",
"02",
"02"
//--0--//
},
{
"0002",
"0002",
"0002",
"0002",
"0002",
"0002",
"0002",
"0002"
//--0--//
}};
String chiffres[][8] =
{{
"0... | [
"coco.hervaud@gmail.com"
] | coco.hervaud@gmail.com |
cd11156b142416a689231e30f21a28cb8663a2cc | 15fb62305a2fa0146cc84b289642cc01a8407aab | /C++/lintCode/LongestCommonSequence.cpp | 2118c0668f1afc97f34570a354722d0724708920 | [] | no_license | geniousisme/leetCode | ec9bc91864cbe7520b085bdab0db67539d3627bd | 6e12d67e4ab2d197d588b65c1ddb1f9c52a7e047 | refs/heads/master | 2016-09-09T23:34:03.522079 | 2015-09-23T16:15:05 | 2015-09-23T16:15:05 | 32,052,408 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 940 | cpp | #include <iostream>
#include <vector>
using namespace std;
class Solution {
public:
/**
* @param A, B: Two strings.
* @return: The length of longest common subsequence of A and B.
*/
int longestCommonSubsequence(string A, string B) {
// write your code here
int alen = A.length()... | [
"chia-hao.hsu@aiesec.net"
] | chia-hao.hsu@aiesec.net |
2717423fe71ac487b6e6a29dcab9dd22ccbfe48b | 1372cfba5973a1269b53b11bffe5fa22b6700f7b | /src/net.cpp | 9d49547016be162520c0e904ff599a0257afa414 | [
"MIT"
] | permissive | SpecTorSCTR/SpecTor | 524d1a7d27f31f3bbf6990e9fc1d21e7114f9d56 | 273e6526a8334ab700c9a2c3104f838c865c4757 | refs/heads/master | 2020-03-18T04:29:08.389616 | 2018-05-28T12:42:47 | 2018-05-28T12:42:47 | 134,289,599 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 67,150 | 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 "init.h"
#include "irc.h"
#include "chainparams.h"
#include "db.h"
#inclu... | [
"39493280+SpecTorSCTR@users.noreply.github.com"
] | 39493280+SpecTorSCTR@users.noreply.github.com |
e938ceca3074077486e8092741a3a2c2118aa016 | 7e76ec0f601bb8eda7baf7b4754cf91f0ec40514 | /MBS/ACH/proj1/nbody/step3.2/main.cpp | 1346ba84130fa6dc6729d37ad6a4ebb76c2ba808 | [] | no_license | yxcvbnm256/VUT_FIT_projects | 6658413865f1deb39b2ca571fa0856996beed01c | f07c9187313014e94bc450bab3e06804907567a3 | refs/heads/master | 2023-01-20T13:40:53.482445 | 2019-06-11T21:07:58 | 2019-06-11T21:07:58 | 180,974,196 | 0 | 0 | null | 2023-01-09T11:37:52 | 2019-04-12T09:16:59 | C++ | UTF-8 | C++ | false | false | 1,022 | cpp | /**
* Architektura procesoru (ACH 2018)
* Projekt c. 1 (nbody)
* Login: xpawlu00
*/
#include <cstdio>
#include "nbody.h"
#include "papi_cntr.h"
int main(int argc, char **argv)
{
FILE *fp;
PapiCounterList papi_routines;
papi_routines.AddRoutine("nbody");
t_particles particles;
if (argc != 3)
{
printf("U... | [
"jan.pawlus@kvasar.cz"
] | jan.pawlus@kvasar.cz |
93d39693cbee97c57a9dc117281735723819c466 | 5874c66568bd026fdcb0560aef2a9ea274ec484f | /redis-desktop-manager/source/redis/ConnectionBridge.cpp | 99ac72b275b734d3b4d065767bbdb5e833c2e734 | [
"MIT"
] | permissive | gary1234qwer/RedisDesktopManager | 12264b9b5d72738927c04a3f0027a70de040f8ca | d34661bd687b81e6bccc720aa3f6e7af3262c4ef | refs/heads/master | 2020-12-25T19:57:02.864046 | 2013-12-09T20:17:03 | 2013-12-09T20:17:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,178 | cpp | #include "ConnectionBridge.h"
#include "RedisConnectionAbstract.h"
ConnectionBridge::ConnectionBridge(const RedisConnectionConfig & c)
: workerThread(nullptr), worker(nullptr), isInitialized(false), config(c)
{
//create worker connection by factory method
worker = RedisConnectionAbstract::createConnection(... | [
"u.glide@gmail.com"
] | u.glide@gmail.com |
4e090d24e0ce26e0c6b64589ee103477ea3cd8bc | 8004625cf29d0744f04edd12f2d73e3e6dfe1b3c | /deployed/Il2CppOutputProject/Source/il2cppOutput/Il2CppMetadataUsage.cpp | 05b64fe2e1384d078ae4ff446b4ca7e392f20ed2 | [
"MIT"
] | permissive | PaulDixon/HelloWorld | 80da8e257357acf4d7b0808cd57d503db0bb8e63 | f73f1eb2f972b3bc03420727e3c383ff63041af9 | refs/heads/master | 2020-03-19T12:19:39.886325 | 2018-06-07T17:53:43 | 2018-06-07T17:53:43 | 136,511,124 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,568,009 | cpp | #include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include "il2cpp-class-internals.h"
#include "codegen/il2cpp-codegen.h"
const RuntimeType* KeyHandler_t326058990_0_0_0_var;
const RuntimeType* ExceptionU5BU5D_t2535001212_0_0_0_var;
const RuntimeType* String_... | [
"chris_paul_dixon@hotmail.com"
] | chris_paul_dixon@hotmail.com |
5df29d9e5d143f4d98388180e049c95f415cc6af | ca2b06de2ffafaab6ee33e99cf0851294b4efe57 | /Metroid/Info.cpp | 56012595c18eee39f6a67e55a4af0e05304732a4 | [] | no_license | datnguyen17997/Metroid | 06a52e4a6e197d4d734aa000b9e6b77c9264f4f8 | c6b23caae3cf38d0caad815fdb6ff47ff749bda4 | refs/heads/master | 2021-05-07T04:29:30.545341 | 2017-11-17T15:22:38 | 2017-11-17T15:22:38 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,533 | cpp | #include "Info.h"
#include "TextSprite.h"
#include <string>
Info::Info() : BaseObject(eID::LIFE_ICON)
{
_iconLife = SpriteManager::getInstance()->getSprite(eID::LIFE_ICON);
_iconLife->setScale(SCALE_FACTOR);
_iconLife->setPosition(50, 25);
_textLife = new TextSprite(eID::FONT, "", GVector2(0, 280));
_textLife->i... | [
"npta97@gmail.com"
] | npta97@gmail.com |
1cf412a58d62039a8dae9a46481c15b812c97827 | 77a4dd62ab4e5f00503a354bdc0fad6e06655a53 | /basicsquare.cc | 8ba070507a705218b414bbd6d613104f8c111fa0 | [] | no_license | abaek/Square-Swapper | 5233d6531cac666670af2174f3cef3099410e192 | 31f0f0863defa5b7c21d69a43461c6ee281fb55c | refs/heads/master | 2021-01-10T19:27:15.887664 | 2014-12-05T19:50:07 | 2014-12-05T19:50:07 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,133 | cc | // ================================================================================
// =============== ===============
// =============== Square Swapper 5000 ===============
// =============== Andy Baek & William Lam ... | [
"andybaek95@gmail.com"
] | andybaek95@gmail.com |
43c43865012a93a7504d140a74b4f37785a8f8c5 | 28f36227496f833f73951612e81d5d3d603e81fc | /GameEngine2D/src/Component/Transform/TransformComponent.h | e993efb263801af6f92d7b5daf7edd9d144c9be2 | [] | no_license | rishi-menon/Game-Engine-Udemy | 65fef4e334114a4ea2114c1b7d259a109df63958 | b707423c1164272ca776919b67223d0ea8cf120a | refs/heads/master | 2022-10-11T10:40:33.730854 | 2020-06-11T04:22:10 | 2020-06-11T04:22:10 | 258,875,501 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 775 | h | #pragma once
#include "Component/Component.h"
#include "TransformPartialComponent.h"
class TransformComponent : public TransformPartialComponent
{
public:
COMPONENT_NAME("Transform")
COMPONENT_TYPE(Transform);
TransformComponent();
TransformComponent(const glm::vec2& pos, const glm::vec2& vel, const glm::... | [
"rishimenon212@gmail.com"
] | rishimenon212@gmail.com |
830f5bf2f8a730377cf715c11ab7b84b597b4c77 | c690cc401fac423c7aa573a3a12c961850751be1 | /src/init.h | 6b907b1bdf7a84b8ad3350c1fbbf247781c5ca0c | [
"MIT"
] | permissive | kimseonghui/MercyCoin | 9cb5c8746492d95436be295712cb7b7ba9336b1f | b051db796c5d0cca637056916a558bd55ce19de1 | refs/heads/master | 2021-01-20T09:21:31.005075 | 2017-08-28T01:04:10 | 2017-08-28T01:04:10 | 101,590,630 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 520 | h | // Copyright (c) 2009-2015 Satoshi Nakamoto
// Copyright (c) 2009-2015 The Bitcoin developers
// Copyright (c) 2015 The MercyCoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef BITCOIN_INIT_H
#define BITCO... | [
"ksh21tprld@naver.com"
] | ksh21tprld@naver.com |
3c9603709d36c51e664decfeb0529c5fc12e8bc8 | a97548145f521d666d15fc98e2066d1e66030b49 | /src/consensus/pbft/libbyz/libbyz.h | 450afc577ee7bcd561362e33ae70f2eeb49dc245 | [
"Apache-2.0",
"MIT",
"LicenseRef-scancode-generic-cla"
] | permissive | g-ongetta/CCF | eb213e92db238c9de1d3333e8b07fce3ae69920a | 190b3ca4c41d83719df6aa37c6493cff976ed163 | refs/heads/master | 2020-09-07T04:17:16.893293 | 2020-03-25T12:17:02 | 2020-03-25T12:17:02 | 220,652,529 | 0 | 0 | Apache-2.0 | 2020-05-17T13:54:39 | 2019-11-09T14:17:28 | C++ | UTF-8 | C++ | false | false | 7,211 | h | // Copyright (c) Microsoft Corporation.
// Copyright (c) 1999 Miguel Castro, Barbara Liskov.
// Copyright (c) 2000, 2001 Miguel Castro, Rodrigo Rodrigues, Barbara Liskov.
// Licensed under the MIT license.
#pragma once
#include "consensus/pbft/pbftpreprepares.h"
#include "consensus/pbft/pbftrequests.h"
#include "cons... | [
"noreply@github.com"
] | noreply@github.com |
a42e2757c8acf3898f073c5ab9753d0e14131231 | f9a82c5090c6136993438cbb20cb7bedc5c67cb4 | /30.cpp | bfd40e472c881be060dc372d01870f677b58f3ac | [] | no_license | JarvisZhang/Leetcode | 78d1dab0e8dda79aa00f3a8f76897432813cc108 | ed7d2975b0719ae2ce25bedb23ca57b62e74a58d | refs/heads/master | 2020-06-03T19:18:58.503493 | 2015-09-23T13:17:49 | 2015-09-23T13:17:49 | 38,595,044 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,431 | cpp | //
// 30.cpp
// LeetCode
//
// Created by 张佐玮 on 15/5/14.
// Copyright (c) 2015年 JarvisZhang. All rights reserved.
//
// Title: Substring with Concatenation of All Words
//
#include <iostream>
#include <vector>
#include <unordered_map>
using namespace std;
class Solution {
public:
vector<int> findSubstring(... | [
"zuowzhang@buaa.edu.cn"
] | zuowzhang@buaa.edu.cn |
216e84be77717b59292db252d73d8b637df26c7f | d98a1a9c2bf4020214b5242e29aca24eacebe92d | /actividades/sesion5/Bruno/actividades clase/ejercicio 7/main.cpp | 860d161a0f2101a1ecc6d081642d82d4f60a543a | [
"MIT"
] | permissive | bruno99/Programacion-I | d893f23ac8e5a03c61e4afef3b00d5c0d56a8de0 | 4cdbf17d554460a74eac4a5c71dbfa7e0b295e84 | refs/heads/master | 2020-04-03T07:55:22.961712 | 2018-10-28T21:36:26 | 2018-10-28T21:36:26 | 155,117,950 | 1 | 0 | MIT | 2018-10-28T21:34:55 | 2018-10-28T21:34:55 | null | UTF-8 | C++ | false | false | 390 | cpp | #include <iostream>
using namespace std;
int main()
{
int b=0,num=5;
double suma=0.0;
cout<<"Para salir ingresa cero"<<endl;
while(num!=0){
cout<<"Ingresa un numero"<<endl;
cin>>num;
suma=suma+num;
b++;
}
... | [
"noreply@github.com"
] | noreply@github.com |
0397596f54da8a144a1042b2aa5139593db37eef | 36118d6e95e3833bb34fb2366e8e2d7b8d71ed46 | /chap09/ex_06/Rational.h | 6a0eccfcf29e0d5e6faee80416b6f1535c226580 | [] | no_license | Amelia32/zhang_jiayi | 8060255068c0492dbb5771fa5a7532d836b9033b | 0b2ea68a3029ff880636fbce4b604844931d3fed | refs/heads/master | 2020-04-03T02:25:33.180746 | 2019-04-21T09:05:19 | 2019-04-21T09:05:19 | 154,956,040 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 420 | h | #ifndef RATIONAL_H
#define RATIONAL_H
class Rational
{
public:
Rational( int = 0, int = 1 );
Rational addition( const Rational & );
Rational subtraction( const Rational & );
Rational multiplication( const Rational & );
Rational division( const Rational & );
void printRational ();
void printRat... | [
"784001396@qq.com"
] | 784001396@qq.com |
f75dd7aa5a974625d9a89ad129d3c13ff810904b | cae586c2716e61b3693a4a7fa68ebe80046738b5 | /classList/src/List.hpp | 07aa444717caf5fb93f518fe7dc2486ae4ec2137 | [
"MIT"
] | permissive | Yeva9/Data_Structures | 76e86f06d127380d5b8a625b728bb6371adb693e | 6d4418042d13bde95a9a099a873cb7b95550b8a8 | refs/heads/master | 2021-06-25T09:59:22.798788 | 2021-05-09T18:08:23 | 2021-05-09T18:08:23 | 222,251,532 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,368 | hpp | #include <iostream>
#include <cassert>
#include "Node.hpp"
class List
{
public:
List(); // creates empty list
List(int count, int val); // list with 'count' copies of elements with value 'val'
List(const List&); // copy ctor
~List(); // dtor
List& operator=(const L... | [
"eva.hovnanyan.1999@gmail.com"
] | eva.hovnanyan.1999@gmail.com |
7c04c90425d122c66f6e33338dfe1d491670797a | 163ec613e4df8cb2900ce4e3340f6e10ad112c9f | /src/qt/sendcoinsentry.cpp | 281d4245dd9146d28fb3eef389909fcc7494a6fc | [
"MIT"
] | permissive | Martinzhao1/Passwordcoin | 563d8e1c75aa72fd3a04fa8ee0536fe79257b6da | 862bf3dbb32f14985744fc4fba941fe35c6340fb | refs/heads/master | 2021-01-01T03:45:24.707877 | 2016-05-13T03:43:55 | 2016-05-13T03:43:55 | 58,696,904 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,301 | cpp | #include "sendcoinsentry.h"
#include "ui_sendcoinsentry.h"
#include "guiutil.h"
#include "bitcoinunits.h"
#include "addressbookpage.h"
#include "walletmodel.h"
#include "optionsmodel.h"
#include "addresstablemodel.h"
#include <QApplication>
#include <QClipboard>
SendCoinsEntry::SendCoinsEntry(QWidget *parent) :
... | [
"44932150@qq.com"
] | 44932150@qq.com |
1bcbe2c612c556135c52d7a79378b596b987d3bf | 91e0031b55d93eabb36e8a29234b3ce58e97cbe1 | /rules/ctr/52/nc1.cpp | 606586255c53b07291c734386121a20a2f0d9091 | [] | no_license | yesmar/sei-cert-cppcs-samples | d76c2f13fc21d01a04ae544118f272abce2b57b1 | 88f9bd1d9f4769f518b1348690bfc02e1647d16a | refs/heads/main | 2023-02-16T19:29:53.066649 | 2021-01-17T22:22:53 | 2021-01-17T22:22:53 | 313,092,118 | 4 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 151 | cpp | // CTR52-CPP: Noncompliant Code Example
#include <algorithm>
#include <vector>
void f() {
std::vector<int> v;
std::fill_n(v.begin(), 10, 0x42);
}
| [
"yesmar@gmail.com"
] | yesmar@gmail.com |
88afe788ff03a5f3dfd55ee40d70e3c845497bbf | 4563dcb8af4c2e9d70aba2b97df6b57607570ae7 | /Binary_Op_Command.cpp | 4dca2ea7974ada5584398cbdbba09a80e6cdfbfa | [] | no_license | robjansen15/Calculator-SoftwareDesign | 043e7bd301bfd2d82c368811d1b79461a3ceccff | 5e24cf72aa066732efe74b04b96220833a05186f | refs/heads/master | 2020-07-23T19:29:43.559056 | 2016-09-01T23:39:13 | 2016-09-01T23:39:13 | 67,174,002 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 640 | cpp | // $Id: Array.cpp 827 2011-02-07 14:20:53Z hillj $
// Honor Pledge:
//
// I pledge that I have neither given nor receieved any help
// on this assignment.
//
#include "Binary_Op_Command.h"
//constructor
Binary_Op_Command::Binary_Op_Command() {}
//destructor
Binary_Op_Command::~Binary_Op_Command() {}
//execute the ... | [
"robjansen15@gmail.com"
] | robjansen15@gmail.com |
430f662e59119d3de959ffd53721d5ed5f7e572c | 7d8d3f888d48a7de2b5851b7b133b065c2ceb00e | /quiz7/main.cpp | 2665b3ea01edb396ec49e5e2a6a708488d331284 | [] | no_license | Ventura-CS-V13-Spring2021/assignments-elee91 | 2bbb6864852155e027336e9384eb18311ebf00cc | ffa0714530059f10eee683371c8f5fe900950d7e | refs/heads/main | 2023-04-23T05:35:39.161202 | 2021-05-14T23:30:33 | 2021-05-14T23:30:33 | 333,192,096 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 353 | cpp | // Ch07Q Class with class=type member variable
#include "rectangle.hpp"
#include "coordinate.hpp"
int main()
{
Coordinate lbval(0.0, 0.0);
Coordinate rtval(10.0, 10.0);
Rectangle r1(lbval, rtval);
r1.printRectangle();
lbval.setXY(-20.0, -20.0);
rtval.setXY(20.0, 20.0);
r1.setLBRT(lbval, r... | [
""
] | |
fa43333c9055844716e44c0ef9a52c5cf3797ccf | 9252e11bbda6d09850199438843f3d5f57ffc4cf | /Useful Code/Randomizable.h | 9876b7c7c22e19281edb18fee4e0ca87a35832f7 | [] | no_license | hakerg/Useful-Code | cde87646b53b0dd0ebb1c751fd159f4c9e50d464 | fbc0c6f46687056c388295503965a73e195a29a1 | refs/heads/master | 2020-04-07T20:46:25.723501 | 2019-01-05T15:25:11 | 2019-01-05T15:25:11 | 158,702,601 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 345 | h | #pragma once
namespace uc
{
class Randomizable
{
public:
Randomizable();
virtual ~Randomizable();
// sets all data members to random values
virtual void randomize() = 0;
// randomizes object with a certain probability
// you can override this method with a mutation algorithm
virtual void mutate(dou... | [
"grzegorzabedzki@gmail.com"
] | grzegorzabedzki@gmail.com |
e942faeb8af6272d661d2efa8f2343efad3295a5 | 9a5729b497c80a24fb4a0506db7104fb76770e50 | /voip.cc | ea0ff500ed77f4bba61f45454387239cd919fe96 | [] | no_license | Reclusiarca/PriorityQueuePtP | 9b447be77a317cb98df004c071ac659f9638b4ed | 6f0e49626ea775b617c05bbacbd6a8b86fbcd41f | refs/heads/master | 2021-01-12T07:03:00.515425 | 2017-02-05T12:22:15 | 2017-02-05T12:22:15 | 76,901,116 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,213 | cc | #include <iostream>
#include <fstream>
#include <string>
#include <stdlib.h>
#include <cassert>
#include "ns3/core-module.h"
#include "ns3/network-module.h"
#include "ns3/csma-module.h"
#include "ns3/applications-module.h"
#include "ns3/internet-module.h"
#include "ns3/point-to-point-module.h"
#include "ns3/callback.h"... | [
"noreply@github.com"
] | noreply@github.com |
8d7d6b10ce9e407b6053e8206ca2d7652025466f | da94b9bd63a9eb355e41385521c7ba43b3c43cf9 | /plugins/Physics/Scalar/LinearAdvSys2D.hpp | b7a91bcc20117972d3d4388058aaca354026281f | [] | no_license | zhanggjun/coolfluid3 | 9630cc4c4e6176d818ad20c9835ba053ce7c7175 | 04a180e1f8fdc20018dd297c00a273462e686d03 | refs/heads/master | 2023-03-26T02:54:11.595910 | 2011-08-09T07:52:37 | 2011-08-09T07:52:37 | 526,964,683 | 1 | 0 | null | 2022-08-20T15:25:58 | 2022-08-20T15:25:57 | null | UTF-8 | C++ | false | false | 3,893 | hpp | // Copyright (C) 2010 von Karman Institute for Fluid Dynamics, Belgium
//
// This software is distributed under the terms of the
// GNU Lesser General Public License version 3 (LGPLv3).
// See doc/lgpl.txt and doc/gpl.txt for the license text.
#ifndef CF_Physics_Scalar_LinearAdvSys2D_hpp
#define CF_Physics_Scalar_Line... | [
"tlmquintino@gmail.com"
] | tlmquintino@gmail.com |
e373a0baf4bf933e27eefa15b16ff55b2b2e4eb7 | 45e66980d15a06b264f31f9a7d6dcd6dc271b815 | /src/cuckoocache.h | a18f8a143c9019a59930cf6c638ce9290766dbbd | [
"MIT"
] | permissive | Lucky1689/ukcoin | e3ff17c66c85f5531d81580e4bc84ff3994924af | 11bcd6ded7b11a7179e32f1bf0d6f75615c0dde1 | refs/heads/master | 2022-09-20T17:25:14.553647 | 2020-06-03T18:08:17 | 2020-06-03T18:08:17 | 262,382,958 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 19,103 | h | // Copyright (c) 2016-2018 The Bitcoin Core developers
// Copyright (c) 2017 The Raven Core developers
// Copyright (c) 2018 The Rito Core developers
// Copyright (c) 2020 The Ukcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses... | [
"Ukcoin168@gmail.com"
] | Ukcoin168@gmail.com |
11ce1400b6512ea9e9221143c8ce0c8433dbd786 | 28aa891f07cc2240c771b5fb6130b1f4025ddc84 | /inc/pipeline/MAVideoModes.hpp | 04f039aa1b44329634a513d462d5446d0528087e | [] | no_license | Hincoin/mid-autumn | e7476d8c9826db1cc775028573fc01ab3effa8fe | 5271496fb820f8ab1d613a1c2355504251997fef | refs/heads/master | 2021-01-10T19:17:01.479703 | 2011-12-19T14:32:51 | 2011-12-19T14:32:51 | 34,730,620 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 856 | hpp | #ifndef MA_VIDEOMODES_HPP
#define MA_VIDEOMODES_HPP
#include "VideoModes.hpp"
namespace ma{
class MAVideoModes:public VideoModes<MAVideoModes> {
public:
//Get the pixel depth of a video mode in bits.
int getDesktopDepth () const
{return 0;}
//Get current desktop screen resolution.
scalar2i getDesktopRe... | [
"luozhiyuan@ea6f400c-e855-0410-84ee-31f796524d81"
] | luozhiyuan@ea6f400c-e855-0410-84ee-31f796524d81 |
e4b90879e438b5c26f93752cc1b4c5c02279a75f | 42fd6f8ada8b1a18657aa75b28e02d5e89c25f89 | /build/Il2CppOutputProject/Source/il2cppOutput/Microsoft.MixedReality.Toolkit.Demos.Gltf.cpp | 017ae0ac3b7e9edfe2884eb34df1272c6a8dc000 | [] | no_license | Benjamin345/Projet_PI2_Hololens | b19add6f1425f2fc3b4b1656691b7773b6b070ce | 51cfb261c4d6e521c67f512b91eccc2df8d7c998 | refs/heads/master | 2021-01-03T08:12:57.262892 | 2020-02-12T11:37:23 | 2020-02-12T11:37:23 | 239,991,685 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 187,480 | cpp | #include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <cstring>
#include <string.h>
#include <stdio.h>
#include <cmath>
#include <limits>
#include <assert.h>
#include <stdint.h>
#include "codegen/il2cpp-codegen.h"
#include "il2cpp-object-internals.h"
template ... | [
"benjamin.charpentier@devinci.fr"
] | benjamin.charpentier@devinci.fr |
517bbe6a1faf7b10be8c7f7b07178792c747cb48 | 7e0a8509c3ab1c0389dff44d8fea2b1223c86bc4 | /test/graph/dijkstra_test.cpp | 2062200840c181a03d056be3f084ee751c78d1f6 | [] | no_license | kAAzuki/Algorithm | acb2146542444b9aeb6febe0e8928782d237e238 | c44ba593380d187892cd473c25f7a7a129dbb607 | refs/heads/master | 2020-07-29T16:05:02.568269 | 2019-09-03T18:54:18 | 2019-09-03T18:54:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 486 | cpp | #include "algotest/graph/dijkstra_test.h"
#include "gtest/gtest.h"
using namespace algotest;
#include "base.h"
#include "bitop.h"
#include "datastructure/radixheap.h"
#include "graph/dijkstra.h"
struct DijkstraTester : public DijkstraTesterBase {
ll min_dist(VV<DijkstraEdge> g, int s, int t) final {
retu... | [
"yosupo06@gmail.com"
] | yosupo06@gmail.com |
d1ea4700c538487302a852fdf2607c9c65c69e46 | 138e55c5456c45996ecc3fcdc3eefa9fa1152adc | /Single Number III.cpp | 774a69129009b3a84459141d76c5d014b3548638 | [] | no_license | guinao/LeetCode | ed5779a4403652020d450a9b3a187ae0cacb3bd7 | 0520cdba1a6b13f073b5fcffb9a84ddad9ed910b | refs/heads/master | 2021-01-01T18:48:01.646152 | 2016-02-26T07:35:35 | 2016-02-26T07:35:35 | 31,796,314 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 432 | cpp | #include <vector>
#include <functional>
#include <numeric>
#include <algorithm>
using namespace std;
class Solution {
public:
vector<int> singleNumber(vector<int>& nums) {
vector<int> ans(2,0);
int diff = accumulate(nums.begin(), nums.end(), 0, bit_xor<int>());
diff &= -diff;
for(int i=0; i<nums.size(); ++... | [
"yingyuanxiang34@sina.com"
] | yingyuanxiang34@sina.com |
a592a18db8b51a765f343253b481c47493333c8b | b8a783cf0b3321e2f115e4e2000c1bcbbc031147 | /Combinations.cpp | cad3eef4e9796c00bc2c03a0dcb1d0c0806d8f9b | [] | no_license | Redwanuzzaman/Code-Library-CPP | 96aa322043e4b461bc1f1592b39da94295e70429 | ef7f278e10a52a3775309174586e8bbc9b9938e7 | refs/heads/master | 2022-07-30T00:29:27.984414 | 2020-05-07T11:56:11 | 2020-05-07T11:56:11 | 235,181,072 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 801 | cpp | #include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define Mod 1000003
#define mx 1000001
ll fact[mx];
ll bigmod(ll base, ll power)
{
ll res = 1;
while(power)
{
if(power & 1) res = (res * base) % Mod;
base = (base * base) % Mod;
power >>= 1;
}
return res;... | [
"noreply@github.com"
] | noreply@github.com |
da42ffaf0ce48516b1b4fdf30d414a192b2e3e46 | 61872b1f842fe765c0bc8df19fb5039802513704 | /C++_Programs/PracticeCPPprograms/AllocateBooks.cpp | 96d0cfaa1e725b657a4c382e3fe5ccc3e74b6a90 | [] | no_license | saransh09/CppPrograms | 281d33e100f6dc7baa3851b0116654b8cbbc1f35 | 921cbb4d85b4970191a540712856acea381742ff | refs/heads/master | 2021-01-18T13:16:22.701747 | 2017-10-11T16:17:04 | 2017-10-11T16:17:04 | 100,372,434 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 176 | cpp | #include <bits/stdc++.h>
using namespace std;
bool(vector<int> arr, int n, int m, int curr_min) {
int studentsRequired = 1;
int curr_sum = 0;
}
int main() {
return 0;
} | [
"saransh.agarwal@gmail.com"
] | saransh.agarwal@gmail.com |
4bb90b86655ba8033e25ed4679d823a6a5bc4a67 | ce6229f5915f9e6de1238861b4a940d61e56960b | /Sonder/Temp/il2cppOutput/il2cppOutput/mscorlib_System_ApplicationException474868623.h | 4c28278e1cf1fdd815a3d125aa6ea10082231e2d | [
"Apache-2.0"
] | permissive | HackingForGood/GoogleyEyes | d9e36e3dffb4edbd0736ab49a764736a91ecebcf | a92b962ab220686794350560a47e88191e165c05 | refs/heads/master | 2021-04-15T10:03:59.093464 | 2017-06-25T17:32:52 | 2017-06-25T17:32:52 | 94,575,021 | 7 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 534 | h | #pragma once
#include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <stdint.h>
#include "mscorlib_System_Exception1927440687.h"
#ifdef __clang__
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Winvalid-offsetof"
#pragma clang diagnostic ign... | [
"anishdhesikan@gmail.com"
] | anishdhesikan@gmail.com |
8e953f2700f4906b7874e3dc9cc2071b9c7b704d | 5e1afd243b9972138591b43149dc9dbb3a017879 | /Content/C++/datastructures/DisjointSparseTable.h | e75c09d0b8afffeb9d4a34d3a2b81851ab7527ad | [] | no_license | pidddgy/Resources | 47bfd6fe019a3c59ac8468bb04c114b4e4679e07 | 624b2fcde28abe035cf7b54087c839bdabc623f8 | refs/heads/master | 2022-12-28T15:31:41.243316 | 2020-09-30T05:38:07 | 2020-09-30T05:38:07 | 300,311,262 | 0 | 0 | null | 2020-10-01T14:35:43 | 2020-10-01T14:35:42 | null | UTF-8 | C++ | false | false | 2,501 | h | #pragma once
#include <bits/stdc++.h>
using namespace std;
// Disjoint Sparse Table supporting associative range queries on a static array
// Indices are 0-indexed and ranges are inclusive with the exception of
// functions that accept two iterators as a parameter, such as
// the constructor, which are exclusive
/... | [
"wesley.a.leung@gmail.com"
] | wesley.a.leung@gmail.com |
91131b9b4f67693b1099b50adbf6fd68bbd21cda | bfbe07f8edd3b5b3c1ac2393b8508ced3845219d | /Contests/Codechef/JULY20A/DRGNDEN.cpp | d0f1d135dfabcb92d680557eb4cfc5e909108e56 | [] | no_license | srinjoyray/Competitive | 5ee384b446a20aad2cdcea8e08304101a9a92b34 | d6680510462a915756c4835374d2d6a342960f5f | refs/heads/main | 2023-06-16T16:08:10.787883 | 2021-07-14T14:19:17 | 2021-07-14T14:19:17 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,911 | cpp | #include <bits/stdc++.h>
using namespace std;
#define ll long long
#define pb push_back
#define mp make_pair
#define ar array
// #define ff first
// #define ss second
const int mxN = 2e5 + 10;
ll st[4 * mxN];
vector <ll> h(mxN), a(mxN), decr(mxN), incr(mxN);
map <ll,ll> pos;
const ll mxm = 2e9;
void build( int s... | [
"ankurkayal1234@gmail.com"
] | ankurkayal1234@gmail.com |
2d71b6ba4fdda0a23a8cfe11a2f7f953bcf63e62 | f88749054b1277b9960474dd5fde2cf95ea90dea | /app/src/main/cpp/libs/google/protobuf/descriptor_database.h | f5c9a7dc5c95fc5fc66cfb29463a7e3240cfd9ab | [] | no_license | momo145/NativeSocketDemo | d8a5c22e2726ca73a62eb22b13d021739d92e7e4 | 9afe612c1a2df48a20638314710801fcac7ef97a | refs/heads/master | 2020-03-29T01:48:31.601256 | 2018-09-19T07:10:00 | 2018-09-19T07:10:00 | 149,407,247 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 17,775 | h | // Protocol Buffers - Google's data interchange format
// Copyright 2008 Google Inc. All rights reserved.
// https://developers.google.com/protocol-buffers/
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
... | [
"416941523@qq.com"
] | 416941523@qq.com |
e9f1908422d6feb5eda46b95029bad864e46cf00 | 6fae60764b0aa16d950d054b577500d4f6bd9b76 | /src/ActivateStep.h | 991995b0747cfa20b728df5e4983736960438e20 | [
"MIT"
] | permissive | eblade/steps | 5d2a21029161a26cd9186e345e5afefda98997e5 | 4a952a6c35597fc51e1a52ffbea5dcb74651c376 | refs/heads/master | 2021-01-21T04:19:12.547092 | 2016-04-12T21:25:17 | 2016-04-12T21:25:17 | 53,533,769 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,321 | h | #ifndef ACTIVATESTEP_H_
#define ACTIVATESTEP_H_
#include "Step.h"
#include "Change.h"
#include "Toolbar.h"
class ActivateStep : public Step {
public:
ActivateStep();
~ActivateStep();
void draw(int x, int y, bool executing, ofTrueTypeFont font, ofTrueTypeFont font_big);
void execute... | [
"johan@egneblad.se"
] | johan@egneblad.se |
da903ac394502efdc8d62a951b9043546d69da51 | 92244b4c5371ababbeb65b1431450193ec84eaec | /Tetris/Tetris/Getinput.h | 73342d4be73fc1d17a2cf3d97ea4fc680b1abb67 | [] | no_license | KaSoB/Tetris | 2c3ca39a29ac8fc4763f7f267e81ba795e920915 | 0f321c0be5e5c35da693edc87d41781bce136c2c | refs/heads/master | 2020-03-11T11:34:00.007156 | 2018-04-20T15:45:13 | 2018-04-20T15:45:13 | 129,972,850 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 939 | h | #pragma once
#include <iostream>
#include <conio.h>
class GetInput {
public:
enum CodeKeys { KEY_UP = 72, KEY_DOWN = 80, KEY_LEFT = 75, KEY_RIGHT = 77, KEY_DEFAULT = 0 };
static CodeKeys keyPressEvent();
static std::string inputString();
template <typename T>
static T input() {
T n;
while (!(std::cin >> n)) { ... | [
"kamil.sobien@gmail.com"
] | kamil.sobien@gmail.com |
1bcaef3abf8da059b21ef0ca50a70e5c5f2b8488 | d864f36a5445df80a1c365af1561b1e11fbec6c3 | /Bomberman/LevelLoader.h | 477a60ac3966a31e0695294a97e21fd8e25b033b | [] | no_license | meirkl/Bomberman | 377bd209a36075147d30721f1fe1fc4f9dcc7491 | d27bfdbdb34e546db88ff4cca20e075edd615d83 | refs/heads/master | 2020-03-24T09:14:07.465348 | 2018-07-28T06:07:09 | 2018-07-28T06:07:09 | 142,623,219 | 3 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 1,186 | h | #pragma once
////////////////////////////////////////////////////////////
// Headers
////////////////////////////////////////////////////////////
#include "Utilities.h"
#include "Robot.h"
#include "Factory.h"
#include "Tile.h"
#include <memory>
////////////////////////////////////////////////////////////
/// \brief T... | [
"mrzkeller@gmail.com"
] | mrzkeller@gmail.com |
90e69ae2dca1499887a9ba3c13715218d3a1978e | 7a968d337839510b2623d8cbce0238cfed4babb0 | /lpc11uxx_sd/SDFatFs/sdfatfs.h | 2ef9db09a3a19888c62accf7878e21c7733e48c3 | [] | no_license | ADTL/ARMWork | 637ab108346de001fcbc3b750ecff96abb88f2fd | 85e959894cf5d200f70662a5deb4f2c432a61b83 | refs/heads/master | 2020-02-26T17:14:03.242368 | 2014-01-13T15:04:05 | 2014-01-13T15:04:05 | 16,342,797 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,388 | h | #ifndef _SDFATFS_H_
#define _SDFATFS_H_
#include <stdint.h>
#include "ff.h"
#include "mmc_ssp.h"
#include "armcmx.h"
#include "SPI.h"
class SDFatFs {
FATFS fatfs; /* File system object */
//public:
// FIL file; /* File object */
private:
SPIBus & bus;
GPIOPin chipselect;
GPIOPin card... | [
"una.veritas@me.com"
] | una.veritas@me.com |
ee01bbf0bdc923b25c4321d13cd4c72f48d3ceaf | 33825c8e1b87acf3f2e7d4093d2d2de9a75c9794 | /inc/XPoolAlloc.h | ee08cbd1e760a542a8d0fa50452f903f2d00b393 | [] | no_license | vehar/xplat | 5ecd6edb61777ee0df4dfb1d148f26c02d420352 | 8233bae3f39fca2555fd613e063ff6964622052a | refs/heads/master | 2023-03-15T22:24:51.257932 | 2012-10-13T01:31:57 | 2012-10-13T01:31:57 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 585 | h | #ifndef _X_POOL_ALLOC_H_
#define _X_POOL_ALLOC_H_
#ifndef __cplusplus
#error "This C++ header was included in C file"
#endif
#include <XDebug.h>
#include <XPool.h>
template <class T, int QTY>
class XPoolAlloc {
#ifndef DMALLOC
public:
void* operator new(size_t) {
X_ASSERT(entries);
return entries->Allocate();
... | [
"vshymanskyi@gmail.com"
] | vshymanskyi@gmail.com |
c8fc6bed86762588b113ca4a2e3854f1c32921fe | ed97fb5c71da7ed89235432e3971bb0ef6064f8b | /algorithms/cpp/334.cpp | de206da73f005bcaa844ab3293cdbfe1346f66ac | [
"MIT"
] | permissive | viing937/leetcode | 8241be4f8bc9234a882b98ada2e5d13b0ebcca68 | b07f7ba69f3d2a7e294f915934db302f43c0848f | refs/heads/master | 2023-08-31T18:25:06.443397 | 2023-08-31T15:31:38 | 2023-08-31T15:31:38 | 37,374,931 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 546 | cpp | #include <iostream>
#include <vector>
using namespace std;
class Solution {
public:
bool increasingTriplet(vector<int>& nums) {
if (nums.size() < 3)
return false;
int min = INT_MAX, minSecond = INT_MAX;
for (int i = 0; i < nums.size(); i++) {
if (nums[i] <= min)
... | [
"viing937@gmail.com"
] | viing937@gmail.com |
dcc2dc47d5606f5d313e58dc22872a9d9538f6b4 | 9745cba981f9053d0247daad5cf9f210adefbed7 | /game_jam_2021/sunlight/sunlight.ino | 19c7c69630a8aae67402f44d0ec0ba0f1f9b3716 | [] | no_license | ajstamm/blinks_public | 3d22c5d4ac34bb6456b2f77755c7928d05666564 | 39c154f3d5658b601d4843a1b133976fb3b05b01 | refs/heads/main | 2023-03-29T07:48:34.707478 | 2021-03-28T23:51:54 | 2021-03-28T23:51:54 | 334,500,380 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,674 | ino | /* this is more simulation than game
*/
byte sunDim = 0; // sun brightness
byte oceanDim = 0; // ocean brightness
byte sunID = false; // am a sun
byte oceanID = false; // am an ocean
byte plantDim = 0;
byte flowerDim = 0;
#define DAY_LENGTH 2000
// store dimness level 16 sun, 4 water
// byte sendData = (sunDim << 4... | [
"13263174+ajstamm@users.noreply.github.com"
] | 13263174+ajstamm@users.noreply.github.com |
ee9ad6d19aecd3b2daec9b260fb65febf5c7085f | 3395b352353c9eb4e49fd26cdc3355410a748b09 | /src/gui/reporter.h | 3444b51bde5a7d5fcc68132898bf77aca1a1070f | [] | no_license | Teuira/fitmodelqt | f9e6fa5496041b4e8fa7103c69471892763877b8 | f78c9f70f19ca5a29965087c080e8a7fd9dc471b | refs/heads/master | 2020-04-01T21:10:33.697850 | 2019-02-06T16:57:07 | 2019-02-06T16:57:07 | 153,640,901 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 486 | h | #ifndef REPORTER_H
#define REPORTER_H
#include "fitmodeltreewrapper.h"
#include <QListWidget>
#include <QString>
class Reporter
{
public:
Reporter(QString fileName,
QString statsPath,
std::vector<FitModelTreeWrapper *> *forest,
QListWidget *positions);
void save(QString ... | [
"cdvd87@yahoo.it"
] | cdvd87@yahoo.it |
62665010e693725214dccaa7276b068f8aceb62c | 45cf03f6b407a3345030c238c0f92f90cc7eaa0b | /include/zapi/lang/internal/StdClassPrivate.h | efd3bb125d7cf066ed4ed8f1c8df0eac086b25bf | [
"Apache-2.0"
] | permissive | viest/zendapi | fe46f0efaf2469b8ecb2c455e2a0e7a20c9e7d3e | f71fd35fb40d132bd116383bced4c95b02f79092 | refs/heads/master | 2021-04-15T04:54:36.971959 | 2018-03-26T13:38:44 | 2018-03-26T13:38:44 | 126,834,070 | 0 | 0 | null | 2018-03-26T13:36:14 | 2018-03-26T13:36:14 | null | UTF-8 | C++ | false | false | 1,476 | h | // @copyright 2017-2018 zzu_softboy <zzu_softboy@163.com>
// @copyright 2013, 2014 Copernica BV
// Emiel Bruijntjes <emiel.bruijntjes@copernica.com>
//
// THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
// IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
// OF MERCHANTABILI... | [
"zzu_softboy@163.com"
] | zzu_softboy@163.com |
14f79916202ebc546596a326be8849858efc3c69 | f9726d2483d3c5ac38c8867a9cf962dc1bcaf5b4 | /CSE 225L Data Structures and Algorithms/Resources/Codes Previous/Spring-2019-CSE225 1/Lab 3 task 2( Division)/complex(12).h | 075faa87b54f58b8e2e391f6559d7558726c175c | [
"MIT"
] | permissive | diptu/Teaching | e03c82feefe6cda52ebd05cd644063abb3cf8cd5 | 20655bb2c688ae29566b0a914df4a3e5936a2f61 | refs/heads/main | 2023-06-27T15:27:32.113183 | 2021-07-31T05:53:47 | 2021-07-31T05:53:47 | 341,259,841 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 541 | h | #ifndef COMPLEX_H_INCLUDED
#define COMPLEX_H_INCLUDED
class Complex
{
friend Complex operator-(Complex &a, Complex &b);
friend Complex operator-(int value, Complex &a);
friend Complex operator-(Complex &a, int value);
friend Complex operator*(Complex &a, Complex &b);
friend Complex operator*(int value, Complex &a);
f... | [
"diptunazmulalam@gmail.com"
] | diptunazmulalam@gmail.com |
3756e0105f12b5f7ce6ac746adfe86297fb99f17 | 56ef2d73b64f56205566a804895284c84581d151 | /6.3 - Formative/bubble_sort.cpp | 71b4579c7f6c0bbf22078d5c98ef7cdad7cbf39d | [] | no_license | Worgaros/6.3---Formative | 1e5e48704add2685efea242d39d091c01b8369d5 | 5edac5c562b5ab8066d4521a808a4fb1eece45e0 | refs/heads/master | 2020-08-04T12:53:08.546783 | 2019-10-01T16:43:51 | 2019-10-01T16:43:51 | 212,136,367 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 466 | cpp | #include "bubble_sort.h"
void bubble_sort(int tableSize)
{
std::vector<int> numbers;
srand(time(NULL));
for (int i = 0; i < tableSize; i++)
{
numbers.push_back(rand());
}
for (int i = 0; i < numbers.size() - 1; ++i)
{
for (int j = 0; j < numbers.size() - i - 1; ++j)
{
if (numbers[j] > numbers[j + 1])... | [
"williamp10022000@gmail.com"
] | williamp10022000@gmail.com |
2a5b8b9f6d70afb2eba12cc2967974bff5363de4 | fa13bc47586d62f9dd4c76b489ae64d2ea49a23e | /interactive_icp.cpp | 0e14effb53e10b270bc47cb44a875a85caacb003 | [] | no_license | 1278741833/pcl-1 | 46958af09922b69fbd24be2711029f889d11960e | 501ef4b86e4b73e212ba3d5fd5ebedbef3304684 | refs/heads/main | 2023-03-26T06:52:42.631510 | 2021-03-27T01:38:51 | 2021-03-27T01:38:51 | 325,173,766 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,394 | cpp |
#include <string>
#include <pcl/io/ply_io.h>
#include <pcl/point_types.h>
#include <pcl/registration/icp.h>
#include <pcl/visualization/pcl_visualizer.h>
#include <pcl/console/time.h> // TicToc
typedef pcl::PointXYZ PointT;
typedef pcl::PointCloud<PointT> PointCloudT;
bool next_iteration = false;
void
print4x4Mat... | [
"1278741833@qq.com"
] | 1278741833@qq.com |
fda7a1b96c916cc598ca5a153c4c2ec1bdd370b7 | cbfe6c6219a40e9e2043ad2bc3051a441803702c | /Param_SamEn.h | 232da20a6a9b598ef4a3add35b05e2a72f38a3d8 | [] | no_license | JunkaiCheng/EMG-Processing | 034a46f9b6ae998496548351411f8f884b8b03fd | 828ec1250f97c7987f8a1cb02b83f9ff35cb6761 | refs/heads/master | 2020-07-23T22:14:12.015252 | 2019-09-11T04:22:30 | 2019-09-11T04:22:30 | 207,721,158 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 866 | h | //CParam_SAmEn object by hebaoxiang 2019-04-11
#ifndef _MAVER_EMG_ALGO_SANEN_PARAMETER_H
#define _MAVER_EMG_ALGO_SANEN_PARAMETER_H
#include"param.h"
BEGIN_MAVER_EMG_NAMESPACE
class CParam_SamEn : public CParam
{
public:
CParam_SamEn();
~CParam_SamEn();
CParam_SamEn(const CParam_SamEn& rhs);
CParam_Sa... | [
"cheng.junkai@outlook.com"
] | cheng.junkai@outlook.com |
197571c9c690a51fda92ac70e2682c659a0e26b7 | 95fee35acb1e991a603e9e405b022f5ab764ac26 | /cs122a-quadcopter-flight-controller/cs122a-quadcopter-flight-controller.ino/mpu.ino | b361b082354a12d032df1230da02afd03383f280 | [
"MIT"
] | permissive | jthak002/cs122a-quadcopter | 7029e310a82aac163c7cc4f1501d6b1950f87087 | 0d24f535a83ea1498e7ffbf66c8928d1085e81a0 | refs/heads/master | 2021-05-08T00:29:43.787335 | 2017-12-04T03:17:54 | 2017-12-04T03:17:54 | 107,750,646 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,445 | ino | #include "I2Cdev.h"
#include "MPU6050_6Axis_MotionApps20.h"
#include "config.h"
// Arduino Wire library is required if I2Cdev I2CDEV_ARDUINO_WIRE implementation
// is used in I2Cdev.h
#if I2CDEV_IMPLEMENTATION == I2CDEV_ARDUINO_WIRE
#include "Wire.h"
#endif
MPU6050 mpu;
//#define OUTPUT_READABLE_YAWPITCHROLL
// t... | [
"jthak002@ucr.edu"
] | jthak002@ucr.edu |
f29722add20f395e2d3c3cfab9fe70930a152688 | 168bceb9148e30431875a2e07ec3f80d417df938 | /TVINC/MVinsurpolicy.cpp | fb735b314746ca21b8ed4e60332cb6be0bade602 | [
"MIT"
] | permissive | nnation/cplusplus-insurance-policy-project | 20477c3fb7c489fe4ce209fd0ed2f6d244238e56 | 1a8e610c3fdc3e5452c55ac0985278c586a93402 | refs/heads/master | 2016-09-06T12:06:12.940010 | 2014-09-08T04:04:53 | 2014-09-08T04:04:53 | 23,778,655 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 41,307 | cpp | /*################################################<
>>> *Authors: Nathaniel Nation <<<
>>> <<<
>>> Lecture/Tutor: Mr. David White <<<
***************************************************/
#include "MVinsurpolicy.h"
#include "dbutility.h"
#incl... | [
"nnation@nor-aden.com"
] | nnation@nor-aden.com |
464abdef3c6f79c3c9ad5255f921fb99307dd0f8 | 9cf449ed12d4e78690b82365ec3588e5bdd7321e | /GUI/SingleGPU.cpp | b848358602646fbd8d9dc5307ecb09ea10e8147f | [] | no_license | hannahmunoz/Thesis | 5cb318aa67089cfd7a85c433867d6a65b99ff8c3 | df8646e9c43ed9c987316ad012e6c529ecbb758e | refs/heads/master | 2021-09-20T09:39:34.360089 | 2018-08-07T19:46:51 | 2018-08-07T19:46:51 | 100,628,138 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,894 | cpp | #include "stdafx.h"
#include "SingleGPU.h"
#include "opencv2\highgui.hpp"
#include "opencv2\imgproc.hpp"
#include <opencv2\core\cuda\common.hpp>
#include <opencv2\core\cuda_stream_accessor.hpp>
#include "device_launch_parameters.h"
#include "ErrorHandler.h"
#include <direct.h>
#define GetCurrentDir _getcwd
SingleGPU... | [
"hannah.munoz92@gmail.com"
] | hannah.munoz92@gmail.com |
85efa64734c9f9b19e3094a3ffd0bddaf1d7fef8 | e783dac99f51ec8035ece760b538eefc24c96572 | /weirdAlgo.cpp | 96ddc2c4d15cf5c7073039c31f8cccd1e63e7840 | [] | no_license | nehaaa18/CSES-SETS | e3738f32ad8f1bf2f15ca05da1c38218b94f95ca | e2b6c55693a6e11b0f246993b53bc644b9c84f7a | refs/heads/master | 2022-12-05T22:54:17.141089 | 2020-08-23T15:32:51 | 2020-08-23T15:32:51 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 704 | cpp | /******************************************************************************
Online C++ Compiler.
Code, Compile, Run and Debug C++ program online.
Write your code in this editor and press "Run" button to compile and execute it.
************************************... | [
"noreply@github.com"
] | noreply@github.com |
86f309f7df59973777f3a1eae63ed11a54fb226d | a4cb6426f98ca939d9a88baa49a24a2643fa018c | /src/netbase.h | 66d05044ce88a9a9f51a5e283716b7df56921843 | [
"MIT"
] | permissive | DeCrypt0/figurecoin | 3208b1eae213fd7e65a49bb787bad2c44dfba78e | 5002792efe2691e55ef081ebf565fb3e2836e9bb | refs/heads/master | 2020-03-25T19:11:04.531106 | 2018-08-08T12:54:27 | 2018-08-08T12:54:27 | 144,068,931 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,796 | h | // Copyright (c) 2009-2015 The Bitcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef BITCOIN_NETBASE_H
#define BITCOIN_NETBASE_H
#if defined(HAVE_CONFIG_H)
#include "config/figure-config.h"
#endif
#in... | [
"figurecoin@gmail.com"
] | figurecoin@gmail.com |
1b9a693b697b4b9459c25fd6c2f977d12a41dcf8 | 41f356872bc5b3be37d94ac39f637ba97a27239c | /DataSources/EventsWebProvider/USGSDataSource.hpp | a4ca43d5f6b4e48ac5214acc89f411026536566a | [] | no_license | nicomazz/earthquake_server | 999e3ff17c03ac6f1d60f67ca0b54b4459a14e4e | 84c1915a34629af8d0a6ffe99cfc350e9f2cfb1a | refs/heads/master | 2021-06-14T01:27:15.419551 | 2017-03-19T12:01:17 | 2017-03-19T12:01:17 | 73,968,432 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 462 | hpp | //
// Created by nicomazz97 on 24/12/16.
//
#ifndef SIMPLE_WEB_SERVER_USGSDATASOURCE_HPP
#define SIMPLE_WEB_SERVER_USGSDATASOURCE_HPP
#include "INGVDataSource.hpp"
class USGSDataSource : public INGVDataSource{
public:
std::string getDataSourceName() override;
protected:
/**
* ritorna l'url al quale far... | [
"nicolmazzucato@me.com"
] | nicolmazzucato@me.com |
189bf3d63ed4146c21264c85d7959358dbfaf052 | b3871d0d187f01c3e5f9864ed23ebdcd1b7186e3 | /include/bfs/batchhuge.hpp | d0753ca7218cb79513af01c09be1c9c6d97182a3 | [] | no_license | REAL-LAB/ms-bfs | 662a81e17c4a15137c1ab3470d985199237a7f60 | 32b44f0a5c06ac8b3831c7b29834563d73dcd5b1 | refs/heads/master | 2021-05-30T01:56:45.040032 | 2015-09-22T07:32:30 | 2015-09-22T07:32:30 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 23,315 | hpp | //Copyright (C) 2014 by Manuel Then, Moritz Kaufmann, Fernando Chirigati, Tuan-Anh Hoang-Vu, Kien Pham, Alfons Kemper, Huy T. Vo
//
//Code must not be used, distributed, without written consent by the authors
#pragma once
#include "../TraceStats.hpp"
#include "statistics.hpp"
#include "base.hpp"
#include "batchdistanc... | [
"then@in.tum.de"
] | then@in.tum.de |
22a5a9855bd37eac36f5fa93e764de21634c8e3b | 8bea9cde04655aad2563a7c1a0e0f26b9802b792 | /ak.cxx | 7b8ccbc2d75b18362a8638da965c69a8c3cca930 | [] | no_license | alex19999/upgraded-broccoli | db5d4bf266d25da0e0618e0789f6846a74c9485a | 00d5a0fd65729390e5add59ceae1fcaf1f6a1e8b | refs/heads/master | 2020-04-06T04:12:45.749619 | 2017-09-22T18:15:19 | 2017-09-22T18:15:19 | 83,016,460 | 0 | 0 | null | 2017-09-22T18:13:41 | 2017-02-24T07:56:54 | C++ | UTF-8 | C++ | false | false | 2,828 | cxx | #include<iostream>
#include"akinator.hxx"
#include <cstring>
#include <cassert>
#define MAX_SYM 100
#define MAX_PREP 15
using namespace std;
Node :: Node(char* data,Node* no,Node* yes):
question(data),
left(no),
right(yes)
{}
Node* Node :: create_tree(FILE* f_in) {
char* data;
int i = 0;
char sym = 0;... | [
"armen.arsen2011@yandex.ru"
] | armen.arsen2011@yandex.ru |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.