blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 3 264 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2
values | repo_name stringlengths 5 140 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 986
values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 3.89k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 23
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 145
values | src_encoding stringclasses 34
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 3 10.4M | extension stringclasses 122
values | content stringlengths 3 10.4M | authors listlengths 1 1 | author_id stringlengths 0 158 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
38f6db52c1e7f1493fb6fdc0efbb811e4f9e3442 | f935915fcf70920badf1701754f2018c2cdaf43d | /c/300.cpp | 461c1f33e5c43299b760b3a797324867bd0daa1c | [] | no_license | youkochan/youko-leetcode | 4a893c33f35f11d7105945c566c679dee805c8c5 | f8eb41dd78df9eaa74e1e63d766e54e8a133091b | refs/heads/master | 2020-12-29T01:31:53.630591 | 2016-08-20T13:12:52 | 2016-08-20T13:12:52 | 34,739,652 | 4 | 1 | null | null | null | null | GB18030 | C++ | false | false | 2,522 | cpp | /**
* Longest Increasing Subsequence
* https://leetcode.com/problems/longest-increasing-subsequence/
* http://www.csie.ntnu.edu.tw/~u91029/LongestIncreasingSubsequence.html
*/
#include <iostream>
#include <vector>
#include <cstdlib>
#include <climits>
using namespace std;
/*解法一,深度优先递归,结果超时*/
/*class Solution {
p... | [
"youkochan233@gmail.com"
] | youkochan233@gmail.com |
5028015bfb3e1c9cfabc058dc75b713c0ba51961 | 16dd0302383bdb56a1350e8683c17c7c09f6b0ef | /src/ProcessMonitor.h | 78447ebf27570a110c7c0135083756bb285990ee | [
"BSD-2-Clause"
] | permissive | 123ysys/keyfrog | 8db9168b7a604b59c0cb27779d260c882d68dbef | 28e010d18e5239e635a862a9a2f54456d6723c8a | refs/heads/master | 2021-05-30T06:49:27.009613 | 2015-08-23T17:49:40 | 2015-08-24T18:21:51 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,971 | h | /*********************************************************************************
* Copyright (C) 2006-2013 by Sebastian Gniazdowski *
* All Rights reserved. *
* ... | [
"sgniazdowski@gmail.com"
] | sgniazdowski@gmail.com |
c506af1a8134d28ad9c0f885cc24a85e665beafa | a37e0c003e2587abc0a7e5592c6f25532ec1426f | /ChallengesQuestion/Charles_Elvira_59589255_BUSYMAN.cpp | 6682f798c37b7d45cb5baa71e07c77619194c2ac | [] | no_license | CharlesElvira/COP3530-Algorithm | 4ca55c1e14cda9a9cbab3dbeed466131294eadb9 | 6dc8d0470b2465d600a65710f47f572918418b85 | refs/heads/master | 2021-01-17T07:37:10.026711 | 2016-04-20T03:18:20 | 2016-04-20T03:18:20 | 49,438,350 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,101 | cpp | #include <algorithm>
#include <iostream>
#include <vector>
int main()
{
int testCase;
std::cin>>testCase;
while (testCase--)
{
int n;
std::cin>>n;
std::vector<std::pair<int, int> > length;
for (int i = 0;
i < n;
i++)
{
int start, end;
std::cin>>start;
... | [
"celvira@lin115-07.cise.ufl.edu"
] | celvira@lin115-07.cise.ufl.edu |
aef50940b417b6758cefc2345bc4bbc42c60fe74 | 3790aefc92f31c1abbe5594d4ea020e15cb12aae | /tizen-sdk/platforms/tizen2.1/rootstraps/tizen-emulator-2.1.native/usr/include/osp/FGrpGlPlayer.h | 0376f1654d89140de8407cd80db20075b78e765e | [] | no_license | abhijitrd/CppSharpTizen | e9871793c27acbb8ae0f599f2013ea56c7b2fca4 | 92e42a36cc3c5f2b1636061e82025feec4edda0d | refs/heads/master | 2021-01-16T22:04:57.789905 | 2014-07-05T11:39:32 | 2014-07-05T11:39:32 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,667 | h | //
// Open Service Platform
// Copyright (c) 2012-2013 Samsung Electronics Co., Ltd.
//
// 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/
//... | [
"brighttwinsoftware@gmail.com"
] | brighttwinsoftware@gmail.com |
6a4fe0bae5a036cdb9a47851f08f1f98b8e92c78 | 7b8a29b907c84490caefd5ecea1bc08981580332 | /Program 3: Prefix Sum (Threads)/thread-main.cpp | 33880c434da02f894ea2bb739e8af7a0256a44c9 | [] | no_license | noahdelongpre/CS3331-ConcurrentComputing | f47702c02f679458f758a9fef11f2caa25638dba | f5957e0ac2ac199320f452173a3a03d4fc56fcd5 | refs/heads/master | 2020-05-04T18:27:40.677204 | 2019-04-04T16:33:44 | 2019-04-04T16:33:44 | 179,354,138 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,640 | cpp | // -----------------------------------------------------------
// NAME : Noah de Longpre' User ID: nkdelong
// DUE DATE : 11/3/2017
// PROGRAM ASSIGNMENT 3
// FILE NAME : thread-main.cpp
// PROGRAM PURPOS... | [
"nkdelong@mtu.edu"
] | nkdelong@mtu.edu |
f14fcee611f83b8679b37d6ff4e86c6b71bfa1e0 | 00b979f12f13ace4e98e75a9528033636dab021d | /branches/ziis/src/core/thr_pool.cc | f42bb294153e4701da7a8066b4086a3b22874131 | [] | no_license | BackupTheBerlios/ziahttpd-svn | 812e4278555fdd346b643534d175546bef32afd5 | 8c0b930d3f4a86f0622987776b5220564e89b7c8 | refs/heads/master | 2016-09-09T20:39:16.760554 | 2006-04-13T08:44:28 | 2006-04-13T08:44:28 | 40,819,288 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,750 | cc | //
// thr_pool.cc for in
//
// Made by texane
// Login <texane@gmail.com>
//
// Started on Tue Feb 14 02:00:09 2006 texane
// Last update Wed Mar 22 21:38:51 2006 texane
//
#include <ziafs.hh>
// thread cache function
void* pool_cache_entry(void* param)
{
thr::pool::slot_t* p_slot;
in... | [
"texane@754ce95b-6e01-0410-81d0-8774ba66fe44"
] | texane@754ce95b-6e01-0410-81d0-8774ba66fe44 |
223dc6acab3f7e387eb255d1a6a6b7a3b514aca1 | 95c1a4002ce0f3b497c480b2e9378ff51c2d818f | /ComTrade/src/CComTradeFile.cpp | fb0c4b9a2eb2c5838801d40654e0dc5d651ba403 | [] | no_license | lilinfeng124/LibPrinter | fa8a81c177089252f837ebf0e74287ca842938bd | 5997eb816910c887168a63e31c1ebf783395f999 | refs/heads/master | 2021-01-20T19:33:55.058583 | 2016-06-15T08:14:54 | 2016-06-15T08:14:54 | 61,189,074 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 37,568 | cpp | #include "CComTradeFile.h"
#include <QtDebug>
#include "qmath.h"
CComTradeFile::CComTradeFile ()
{
m_nTrigger_ms = 0;
m_nFrist_ms = 0;
m_lFirstMicroSecs = 0;
m_bDChanelAct = false;
}
CComTradeFile::~CComTradeFile()
{
}
bool CComTradeFile::SampleDataToAnalogData(unsigned long nAIndex, const CChanelSampleData& c... | [
"lilinfeng124@sina.com"
] | lilinfeng124@sina.com |
ad109d7bcb164fd28d4342dc2e40c11aad602ebd | 543c86d3a493daf3e22cddcbf9dc5f00ad7eb3b9 | /diamond-star-pattern.cpp | 742cb3c941fe938de89797249392853b346da449 | [] | no_license | Ajaysinghadiya/diamond-star-pattern.cpp | eb75c4fde3a03f9326665f28d54f4d58263415ad | c6d5f809e9ccf27c33fcd4a620d8e241e0deda54 | refs/heads/main | 2023-08-22T03:46:51.746404 | 2021-10-12T18:13:03 | 2021-10-12T18:13:03 | 416,447,669 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,520 | cpp | #include <iostream> //header
using namespace std; //standard
int main() //execution begins
{
int raw; //declaring a variable name raw
cout << "enter the number of raws" << endl; //printing a line
cin >> raw; //taking input from user
/*... | [
"noreply@github.com"
] | Ajaysinghadiya.noreply@github.com |
e971016dd923f6966c2f8ac2c41cae725ce1421f | 89ee4d15405f7d15a2dd03c2894f7baf9d4a817b | /CSES-SEARCHING AND SORTING/CSESplaylists.cp | 7badba87f344cfc45ab4158d9a8874d2f7cecb56 | [] | no_license | sr4saurabh/CSESsolutions | e1895c89888e11d158e00a7aa9565539b8b7f0bd | 3f1ee4c7bb0948ccf6ecb950ec08b6b61fdcd462 | refs/heads/master | 2023-07-12T10:52:14.692898 | 2021-08-21T07:41:39 | 2021-08-21T07:41:39 | 291,441,199 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,043 | cp | /*--ILRS-- sr4saurabh */
#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
#define pb push_back
#define popb pop_back
#define mp make_pair
#define ve vector
#define vii vector < int >
#define vll vector < ll >
#define pii pair < int , int >
#define pll pair < ll , ll >
#define vpl ... | [
"noreply@github.com"
] | sr4saurabh.noreply@github.com |
ade29e43ad6ab5de4987fdbfa0727fa40c82ace3 | 44cb9bba7cb4292ee489fcea1fb4340ce3a1efda | /src/Material.cpp | 4be7fd0af8932d08df58004d97f792f2d9460163 | [
"MIT"
] | permissive | kanosawa/mmd-eigen | 5d92d241fb4ddb02fa7123f8a4214a3c19f2240d | e0177f7761a85b9da506b7cc09246a5b2263b2c0 | refs/heads/master | 2021-05-09T14:33:24.427095 | 2018-02-24T18:11:14 | 2018-02-24T18:11:14 | 119,068,038 | 6 | 0 | null | 2018-02-23T18:18:40 | 2018-01-26T15:26:31 | C++ | UTF-8 | C++ | false | false | 1,024 | cpp | #include "Material.h"
using namespace mmd;
Material::Material() {
}
Material::~Material() {
}
Material::Material(const Eigen::Vector4f &diffuse, const Eigen::Vector3f &specular, const float specularCoef,
const Eigen::Vector3f &ambient, const int ordinaryTextureIndex, const int surf... | [
"kanokanosawasawa@gmail.com"
] | kanokanosawasawa@gmail.com |
df36ec2d048dcf90959739fb3ad1d2a962d9af52 | 41578b9248dc2f5671fbf6c793f88ae61f75014e | /TFT_Dispaly/Nova-Touch/Module-Development/User-KeyPad-Input-Module/Project_Code/Oct-21/esp32-InputModule-04-10-21/UserInputkeyBoard.cpp | 805fa28e77fa4169451485b1ac08d8388f289825 | [] | no_license | axisElectronics/Axis_Company_Project | 89fb56de1c1cd0d5044a36b64369127e01cba1d2 | 089e3e0c63ce9156e888738fd9262124c9345c1c | refs/heads/master | 2023-08-26T19:41:18.505678 | 2021-11-08T09:33:26 | 2021-11-08T09:33:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 24,849 | cpp |
#include "UserInputKeyBoard.h"
#include "keyBoardImage.h"
extern TFT_eSPI tft;
#define BlankRect() tft.fillRect( 208 , 18, 25, 40, TFT_BLACK);
/******* MACROs declaration ********/
#define spacing 90
#define digitMargin 90
#define xdigitMargin digitMargin
#define ydigitMargin digitMargin
#define xClr 160
#define ... | [
"viveky1794@gmail.com"
] | viveky1794@gmail.com |
5f9fe4a95042efe67797218f4c0e28779d2a25bc | 0203e5a6d7beb1e0f83113dac4c167b171756f24 | /src/metafs/tool/fio/meta_scheduler.h | 18fe127f8aaec1ccf0d81c94e87b6ec7d7876f0b | [
"BSD-3-Clause"
] | permissive | Wonchul08Lee/poseidonos | eaafe277fc56a0f5b5fcca3b70acc9bfe5d5d1ae | 6fe410cdf88f3243ad9210f763c2b5a2f7e8b46a | refs/heads/main | 2023-03-30T13:41:09.660647 | 2021-04-08T06:43:26 | 2021-04-08T06:43:26 | 355,819,746 | 0 | 0 | BSD-3-Clause | 2021-04-08T08:17:27 | 2021-04-08T08:17:26 | null | UTF-8 | C++ | false | false | 3,664 | h | /*
* BSD LICENSE
* Copyright (c) 2021 Samsung Electronics Corporation
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of source code must retain th... | [
"poseidonos@samsung.net"
] | poseidonos@samsung.net |
baa7203e3675eb313ad56297cf6b11e9bda55dae | 10cf524fb5c8117fa6d9eee5816cee379b50cae2 | /main.cpp | 916700ec373b25eb9e31a7e628f8a513793512ed | [] | no_license | Pythonista7/DX-Ball-OpenGL | 00fabbab28b2a0d3f0fd8afe924e39ef9fc2a657 | 69320ec0d7d40d8df29c37e816f95322210a9dec | refs/heads/master | 2022-12-16T16:53:16.214574 | 2020-05-29T17:22:10 | 2020-05-29T17:22:10 | 247,769,838 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,873 | cpp | #include "LUtil.h"
void runMainLoop(int val);
/*
Pre Condition:
-Initialized freeGLUT
Post Condition:
-Calls the main loop functions and sets itself to be called back in 1000 / SCREEN_FPS milliseconds
Side Effects:
-Sets glutTimerFunc
*/
int game_state = 0;
int main( int argc , char* args[] )
{
//Initialize Fr... | [
"ashwin.mirskar@gmail.com"
] | ashwin.mirskar@gmail.com |
3d2dc054adcf3cfc83f27a49c983526b8c3523f0 | 4b4b8dd2f0376c1b08faae39165bb731d8f2fbe7 | /tensorflow/lite/tools/make/downloads/eigen/test/rvalue_types.cpp | 5f52fb3bc1d05efe6dabe921de76b1ddb483e2f2 | [
"BSD-3-Clause",
"LGPL-2.0-or-later",
"LGPL-2.1-only",
"MPL-2.0",
"LGPL-2.1-or-later",
"GPL-3.0-only",
"Minpack",
"Apache-2.0"
] | permissive | godot-extended-libraries/tensorflow | d0ce2e28d5908af0c9eb8897eb5d46d370dee1b6 | b2234a88a4cbe1e71b6d1a0b02d20dca53e902a8 | refs/heads/master | 2022-12-29T14:07:32.044837 | 2020-01-11T16:20:27 | 2020-01-11T16:20:27 | 186,188,911 | 3 | 0 | Apache-2.0 | 2020-10-13T13:13:15 | 2019-05-11T22:58:18 | C++ | UTF-8 | C++ | false | false | 2,249 | cpp | // This file is part of Eigen, a lightweight C++ template library
// for linear algebra.
//
// Copyright (C) 2013 Hauke Heibel <hauke.heibel@gmail.com>
//
// This Source Code Form is subject to the terms of the Mozilla
// Public License v. 2.0. If a copy of the MPL was not distributed
// with this file, You can obtain ... | [
"ernest.lee@chibifire.com"
] | ernest.lee@chibifire.com |
2f83b82874b55d304909a3ad49b3d3e119b73993 | 4bdc5faaccbafe03482e32910cc34e80276270fd | /openframework/ofApp.cpp | f3514d459c8df84316c5000620c80ed79692666d | [] | no_license | syh24/syh-project | 13a176047cd8706a407ec79af2d3652a2b52714e | 1ab33b294a966607a2bbf86666b887ca52b3aacb | refs/heads/master | 2023-03-19T22:52:15.357306 | 2021-03-05T04:06:36 | 2021-03-05T04:06:36 | 285,436,608 | 1 | 0 | null | null | null | null | UHC | C++ | false | false | 18,270 | cpp | /*
ofxWinMenu basic example - ofApp.cpp
Example of using ofxWinMenu addon to create a menu for a Microsoft Windows application.
Copyright (C) 2016-2017 Lynn Jarvis.
https://github.com/leadedge
http://www.spout.zeal.co
=========================================================================
... | [
"noreply@github.com"
] | syh24.noreply@github.com |
2758601d09b7b259fa672c726b7949f235a2cb82 | 72a40ec0886ac70c129d129dc54157541cc23cd2 | /BUSseq_inference.cpp | 9ae8965d579eb5b5ad15d9209a1be27b66ff8616 | [] | no_license | songfd2018/BUSseq-1.0 | b13734b9ed893c066707edc987d8825ec829d9d4 | c667a1b36c1859f2504d5383bda1295be38a8e57 | refs/heads/master | 2020-06-22T08:26:32.951816 | 2019-11-06T07:53:49 | 2019-11-06T07:53:49 | 197,681,382 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 27,755 | cpp | #include <iostream>
#include <iomanip>
#include <fstream>
#include <math.h> // pow, sqrt, lgamma
#include <cmath> //
#include "omprng.h"
# include <chrono> // time
#include <unistd.h> // getopt
#include <stdlib.h>
#include <string>
#include <stdio.h>
#include <sys/stat.h> //mkdir
#include <algorithm> // sort
#incl... | [
"noreply@github.com"
] | songfd2018.noreply@github.com |
3f1705cd04bf937383257697c96fe3715a201e8e | bbcda48854d6890ad029d5973e011d4784d248d2 | /trunk/win/Source/Includes/QtIncludes/src/3rdparty/webkit/WebCore/rendering/RenderFrameSet.h | 15d6505506ce419e4872e7ab0e7e79f47c7c9472 | [
"BSD-2-Clause",
"LGPL-2.0-only",
"LGPL-2.1-only",
"MIT",
"curl",
"LGPL-2.1-or-later",
"BSD-3-Clause",
"BSL-1.0",
"Apache-2.0",
"LicenseRef-scancode-public-domain",
"Zlib",
"LicenseRef-scancode-unknown",
"LicenseRef-scancode-unknown-license-reference",
"MS-LPL"
] | permissive | dyzmapl/BumpTop | 9c396f876e6a9ace1099b3b32e45612a388943ff | 1329ea41411c7368516b942d19add694af3d602f | refs/heads/master | 2020-12-20T22:42:55.100473 | 2020-01-25T21:00:08 | 2020-01-25T21:00:08 | 236,229,087 | 0 | 0 | Apache-2.0 | 2020-01-25T20:58:59 | 2020-01-25T20:58:58 | null | UTF-8 | C++ | false | false | 4,548 | h | /*
* Copyright (C) 1999 Lars Knoll (knoll@kde.org)
* (C) 2000 Simon Hausmann <hausmann@kde.org>
* Copyright (C) 2006, 2008 Apple Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as ... | [
"anandx@google.com"
] | anandx@google.com |
7ba07b8b48d6c0d7b60bd39416e674064e95640c | 61bd1270ec9722a9519f0311cf1ecc01f401b2fe | /Codeforces/1341/A.cpp | 3a792c511a8603067e253dab283f430f92cdfd27 | [] | no_license | GonzaloPereira/CompetitiveProgramming | 495aef87835d13b9f5491b8ac56ef0face9be428 | ffc06d855ca021490cc071b92dd3aa84a978dd5b | refs/heads/main | 2021-11-19T03:34:46.578008 | 2021-08-10T00:46:29 | 2021-08-10T00:46:29 | 190,089,378 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 394 | cpp | #include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define pb push_back
#define FIO ios_base::sync_with_stdio(false), cin.tie(NULL);
#define N
int main(){
FIO;
int t; cin >> t;
while(t--){
int n,a,b,c,d; cin >> n >> a >> b >> c >> d;
if(((a+b)*n >= (c-d))&&((a-b)*n <= (c+d))) co... | [
"gonzaloapr45@gmail.com"
] | gonzaloapr45@gmail.com |
ed53953be4c8064b479a23342c323ef16086d57e | 09314acee987124b581add83a4c01e026e019375 | /windows_explorer/Drives.cpp | a7c20aa5743cd18fb64727d3f090cd05b90d3b05 | [] | no_license | Thuat1996/windows_ex | 3e1d89278357b6476b523c8fd027f0f7ba0b02af | 6b407ef1929422848b54648cdcea3f1a61ae7c5e | refs/heads/master | 2020-03-29T06:42:33.207744 | 2019-01-06T15:39:55 | 2019-01-06T15:39:55 | 149,637,010 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,529 | cpp | #include "stdafx.h"
#include "Drives.h"
#include <shellapi.h>
//dùng để sử dụng hàm Strcpy, StrCat
#include <shlwapi.h>
#pragma comment(lib, "shlwapi.lib")
TCHAR* const DriveLetter[] = {
_T("abc"),
};
DriverSize *Drives::getDriveSize(int i)
{
__int64 totalSize;
__int64 freeSpace;
SHGetDiskFreeSpaceEx(getDriveLe... | [
"nguyenvanthuat96bn@gmail.com"
] | nguyenvanthuat96bn@gmail.com |
38c90e4141e4dbdb0dc0c5ee89bb8e07f042f4b9 | d1a6d535f3378cca4463a0248e0dc6c641d92ab2 | /ordermanagerview.h | 4c17eb2f139a412c6d96eb95e51b642bd79a64a2 | [] | no_license | gaoxiaojun/polluxus | 354024b11200cceb544f318ec62c8e93c4043ae3 | 45d5e3485d9f75b5cc65a1c5d7caaf66d5aa02fb | refs/heads/master | 2020-12-11T05:37:58.559054 | 2015-10-13T14:14:31 | 2015-10-13T14:14:31 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 516 | h | #ifndef ORDERMANAGERVIEW_H
#define ORDERMANAGERVIEW_H
#include <QWidget>
#include "ordermanagermodel.h"
class QTableView;
class QSettings;
class OrderManagerView : public QWidget
{
Q_OBJECT
public:
explicit OrderManagerView(QWidget *parent = 0);
virtual ~OrderManagerView();
QTableView *pTableView;
... | [
"yh.polluxus@gmail.com"
] | yh.polluxus@gmail.com |
de8ca2e8ecd4aab990a8df9f87e5364532a3c668 | 221dabc26ab1327ebae77d0615bf9fce7ed154cb | /Prácticas Calificadas/PC2/main.cpp | 3e38242c34ac58663cb32570175974c52bf9cd71 | [] | no_license | christianledgard/POOII-UTEC-2019-1 | 9da68c340b08294674f1d19064744683e7cafea8 | d0647fcb7b71905c246510f6bcc44986504a360b | refs/heads/master | 2020-05-17T15:34:42.867626 | 2019-05-15T16:06:54 | 2019-05-15T16:06:54 | 183,793,586 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,100 | cpp | #include <iostream>
#include "Process.cpp"
int main() {
//auto *carlos = new SyncProcess("Hola");
//carlos->run();
//auto *lucas = new AsyncProcess("Hola","jeje");
//lucas->run();
auto *fifo = new Queue<Process*,10>();
//Encolar 10 procesos: 5 Syn, 5 Async
fifo->enqueue(new AsyncPro... | [
"christianledgard@gmail.com"
] | christianledgard@gmail.com |
2b2cbdc455158df1c8585213798fd5eefac0ed28 | 20049d88e2e8f0e1904efc561103c1d84d21507a | /konev.ivan/A1/main.cpp | e30027e12c63bc5433aa456b648ecc246d96a6de | [] | no_license | gogun/Labs-for-SPbSPU-C-course-during-2019 | 5442a69152add3e66f02a7541e8dc8dd817f38a1 | 16ade47b859517a48d0fdb2e9704464bce4cc355 | refs/heads/master | 2022-01-09T16:02:54.728830 | 2019-06-06T11:06:33 | 2019-06-06T11:06:33 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 687 | cpp | #include <iostream>
#include "rectangle.hpp"
#include "circle.hpp"
int main() {
Rectangle r1({1.0,1.0}, 3.0, 3.0);
std::cout<<r1.getArea()<<std::endl;
Rectangle r2({2.0,2.0}, 1.0, 4.0);
r2.move(1.0,2.0);
Circle c1({3.0,1.0}, 3.0);
std::cout<<c1.getArea()<<std::endl;
Circle c2({1.0,2.0}, 4.0);
c2.mov... | [
"kva19.2000@mail.ru"
] | kva19.2000@mail.ru |
6f5f46e5c76eb5b6ce0a4fc191500a0cc8ae9d99 | ece3d852c9c23229081872b61a2f617bf0576b7e | /sarturis-gtk/modules/gtkwidget-io/digitalradiobutton.cpp | 808a43a4ae8df231335627525a93ab601c010065 | [] | no_license | meisenmann77/sarturis | 14ee6e7462ce84aa5dfc78b49190fb993e6051ec | bf8bcee735859667a1bdd1f67f2fa78ca938573b | refs/heads/master | 2021-01-19T14:56:56.033733 | 2020-11-30T16:57:38 | 2020-11-30T16:57:38 | 37,017,592 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,035 | cpp | /*******************************************************************************
*
* Sarturis is (C) Copyright 2006-2011 by Dresden University of Technology
*
* This software is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by th... | [
"meisenmann77@googlemail.com"
] | meisenmann77@googlemail.com |
0c09f87f8809c96e9fbd4da7eccc44c760509193 | 2eabce5d4acebd57ab50e3258993cdc3320ce5f1 | /4 - Objects/4e1-initializationList.cpp | d611e4544c356c5608ce0db49c972ac88daeb539 | [] | no_license | ProfACarpenter/ProgrammingExampleCode | 72787c3e3504e3c17cafd10900ed71549095958e | bd8934f86a6341d7ebebdba5a2cb9bb1fc4a222a | refs/heads/master | 2021-05-20T12:43:35.252418 | 2020-12-16T20:11:16 | 2020-12-16T20:11:16 | 252,301,883 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,283 | cpp | /*************
Initialization Lists are used in constructors to simplify the body of the code, and will be used more later for inheritance.
*************/
#include <iostream>
#include <string>
class country_c{
private:
int population;
int GDP; //let's do this per capita, just for smaller numbers
std::string na... | [
"carpentera1@wit.edu"
] | carpentera1@wit.edu |
f59d61dd6cedfcdebbb6564433bd6e29ae24fe81 | ccb6d2726b7522af43004875e2e233bc1088774a | /carma/corba/Test/tWaitClient.cc | eed5dc54acb4707e9aee20a963a201033d3bb700 | [
"FSFUL"
] | permissive | mpound/carma | a9ab28ed45b3114972d3f72bcc522c0010e80b42 | 9e317271eec071c1a53dca8b11af31320f69417b | refs/heads/master | 2020-06-01T11:43:47.397953 | 2019-06-07T15:05:57 | 2019-06-07T15:05:57 | 190,763,870 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 923 | cc | #include "carma/corba/Client.h"
#include "carma/corba/Test/Wait.h"
#include "carma/util/ExceptionUtils.h"
#include "carma/util/Program.h"
#include <iostream>
#include <string>
using namespace carma;
using namespace carma::util;
using namespace carma::corba;
using namespace std;
// @version $Revision: 1.2 $ $Date: 20... | [
"22331890+mpound@users.noreply.github.com"
] | 22331890+mpound@users.noreply.github.com |
504deb18100f20958f873e8cad5bffc5cefd073f | e142d8763d5e21342f5b4f0d82515ed898aac5bd | /jsk_interactive_markers/jsk_interactive_marker/src/transformable_torus.cpp | 93e73380d617ffc25ea2779a04bbb1f24b7c3bba | [] | no_license | mmurooka/jsk_visualization | 3fb4a3ead6ea762cd0444658f01dda9069a8c722 | 7bfbe29f1d2010633d261cecb1f14b7e46565421 | refs/heads/master | 2021-11-19T17:48:42.099657 | 2014-10-16T15:55:03 | 2014-10-16T15:55:03 | 25,336,097 | 0 | 0 | null | 2018-09-08T12:13:38 | 2014-10-17T03:25:57 | null | UTF-8 | C++ | false | false | 3,183 | cpp | #include <jsk_interactive_marker/transformable_torus.h>
#include <math.h>
#define PI 3.14159265
namespace jsk_interactive_marker{
TransformableTorus::TransformableTorus( float radius, float small_radius, int u_div, int v_div, float r, float g, float b, float a, std::string frame, std::string name, std::string descr... | [
"inagaki@inagaki.mail"
] | inagaki@inagaki.mail |
e0ce2d865bbf9209143444d091ff43d90126d77b | 317a81568696842411132f64352d898a6a013226 | /HeartBeatSensorUsingPPG/arduino/ppg_sender.ino | 168d7f39640c57bfd9ae4644462c04760e087144 | [] | no_license | hrit1995/HeartBeatSensorUsingPPG | f69437738f82e1a70c6d3c7f94c4a8cd4206bfe7 | 97ca3ce2e3474160515b34d8c1f297335009cc96 | refs/heads/master | 2020-09-11T10:36:33.027626 | 2020-01-21T03:37:48 | 2020-01-21T03:37:48 | 222,037,404 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,995 | ino | #include <ESP8266WiFi.h>
#include <ESP8266HTTPClient.h>
#include <Wire.h>
#include "MAX30105.h"
#include "heartRate.h"
MAX30105 particleSensor;
const char* ssid = "OnePlus7";
const char* password = "lzp123456";
int counter = 0;
const byte RATE_SIZE = 4; //Increase this for more averaging. 4 is good.
byt... | [
"noreply@github.com"
] | hrit1995.noreply@github.com |
a7f742f37a2d6edc5214194ae141d51afe2b0139 | 17be74dabd1552c8490469065d73b75b5a123615 | /contest/977/a/a.cpp | 289bf37b3849efceafcd495afab4392a7628c572 | [] | no_license | gcie/code | 4c25855de7c158c968bf85d9adf566383a823787 | 6962dc75cff527edac1ec76d32e1f6b50d534e46 | refs/heads/master | 2022-09-17T02:57:53.151363 | 2022-08-11T07:43:27 | 2022-08-11T07:43:27 | 223,413,103 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,364 | cpp | #pragma gcc optimize("Ofast")
#pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native")
#include <bits/stdc++.h>
#define pb push_back
#define st first
#define nd second
#define all(x) (x).begin(), (x).end()
#define sci(x) int x; cin >> ... | [
"grzegorz.ciesielski@asseco.pl"
] | grzegorz.ciesielski@asseco.pl |
104c9f5d5fac61f43058338e82e6ef5e9fe2ed4f | 2da8db05b3c93bc3bf06162836c1f4289f8cc93b | /src/postprocess/FXAA.cpp | 610245f6cbb6de8cdfecd2d3a9ff1a575eb045cb | [
"MIT"
] | permissive | jing-interactive/melo | fdc8aafa8d0ac62eab3fbfdc06d815e5c3296c47 | 67fa14d19fea157124edddead2ca3fc54d370691 | refs/heads/master | 2021-06-06T07:58:20.344383 | 2021-05-04T06:29:18 | 2021-05-04T06:29:18 | 147,344,373 | 19 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 3,028 | cpp | /*
Copyright (c) 2014, Paul Houx - All rights reserved.
This code is intended for use with the Cinder C++ library: http://libcinder.org
Redistribution and use in source and binary forms, with or without modification, are permitted provided that
the following conditions are met:
* Redistributions of source code m... | [
"vinjn.z@gmail.com"
] | vinjn.z@gmail.com |
fd6d4fc5591efab3f87797708ec00f2f95f71645 | cc40d6b758088e9ba56641e91c35e1ea85b64e07 | /third_party/spirv-tools/test/opt/combine_access_chains_test.cpp | a9ed91046ce801fa88f9179b891dd3e77e60f479 | [
"LicenseRef-scancode-generic-cla",
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | chinmaygarde/filament | 1091b664f1ba4cc9b63c31c73f63ec8b449acd22 | 030ba324e0db96dfd31c0c1e016ae44001d92b00 | refs/heads/master | 2020-03-26T00:25:48.310901 | 2018-08-13T22:26:23 | 2018-08-13T22:26:23 | 144,320,013 | 1 | 0 | Apache-2.0 | 2018-08-10T18:29:11 | 2018-08-10T18:29:11 | null | UTF-8 | C++ | false | false | 26,654 | cpp | // Copyright (c) 2018 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to ... | [
"romainguy@google.com"
] | romainguy@google.com |
04f7231cbe02237a048c54408d5a91af92ff7247 | a6f3094ac3ceab9fc5fce7de1eddd8f7b15fc5b3 | /Atlas/Memory.cpp | 9ceee834eb9664d7354671f9304d5450a35419d2 | [] | no_license | LGSimulation/Atlas | 7a1813e4816b578ff5c031c2f620ee1bd524f040 | c8c0947d47f2b9c10d2284cebeece9de4231701c | refs/heads/main | 2023-06-14T20:44:49.776419 | 2021-07-07T18:33:35 | 2021-07-07T18:33:35 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,074 | cpp | #include <iostream>
#include <Windows.h>
#include <TlHelp32.h>
#include "Memory.h"
DWORD Memory::GetProcessID(const wchar_t* processName) {
DWORD processID = 0;
HANDLE snapshot = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0);
if (snapshot == INVALID_HANDLE_VALUE) {
std::cout << "Couldn't get running processes.... | [
"mmdeen133@gmail.com"
] | mmdeen133@gmail.com |
e154410887af2f2471287c2be82cebec7c685a4b | 324822e2e779e3078e199b028736121cb8b254e2 | /13.27/hasptr.cpp | 934bf7862c7a8271f26714ea253174cfca3fc12d | [] | no_license | shidenggui/cplusplusprimer-answer | 495bd22e7b4eb5f404c728bc9bafee8b077f8d10 | f9c779ccfb57b94673c3aded4f65b91dd232610f | refs/heads/master | 2020-05-30T14:33:39.618811 | 2015-01-24T09:25:48 | 2015-01-24T09:25:48 | 28,441,523 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 480 | cpp | #include "hasptr.h"
inline HasPtr::HasPtr(const string &s):
ps(new string(s)), i(0), use(new size_t(1)){}
inline HasPtr::HasPtr(const HasPtr &p):
ps(p.ps), i(p.i), use(p.use){ ++*use; }
HasPtr& HasPtr::operator=(const HasPtr& rhs){
++*rhs.use;
if(--*use == 0){
delete ps;
delete use;
... | [
"903618848@qq.com"
] | 903618848@qq.com |
091cb565abe1a42fee8b20e00ca205aa174793b9 | 133b698e857e319d8f18be82c8b06c855dfbb98e | /back-end/PI4_Code/rpidmx512/lib-rdm/include/rdmdevicestore.h | ad973199d1dd107961874116fe92e5dce5b8eedf | [] | no_license | danielgonzalez3/CPE190 | b8ed990c3451f03a7117ce5e241b0d2d53d6a415 | 00db90fa9a0b32856e3f5c5c052c1a8b1d0c5f5c | refs/heads/master | 2023-04-14T17:43:03.591032 | 2021-04-26T20:06:23 | 2021-04-26T20:06:23 | 280,779,350 | 2 | 2 | null | 2020-08-31T21:34:25 | 2020-07-19T02:50:05 | HTML | UTF-8 | C++ | false | false | 1,422 | h | /**
* @file rdmdevicestore.h
*
*/
/* Copyright (C) 2019-2020 by Arjan van Vught mailto:info@orangepi-dmx.nl
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, inclu... | [
"danielgonzalez3@csus.edu"
] | danielgonzalez3@csus.edu |
e26d69340f0262ee2fa62248041b3b9eab140054 | b381bdb887487178bc095626c20be2426f3720c3 | /Projekt/Mateusz/znajdz_polaczenia_miedzy_funkcjami.cpp | caf68c2375339a550944b56f3e7bcf7ab6bc97f1 | [] | no_license | pazindorb/Projekt_Graf_v2.5 | 07efe18ff1d2f16bf22d651e63f779634fc97ad0 | eea1d199aa6094aaf7d7b31c13e02bc40554ff2e | refs/heads/master | 2023-05-12T18:02:00.409000 | 2021-05-28T15:04:03 | 2021-05-28T15:04:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,325 | cpp | #pragma once
#include "..\Graf.h"
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
void graf::Graf::znajdz_polaczenia_miedzy_funkcjami() {
for (auto& _aktualny_plik : pliki) {
if (_aktualny_plik.nazwa_pliku.find(".h") == std::string::npos){
for (auto& _funkcja_w_pliku : _aktualny_pl... | [
"xxpazindorxx@gmial.com"
] | xxpazindorxx@gmial.com |
47c3f2fb516b10ae0283fc75012ed26a82fda70b | c342a474e91c4b11194f984d9e16ae25e481f645 | /src/Classes/Engine.cpp | 83bf30e2e330667e7ecae42fcf3fcc9a97002066 | [] | no_license | Kloox/ft_vox_42 | 094f7d8272af8584b2331d8aa0511838b2a166b8 | 71d3c3db80d49f7aa2b440dc259a1713e596400f | refs/heads/master | 2023-03-25T22:06:43.327791 | 2021-03-25T17:03:10 | 2021-03-25T17:03:10 | 347,616,564 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 36,823 | cpp | #include "vox.hpp"
#include "Cpu.hpp"
Engine::Engine(void)
{
this->world = NULL;
this->next_world = NULL;
this->noiser = NULL;
// GL states
this->ogl_state.program = 0;
this->ogl_state.attribute_coord = 0;
this->ogl_state.attribute_sky_coord = 0;
this->ogl_state.t_vbo = 0;
this->ogl_state.t_vao = 0;
this->o... | [
"jjaouen@student.42.fr"
] | jjaouen@student.42.fr |
942c2e16439436e8eeead3dcc0ab845277ee792b | c7c7fac4da3f5f6078955c15558959b88d939dc0 | /dual_4051_analog_2_digital_sensor/dual_4051_analog_2_digital_sensor.ino | 386533968728023a3bc41e89f49299213cd82bc8 | [] | no_license | Jundullah-IA/Program-dasar | 861cd8d0b5b05ec43e9ebfda45f553cc20422bb1 | 46f3c9881ef128d6ab9f884aa1e142277694598e | refs/heads/main | 2023-07-08T02:09:15.787841 | 2021-08-14T07:26:52 | 2021-08-14T07:26:52 | 328,570,960 | 0 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 1,202 | ino | void setup() {
Serial.begin(9600);
pinMode(A0, INPUT); pinMode(A4, INPUT);
pinMode(A1, OUTPUT); pinMode(A2, OUTPUT); pinMode(A3, OUTPUT);
}
bool readPin(byte pin, byte potition) {
digitalWrite(A1, bitRead(potition, 2));
digitalWrite(A2, bitRead(potition, 1));
digitalWrite(A3, bitRead(potition, 0... | [
"noreply@github.com"
] | Jundullah-IA.noreply@github.com |
e73a0e4f043acbb4e5b0d9b1ce2390aa443be925 | 933e4b63b4e6828a2ee0e862ae1b3fa8d6d6bd36 | /LocalServer and Client/loacl_server/mainwindow.h | 7692f9b23359516884fa6c090c0c56081cfdebf5 | [] | no_license | fengxieye/Qt-item | dd6886a49ba2aa365c764c0f111de3caa7ceb2e4 | bd8aef429322a3ec0b77576ceb713356977dc366 | refs/heads/master | 2020-04-30T20:52:58.974314 | 2019-05-27T06:11:26 | 2019-05-27T06:11:26 | 177,080,412 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 446 | h | #ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include "local/ctlprocesscommunicationserver.h"
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
void slotGCConnected(QString name);
... | [
"jianhui.zhong@teimelink.cn"
] | jianhui.zhong@teimelink.cn |
d0803247476be507441e40e8f7ba5cd5f5e29845 | 1b38af12a5cc0493efc96d791e0b0ea5cb98389b | /KindAgmrs/src/KMersiData.cpp | a5012878172d70f363c55c8eaeb7390e4a58a8e6 | [] | no_license | shenyczz/KLibrary | efce0689d496f2097d00da7faf46fb73f5102eb7 | 98eab1108f650253d243795222044989432c4d0e | refs/heads/master | 2022-12-14T10:05:58.636127 | 2020-09-18T02:05:17 | 2020-09-18T02:05:17 | 296,487,674 | 1 | 0 | null | null | null | null | GB18030 | C++ | false | false | 1,446 | cpp | #include "StdAfx.h"
#include "KMersiData.h"
#include "KMersiDataProcessor.h"
namespace Agmrs { namespace Mersi
{
KMersiData::KMersiData(void)
{
this->SetType(AgmrsDataSource::Mersi);
m_pDataProcessor = new KMersiDataProcessor();
m_pDataProcessor->SetOwner(this);
}
KMersiData::~KMersiData(void)
{
}
// ... | [
"shenyczz@163.com"
] | shenyczz@163.com |
70f0bf56cb4f9a6b42cf728ae8f47732650502b7 | 3d608dd1c81b8a41dfc133035d2c7992a5b5383d | /OpenGL_Template/Texture.cpp | 93ba0a87f4e5ce165af56643e6806bb8aeb41794 | [] | no_license | kvickz/GAP275_SolarSystem | f6b042ba96f5c4e609ceba40cb7b2420f86bbea5 | 46d600d2633b8ef80a5c183425a9fb2cca15d074 | refs/heads/master | 2021-01-10T08:00:58.019681 | 2015-12-19T08:01:18 | 2015-12-19T08:01:18 | 47,047,079 | 0 | 0 | null | 2015-11-29T02:35:14 | 2015-11-29T02:31:02 | null | UTF-8 | C++ | false | false | 1,544 | cpp | //Texture.cpp
#include "Texture.h"
#include <SDL.h>
#include <gl\glew.h>
#include <SDL_opengl.h>
#include "Simple OpenGL Image Library\src\SOIL.h"
Texture::Texture(std::string pFilePath)
{
//Create texture object
glGenTextures(1, &m_textureObject);
m_fileName = pFilePath;
//Load The Image
glAct... | [
"mkn665@yahoo.com"
] | mkn665@yahoo.com |
8f72a567b0268a19576c552a21d835eeb10caac7 | 3844678a0fb3b1f0838fb04bc57fd93dee6ee631 | /siteApps/PVAccessGW/v4workspace/pvAccess/testApp/utils/configurationTest.cpp | 1cee21546fbcab2b249d603bbfab7afef81f4210 | [
"MIT",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | jeonghanlee/Work | daa9295da3af3ff6c3a68daf51fac804dd1942cd | bef817911ea29fe091547f001ac35ac3765d8258 | refs/heads/master | 2022-09-28T03:59:29.435017 | 2022-09-15T18:26:34 | 2022-09-15T18:26:34 | 91,843,357 | 3 | 0 | null | 2019-01-08T16:10:37 | 2017-05-19T20:34:36 | VHDL | UTF-8 | C++ | false | false | 5,889 | cpp | /*
* configurationTest.cpp
*
*/
#include <pv/configuration.h>
#include <iostream>
#include <string>
#include <memory>
#include <stdlib.h>
#include <epicsAssert.h>
#include <epicsExit.h>
#include <envDefs.h>
#include <epicsString.h>
#include <osiSock.h>
#include <epicsUnitTest.h>
#include <testMain.h>
#ifdef _W... | [
"silee7103@gmail.com"
] | silee7103@gmail.com |
0299c852fea1fe40e8522fe4328a728f97cf7c2c | 521b1719c9d3da52dfb63635b638771075a095a6 | /Random-Engine/include/DebugDraw.h | eb237fb2ae312e1adf229e06cb805534a8c0e771 | [] | no_license | fdfragoso/GameEngines | 836ea2787c9b90b3bb6e0593a0feda4ce44ab3a5 | c1dfcb03e009b0aca9803a9de5806e003aaf364e | refs/heads/master | 2020-07-16T20:29:40.503249 | 2019-09-02T14:00:28 | 2019-09-02T14:00:28 | 205,862,573 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,270 | h |
#include "Box2D/Box2D.h"
struct Camera
{
Camera()
{
m_center.Set(0.0f, 20.0f);
m_extent = 25.0f;
m_zoom = 1.0f;
m_width = 1280;
m_height = 800;
}
b2Vec2 ConvertScreenToWorld(const b2Vec2& screenPoint);
b2Vec2 ConvertWorldToScreen(const b2Vec2& worldPoint);
void BuildProjectionMatrix(float32* m, float... | [
"fefragoso@gmail.com"
] | fefragoso@gmail.com |
b15200db86f64435f0fd491b397a1c109550eac9 | 6a408c6754e8cad8376ff030570129963a0f7b2c | /lesson21/l21-7/l21-7/main.cpp | ff2a767494e03f4a681fc246fac0e8d2fc4607b8 | [] | no_license | dimmkan/MSHP | e4ed8cb6528747f10900c6fe5bcf650238d3f9f6 | 956629ee2b83df28caacc2554bf7a00e1aad848c | refs/heads/master | 2020-09-07T00:56:01.756864 | 2020-05-30T08:54:08 | 2020-05-30T08:54:08 | 220,607,366 | 1 | 0 | null | 2020-01-31T15:52:26 | 2019-11-09T07:29:26 | C++ | UTF-8 | C++ | false | false | 359 | cpp | #include <iostream>
using namespace std;
int digitSum(int n){
int sum = 0;
do{
sum += n%10;
n /= 10;
}while(n);
return sum;
}
int digitRoot(int n){
return digitSum(n);
}
int main()
{
int n;
cin >> n;
while(abs(n) > 9){
n = digitRoot(n);
... | [
"dimmkan@mail.ru"
] | dimmkan@mail.ru |
369ccd0aa5180cae88d396a9b7b06b6c7681eb76 | e037f0f7f3206a185cec1a9f4774b491ad30772b | /ConcreteMdp.h | 743b7a40073d27dde6bd46d691c1e8d270ce6d94 | [] | no_license | mfiore/pomdp | 6f6e53e1e2e57b6142c7606365987ee1efbf3863 | 2b4978b6e2c29d6154b45cdd120e7526cf180f32 | refs/heads/master | 2020-04-05T23:47:42.456783 | 2016-11-07T15:01:25 | 2016-11-07T15:01:25 | 50,672,324 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,456 | h | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/*
* File: ConcreteMdp.h
* Author: theworld
*
* Created on September 2, 2016, 4:48 PM
*/
#include "Mdp.h"
#ifndef CONCRETEMDP... | [
"mfiore@laas.fr"
] | mfiore@laas.fr |
59352e81986a66cdb8bb802c59303f6a8fc7ffdc | f92d75e01756005ad49264fa9fec780a46b2abf8 | /8_String_to_Integer.cpp | a317f75438efaad31837af54b8a88a3928f6438e | [] | no_license | hansx7/LeetCode | a676bc561086d0b78399b83123c9ad945041619a | 91b36240712f67feca63c61a255d955e6cfa0baa | refs/heads/master | 2021-04-27T00:12:51.249114 | 2018-10-28T10:51:46 | 2018-10-28T10:51:46 | 123,771,986 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 880 | cpp | #include<bits/stdc++.h>
using namespace std;
int myAtoi(string s)
{
int max_int = 2147483647;
int min_int = -max_int-1;
if (s=="") return 0;
while (s[0] != '+' && s[0] != '-' && !isdigit(s[0]))
{
if (s[0]!=' ')
while (s[0]!=' ')
{
s.erase(0, 1);
if (s.length() == 0) return 0;
} ... | [
"harryhan.1996@163.com"
] | harryhan.1996@163.com |
f1e7abef5cb89fdcb97b69adaed5400729f79b19 | 1ed046feef46d52738a8c9a987f7daf5e0af997a | /sdk/core/azure-core-amqp/test/ut/amqp_value_tests.cpp | c18b723ecffcb36fb1e63be0d20c294800639350 | [
"LGPL-2.1-or-later",
"BSD-3-Clause",
"Apache-2.0",
"MIT",
"LicenseRef-scancode-generic-cla"
] | permissive | Azure/azure-sdk-for-cpp | 72809cf59d2a6f262a6dd01d6f78661f81e70b93 | dd236311193c6a3debf3b12c47f14e49a20c72c7 | refs/heads/main | 2023-08-25T11:57:56.773041 | 2023-08-23T23:33:32 | 2023-08-23T23:33:32 | 233,147,271 | 159 | 134 | MIT | 2023-09-14T21:25:14 | 2020-01-10T23:29:08 | C++ | UTF-8 | C++ | false | false | 59,220 | cpp | // Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
#include "azure/core/amqp/common/global_state.hpp"
#include "azure/core/amqp/models/amqp_error.hpp"
#include "azure/core/amqp/models/amqp_value.hpp"
#include <algorithm>
#include <random>
#include <gtest/gtest.h>
using namespace Azure::Core:... | [
"noreply@github.com"
] | Azure.noreply@github.com |
4eb79464e4952f2d28954caa1a59aaa43fdd1842 | 1e5535ff55accbffcfb8ce566231b8eb5cc81cbc | /email.cpp | 35d7f81de18e7e49a6edfc48854ae896919d8715 | [] | no_license | codebrane/groupwise | 3f0cacb5b837f26303d9d4c584f9e6ccac78af62 | 040de133e2d22d218588d25ccddfb9d64fb1cc90 | refs/heads/master | 2016-09-06T21:54:29.195807 | 2011-03-10T08:52:01 | 2011-03-10T08:52:01 | 1,435,339 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,098 | cpp | #include "stdafx.h"
#include "gwadapi.h"
#include "email.h"
// Return codes
#define OK 0
#define OK_WITH_UPDATED_VISIBILITY 1
#define ERROR_COM_INIT -1
#define ERROR_CANT_CONNECT_TO_SERVER -2
#define ERROR_CANT_GET_USERS_INTERFACE -3
#define ERROR_CANT_A... | [
"alistair@codebrane.com"
] | alistair@codebrane.com |
bd8202b865094b27c104066ea3e17b0fa05b215b | e2eb06f706c1d1264ac9b52127a5f8923bc3a044 | /IditarodChallenge8/IditarodChallenge8/Explorer.hpp | c295d3ac54654ac1b464db627fc1fce5b2db31b9 | [] | no_license | SarahFDAK/cs202 | 224b47fde8191eb18ec9e6c3894743a8845e7361 | 5e478484d3d372b04d174776af9c5ae95d2d17d6 | refs/heads/master | 2020-12-11T18:09:15.824435 | 2020-04-26T21:07:54 | 2020-04-26T21:07:54 | 233,920,464 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 885 | hpp | //
// Explorer.hpp
// hw04Wumpus
//
// Created by Sarah Carter on 3/8/20.
// Copyright © 2020 Sarah Carter. All rights reserved.
//
#ifndef Explorer_hpp
#define Explorer_hpp
#include <stdio.h>
#include "Cave.hpp"
#include "Hazards.hpp"
#include "Wumpus.hpp"
class Explorer {
int _lifeStat = 0;
int _yourRo... | [
"sarah.c@fdak.net"
] | sarah.c@fdak.net |
8148771552d3f5fd912ef8b6038f7684ada6bcd0 | 8421c2e403e253a41547e7e9ba9cc7aa4996a283 | /BatteryCollector/Pickup.h | a4afde645c1045c35e8e6027f281d2685b546d95 | [] | no_license | hackertron/BatteryBot | 0f52af2467a140c2512f61a01ec996be17ef83f0 | fcf0b6a9d73153b3e9f7d32024c9d41242b9240d | refs/heads/master | 2021-03-24T10:23:42.459341 | 2017-07-30T09:54:17 | 2017-07-30T09:54:17 | 86,799,975 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,389 | h | // Fill out your copyright notice in the Description page of Project Settings.
#pragma once
#include "GameFramework/Actor.h"
#include "Pickup.generated.h"
UCLASS()
class BATTERYCOLLECTOR_API APickup : public AActor
{
GENERATED_BODY()
public:
// Sets default values for this actor's properties
APic... | [
"noreply@github.com"
] | hackertron.noreply@github.com |
02cbc5f18a8db5df2d5f1af6e80109f08bc527df | cefa1d8cd71392c1f431edd786a96a41f471a1a3 | /api/core/cpp/StringCallback.hpp | 0044db766c1aafb1680fde9a46ffe5afa176e96c | [] | no_license | KhalilBellakrid/ledger-core-api | c4a54a8acbd2c5aa7da5d06160b6f463efd80d60 | a8f03d37943d0e34e3fbc1661bb31248126979a1 | refs/heads/master | 2020-03-06T23:35:41.549194 | 2018-04-08T11:06:49 | 2018-04-08T11:06:49 | 127,136,242 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 923 | hpp | // AUTOGENERATED FILE - DO NOT MODIFY!
// This file generated by Djinni from callback.djinni
#ifndef DJINNI_GENERATED_STRINGCALLBACK_HPP
#define DJINNI_GENERATED_STRINGCALLBACK_HPP
#include "../../../../core/src/utils/optional.hpp"
#include <string>
namespace ledger { namespace core { namespace api {
struct Error;
... | [
"khalil.bellakrid@ledger.fr"
] | khalil.bellakrid@ledger.fr |
515564dc489f3699004997ba6741e0467ba93cf0 | 970eafb1f12f5773b3c22e0eb483d46c99dc5c82 | /PicesLibraries/PicesLibrary/SipperBuffBinary.cpp | 801c58991f1be8e2b9d120664f9fae7654f075e0 | [] | no_license | PalakDave/Pices | 9a533f29b33d2b338fbc34a7b8a5db94908bddc0 | 8c1953f68a848ebd9a80500ac6dd49f528cc1c94 | refs/heads/master | 2021-01-20T13:23:55.408840 | 2017-04-23T21:54:00 | 2017-04-23T21:54:00 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,600 | cpp | #include "FirstIncludes.h"
#include <stdio.h>
#include <string.h>
#include <ctype.h>
#include <iostream>
#include <fstream>
#include <vector>
#include "MemoryDebug.h"
using namespace std;
#include "KKBaseTypes.h"
#include "OSservices.h"
#include "RunLog.h"
#include "KKStr.h"
using namespace KKB;
#include "SipperBuf... | [
"kurtkramer@gmail.com"
] | kurtkramer@gmail.com |
ba09acaf1e15ff5f9bde66f2162e9a8d19e567ba | 5f2720560c50042f115cdfb9201728958d241893 | /gef_abertay/platform/win32/system/window_win32.cpp | a32cdfa8af71ddccf2b9ed38c2cb540e3a93299d | [] | no_license | Skelebags/AnimationSystem | 0757171a3f813bee11449241652f87454a71b23b | 105a5c0978dcfc3ef75527c262ce2037015a1915 | refs/heads/main | 2023-02-12T06:34:31.956977 | 2021-01-07T22:42:24 | 2021-01-07T22:42:24 | 327,739,055 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 4,301 | cpp | #include <platform/win32/system/window_win32.h>
LRESULT CALLBACK WndProc(HWND hwnd, UINT umessage, WPARAM wparam, LPARAM lparam)
{
switch(umessage)
{
// Check if the window is being destroyed.
case WM_DESTROY:
{
PostQuitMessage(0);
return 0;
}
// Check if the window is being closed.
case WM_CLOSE:
... | [
"tailzdafox@gmail.com"
] | tailzdafox@gmail.com |
bdaf76fe4f92bbd2f92a6cd75aca6e936473d7f1 | 7b448ba6112b2d890a350bbe5d0c81dca8ab42da | /day03/ex03/NinjaTrap.hpp | cb2a4e2da08f23b2cd8b4ddde01cb66c1f576638 | [] | no_license | ayoubmoussaid/cpp-pool-42 | 27a56f5ca1e5dbaa781b6a4045f3332c33bf3639 | a56513a5e0bd70cdde08e0887906676fb4ba7a17 | refs/heads/master | 2023-07-18T02:52:17.293574 | 2021-09-06T08:24:37 | 2021-09-06T08:24:37 | 403,542,025 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,486 | hpp | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* NinjaTrap.hpp :+: :+: :+: ... | [
"amoussai@student.1337.ma"
] | amoussai@student.1337.ma |
41e8916be2cd9a32186edab069c539198e225b9c | 1a45250b3028939800d83198fc9f4e2a93921a80 | /Game.IO/GIEventSystem.cpp | 407fa90c5eab6008790ca19743524e7e61768217 | [] | no_license | starfoxcom/Game-io-Project | 2842bd8c47d65914c7d5d6885440dc9d72093c4d | 3d86ed398b4b9c71121ae82d79fe50127be6e04f | refs/heads/master | 2020-12-19T09:39:10.568124 | 2020-02-19T20:33:24 | 2020-02-19T20:33:24 | 235,699,122 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,469 | cpp | #include "GIEventSystem.h"
#include "GIGameObject.h"
#include "GIWindow.h"
GIEventSystem::GIEventSystem()
{
}
GIEventSystem::~GIEventSystem()
{
}
void GIEventSystem::Init(GIGameObject & _player)
{
m_radius = _player.getDescriptor().Radius;
}
void GIEventSystem::Update(GIGameObject & _player, vector<GIGameObject>... | [
"idv18c.jmoral@uartesdigitales.edu.mx"
] | idv18c.jmoral@uartesdigitales.edu.mx |
33dc826976f263109e71f378cb0d6cbdc34aeb2f | 67b030efd49825a74e024d5388f5896e081c39ea | /1967.cpp | cdb704fff2be092a0df3446d3c19311fed14beaf | [] | no_license | rile1036/acmicpc_algorithm | f821fc1907f8e8e0a54a848e42cc7768ed159cf1 | e85fb856bf072ccc1109bad053df3fc7a452fea7 | refs/heads/master | 2020-12-20T08:45:29.927589 | 2020-02-01T04:13:22 | 2020-02-01T04:13:22 | 236,019,613 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 945 | cpp | #include<iostream>
#include<vector>
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<math.h>
#include<algorithm>
using namespace std;
#define MAX 10001
int N;
int sum = 0;
int End;
vector <pair <int, int>> vec[MAX];
bool visit[MAX] = { false, };
void DFS(int start, int check_weight) {
if (visit[sta... | [
"rile1036@gmail.com"
] | rile1036@gmail.com |
ce13da859fcb9c928c537843c1717090e2e43b85 | 37fffa1c15d4db9f57d0e4812adae7ba0f1cf910 | /src/_test.cpp | b9aed5120ce6f3d08b30c9531c043f8f1659edfc | [] | no_license | Anonymous-Stranger/CSVReader | ef1a1e42a11685e2efc3c9eb810d1eeac251c5c0 | b35ca6e076cd05e72dd63a7c61529f5e923b0cfd | refs/heads/master | 2021-01-01T17:33:18.609371 | 2015-12-10T08:42:16 | 2015-12-10T08:42:16 | 41,451,517 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 628 | cpp | /*
* _main.cpp
*
* A test to see if CSVStream is working. Should work with any proper csv file with first row headers.
*
* Created on: Aug 14, 2015
* Author: Akash
*/
#include "_test.h"
namespace CSVReaderTest {
void run(std::string testFile) {
CSVReader::CSVStream in {new std::ifstream(testFile)};... | [
"akashgaonkar@gmail.com"
] | akashgaonkar@gmail.com |
3fcaf34bd3925551c3b2e3197cfa573ef1d0fa9a | e44994d72ee3db77784df53315d5b49888cd75c2 | /GVRf/Framework/framework/src/main/jni/objects/components/component_jni.cpp | 3a1dc51507bd2743eb6769deef66357efddee991 | [
"Apache-2.0"
] | permissive | parthmehta209/GearVRf | e3edf690c85d78ab2f02d263a295f4c3198567bb | 8c8dd042def4addbd31de5a984689962f8bc72ce | refs/heads/master | 2020-04-04T17:53:17.049226 | 2016-06-20T20:38:12 | 2016-06-20T20:38:12 | 60,131,985 | 0 | 0 | null | 2016-06-01T00:07:50 | 2016-06-01T00:07:49 | null | UTF-8 | C++ | false | false | 2,248 | cpp | /* Copyright 2015 Samsung Electronics Co., LTD
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law... | [
"nola.donato@samsung.com"
] | nola.donato@samsung.com |
569da095545bd19efd17f456c43429ff8114024a | f58f9f58c21e5399799fac4aaefacaa93fb387aa | /A7/analyse2.cpp | 4d7b7e820f9eb9ffaffd1abd74916cfb3b56ae93 | [] | no_license | NachiketE/CNL | 6d1437f9784976d0ec10781fbc1de717316381a6 | abb6ab244ca26f155b5f90e7da605f6546551fc5 | refs/heads/master | 2020-08-31T14:35:17.996452 | 2019-10-31T07:48:11 | 2019-10-31T07:48:11 | 217,819,639 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,520 | cpp | #include <iostream>
#include <pcap.h>
#include <netinet/in.h>
#include <netinet/ip.h>
#include <arpa/inet.h>
#include <netinet/tcp.h>
#include <netinet/udp.h>
#include <net/ethernet.h>
using namespace std;
void packetHandler(u_char *user, const struct pcap_pkthdr *h,const u_char *packet);
int tcpcount = 0;
int udpco... | [
"nachiketerlekar@gmail.com"
] | nachiketerlekar@gmail.com |
000223d9662d579c4cc69811c24963b9757833a8 | 2cf838b54b556987cfc49f42935f8aa7563ea1f4 | /aws-cpp-sdk-codeartifact/include/aws/codeartifact/model/ListPackageVersionAssetsResult.h | 67fcb43615bb03e7ff0bf79157922c2407916f89 | [
"MIT",
"Apache-2.0",
"JSON"
] | permissive | QPC-database/aws-sdk-cpp | d11e9f0ff6958c64e793c87a49f1e034813dac32 | 9f83105f7e07fe04380232981ab073c247d6fc85 | refs/heads/main | 2023-06-14T17:41:04.817304 | 2021-07-09T20:28:20 | 2021-07-09T20:28:20 | 384,714,703 | 1 | 0 | Apache-2.0 | 2021-07-10T14:16:41 | 2021-07-10T14:16:41 | null | UTF-8 | C++ | false | false | 14,173 | h | /**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/codeartifact/CodeArtifact_EXPORTS.h>
#include <aws/codeartifact/model/PackageFormat.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <aws/core/utils/memory/stl/A... | [
"aws-sdk-cpp-automation@github.com"
] | aws-sdk-cpp-automation@github.com |
5cf666dde40855701bf7431f5199fde3651598ab | 735f14e7e197e53c63eb7dfe8bde672b277302d2 | /Collections/Person.cpp | fb4f99a81be525bc591459710e8bb5eab320c832 | [] | no_license | boyuanf/CPPLearning | 688e4d7952c9eaea56971d614aeb86383b94c9a0 | bbfacf2ce3a03d9c37c7fd1558326899edbd0e00 | refs/heads/master | 2021-01-19T00:18:24.113113 | 2016-10-26T01:08:18 | 2016-10-26T01:08:18 | 60,791,634 | 0 | 0 | null | 2016-06-09T18:45:29 | 2016-06-09T16:59:35 | C++ | UTF-8 | C++ | false | false | 1,443 | cpp | #include "stdafx.h"
#include "Person.h"
#include <iostream>
using namespace std;
Person::Person() : firstname(""), lastname(""), arbitrarynumber(0)/*, pResource(nullptr)*/
{
}
//Person::Person(const Person& p) : firstname(p.firstname), lastname(p.lastname),
//arbitrarynumber(p.arbitrarynumber), pResource(new Resour... | [
"fengboyuannj@gmail.com"
] | fengboyuannj@gmail.com |
db7d3a89bf5da38aa5bfc0c15896307d849753cb | 1ed6fc81dc330b86d5bdfaafd918eac18cdc02ec | /src/2376.cc | 0f2bd06a156b16a3ec6c79b1e8bede2083f000b8 | [] | no_license | libenchao/codepoj | 0c9e249af76d3056e5c8c23ab7ddb85ae0fb894e | 2c898da0afe46f640754f0b2b75b6062c59609f4 | refs/heads/master | 2020-05-19T18:55:10.298499 | 2015-03-12T16:09:52 | 2015-03-12T16:09:52 | 29,141,838 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,126 | cc | #include<iostream>
#include<cstdio>
#include<queue>
#include<stack>
#include<list>
#include<set>
#include<map>
#include<string>
#include<algorithm>
#include<vector>
using namespace std;
const int MAXN = 25001;
pair<int,int> data[MAXN];
bool func(pair<int,int> a,pair<int,int> b){
return a.first < b.first;
}
int main... | [
"libenchao@gmail.com"
] | libenchao@gmail.com |
67998d58dfc192412be193fd08adb944b63a9465 | 6698f9640734a17dbda357c9cd68d940cf22dc52 | /main.cpp | 60de26e7c265253d9043bdba30e41da6093b66f6 | [] | no_license | Zoneshi/CAC2021 | d0f863ab6803797587f52fd093e67d10e0fed791 | c7d9e78865c97e1a6732d569cb3e0900fb7c101c | refs/heads/main | 2023-07-28T03:59:59.641947 | 2021-09-09T03:04:31 | 2021-09-09T03:04:31 | 404,561,281 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,201 | cpp | #if __INTELLISENSE__
#undef __ARM_NEON
#undef __ARM_NEON__
#endif
#include <iostream>
#include <fstream>
#include <string>
#include <sciplot/sciplot.hpp>
#include <Eigen/Dense>
#include <Eigen/Geometry>
using namespace std;
using namespace Eigen;
using namespace sciplot;
typedef vector<Matrix<double,17,1>> vector_r... | [
"shizhongjiao@gmail.com"
] | shizhongjiao@gmail.com |
41a0cd28ef23598336a15618216a38efb8e0919e | 8a6b35a9fe753f6d13939b6e8519e743549358b5 | /Game.cpp | b8aeb05fe5035a90b0a838908eedd4540d10c2da | [] | no_license | RyanSwann1/Snake-CPP-SDL | a6862afb695795a11f36d96cb1650f3028260eb9 | 98019f5ab9125ef895921d693b54782ebead1fdd | refs/heads/master | 2018-01-08T06:46:44.025784 | 2016-03-10T11:03:27 | 2016-03-10T11:03:27 | 53,577,858 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,736 | cpp | #include "Game.h"
#include "Window.h"
#include "Character.h"
#include <cassert>
Game::Game(Window& window)
{
createRenderer(window);
m_nextFoodSpawn = 2000;
}
Game::~Game()
{
}
void Game::render(const Window& window, Character& player)
{
SDL_RenderClear(m_renderer);
//Render player
S... | [
"RyanSwann1992@gmail.com"
] | RyanSwann1992@gmail.com |
e21f0b6bceb03c8d251dadd3bc35d6cf88609168 | c5d157bef8006d5c6a45e04ca680f526d6e21bba | /Multiplication.h | 0ee37e108d1db048665689b94de7975bd4b2d9e6 | [] | no_license | moriya1232/proj2 | aef66466277db9150278e52453fe329cbd9cd65a | cd4ad6b07774d0db831cf8f3299296301444b0c5 | refs/heads/master | 2020-04-14T08:57:20.071890 | 2019-01-13T15:22:58 | 2019-01-13T15:22:58 | 163,747,911 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 456 | h | //
// Created by moriya on 08/12/18.
//
#ifndef UNTITLED5_Multiplication_H
#define UNTITLED5_Multiplication_H
#include "BinaryExpression.h"
#include "Expression.h"
using namespace std;
class Multiplication: public BinaryExpression {
public:
Multiplication(Expression* left, Expression* right);
double calc... | [
"omeromer312@gmail.com"
] | omeromer312@gmail.com |
17b7c69acbf49a83bfafb36504e29fd0016b5345 | a22d485f7368224a487050f31d1fe8a16fd9dea4 | /9_26.cpp | 3820fee55859c157a013cfedf575db9605666dea | [] | no_license | xxqcheers/learngit | 5b6376034fd122b479eaa526334c08839011521a | ee8784953c70086c61fb1f6511fef6e4962ee650 | refs/heads/master | 2020-06-04T10:33:57.802595 | 2014-07-16T16:13:40 | 2014-07-16T16:13:40 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,749 | cpp | /*************************************************************************
> File Name: 9_26.cpp
> Author: xuxiaoqiang
> Mail:353271054@qq.com
> Created Time: 2014年07月16日 星期三 19时46分56秒
************************************************************************/
#include<iostream>
#include<vector>
#include<string>
#... | [
"xxqcheers0614@163.com"
] | xxqcheers0614@163.com |
442502c4b3d0c3b9331aa3a75232d17fe9407085 | 42ed875464d2dc24dfce32d435b089c8982e1eb2 | /NullAudioService.h | 44b5d3f97b68b65f485f9669e0d9bb76d9123e3a | [] | no_license | Benjamin-Russell/Spoose-Invooders | b9e8fc6d2a85016ecfbba14bd249651e30b97a25 | 7fe13dccf2043eb726fe0686824ec97783b64f5a | refs/heads/master | 2016-09-01T06:30:41.343194 | 2016-03-18T02:44:00 | 2016-03-18T02:44:00 | 54,152,784 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 334 | h | #ifndef NULL_AUDIO_SERVICE_H
#define NULL_AUDIO_SERVICE_H
#include "Audio.h"
#include <vector>
#include <SDL_mixer.h>
using namespace std;
class NullAudioService : public Audio
{
public:
NullAudioService() {};
virtual ~NullAudioService() {};
virtual void playSound(SoundEffect id) {};
virtual void stopAllSounds()... | [
"benrussell.dev@gmail.com"
] | benrussell.dev@gmail.com |
36eb1bafe482d6070d602f697efc6b35b93c98c7 | e51e8a6a04d0e57901cca3d866f33e54736053c9 | /CodeForces/1345/b/79340407.cpp | 6f6a3d1a84c8edf001c8364aa5043f583d79af77 | [] | no_license | Nipun4338/Solved-Programming-Problems | 7cb638112ef3d135fc6594eac9c6e79c5b0a0592 | 401a9ecc3157b8b4aa275ceb8c67f4e90213bccd | refs/heads/master | 2023-05-17T02:22:57.007396 | 2021-06-10T17:08:10 | 2021-06-10T17:08:10 | 283,442,802 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,752 | cpp | #include<bits/stdc++.h>
#define rep0(i,n) for(i=0;i<n;i++)
#define rep(i,n) for(i=1;i<=n;i++)
#define reps(i,a,n) for(i=a;i<=n;i++)
#define mem(ara,n) memset(ara,n,sizeof(ara))
#define memb(ara) memset(ara,false,sizeof(ara))
#define all(x) (x).begin(),(x).end()
#define fast ios_base:: sync_with_stdio( false ); cin.tie(... | [
"49658560+Nipun4338@users.noreply.github.com"
] | 49658560+Nipun4338@users.noreply.github.com |
72c574aec621bd184cfbaa7758f2ab8c7bdece3a | ffa83215d4a44581f44173100331bda1900b24fe | /build/Android/Preview/app/src/main/include/Outracks.Simulator.Cl-4ab4e5d1.h | 2cdcafebf5707b656915d93572fcc246c6f6d898 | [] | no_license | imkimbosung/ARkit_fuse | 167d1c77ee497d5b626e69af16e0e84b13c54457 | 3b378d6408551d6867f2e5b3d7d8b6f5114e7f69 | refs/heads/master | 2020-04-19T02:34:33.970273 | 2019-02-04T08:26:54 | 2019-02-04T08:26:54 | 167,907,696 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,501 | h | // This file was generated based on /usr/local/share/uno/Packages/Fuse.Preview.Core/0.1.0/ApplicationStates.uno.
// WARNING: Changes might be lost if you edit this file directly.
#pragma once
#include <Outracks.Simulator.Cl-de0df58f.h>
namespace g{namespace Outracks{namespace Simulator{namespace Client{struct Connecti... | [
"ghalsru@naver.com"
] | ghalsru@naver.com |
46b8fa66c23eb3786ace6ce8274cd953189c2ab5 | 74b352eb46c3bbc886f8d6cfd64a90b3ebb8aed2 | /快速幂.cpp | 2406870ed852d9540393d2ff9373a3f32fd93da1 | [] | no_license | Jeblqr/Model | d9c95f90147ec755f7968d1ac90609838385ef83 | 0d92b695fc7fea0bad916fcfcf5ddde68440eeea | refs/heads/master | 2021-05-10T12:46:56.474823 | 2019-11-12T09:35:07 | 2019-11-12T09:35:07 | 118,451,544 | 8 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 503 | cpp | #include <iostream>
using namespace std;
long long qp(long long a, long long b, long long k) {
long long ans = 1;
while (b) {
if (b & 1)
ans = ans * a % k;
a = a * a % k;
b >>= 1;
}
return ans;
}
long long qp(long long a, long long b) {
long long ans = 1;
while (b) {
if (b & 1)
a... | [
"noreply@github.com"
] | Jeblqr.noreply@github.com |
c15f61941f997269d8bfd737e6dbcd5b7a5b9290 | cc2b07d9e4266efcc830451adfb69b925ec10867 | /OgreMain/src/OgreDefaultDebugDrawer.cpp | 06387dae09095e00056edb16e571142ebe02357d | [
"MIT"
] | permissive | OGRECave/ogre | 74c9c318d95010a3e5fba9709ffebc7e781f27a2 | 15631ca2dd44bd0c925e33411bee05ccac95fc55 | refs/heads/master | 2023-09-04T21:08:30.326815 | 2023-09-02T10:49:34 | 2023-09-02T10:49:34 | 47,069,819 | 3,716 | 1,178 | MIT | 2023-09-14T05:33:08 | 2015-11-29T15:57:03 | C++ | UTF-8 | C++ | false | false | 6,282 | cpp | // This file is part of the OGRE project.
// It is subject to the license terms in the LICENSE file found in the top-level directory
// of this distribution and at https://www.ogre3d.org/licensing.
#include "OgreDefaultDebugDrawer.h"
#include "OgreStableHeaders.h"
namespace Ogre
{
DefaultDebugDrawer::DefaultDebugDra... | [
"rojtberg@gmail.com"
] | rojtberg@gmail.com |
336e245a1bded80a5f35bef862bbed5eaace2688 | 03a1bb4154a50eef70cb48ec36601f0293739a45 | /include/ircd/allocator.h | 82b16fabb96d765b7e0b20446bbd86065071eb95 | [
"BSD-3-Clause",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | bqv/charybdis | 3631c3e38c083d9d3d16be8b38fb09f659ddfa07 | 95a0073101f03c22226c504d6fd21c18965ffd78 | refs/heads/master | 2021-05-26T10:32:29.044336 | 2020-05-13T19:30:03 | 2020-05-13T19:30:03 | 254,097,200 | 0 | 0 | NOASSERTION | 2020-04-08T13:34:25 | 2020-04-08T13:34:24 | null | UTF-8 | C++ | false | false | 21,972 | h | // Matrix Construct
//
// Copyright (C) Matrix Construct Developers, Authors & Contributors
// Copyright (C) 2016-2018 Jason Volk <jason@zemos.net>
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
// copyright notice... | [
"jason@zemos.net"
] | jason@zemos.net |
830e81ac7f469d260a2dedb2e2f163dd2ba1b6a1 | 5ddc3704f976fb4f1191782abfa6bb3c947c9c6d | /src/modules/SX1272.cpp | 82040d7273d4dba6e1ddb5d9b6d1c4497f978bfc | [
"LicenseRef-scancode-unknown-license-reference",
"MIT"
] | permissive | Bambofy/LoRaLib | 2dcdfc946632680e461e4ff7ad9e04fb3829de61 | a887f79066c50c7a468e8392a46f7b280ddc364d | refs/heads/master | 2020-03-26T09:49:24.194467 | 2018-08-02T18:23:56 | 2018-08-02T18:23:56 | 144,766,705 | 1 | 0 | MIT | 2018-08-14T20:02:27 | 2018-08-14T20:02:27 | null | UTF-8 | C++ | false | false | 7,562 | cpp | #include "SX1272.h"
SX1272::SX1272(Module* mod) : SX127x(mod) {
}
int16_t SX1272::begin(float freq, float bw, uint8_t sf, uint8_t cr, uint8_t syncWord, int8_t power, uint8_t currentLimit, uint16_t preambleLength, uint8_t gain) {
// execute common part
int16_t state = SX127x::begin(SX1272_CHIP_VERSION, syncWord... | [
"jgromes@users.noreply.github.com"
] | jgromes@users.noreply.github.com |
6e0314440298318178480414eccafecd6ccd54d0 | e217eaf05d0dab8dd339032b6c58636841aa8815 | /IfcBridge/src/OpenInfraPlatform/IfcBridge/entity/include/IfcFireSuppressionTerminalTypeEnum.h | 5234858a43d74aef6e00bc3fb95e55134cffbb01 | [] | no_license | bigdoods/OpenInfraPlatform | f7785ebe4cb46e24d7f636e1b4110679d78a4303 | 0266e86a9f25f2ea9ec837d8d340d31a58a83c8e | refs/heads/master | 2021-01-21T03:41:20.124443 | 2016-01-26T23:20:21 | 2016-01-26T23:20:21 | 57,377,206 | 0 | 1 | null | 2016-04-29T10:38:19 | 2016-04-29T10:38:19 | null | UTF-8 | C++ | false | false | 1,554 | h | /*! \verbatim
* \copyright Copyright (c) 2014 Julian Amann. All rights reserved.
* \date 2014-02-15 23:00
* \author Julian Amann <julian.amann@tum.de> (https://www.cms.bgu.tum.de/en/team/amann)
* \brief This file is part of the BlueFramework.
* \endverbatim
*/
#pragma once
#include <vector>
#include <map>
#in... | [
"planung.cms.bv@tum.de"
] | planung.cms.bv@tum.de |
0514e2a231e4858358837db280888528eca15267 | 19d0ce325216c56a0260edfb38ff8c328cb754f4 | /Export/android/release/obj/src/openfl/display/ShaderData.cpp | 7bc721dd4f6503cad7eebb6ff6bdac8fab70c4f9 | [] | no_license | HerbinCommando/TokyoTrail | 42fcb0569e5028c2e96b100ad20008304370c16e | 8737240e8782f5357f472dead574fb956243e48a | refs/heads/master | 2021-01-01T20:08:20.336935 | 2017-08-06T05:58:30 | 2017-08-06T05:58:30 | 98,772,096 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | true | 7,591 | cpp | // Generated by Haxe 3.4.2
#include <hxcpp.h>
#ifndef INCLUDED_haxe_io_Bytes
#include <haxe/io/Bytes.h>
#endif
#ifndef INCLUDED_openfl_display_ShaderData
#include <openfl/display/ShaderData.h>
#endif
#ifndef INCLUDED_openfl_display_ShaderInput_openfl_display_BitmapData
#include <openfl/display/ShaderInput_openfl_displ... | [
"heath@wgcells.com"
] | heath@wgcells.com |
e46a8b199794883d74681133c34801e7abdd3ad4 | 078927a49a6c5f7e3de1a99cc9b13aad233c0a7d | /Eudora_W_source/Sandbox/Eudora/QCPersonalityCommand.cpp | 8f71f53a6dcaa3af62b6ff18a69a919a34cee2f0 | [] | no_license | avar/rhqben | ac74c3893bf965eaf8911579f68fe7557f907dcc | 966db0f6a3c7d78cc9ddcab1709f9ac38fdcdd5b | refs/heads/master | 2020-03-18T07:45:21.766714 | 2018-05-22T20:15:44 | 2018-05-22T20:16:47 | 134,471,376 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,850 | cpp | // QCPersonalityCommand.cpp: implementation of the QCPersonalityCommand class.
//
//////////////////////////////////////////////////////////////////////
#include "STDAFX.H"
#include "QCCommandActions.h"
#include "QCPersonalityCommand.h"
#include "QCPersonalityDirector.h"
#include "resource.h" // fake command id promp... | [
"avarab@gmail.com"
] | avarab@gmail.com |
0be3e5e3c648573c2cd46adfaa1a4dda284495ec | e65e6b345e98633cccc501ad0d6df9918b2aa25e | /Contests/2050/A.cpp | 1716a17ea4a270c23f98f859fe29fc93f28dc417 | [] | no_license | wcysai/CodeLibrary | 6eb99df0232066cf06a9267bdcc39dc07f5aab29 | 6517cef736f1799b77646fe04fb280c9503d7238 | refs/heads/master | 2023-08-10T08:31:58.057363 | 2023-07-29T11:56:38 | 2023-07-29T11:56:38 | 134,228,833 | 5 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 507 | cpp | /*************************************************************************
> File Name: A.cpp
> Author: Roundgod
> Mail: wcysai@foxmail.com
> Created Time: 2018-05-25 16:26:35
************************************************************************/
#include<bits/stdc++.h>
#define MAXN 5005
#define I... | [
"wcysai@foxmail.com"
] | wcysai@foxmail.com |
fb90ca903f3accf7bd11607ab8ef396dbdf203bb | 0eff74b05b60098333ad66cf801bdd93becc9ea4 | /second/download/curl/gumtree/curl_new_hunk_626.cpp | 65f630ae443c2c08936afb2e2e7c87b3035cc13d | [] | 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 | 450 | cpp | " 55 Failed sending network data.\n"
"\n"
" 56 Failure in receiving network data.\n"
"\n"
" 58 Problem with the local certificate.\n"
"\n"
" 59 Couldn't use specified SSL cipher.\n"
"\n"
, stdout);
fputs(
" 60 Peer certificate cannot be authenticated with known CA cer... | [
"993273596@qq.com"
] | 993273596@qq.com |
39da6b31529b3dc5771be186b26f24eb2ebef468 | 0cbf959d84aee41ee069812d8c357e6ddbd2f451 | /Source/NetworkTestGame/NetworkTestGame.cpp | 2abe70566c5993b1020a8bfdb579caececdc0d78 | [] | no_license | SeverZmith/NetworkTestGame | 3a0d580f78701240417704b298be3209d5f22bf5 | fe22a1cb29c09048b5c0e150c11a714149ea3a38 | refs/heads/master | 2020-03-22T17:16:52.621769 | 2018-07-24T11:46:14 | 2018-07-24T11:46:14 | 140,385,452 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 221 | cpp | // Copyright 1998-2018 Epic Games, Inc. All Rights Reserved.
#include "NetworkTestGame.h"
#include "Modules/ModuleManager.h"
IMPLEMENT_PRIMARY_GAME_MODULE( FDefaultGameModuleImpl, NetworkTestGame, "NetworkTestGame" );
| [
"eric.g.smith.24@gmail.com"
] | eric.g.smith.24@gmail.com |
5a0e2c5cd69c676c1571693476a3da619a7ac570 | af5a05a4955e899fd1c10affda35618a81c749bc | /Classes/Item.h | 10b4fecd9ed7133ea3d9dbd97fe0ad7e2534cc5a | [] | no_license | kosakasakas/BabylonClicker | f6cd1ae71f18904a80dd940da928e637e7bb59cf | e6b4d5d599c31e64b60a09e97d299bfd70973e72 | refs/heads/master | 2021-01-01T19:20:54.875607 | 2014-10-14T01:36:38 | 2014-10-14T01:36:38 | 21,559,342 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 342 | h | //
// Item.h
// BabylonClicker
//
// Created by Takahiro Kosaka on 2014/08/14.
//
//
#ifndef __BabylonClicker__Item__
#define __BabylonClicker__Item__
#include <iostream>
#include "GameObject.h"
class Item : public GameObject
{
public:
Item(ObjectData* data);
virtual ~Item();
};
#endif /* defined(__Babyl... | [
"takahiro.kosaka@dena.com"
] | takahiro.kosaka@dena.com |
131a4f6205cc6fad8a4e28e876c350bb87cfb089 | aa9174a5e178829b674d42758e7d453f13b83606 | /Data_Structure_with_C++/oned_Array/passArray_to_fun.cpp | c976f88655e2c3097de633799b98695c61f09267 | [] | no_license | tmrindia/Important-Programmes | c27121dd5a4ff520ca04f3e597e25d57e0b952b9 | e8034ad63c3038a0d63b3255379acdb6d64bb192 | refs/heads/master | 2020-04-29T12:21:01.130606 | 2014-10-23T18:14:27 | 2014-10-23T18:14:27 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 434 | cpp | // Another Array program in C++ to pass array to a function
#include <iostream>
using namespace std;
int funarray(int[],int);
int main()
{
int a[5],i,sum_array;
cout<<"Enter the array elements: ";
for(i=0;i<=4;i++)
{
cin>>a[i];
}
sum_array=funarray(a,4);
cout<<"The sum of array elements are: "<<sum_array;
... | [
"chitrankdixit@gmail.com"
] | chitrankdixit@gmail.com |
7e278c16c6819ce2d10f9c989d29bcebc15da1a2 | 69ce778045b73023c19e59dfff4fa3cbc47270af | /Plugins/DlgSystem/Source/DlgSystemEditor/Private/BlueprintNodes/DialogueK2Node_SwitchDialogueCallback.cpp | 942fd894a3d5462879697acd64cdeecb378461df | [
"MIT"
] | permissive | karakune/Rosetta | e410d70fb1579029982c60c2072359fdc32e534f | fb2b582bca68d1a8d0a9e1be85b873cdbfad72e2 | refs/heads/master | 2020-11-27T14:11:32.038881 | 2019-12-11T08:27:16 | 2019-12-11T08:27:16 | 229,478,145 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,463 | cpp | // Copyright 2017-2018 Csaba Molnar, Daniel Butum
#include "DialogueK2Node_SwitchDialogueCallback.h"
#include "BlueprintNodeSpawner.h"
#include "BlueprintActionDatabaseRegistrar.h"
#include "EdGraphSchema_K2.h"
#include "Kismet/KismetMathLibrary.h"
#include "UObject/UObjectIterator.h"
#include "DlgSystemEditorPrivate... | [
"pilon.matthieu@gmail.com"
] | pilon.matthieu@gmail.com |
36c42cadf0554b5587458017ec12b9fc99a32942 | 246a16842feb7633edbe6291ff36b4c93edbb3c7 | /asio-boost/asio_81.cpp | 693ac92ce8921d18e0e44f72ea33a01ad7f792e7 | [] | no_license | curtkim/c-first | 2c223949912c708734648cf29f98778249f79346 | f6fa50108ab7c032b74199561698cef087405c37 | refs/heads/master | 2023-06-08T10:57:35.159250 | 2023-05-28T05:52:20 | 2023-05-28T05:52:20 | 213,894,731 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 4,015 | cpp | #include <boost/asio.hpp>
#include <boost/thread.hpp>
#include <boost/lexical_cast.hpp>
#include <iostream>
boost::mutex global_stream_lock;
void WorkerThread( boost::shared_ptr< boost::asio::io_service > io_service )
{
global_stream_lock.lock();
std::cout << "[" << boost::this_thread::get_id()
... | [
"curt.k@kakaocorp.com"
] | curt.k@kakaocorp.com |
be50f37cbeae83b414311ce0c9e48c5f0a5e5e4b | b6261b92c271f2cc20f2b39d92bf63211a90d6bb | /Project/FirstGraphicTest/Source/CommandBuffer.cpp | a8e5cd49b0a98cc1acee95144cd3132b58b0986c | [] | no_license | WARHEAD117/Vulkan | 72aacd222e30b4a95ea6aac0ba136cb5a04fdec1 | 61c280c9414d6f29e8c74365a8e86e6788f0c5d0 | refs/heads/master | 2022-05-22T06:53:55.778301 | 2020-04-28T02:58:00 | 2020-04-28T02:58:00 | 259,514,591 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,310 | cpp | #include "CommandBuffer.h"
CommandBuffer::CommandBuffer()
{
}
CommandBuffer::~CommandBuffer()
{
}
void CommandBuffer::Finalize()
{
for (VkCommandBuffer commandBuffer : m_CommandBuffers)
{
vkFreeCommandBuffers(m_Device, m_CommandPool, 1, &commandBuffer);
}
}
void CommandBuffer::Init(VkDevice device, uint32_t... | [
"johngary_gy@live.com"
] | johngary_gy@live.com |
d4e90242eac64d8e72e80c509672984b7fc04bb3 | ae219d28725c9dd58c200ae76ba3bf3f2a90d557 | /BrowserLauncher/xulrunner-sdk/include/nsIFaviconService.h | 232ca3a8c702b067ad9756523b7c540067bb1075 | [] | no_license | pepekinha/src | de1f0c64cf1238e019f4daf7f87d95849304d88e | 5223858f05f6791f1dec30df1dbb91ae3e4f5952 | refs/heads/master | 2021-01-22T01:05:54.659896 | 2014-04-06T01:43:37 | 2014-04-06T01:43:37 | 27,421,524 | 3 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 25,634 | h | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM e:/builds/moz2_slave/release-mozilla-1.9.2-xulrunner_win32_build/build/toolkit/components/places/public/nsIFaviconService.idl
*/
#ifndef __gen_nsIFaviconService_h__
#define __gen_nsIFaviconService_h__
#ifndef __gen_nsISupports_h__
#include "nsISupports.h"
#endif
/* F... | [
"highnetlan@gmail.com"
] | highnetlan@gmail.com |
10d749c616e3289b4a6505be2f00a728eadb4084 | 603c19c6dd4697e018f3ed028a2bacfca6179247 | /learningRepositoryCPlusPlus/learningRepositoryCPlusPlus/Figure.h | d5065235f78d3a1d2b94eb986ed224df155bd4a9 | [] | no_license | Obi-Gun/learningRepositoryCPlusPlus | 5cd65d956ae1c9ac05c0a988b913b2d2cfb6ca13 | 99b0e344d5b9b85a5a85198631ce85593534a443 | refs/heads/master | 2021-04-02T16:23:04.023924 | 2020-08-18T22:40:46 | 2020-08-18T22:40:46 | 248,294,742 | 0 | 0 | null | 2020-03-30T14:59:32 | 2020-03-18T17:12:20 | C++ | UTF-8 | C++ | false | false | 133 | h | #ifndef Figure_Class
#define Figure_Class
class Figure
{
public:
//virtual ~Figure() = 0;
virtual int calcSquare() = 0;
};
#endif | [
"alexandr.010@yandex.ru"
] | alexandr.010@yandex.ru |
57db770f64613f0f28f1f20f4401b1c89e400559 | 80487a4e66982296862d6af87dc4fc8211d273e0 | /Coding ninjas Competitve Programming/Sorting and Searching application/Murder.cpp | 91a39212a7819cc00f379b7858bc3a2236c85fa3 | [] | no_license | Tarunkmr0023/Competitve-Coding | e4ba476b19609679e942e4089ac67c0c3c90fd43 | e0e7af8b2c6c6d4296eba880794654f23372c9f9 | refs/heads/main | 2023-03-06T04:30:01.762077 | 2021-02-15T14:56:30 | 2021-02-15T14:56:30 | 339,110,664 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,612 | cpp | #include<bits/stdc++.h>
using namespace std;
#define ll long long
ll minihelper (int *arr1, int size1, int *arr2, int size2) {
int currMaxIndex = size1;
ll currAns = 0, finalAns = 0;
for(int i = 0; i < size1; i++) {
if (arr1[i] >= arr2[0]) {
currMaxIndex = i;
... | [
"noreply@github.com"
] | Tarunkmr0023.noreply@github.com |
4cdb04a3717d65c04bdc5de2b91a5dab96fbc3b9 | 395b5c2344e9df491916049a8b47a59cd046d05a | /Lesson14/main.cpp | 9ceaf41c031401d9f92150afe357d897dd6cee0e | [] | no_license | Lauro199471/OpenCV-Tutorial | eeaab4d01a6b498ed78cd1a9c0d60e46bcae5053 | acf01802f22d0684e4eb98b2a56a6415940bd126 | refs/heads/master | 2020-03-08T19:50:32.540091 | 2018-04-29T18:21:55 | 2018-04-29T18:21:55 | 128,365,733 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,946 | cpp | // Simple Example of Detecting a Red Object
#include <opencv2/opencv.hpp> //calls the header files for each OpenCV module
#include <iostream>
#define USB_CAM_ID 0
#define running 1
using namespace cv;
using namespace std;
int main(int argc, char* argv[])
{
//open the video file for reading
VideoCapture cap(USB_CA... | [
"lauro199471@gmail.com"
] | lauro199471@gmail.com |
626e755a64f94a5625b40c60fe87026624c0f713 | 0cd8bbc974b822c46b64712d3be53e9808a5c246 | /112.cpp | 062dcb5e5d7ad67b4976811e0acd15f01f103ddc | [] | no_license | limon2009/ACM-UVA-Online-Judge-solution | b78e8f709c88e5db6fdac83a7bd5ec71f7ab00b0 | 0f86718d3c609e654a3c16a29e0f91620ac40cd1 | refs/heads/master | 2021-08-11T04:58:42.829356 | 2017-11-13T06:14:09 | 2017-11-13T06:14:09 | 110,505,263 | 1 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 2,157 | cpp | #include<stdio.h>
#include<stdlib.h>
#include<ctype.h>
#include<string.h>
#define MAXN 1000000
char St[MAXN];
char input[MAXN];
int sth, rh, N, td;
struct ss {
int val;
}data[MAXN];
void SetStack() {
int i, j, k, f ;
char temp[20];
for(i = rh; input[i]; i++) {
if(input[i] == ' ') continue;
if(input[i] == '... | [
"md.moniruzzaman@bjitgroup.com"
] | md.moniruzzaman@bjitgroup.com |
2eb7d5ea400fa5f32d81e9322d3a554cfbfb215b | 480ee7a56def11d0e611dcdf5e827284d70a9185 | /httpserver/epoll/http.h | 02ae478339ae26175714803ab2205bcf0dbe5fae | [] | no_license | HaoDongddd/EasyHttpServer | 5550e6838b6b4a0989bc7a89d4cc32d2d94c6e4e | d237ecdb12cb89a247a5fc24371fae7cb89141e9 | refs/heads/master | 2023-04-05T14:06:50.783891 | 2021-04-13T15:38:48 | 2021-04-13T15:38:48 | 346,695,708 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,013 | h | #ifndef HTTP_H
#define HTTP_H
#include <iostream>
#include <string>
#include <map>
#include <queue>
#include <cstring>
#include <utility>
#include <ctype.h>
#include <unistd.h>
#include <arpa/inet.h>
#include <sys/epoll.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <string>
#define WWWRO... | [
"1263967171@qq.com"
] | 1263967171@qq.com |
348b2952459e4ef4d93d3e2c2f0587ac729ec969 | d19647286d211653accd333f70e6ff5b7bb09edb | /dynamic_programming/leetcode72.cpp | 19817a331a007f7be4de4e87290e8f3a92001085 | [] | no_license | mrgao12/algorithm | 36c8223ee76430504c7cb6d0a93461733246c3f0 | 5522918a296d15d4ba70f8cc7406040c511f3ec7 | refs/heads/master | 2021-01-08T03:24:52.571696 | 2020-06-11T08:07:40 | 2020-06-11T08:07:40 | 241,898,375 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,292 | cpp | #include <iostream>
#include <vector>
using namespace std;
/**
* leetcode 72 Edit Distance
* Given two words word1 and word2, find the minimum number of operations required to convert word1 to word2.
* You have the following 3 operations permitted on a word:
* 1. Insert a character
* 2. Delete a character
* 3. R... | [
"gaoyong.chn@gmail.com"
] | gaoyong.chn@gmail.com |
fd9a9882196dee09866918d9f764aacea265a209 | fbe34dc61c8b3ac0d047b057a58972dc77731074 | /1030. Travel Plan/src.cpp | adc64d177652dcc54d6abc6f8406e3f342f88e82 | [] | no_license | moaiweishui/pat | 4c204deec03611f015ce45ff8afd1ba68b77a9e4 | 637a4d5c47a70b18150ef6eff64e31806674a67f | refs/heads/master | 2021-01-19T16:37:06.778775 | 2017-12-03T13:13:38 | 2017-12-03T13:13:38 | 101,012,062 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,289 | cpp | #define _CRT_SECURE_NO_WARNINGS
#include <iostream>
#include <algorithm>
#include <math.h>
#include <float.h>
#include <limits.h>
#include <string.h>
#include <string>
#include <iomanip>
#include <vector>
#include <set>
#include <queue>
#include <stack>
#include <unordered_set>
#include <unordered_map>
using namespac... | [
"noreply@github.com"
] | moaiweishui.noreply@github.com |
3377ee5aaf11ddfc1d4376298b49a8f4e634a5f3 | dd5ba03f18b52615ee5f9e978f3dfc1efdef9fc8 | /common_factor_count.cpp | 2e13f4343e55a7584a2a60d350bbc6eb3c08a7f6 | [] | no_license | Yu-JinChoi/c_c-_exercise | 72301f9b9e115c507c91ed11325a05897d6465e9 | 3dc71b403c88a15861c27b4bd9fbfe502c0981f5 | refs/heads/master | 2023-02-04T07:56:11.804614 | 2020-12-26T09:06:44 | 2020-12-26T09:06:44 | 324,518,525 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 282 | cpp | #include <stdio.h>
int main()
{
int n, k, j = 0;
scanf("%d %d", &n, &k);
for (int i = 100; i >= 1; i--)
{
if (n % i == 0 && k % i == 0)
{
printf("%d ", i);
j++;
}
}
printf("%d", j);
printf("\n");
}
| [
"hani6065@naver.com"
] | hani6065@naver.com |
0e335cf5ce9d6617bb5dbcd36dc4ca2cb26a0f5b | 44f30dcdcd0ec54ad119a8d924c6c100ff68b8c8 | /AboutDialog.cpp | a993258c9d0bfe961a37c3179f7c0af0317618eb | [] | no_license | rfatkullin/Tetris3D | 91a55fc0c4557982579a8bb483cf82221eb90cd4 | 2f3aafb8be98dc71b7469b36334f98a77bc4dc33 | refs/heads/master | 2021-01-01T05:30:25.679168 | 2011-12-20T16:46:16 | 2011-12-20T16:46:16 | 2,539,476 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,557 | cpp | #include "AboutDialog.h"
AboutDialog :: AboutDialog( QWidget* apParent ) : QDialog( apParent )
{
QPushButton* ok_button = new QPushButton( "OK" );
QVBoxLayout* ver_layout = new QVBoxLayout();
QHBoxLayout* first_hor_layout = new QHBoxLayout();
QHBoxLayout* second_hor_layout = new QHB... | [
"rfatkullin@yandex.ru"
] | rfatkullin@yandex.ru |
d0666d67e693c63e50968b31b86eef0511212b84 | 372d949ac03a01615405d9987adea757fc95ebc1 | /include/camp/map.hpp | 594dc6ddd01a26db1a1e217f3f6f7557c42f1563 | [
"BSD-3-Clause"
] | permissive | LLNL/camp | 892c7e89c2c352076a57f068aff9b3650fe529e7 | 2b1ed462295485cb4813e6f4208aea195660bc20 | refs/heads/main | 2023-08-31T04:30:53.303022 | 2023-07-26T18:12:51 | 2023-07-26T18:12:51 | 145,623,498 | 64 | 19 | NOASSERTION | 2023-09-07T17:43:32 | 2018-08-21T21:54:40 | C++ | UTF-8 | C++ | false | false | 1,308 | hpp | /*
Copyright (c) 2016-18, Lawrence Livermore National Security, LLC.
Produced at the Lawrence Livermore National Laboratory
Maintained by Tom Scogland <scogland1@llnl.gov>
CODE-756261, All rights reserved.
This file is part of camp.
For details about use and distribution, please read LICENSE and NOTICE from
http://gith... | [
"scogland1@llnl.gov"
] | scogland1@llnl.gov |
61c28b9d3bf3cf265f24d20681b12d8e83f0f556 | 600df3590cce1fe49b9a96e9ca5b5242884a2a70 | /net/socket/fuzzed_socket.cc | 40c0adfee26fd03c424e728d4e16bac687e34830 | [
"BSD-3-Clause"
] | permissive | metux/chromium-suckless | efd087ba4f4070a6caac5bfbfb0f7a4e2f3c438a | 72a05af97787001756bae2511b7985e61498c965 | refs/heads/orig | 2022-12-04T23:53:58.681218 | 2017-04-30T10:59:06 | 2017-04-30T23:35:58 | 89,884,931 | 5 | 3 | BSD-3-Clause | 2022-11-23T20:52:53 | 2017-05-01T00:09:08 | null | UTF-8 | C++ | false | false | 7,774 | cc | // Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "net/socket/fuzzed_socket.h"
#include <algorithm>
#include "base/bind.h"
#include "base/location.h"
#include "base/logging.h"
#include "base/te... | [
"enrico.weigelt@gr13.net"
] | enrico.weigelt@gr13.net |
ed93c13399d6c9675fe809ca8c8f04ae2813290c | 457586a0d32290f868883e8486a920e509d57d5c | /code/cpp/hello-world.h | a3f917f2b68520ced1b3257eedc06e10b4841432 | [] | no_license | taksebeperevod/game-programming-patterns | ce1dd1abb192ccc576dc0ad0aacb5508302e87ee | 0e563e376f018f0ee6ede280512ea452a907b13c | refs/heads/master | 2020-12-25T01:37:56.381094 | 2014-09-08T18:30:01 | 2014-09-08T18:30:01 | 23,188,081 | 3 | 1 | null | 2014-10-29T10:39:11 | 2014-08-21T13:28:06 | C++ | UTF-8 | C++ | false | false | 232 | h | #include <iostream>
class HelloWorld
{
public:
//^1
// 64 characters --------------------------------------------------------|
static void Do()
{
//^2
std::cout << "Hello world." << std::endl;
//^2
}
//^1
}; | [
"robert@stuffwithstuff.com"
] | robert@stuffwithstuff.com |
f59545f447313c692657bf8f4172458f1b84c046 | def8fd457e8e24904e0e6e3ddf212a2c5bc83fce | /list3.cpp | a646a561ebfb30c0898f6e23647a99316d3a873f | [] | no_license | Anchal-Mittal/Linked_List | b1f8cfaeb7e096171fc433a96a2d3d0409f1d015 | 3821b58afca4fbfecee52dc1882db7b46e82f2ce | refs/heads/master | 2021-09-09T13:50:38.008416 | 2018-03-16T18:20:23 | 2018-03-16T18:20:23 | 116,420,169 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,099 | cpp | //=========================================deleting an element from linked list exist at head===========================
#include <iostream>
#include<cstdio>
using namespace std;
//===========================================creating a node===========================================================
class Node {
pub... | [
"noreply@github.com"
] | Anchal-Mittal.noreply@github.com |
315a9d97bc811882eba5a1bb4960a05660903edc | 07545d44cc50120acf80abe0ec3a946aa353cca5 | /fsfx101/bootloader/characters.h | 3ce67ea90cb7b958b057b40cb0faffd9848ccb7e | [] | no_license | freestatefx/5u | 930f3ce0ba610c03eb7030c37afb1bc28c809183 | c7272fa244b8d47fb37e45de622c4b42cda602b7 | refs/heads/master | 2022-09-30T11:42:46.071893 | 2020-06-04T16:08:14 | 2020-06-04T16:08:14 | 109,459,158 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,688 | h | // Copyright 2012 Olivier Gillet.
//
// Author: Olivier Gillet (ol.gillet@gmail.com)
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitat... | [
"noreply@github.com"
] | freestatefx.noreply@github.com |
2e520106f74aca6ac3ac5457a7ddb8b926e10c84 | f1c85d864edaf4c9ac9fa4853d5067b06a0185c6 | /The_Eye/inc/PID.h | 5dc8294dba9eae879e901afde201e0a6336d8866 | [
"MIT"
] | permissive | michprev/flyhero-stm32 | 886d231139caeb86bacd2b01f40a0cb92eee8d98 | 51c659cdd4e1d50446a563bb11e800defda9a298 | refs/heads/master | 2021-10-08T02:51:24.855720 | 2017-08-11T23:04:38 | 2017-08-11T23:04:38 | 76,754,235 | 0 | 1 | MIT | 2018-12-06T22:14:15 | 2016-12-18T00:08:33 | C | UTF-8 | C++ | false | false | 634 | h | /*
* PID.h
*
* Created on: 14. 7. 2017
* Author: michp
*/
#ifndef PID_H_
#define PID_H_
#include "cmath"
#include "Biquad_Filter.h"
#include "Timer.h"
namespace flyhero {
class PID {
private:
Biquad_Filter d_term_lpf;
uint32_t last_t;
float Kp, Ki, Kd;
float integrator;
float i... | [
"michprev@gmail.com"
] | michprev@gmail.com |
24a6bf1e086dea57d5a7599ccb04ccf1ad959304 | e3c0499cc58c9fbec887a2e85672d5e29588f9e0 | /opt/ir_decl.cpp | c10c149fb81731dd20aa4fa3cc9fa6cf04227bcd | [
"BSD-3-Clause"
] | permissive | stevenknown/xoc | bf19fba2a7851f0c91d62846b61f12000993fa94 | 3514aaf0d742e7c1bff956f5a5e96a92102abe8a | refs/heads/master | 2023-05-14T10:18:34.851859 | 2023-04-29T08:15:24 | 2023-04-29T08:15:24 | 40,242,945 | 132 | 19 | NOASSERTION | 2023-09-08T08:04:04 | 2015-08-05T12:02:52 | C++ | UTF-8 | C++ | false | false | 9,469 | cpp | /*@
Copyright (c) 2013-2021, Su Zhenyu steven.known@gmail.com
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list... | [
"steven.known@gmail.com"
] | steven.known@gmail.com |
6f440628ea14fa1c87168fabb4df4b690da3307b | 2cf838b54b556987cfc49f42935f8aa7563ea1f4 | /aws-cpp-sdk-es/include/aws/es/model/UpdatePackageResult.h | 54e730f2fa80af508aefa73615a43774090f919c | [
"MIT",
"Apache-2.0",
"JSON"
] | permissive | QPC-database/aws-sdk-cpp | d11e9f0ff6958c64e793c87a49f1e034813dac32 | 9f83105f7e07fe04380232981ab073c247d6fc85 | refs/heads/main | 2023-06-14T17:41:04.817304 | 2021-07-09T20:28:20 | 2021-07-09T20:28:20 | 384,714,703 | 1 | 0 | Apache-2.0 | 2021-07-10T14:16:41 | 2021-07-10T14:16:41 | null | UTF-8 | C++ | false | false | 2,143 | h | /**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/es/ElasticsearchService_EXPORTS.h>
#include <aws/es/model/PackageDetails.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
... | [
"aws-sdk-cpp-automation@github.com"
] | aws-sdk-cpp-automation@github.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.