blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 3 264 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2
values | repo_name stringlengths 5 140 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 905
values | visit_date timestamp[us]date 2015-08-09 11:21:18 2023-09-06 10:45:07 | revision_date timestamp[us]date 1997-09-14 05:04:47 2023-09-17 19:19:19 | committer_date timestamp[us]date 1997-09-14 05:04:47 2023-09-06 06:22:19 | github_id int64 3.89k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 22
values | gha_event_created_at timestamp[us]date 2012-06-07 00:51:45 2023-09-14 21:58:39 ⌀ | gha_created_at timestamp[us]date 2008-03-27 23:40:48 2023-08-21 23:17:38 ⌀ | gha_language stringclasses 141
values | src_encoding stringclasses 34
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 3 10.4M | extension stringclasses 115
values | content stringlengths 3 10.4M | authors listlengths 1 1 | author_id stringlengths 0 158 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
5b22767e1d8985270d320d0135c115b457ef21f0 | 600df3590cce1fe49b9a96e9ca5b5242884a2a70 | /chrome/browser/printing/cloud_print/privet_local_printer_lister.cc | 1b507e8dec7434a1f9e30590b0aa91da1d7bfdf8 | [
"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 | 4,485 | cc | // Copyright 2013 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 "chrome/browser/printing/cloud_print/privet_local_printer_lister.h"
#include <stddef.h>
#include <memory>
#include <string>
#include <utility>
... | [
"enrico.weigelt@gr13.net"
] | enrico.weigelt@gr13.net |
9b02fe6ba0d87dcfc2be29914805fd14cb814e35 | b7d2605a7c4ddc0ba334f3334989166a60767ccb | /src/math/matrix_minified.cpp | 2a2362aeb28a0ef948ae57b3f60e233265b12a7b | [] | no_license | Cotex05/Competitive-Programming | c0ccae4002a5a759ccce8aac8758353a39288e23 | f3d12f799881765d0ff2570c7e68dfb82d9f0471 | refs/heads/master | 2023-04-22T18:56:57.324020 | 2021-05-13T16:15:10 | 2021-05-13T16:15:10 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,022 | cpp | #include <bits/stdc++.h>
using namespace std;
const int M = 5, MOD = 1e9 + 7;
/**
* Minified matrix class for competitive programming.
* The time complexity of the matrix power is O((M^3).log(n)),
* where "M" is the size of the matrix, and "n" is the exponent.
*/
class matrix {
int rows, cols;
int mat[M]... | [
"omar_bazaraa@hotmail.com"
] | omar_bazaraa@hotmail.com |
1cbd5ba7cde5bcc8acb27d7678053033084c8bcf | 46d25667ceb388b8f247b3b87d96729aa31081a7 | /cpp/cpp_11.cpp | 032124943d5505c9af800a6751d91f6daca17230 | [] | no_license | haroon-rasheed/code_practice | 9cbac426e362907d63fd91ec22c07b527053bd88 | fe9f59b08a1e921ecb2eb405590156ed472436f2 | refs/heads/master | 2021-01-23T13:44:09.128846 | 2014-03-03T06:33:49 | 2014-03-03T06:33:49 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 168 | cpp | #include <iostream>
using namespace std;
int my_array[5] = {1, 2, 3, 4, 5};
// double the value of each element in my_array:
for (int &x : my_array)
{
x *= 2;
}
| [
"haroon_77_job@yahoo.com"
] | haroon_77_job@yahoo.com |
fea074922fff0db905825c424bac0e5da42e2eb3 | d443a987f66b2040d4d5aff1f861f63179a07e0e | /second-year/algorithms/06binarySearchRec.cpp | dda5b806517cbf555513a45a8090ca9170aecebf | [] | no_license | akshit-thakur/college | 72f7d5d5e804b37973e5aae15d9d533c8ad9e3a2 | 693b170c6e581be51eef51916d99411c64bc65eb | refs/heads/master | 2022-12-11T18:13:18.510030 | 2020-09-09T13:55:00 | 2020-09-09T13:55:00 | 265,034,948 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 764 | cpp | #include<iostream>
#include<ctime>
#include<stdlib.h>
using namespace std;
int count=0;
void binarySearch(int* A,int s,int e,int item){
if(s<=e){
count+=1;
int m=(s+e)/2;
if(A[m]==item)
cout<<"Success. Found at "<<m<<"\n";
else if(A[m]<item)
binarySearch(A,m+1,e,item);
else
binarySearch(A,s,m-1,item);
... | [
"akshit.235@gmail.com"
] | akshit.235@gmail.com |
38a00ee8858236ffd3858f8d32132c74641cbb10 | c85fb84195d9d9616fff2d82eab862f5dcd7d7c0 | /1157.cpp | 9d6bc797e7929a81a154d854cfffc6afff9497a5 | [] | no_license | minD3D/BeakJoon_Solved | 85c0d019fb93a1965327fc4c7a7466bbe40d56f7 | f6186a60c5538e3c4290d28e827bd9141fdc9698 | refs/heads/master | 2020-04-05T13:31:00.780595 | 2017-09-08T14:33:50 | 2017-09-08T14:33:50 | 94,851,208 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 738 | cpp | #include <cstdio>
#include <iostream>
#include <string>
#include<cctype>
using namespace std;
int main() {
ios::sync_with_stdio(false);
string a;
cin >> a;
for (int i = 0; i < a.length(); i++)
a[i]=toupper(a[i]);
string alpa = "ABCDEFGHIJKLMNOPQRSTUVIXYZ";
int in[26];
for (int i = 0; i < 26; i++)
in[i] = ... | [
"gomdori626@gmail.com"
] | gomdori626@gmail.com |
39ea329392073147ae7dfbe43e1ef9781e7c0901 | 0077a932dd9b111d10b4f2e4ea6a0c9f1935b01e | /2016-2017/NationalsCar/NationalsCar.ino | 032672dfbb2026b9d19e92adcc11112b9519dfe9 | [] | no_license | cmuchemecar/CMU-ChemE-Car | 2b5a28240a8424b5498c48931f769d3de7fe76ed | 2f6cd861fb785a60f2f838553c149814687b5a5b | refs/heads/master | 2020-05-21T15:07:00.946164 | 2018-04-27T00:05:38 | 2018-04-27T00:05:38 | 18,025,311 | 5 | 2 | null | 2016-10-13T18:08:13 | 2014-03-23T03:00:57 | Arduino | UTF-8 | C++ | false | false | 2,193 | ino | #include <Data.h>
#include <SD.h>
#include <SPI.h>
#define WHEELHALLPIN 5
#define STOPHALLPIN 6
#define KILLSWITCHPIN 12
#define RELAYPIN 10
int start = 0;
int magnets = 1;
float radius = 0.068;
float circumference = 3.14 * 2 * radius;
float x = 0;
float dx = circumference / magnets;
float dt = 0;
float prevTime = 0... | [
"xaxafour@yahoo.com"
] | xaxafour@yahoo.com |
dead353356957cd0df96ccfd8677f333942ffbe3 | 4cc18df781a2ffac6be612f04834f02fccfa7e31 | /20170510/oo/pc/Thread.h | 3697f052ad14ee10e942718e8daf7af8d094af8b | [] | no_license | heartinharbin/learncpp | db5e616a3727376ca6370044b2b99d2f7e3b92e5 | 5d2cddc069b0c5b1342041388121776e3e0239b5 | refs/heads/master | 2021-01-19T11:09:26.626356 | 2017-05-16T14:22:34 | 2017-05-16T14:22:34 | 87,933,541 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 572 | h | ///
/// @file Thread.h
/// @author heartinharbin
/// @date 2017-05-11 10:51:46
///
#ifndef __WD_THREAD_H__
#define __WD_THREAD_H__
#include "Noncopyable.h"
#include <pthread.h>
namespace wd{
class Thread
: Noncopyable{
public:
Thread();
~Thread();
pthread_t getThreadid() const{
return _pthId;
}
... | [
"791365914@qq.com"
] | 791365914@qq.com |
0343299e4aa98b9c9b8f67ea9be43ea7ea8e0e1a | d347554c4bc24b7e159551007f5683cac8fa97d0 | /arincmerge/src/arinc/structures/EnrouteWaypoint.cpp | 0cc03bb7e5e196312d3e77dd4e01ac87151107ea | [] | no_license | ansartnl/ALPHA | 892065b1476ec9c35e834a3158592332cda4c5f5 | 138ddd981ed5bac882c29f28a065171e51d680cf | refs/heads/main | 2022-12-27T16:15:28.721053 | 2020-10-16T08:58:41 | 2020-10-16T08:58:41 | 304,633,537 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 80 | cpp | #include "EnrouteWaypoint.h"
const char EnrouteWaypoint::SubsectionCode = 'A';
| [
"50514882+dg-atmsys@users.noreply.github.com"
] | 50514882+dg-atmsys@users.noreply.github.com |
a81051c9b66cb699b3d7f72b478299df3d6b81af | cffadb67ca0660d43516069f53a3072f5b63ef21 | /arduino programs/test_serial3/test_serial3.ino | 73ba87da9ade85b71a1569821c5959b8ac642101 | [] | no_license | jchan1992/industrial-training-test-programs | 7f287f54d9924849af195a623025fa54448f7959 | 262d52c1c12e6ecfb72183e19031b373d22bab23 | refs/heads/master | 2021-01-25T06:55:47.459985 | 2017-06-07T10:56:40 | 2017-06-07T10:56:40 | 93,625,396 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 258 | ino | byte rx[4];
byte rxa;
byte got = 0b10101010;
int i = 0;
boolean flag = false;
void setup(){
Serial.begin(9600);
Serial1.begin(9600);
}
void loop(){
if(Serial1.available()>0){
if(Serial1.read()==1){
Serial1.write("GAY");
}
}
}
| [
"justin.chan.92@live.com"
] | justin.chan.92@live.com |
0f0a60ffffce2ac8769745d31139276f8246a97b | 540eed6884f12a603da0dbc07a776409c82476e8 | /util/camera/pylonCamera.cpp | 51b5a16ed3c3b9339628f42f3a0b1c9aabdf06d1 | [
"MIT"
] | permissive | balos1/jetson-inference | e5242ac9da2787657135d2cf834add2944f72901 | 2198e63bb37096ec830d416c207602ad06b79e05 | refs/heads/master | 2021-04-09T15:02:19.089488 | 2018-03-17T07:43:56 | 2018-03-17T07:43:56 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,493 | cpp |
#include "pylonCamera.h"
#include "pylonUtility.h"
// constructor
pylonCamera::pylonCamera(std::vector<CameraNode*> cameras,
int height,
int width)
: camera(height, width)
{
// Initialize Pylon runtime first.
Pylon::PylonInitialize();
// Create the CI... | [
"cjbalos@gmail.com"
] | cjbalos@gmail.com |
a533167a16e98728786a2fbded6917b4e94411f5 | b04bccaf921874f2d03556ace4812f1f117a584b | /bsscpp/Tools/Convolution/Convv1/Convolution.cc | e711219038ae8b3aaecafb95e02819fc775dec0a | [] | no_license | zz4fap/bsscpp | 69e8ddf6f0b13015bae9cba203d30e2eec9f0a45 | ccba23a4abdbe5a0e0edc0642bebf7d5a1990e1e | refs/heads/master | 2020-05-19T08:13:48.303450 | 2012-05-09T02:33:44 | 2012-05-09T02:33:44 | 32,116,529 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 833 | cc | #include "Convolution.hh"
Convolution::Convolution()
{
this->fft = new Fourier();
}
Convolution::~Convolution()
{
delete this->fft;
}
void Convolution::doConvolution(float data1[], float data2[], unsigned long nOfSamples, unsigned long N, float ans[])
{
unsigned long no2;
float temp[2*N], tmp;
this->fft->fas... | [
"zz4fap@362d6d2c-4c02-bf13-b717-816be16ce2d1"
] | zz4fap@362d6d2c-4c02-bf13-b717-816be16ce2d1 |
05e3538982c329035b4741987f40407081335304 | fd6c03d5fba4ca1ca5a178d8406d27768d0157e2 | /src/governance-vote.cpp | 97192f78dbdbac4d924f0f64225eea6f58ec9cd6 | [
"MIT"
] | permissive | jschmucke/e4Coin | 021006dd187d56613e54548c94ab6f2b6cdc6af2 | 7611ef00501c1c05969392a11c22860de697184c | refs/heads/master | 2022-01-19T06:24:17.093636 | 2019-07-09T02:21:16 | 2019-07-09T02:21:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,694 | cpp | // Copyright (c) 2014-2018 The e4Coin Core developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "governance-vote.h"
#include "governance-object.h"
#include "masternode-sync.h"
#include "masternodeman.h"
#inclu... | [
"lordark@gmail.com"
] | lordark@gmail.com |
69b99c25c680c9eeafe75bd759449b30c23b9a09 | abc28bcb09ef3bfabbeb0af52fa12abba7ad7ccc | /CaseStudy/CaseStudy/res/cpp/Object/Object.cpp | ac511db95ee86ce802bcad291f433fdfb6b52164 | [] | no_license | kyurebei/graine | b19cfdbbd26eee767844bbc864176fdfc9c550bd | 2ad8c133a9df59b814d6b02114fdc6325fd4aa80 | refs/heads/master | 2021-01-18T13:22:49.137882 | 2015-05-07T06:14:22 | 2015-05-07T06:14:22 | 35,399,115 | 0 | 0 | null | null | null | null | SHIFT_JIS | C++ | false | false | 20,597 | cpp | //========================================================================================
// File : Object.cpp
// Program : オブジェクトベース
//
// Description : オブジェクトベースの実装
//
// History : 2014/06/11 作成開始
//
// Author : Kei Hashimoto
//=======================================================... | [
"dancekeybeat@gmail.com"
] | dancekeybeat@gmail.com |
89ffc88714832ae1a65fa14f839d5d27507c55da | e3043e9a5d1e94b624d1c89c64e3954fe88d7ec3 | /avogadro/vtk/vtkglwidget.h | 48ff4c48f30a5383b2acb9e6b2b7cd9ae8239abb | [
"BSD-3-Clause"
] | permissive | tittiatcoke/avogadrolibs | 5bf3a5d66db58cd6c3185dd8aed8c60b9129922e | 30c7d565efdea6b65e7b3d25d29690bb96fbea70 | refs/heads/master | 2021-01-11T17:06:58.482708 | 2017-01-22T14:41:37 | 2017-01-22T14:41:37 | 79,723,084 | 0 | 0 | null | 2017-01-22T14:37:49 | 2017-01-22T14:37:49 | null | UTF-8 | C++ | false | false | 2,830 | h | /******************************************************************************
This source file is part of the Avogadro project.
Copyright 2014 Kitware, Inc.
This source code is released under the New BSD License, (the "License").
Unless required by applicable law or agreed to in writing, software
distri... | [
"marcus.hanwell@kitware.com"
] | marcus.hanwell@kitware.com |
7e5972d6039540c83e95810f2b4d16839630fb38 | 21ca80d95272001fe8d91589cd003462146e1dcb | /include/main/workspace/TrackNote.h | 87c9e8f83d46941ffbf5b05a1c61adf4f0960d45 | [] | no_license | lifehax/melodygenerator | f5170ce2a582ee64d49663a98ce81e74842397ac | 312970202c7e627805b60f7a96e809455a133663 | refs/heads/master | 2021-01-20T17:21:37.667184 | 2016-06-16T03:11:53 | 2016-06-16T03:11:53 | 60,753,849 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 610 | h | #pragma once
#include <string>
#include <vector>
#include <map>
#include "TrackItem.h"
#include "TrackItemObject.h"
class TrackNote : public TrackItemObject {
protected:
std::string note;
int db;
double freq;
int number;
public:
TrackNote(int64_t time, int note, int length);
std::string getNote();
void setNo... | [
"kvnirving@gmail.com"
] | kvnirving@gmail.com |
28147e34d7b23cacf4f3f377c98b1893b70f3a84 | 454d691ae36f28bdaa6f56fa410793b4b011a099 | /EntropyCalculate/libdsl/DPrintLog.h | fa7efcadf8e9845d2869aa8edf1b20029e401e80 | [] | no_license | shenjunHZ/EntropyCalculate | 3753f3e3bb34106312b92872ff21023cd7ba55c3 | b8d0c8e7bab562b638536831b6477fb1cc3030ba | refs/heads/master | 2020-03-28T14:23:59.247480 | 2019-07-23T08:57:56 | 2019-07-23T08:57:56 | 148,483,789 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 5,541 | h | /* Copyright (c) 2011, 浙江大华技术股份有限公司, All rights reserved.
* 2011-09
*
* DPrintLog.h : 日志库
*/
#ifndef INCLUDED_LIBDSL_DPRINTLOG_H
#define INCLUDED_LIBDSL_DPRINTLOG_H
#include <libdsl/dslbase.h>
#include <libdsl/DTime.h>
#include <libdsl/DMutex.h>
#include <stdarg.h>
// <1> 用户使用的宏
// 打印日志要简洁,去除冗余信息,关键字清晰便于查找,多提供一... | [
"jun.4.shen@nokia-sbell.com"
] | jun.4.shen@nokia-sbell.com |
84a65a879fbbd1d0eca2a20d58741bf3bdaa6d75 | 1d928c3f90d4a0a9a3919a804597aa0a4aab19a3 | /c++/mongo/2019/8/shard_filter.cpp | ed25ef0ad8ede54608f787367cb236c354bfba7b | [
"BSL-1.0"
] | permissive | rosoareslv/SED99 | d8b2ff5811e7f0ffc59be066a5a0349a92cbb845 | a062c118f12b93172e31e8ca115ce3f871b64461 | refs/heads/main | 2023-02-22T21:59:02.703005 | 2021-01-28T19:40:51 | 2021-01-28T19:40:51 | 306,497,459 | 1 | 1 | null | 2020-11-24T20:56:18 | 2020-10-23T01:18:07 | null | UTF-8 | C++ | false | false | 5,206 | cpp | /**
* Copyright (C) 2018-present MongoDB, Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the Server Side Public License, version 1,
* as published by MongoDB, Inc.
*
* This program is distributed in the hope that it will be useful,
* but W... | [
"rodrigosoaresilva@gmail.com"
] | rodrigosoaresilva@gmail.com |
85655c07ef82aafd9677ff659730bba170701528 | c673ebc5c088ba4cd2d9bb362eeadc751d4ef0ac | /src/state.h | 5a06e2e0070de925c5bd19aebc622325e506628b | [
"MIT"
] | permissive | gerland-group/mxanthus_polarity | 09c82791b7c63a619781056ba8b4aeffe3673cfc | 5385fd41a5d276446ee7440d852eedf2a0a29b2a | refs/heads/master | 2022-11-19T03:38:27.304534 | 2020-06-23T18:55:40 | 2020-06-23T18:55:40 | 256,320,279 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 908 | h | /*
* This file is part of the M. xanthus polarity simulator
* Copyright (c) 2020 Filipe Tostevin
*
* Various arrays and functions associated with the state of the dynamical
* system.
*/
#ifndef STATE_H
#define STATE_H
#include <fstream>
#include <string>
#include <boost/numeric/ublas/matrix.hpp>
// Enumerate t... | [
"f.tostevin@tum.de"
] | f.tostevin@tum.de |
f37025f54b6c9939bd632c522b6abf5fc159b104 | f77093a01fe785b5668cbb388b725b4a5af5656b | /src/crc32c_sse42_check.h | f726e15984c98a28a7543ecdb1f789551deea803 | [
"BSD-3-Clause"
] | permissive | davidripple/crc32c | 8339f0d7f4e7d53cbe43a7bf6d0c96114aa8ef2e | 1ea02c793542162f8f281a13686642f0aa968c31 | refs/heads/master | 2021-01-22T13:52:49.980773 | 2017-08-16T09:29:59 | 2017-08-16T09:33:42 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,003 | h | // Copyright (c) 2017 The CRC32C Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. See the AUTHORS file for names of contributors.
#ifndef CRC32C_CRC32C_SSE42_CHECK_H_
#define CRC32C_CRC32C_SSE42_CHECK_H_
// X86-specific code checking... | [
"pwnall@chromium.org"
] | pwnall@chromium.org |
b8fe7ba62595639f939e298e4c1f05989407eb54 | e95adb59feacfe95904c3a8e90a4159860b6c26a | /build/Android/Preview/outsideTheBox/app/src/main/include/Uno.Net.Sockets.SocketException.h | 76f2df5c91b268a77aa1415fbb550775a587ab7d | [] | no_license | deliloka/bethebox | 837dff20c1ff55db631db1e0f6cb51d935497e91 | f9bc71b8593dd54b8aaf86bc0a654d233432c362 | refs/heads/master | 2021-01-21T08:20:42.970891 | 2016-02-19T10:00:37 | 2016-02-19T10:00:37 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 784 | h | // This file was generated based on '/usr/local/share/uno/Packages/Uno.Net.Sockets/0.23.1/$.uno'.
// WARNING: Changes might be lost if you edit this file directly.
#pragma once
#include <Uno.Exception.h>
namespace g{namespace Uno{namespace Net{namespace Sockets{struct SocketException;}}}}
namespace g{
namespace Uno{
... | [
"Havard.Halse@nrk.no"
] | Havard.Halse@nrk.no |
4bf5e522f944c4b75fa4e5c237beebd824f0c03a | 37cabc06e7a1f39e086c4e797884dc4b54fe54f8 | /DungeonsOfNoudar486/Win32Version/CGDIRenderer.cpp | f2b62499ff9fe5a23f48983a7f70c91a664db550 | [
"BSD-2-Clause"
] | permissive | msgpo/dungeons-of-noudar | fb0da65c82516a2dce313e49b06d446a7cd2cc5e | 40fe44c4a180d7daf3fe97eff4ddbfd2cd558c62 | refs/heads/master | 2021-10-16T10:53:07.510397 | 2019-02-10T20:06:06 | 2019-02-10T20:06:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,111 | cpp | #include <cstdlib>
#include <cstdio>
#include <cstring>
#include <cmath>
#include <string>
#include <utility>
#include <functional>
#include <memory>
#include <algorithm>
#include <iostream>
#include <map>
#include <unordered_map>
#include <chrono>
#include <sg14/fixed_point>
#include <EASTL/vector.h>
#include <EASTL/... | [
"danielmonteiro@id.uff.br"
] | danielmonteiro@id.uff.br |
e4f382eac00a413b7a48fcbc7b4427b73bbd5cb7 | e1594f2775da3afa0ee8fccb2c708269ed4c260d | /main.cpp | 13a97a80f889ddd8936c91d15dccd011a67e4822 | [] | no_license | llong283/VirtualSMS | 6c38bfe64561abf9784fd7a5e4500e02c3a01816 | 9810c700651c281a5fb30ed7bbc6c55be834070f | refs/heads/master | 2016-09-06T08:58:11.995883 | 2013-03-10T11:47:54 | 2013-03-10T11:47:54 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 1,015 | cpp | #include <QtGui/QApplication>
#include "virtualsms.h"
//#include <QtTest>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
QTextCodec *codec = QTextCodec::codecForName("gb2312");
QTextCodec::setCodecForCStrings(codec);
QTextCodec::setCodecForLocale(codec);
QTextCodec::setCodecForTr(c... | [
"helong283@163.com"
] | helong283@163.com |
5f4c29f19fc80e35616838563e78f74063945df9 | 39bc87d07344b7ae32e045b788423c4ba2f486ca | /BLEMouse.h | a3576a7d10aede54a52f98b0c0447071e59a5690 | [] | no_license | sashabusse/air_mouse_esp32 | 2b2785460c11bf0698046d147a00ca7f71a118d6 | 0bc1425c589da685925faf51bb5378d1d4a895c3 | refs/heads/master | 2022-11-29T07:53:07.541564 | 2020-07-25T18:41:34 | 2020-07-25T18:41:34 | 282,503,894 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 479 | h | #pragma once
#include "HIDService.h"
#include "BLEMouseCallbacks.h"
class BLEMouse
{
public:
BLEMouse();
~BLEMouse();
void init();
void start_advertise();
void move(signed char x, signed char y);
bool is_connected();
private:
public:
private:
BLEMouseCallbacks* m_callbacks;
... | [
"sasha.busse@mail.ru"
] | sasha.busse@mail.ru |
10ef44d130d81af9e0b21f84ca8c9d5194f4235a | 82ecd95e91eb2907b97788af65129e9ce6a9d369 | /Ct/Window/RECVIEW/CtRecTouchNavi.h | 54eb198f9e44212c233ff3ccf9bc086ca97fd214 | [] | no_license | nmoritani/Ct_Sample3 | 762eda95476adf2fc94d722747ac9817ed8e53ad | c889a2922aa7a75d9438f10902cb73864b5e4765 | refs/heads/master | 2023-07-03T00:34:44.352187 | 2021-07-23T09:39:19 | 2021-07-23T09:39:19 | 374,942,747 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,031 | h | /******************************************************************************
* Copyright(c) 2018 Persol AVC Technology.
******************************************************************************/
#ifndef __CtRecContainerTouchNavi_H__
#define __CtRecContainerTouchNavi_H__
#include "Ct.h"
#include "CtWindowMain... | [
"moritani.nobuo@gmail.com"
] | moritani.nobuo@gmail.com |
ec6ba069ef76190ba7596d4023a90211bb1ceb3b | 9329123a4c2d2dc812195afaa2d4d0d9ee9dcc51 | /Problem_6.cpp | 4a65c0402b18968d153e499bd26ad8c0685d9e69 | [] | no_license | Sasun1/Introductory_Problems | 9cefc9075f683abebdff1cabad75bfc952429e75 | c5ccead8cbad377c25b9e919cb392bc5b06a86cf | refs/heads/main | 2023-04-18T09:46:44.543273 | 2021-05-02T17:21:41 | 2021-05-02T17:21:41 | 362,921,643 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 121 | cpp | // Problem_6.cpp :
#include <iostream>
int main()
{
std::cout << "Sasun Kostanyan" << std::endl;
return 0;
}
| [
"kostanyan.sasun@gmail.com"
] | kostanyan.sasun@gmail.com |
0d3b745638bb21ca55aff6723e491e7d7e807bd5 | fc41f6052b8562274cf279a0a70d88a58e56ef92 | /Source/ComoPicaro/MapGeneration/TileLevelScriptActor.cpp | c514066680b4432b5ac8f9d042e1a0108e5b1d25 | [] | no_license | KikeAjani/ComoPicaro | 0c144034af9094b704a360a31db312a92025bc1c | 0199ad8f198447258b011433b45a5d75b784eddb | refs/heads/main | 2023-04-08T12:40:47.357421 | 2021-01-12T13:18:09 | 2021-01-12T13:18:09 | 321,762,412 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,059 | cpp | // Fill out your copyright notice in the Description page of Project Settings.
#include "TileLevelScriptActor.h"
AEnemy* ATileLevelScriptActor::SpawnEnemy(TSubclassOf<AEnemy> enemyClass)
{
FTransform spawnTransform = SpawnTargetPoint->GetTransform();
FActorSpawnParameters spawnParams;
spawnParams.SpawnCollisionH... | [
"diego_mzmn@hotmail.com"
] | diego_mzmn@hotmail.com |
14cbacd18d3ebd01c26e4026c438d005ba2dc400 | f2e9e35c08239bb867a2636b5af54d42179890c5 | /Hiroshima/MyTaskGame/GameProject/Game/CObjectBase/CFieldBG/CFieldManager.cpp | 4ab82cc0a993d51790d484c4d8f5763d8ff2f9ed | [] | no_license | GCLUC2018s/GameProject | cc09545482b4106c85b91409ab869aed7f623f8f | 7a7b6cab134bee3dfb81785dc1781389f631ea4d | refs/heads/master | 2021-01-24T07:10:21.979508 | 2018-04-14T02:24:26 | 2018-04-14T02:24:26 | 122,949,671 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 320 | cpp | #include "../GameProject/Source/Fieldsource.h"
CFieldManager::CFieldManager() :CObjectBase(eID_Null, eU_System, eD_Null)
{
new CFieldSky();
new CFieldCloud(0);
new CFieldBamboo(0);
new CFieldGround(0);
new CFieldGround(1);
}
CFieldManager::~CFieldManager()
{
}
void CFieldManager::Update()
{
}
| [
"ackanabuki02@gmail.com"
] | ackanabuki02@gmail.com |
cb93b852f4e8f4594dd4063e458758c087044d75 | 18d88613323af23e384b0d7f1590e082fdf06efd | /src/qt/sendcoinsdialog.cpp | a3d5cf869edb10f153fbf5dbb8a2ff3aacf1b3c2 | [
"MIT"
] | permissive | Kunocoin/coinsourcecode | 73718c51224b4d4ca070dac57be050402441dba3 | dacfd8a6d0ad7fd462ba5ad07647502bee9315f1 | refs/heads/master | 2020-04-11T12:25:27.597328 | 2019-01-17T08:37:37 | 2019-01-17T08:37:37 | 161,779,572 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 33,885 | cpp | // Copyright (c) 2011-2016 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 "sendcoinsdialog.h"
#include "ui_sendcoinsdialog.h"
#include "addresstablemodel.h"
#include "bitcoinunits.h"
#inclu... | [
"kunocoinwebmaster@gmail.com"
] | kunocoinwebmaster@gmail.com |
db4f7e46980fee62c6fcbdb587ec97a9706ccb05 | 6c8c4728e608a4badd88de181910a294be56953a | /UiModule/Common/UiVisibilityAction.h | ab4432f35b6ba8064a3686d138b410337bb9c6ee | [
"Apache-2.0",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | caocao/naali | 29c544e121703221fe9c90b5c20b3480442875ef | 67c5aa85fa357f7aae9869215f840af4b0e58897 | refs/heads/master | 2021-01-21T00:25:27.447991 | 2010-03-22T15:04:19 | 2010-03-22T15:04:19 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 736 | h | // For conditions of distribution and use, see copyright notice in license.txt
#ifndef incl_UiModule_UiVisibilityAction_h
#define incl_UiModule_UiVisibilityAction_h
#include "UiModuleApi.h"
#include "UiAction.h"
#include <QGraphicsWidget>
namespace UiServices
{
class UI_MODULE_API UiVisibilityAction... | [
"jonne.nauha@evocativi.com@5b2332b8-efa3-11de-8684-7d64432d61a3"
] | jonne.nauha@evocativi.com@5b2332b8-efa3-11de-8684-7d64432d61a3 |
b29cfa92737ef350c58aa8957d0e1771a7580fe8 | 73e881f0c8f5fe97f86f58b5e228e3d4481a50de | /src/DatabaseHandler.cpp | fdcb49d8c72db29d701c0b76889e5f943aa23975 | [] | no_license | laraconda/tsp-sa | bff787ab28aa6d0f7d5bf96437402d3f94c06d07 | 039a849b8a2a292d351ea632033d08ab45d19a82 | refs/heads/master | 2022-03-11T18:37:08.663210 | 2019-10-07T00:42:03 | 2019-10-07T00:42:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,870 | cpp | #include "DatabaseHandler.hpp"
#include <iostream>
#include <string.h>
using namespace std;
DatabaseHandler::DatabaseHandler(): DATABASE_FILENAME("db/tsp.db") {}
void DatabaseHandler::OpenDatabase() {
int status = sqlite3_open(DATABASE_FILENAME.c_str(), &db);
if (status || db == NULL) {
cerr << "Err... | [
"larachicharo@protonmail.com"
] | larachicharo@protonmail.com |
b6977c292df0ab4a7d0a91eb10a8b5d52e9ce167 | 9a3b9d80afd88e1fa9a24303877d6e130ce22702 | /src/Providers/UNIXProviders/ElementConformsToProfile/UNIX_ElementConformsToProfile.cpp | 16a25520093a861f2df3025a84b010ea9b7801d1 | [
"MIT"
] | permissive | brunolauze/openpegasus-providers | 3244b76d075bc66a77e4ed135893437a66dd769f | f24c56acab2c4c210a8d165bb499cd1b3a12f222 | refs/heads/master | 2020-04-17T04:27:14.970917 | 2015-01-04T22:08:09 | 2015-01-04T22:08:09 | 19,707,296 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,560 | cpp | //%LICENSE////////////////////////////////////////////////////////////////
//
// Licensed to The Open Group (TOG) under one or more contributor license
// agreements. Refer to the OpenPegasusNOTICE.txt file distributed with
// this work for additional information regarding copyright ownership.
// Each contributor lice... | [
"brunolauze@msn.com"
] | brunolauze@msn.com |
1f2885c068998b7a5f86c8af0675c71c5b5f237f | d6a0942ed0d761e032f8c1bcafcf4f54387d7bff | /src/qt/obfuscationconfig.cpp | 5feaf98de167425586e457050bfb5163aa97a879 | [
"MIT"
] | permissive | DreamTeamCoin3/dreamteam3 | a6cc144b6672e86b98a1507b0e08a89da6cdb0da | 7c329f177e32c6919d52a0dd64835a6b9eec63f5 | refs/heads/master | 2021-06-27T17:31:50.901731 | 2020-11-03T21:48:19 | 2020-11-03T21:48:19 | 178,424,442 | 5 | 4 | MIT | 2020-11-03T21:48:21 | 2019-03-29T14:52:12 | C++ | UTF-8 | C++ | false | false | 2,699 | cpp | #include "obfuscationconfig.h"
#include "ui_obfuscationconfig.h"
#include "bitcoinunits.h"
#include "guiconstants.h"
#include "init.h"
#include "optionsmodel.h"
#include "walletmodel.h"
#include <QKeyEvent>
#include <QMessageBox>
#include <QPushButton>
#include <QSettings>
ObfuscationConfig::ObfuscationConfig(QWidge... | [
"root@localhost"
] | root@localhost |
f231303de243ac3e9710737d0dfd84b0f599b70f | cf8088a2a79a2070883e864dfeffc24c5ddd331d | /依赖库/TaskModel/Source/TaskModel/os/ZOSObjectTable.cpp | 4ddb01feff10bae38a5366313757e5b97c603afb | [] | no_license | qingswu/CD-Burn | 5ae644d465ec145805d23a37577f911729ef679d | 5f71f858b38c8e570784356c8a1d7014f0ab94f3 | refs/heads/master | 2021-05-09T06:08:24.198985 | 2017-04-20T16:03:12 | 2017-04-20T16:03:12 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,483 | cpp | #include "ZOSObjectTable.h"
#include "ZMath.h"
///////////////////////////////////////////////////////////////////////////////
//#define ZOSOBJECTTABLE_DEBUG 1
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
... | [
"zhengcy@avsys.cn"
] | zhengcy@avsys.cn |
2cc06ea190cc3e723dda8096d3e876cf7d307513 | d939455f557cd9eda2619fd812025d8e19b083e3 | /Cpp/leetcode/editor/cn/2416_sum-of-prefix-scores-of-strings.cpp | 55fa82c61b1f6ff619e128fa0732cae7419aada1 | [
"MIT"
] | permissive | longluo/leetcode | 61d445bd4fbae13b99ea24e9ef465bb700022866 | 5a171f223c03cfdddb18488fd4bc5910039e21c4 | refs/heads/master | 2023-08-17T05:03:25.433075 | 2023-07-30T04:01:16 | 2023-07-30T04:01:16 | 58,620,185 | 58 | 20 | MIT | 2023-05-25T19:00:48 | 2016-05-12T07:52:04 | Java | UTF-8 | C++ | false | false | 3,175 | cpp | //给你一个长度为 n 的数组 words ,该数组由 非空 字符串组成。
//
// 定义字符串 word 的 分数 等于以 word 作为 前缀 的 words[i] 的数目。
//
//
// 例如,如果 words = ["a", "ab", "abc", "cab"] ,那么 "ab" 的分数是 2 ,因为 "ab" 是 "ab" 和
//"abc" 的一个前缀。
//
//
// 返回一个长度为 n 的数组 answer ,其中 answer[i] 是 words[i] 的每个非空前缀的分数 总和 。
//
// 注意:字符串视作它自身的一个前缀。
//
//
//
// 示例 1:
//
// 输入... | [
"calmbody@163.com"
] | calmbody@163.com |
5b3874feffba0857afc988255fb53eeeedc80184 | 6b2a8dd202fdce77c971c412717e305e1caaac51 | /solutions_5658282861527040_0/C++/Zrp/b2.cpp | cb8fb3d47bd420768e5525506a08fe04bc55c154 | [] | no_license | alexandraback/datacollection | 0bc67a9ace00abbc843f4912562f3a064992e0e9 | 076a7bc7693f3abf07bfdbdac838cb4ef65ccfcf | refs/heads/master | 2021-01-24T18:27:24.417992 | 2017-05-23T09:23:38 | 2017-05-23T09:23:38 | 84,313,442 | 2 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 742 | cpp | #include <cstdio>
#include <cstdlib>
#include <iostream>
#include <algorithm>
#include <string>
#include <cstring>
#include <cmath>
#include <vector>
#include <map>
#include <set>
#include <cstring>
using namespace std;
#define N 5000000
#define oo 1000000000
#define mod 1000000007
long long sa, sb, k;
... | [
"eewestman@gmail.com"
] | eewestman@gmail.com |
eb089811ab8c8c216938dd3ecdeac6ba784a63ef | f79705978d8e130d6199564b9226a2e41d3e5642 | /movidius_ncs_lib/src/exception_util.cpp | 1f3c8d6223d4b533aa46a8f2a85de086d61af592 | [
"Apache-2.0"
] | permissive | intel/ros2_intel_movidius_ncs | 9d10334314d844ed02cddc34380398c4cf92c819 | fdc29488454345ba32b40d00f3ff5305f420a29b | refs/heads/master | 2023-05-31T00:03:39.218860 | 2023-01-07T00:07:50 | 2023-01-07T00:07:50 | 118,040,108 | 26 | 24 | Apache-2.0 | 2019-02-01T03:02:48 | 2018-01-18T21:26:13 | C++ | UTF-8 | C++ | false | false | 2,821 | cpp | // Copyright (c) 2017 Intel Corporation. All Rights Reserved
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by ... | [
"xiaojun.huang@intel.com"
] | xiaojun.huang@intel.com |
49512230ed2e3e72992f72c8e3aee4484d06f22d | deb9334fc2e75fd105370e7cdd857d4f7c2caffb | /洛谷/01入门/03循环结构/P1420.cpp | 3429e74c9ce9d148fdf9021bd462d362fd272a2a | [] | no_license | liwei2088/oi | a641aa06cfeeaeff75673191c4e0bd3f5aae9de3 | 487acf4b1d4f97ab26614f9f396c9ca007c2b507 | refs/heads/master | 2021-06-12T00:00:02.767091 | 2021-03-27T06:21:09 | 2021-03-27T06:21:09 | 149,082,839 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 346 | cpp | #include <iostream>
using namespace std;
int n, a[10005];
int main() {
cin >> n;
for (int i = 1; i <= n; i++) cin >> a[i];
int ans = 0;
for (int i = 1; i <= n; i++) {
int j = i + 1;
while (j <= n && a[j - 1] + 1 == a[j]) j++;
ans = max(ans, j - i);
i = j - 1;
}
co... | [
"liwei2088@sohu.com"
] | liwei2088@sohu.com |
82a73f742f6bc3f6c8ab5f3a67991ac334408ede | d0851364d9ddde12e834fc9fe2d773b51bbc1a74 | /ar code/Artificial_Lights_System/Artificial_Lights_System.ino | 1a3599d739ca680697c6056fcf8388a33dcb918c | [] | no_license | L9Sneaky/Operation-Lettuce | e671ef889e72d9952b1a1f2aaad5a2c2131fe476 | 0af0e3de378a45153f80ed080e47faccb9744605 | refs/heads/main | 2023-08-29T20:37:34.846826 | 2021-11-11T13:47:03 | 2021-11-11T13:47:03 | 427,015,590 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 873 | ino | //In this algorithm we read light values in the environment
//using the Photoresistor_Senser and tern the LED on when
//the the light value is less than 30% of what the plant needs and tern it off otherwise
int Photoresistor_Senser_pin = A2;
int LED = 9;
int Photoresistor_Senser_Value ;
int MaxRead = 100 ;
int MinRe... | [
"galghanim1999@gmail.com"
] | galghanim1999@gmail.com |
51d7080fe45d487b0350da901e4fd7e43c19f297 | 51bd1b711bd96bbc129ddde6a2cf2e5f50ef6c25 | /MyMediaPlayer/MediaPlayer/videoglwidget.cpp | 52f7c1942387cfe69be48bc3ed228c6b1513d76b | [] | no_license | yjhui0331/MyMediaPlayer | f89d3566fb1bbdc8514677af907ada0400186b5b | 125453f2ba5b7be0b0f4472856eb1da8b101b231 | refs/heads/master | 2021-10-11T08:09:23.692184 | 2019-01-13T10:37:26 | 2019-01-13T10:37:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,748 | cpp | /*
* copyright (c) 2018-2019 shizheng. All Rights Reserved.
* Please retain author information while you reference code
* date: 2019-01-13
* author: shizheng
* email: shizheng163@126.com
*/
#include "videoglwidget.h"
#include <QPainter>
#include <QDebug>
#include <ctime>
#include <QOpenGLTexture>
#include <QO... | [
"shizheng163@126.com"
] | shizheng163@126.com |
4fdb587f9a3616f86149b395eb7c63561dcbe8ef | 11227b9a3344c050366e801e0179f6bb6d05e725 | /Engine/Scene/Scene.cpp | 09482ae3ac4541906c414f398ca0afdff71100fb | [] | no_license | MagnusRunesson/Pidventure | 46fefb63b95cecd78a1d159dcd4551651ac3d2d6 | 4bec99e46263c44c7ad69085cc0db81469bdae33 | refs/heads/master | 2020-09-22T15:12:20.369444 | 2018-01-02T19:37:15 | 2018-01-02T19:37:15 | 67,161,478 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,349 | cpp | //
// Scene.cpp
// pidventure
//
// Created by Magnus Runesson on 2016-09-12.
// Copyright © 2016 Magnus Runesson. All rights reserved.
//
#include "Engine/stdc/stdc.h"
#include "Engine/Util/String.h"
#include "Engine/Scene/GameObjectManager.h"
#include "Engine/Graphics/Image.h"
#include "Engine/Graphics/Sprite.h"... | [
"magnus@pokewhat.com"
] | magnus@pokewhat.com |
62be9f37ffa816c4cfda72b020ab93236f45fc42 | 83c7a6972a08f17884e7a23f3d9be29dcc5a1c89 | /contracts/getnumber/getnumber.cpp | 844716debe7a48edda8808fef8dcb7dd67ef766e | [] | no_license | ShangxingSun/eos-repo | 59b07ea04fcda1ea4769e69d25673e09b819d22b | f1dd63cacaee7a77560f221932737c5036094ab9 | refs/heads/master | 2020-04-07T18:52:38.931826 | 2018-11-22T21:19:26 | 2018-11-22T21:19:26 | 158,627,521 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 599 | cpp | #include <eosiolib/eosio.hpp>
#include <eosiolib/asset.hpp>
#include <eosiolib/contract.hpp>
#include <eosiolib/crypto.h>
#include <eosiolib/transaction.hpp>
using namespace eosio;
class getnumber : public contract {
private:
uint64_t seed = 0;
public:
using contract::contract;
[[eosio::action]]
void hi ( ... | [
"ss811@duke.edu"
] | ss811@duke.edu |
7ed8b6cbef63a1234bf133e4bb3b892ba25d1a3a | 42fc4aff71522edbfe3ce8327d36c923162dcf08 | /loader.h | bca91c746b4e5cbe6d4527c09e2ca9b95c627e62 | [] | no_license | akshayrajput/ARMV8_Simulator | a4a8526a85754feefcdd50c95c8935c20fc1987b | f4e1bb3c83c26d6b36e39d62bb1be0591c78f3f9 | refs/heads/master | 2020-03-08T16:41:01.091309 | 2018-11-06T13:54:19 | 2018-11-06T13:54:19 | 128,246,276 | 5 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 340 | h | #ifndef _LOADERH_
#define _LOADERH_
#include<cstdio>
#include"mem.h"
class Loader
{
private:
FILE* ldfile;
public:
Loader();//default constructor
Loader(char* s);//constructor taking a file parameter
void setFile(char* s); //set the file loaded
int loadmem(int start,mem m[],char c);//loads the memory starting fro... | [
"amartyaamp@gmail.com"
] | amartyaamp@gmail.com |
a7e4d872f4a801102e64f4ffe905a491379e416f | 60aacd28431f9b236049d1e99c13e777e75c639d | /MPM2D/ext/Algebra/algebra.h | 24a11647f05d0bfe980d80bb7376c40104ef8ec3 | [] | no_license | mvenditto/MPM2D | aa21db9cfd6020f50a48fc9c97013a71ac96452f | 57dadbb60321cc041009721b86002c4fb9fc5c14 | refs/heads/master | 2020-12-26T21:16:41.316098 | 2020-01-22T03:47:34 | 2020-01-22T03:47:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,880 | h | #pragma once
#include <algorithm>
#include <iostream>
/* Vector and Matrix classes. */
#pragma region "Vector2f"
class Matrix2f;
class Vector2f
{
public:
/* Data */
float val[2];
/* Constructors */
Vector2f();
Vector2f(const float x);
Vector2f(const float x0, const float x1);
Vector2f(const Vector2f& V);
... | [
"eliasgueidon@hotmail.fr"
] | eliasgueidon@hotmail.fr |
afaf52d38519cfdb2e48a74d9883d932d1346771 | 97b879fa953682c256c65b35d0ad85bb0667c63b | /Board Code/NodeMCU/cockroachDetector.ino | c519d9c89a40c755ea2b22bc3ebbc4fa74e870ae | [] | no_license | Kevsg/CockroachDetectorProject | e71208a6bf98c3fe0236e60e1808d370171f8311 | a240875c20ea4cdb471e198d1e4463d9e7fc24e5 | refs/heads/master | 2020-04-09T23:35:30.867575 | 2018-12-20T12:43:56 | 2018-12-20T12:43:56 | 160,661,115 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,173 | ino | #include <Time.h>
#include <TimeLib.h>
/* NETPIE ESP8266 basic sample */
/* More information visit : https://netpie.io */
#include <ESP8266WiFi.h>
#include <MicroGear.h>
#include <ESP8266WiFiMulti.h>
#include <ESP8266HTTPClient.h>
const char* ssid = "33";
const char* pass... | [
"phongpak2925809@gmail.com"
] | phongpak2925809@gmail.com |
1dd3aee178de9d0663a12e356905acebfaefedb8 | 299648a8c633728662d0b7651cd98afdc28db902 | /src/thirdparty/sentry-native/external/crashpad/third_party/mini_chromium/mini_chromium/base/numerics/safe_conversions_arm_impl.h | 9ead897a784bd30d27bbc50a9fee5d23ccb51d55 | [
"Apache-2.0",
"MIT",
"BSD-3-Clause"
] | permissive | aardvarkxr/aardvark | 2978277b34c2c3894d6aafc4c590f3bda50f4d43 | 300d0d5e9b872ed839fae932c56eff566967d24b | refs/heads/master | 2023-01-12T18:42:10.705028 | 2021-08-18T04:09:02 | 2021-08-18T04:09:02 | 182,431,653 | 183 | 25 | BSD-3-Clause | 2023-01-07T12:42:14 | 2019-04-20T16:55:30 | TypeScript | UTF-8 | C++ | false | false | 1,878 | h | // Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef MINI_CHROMIUM_BASE_NUMERICS_SAFE_CONVERSIONS_ARM_IMPL_H_
#define MINI_CHROMIUM_BASE_NUMERICS_SAFE_CONVERSIONS_ARM_IMPL_H_
#include <limits>
#incl... | [
"joe@valvesoftware.com"
] | joe@valvesoftware.com |
b78301f23d6a9081d73e35fa223a5c7b324b81c1 | f005b1511ca69533ee31649a2a921f0238aea784 | /cxx/common/path_utils.h | 9d510c3c946a45452933fb52f28c9516b8b13017 | [
"Apache-2.0"
] | permissive | gameduell/kythe | 8bce30ab0dd7ad968754702357bc853ca247181a | be21e512a21d8e37604d6a9d373a963ad9cf4f6d | refs/heads/master | 2016-09-05T23:21:04.111891 | 2015-07-24T14:10:32 | 2015-07-24T14:10:32 | 39,763,950 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,815 | h | /*
* Copyright 2015 Google Inc. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicabl... | [
"itar@dl-pir.office.gameduell.de"
] | itar@dl-pir.office.gameduell.de |
27b099a724ac263d4f8f7ad24513ae6da04d28c5 | 7d5538864d38167b2cb66764b4ea5c85bee0c918 | /atcoder/abc/167/d.cpp | 21c376636ddd683be820913d38ae841c7330f7f5 | [] | no_license | iPolyomino/contest | ec63acef925bf4a9b562aab46fc247d0fe7a71b9 | 96bea95174cc320f0620da322a25668ac5c500cd | refs/heads/master | 2023-07-09T01:19:33.026494 | 2023-06-24T01:06:13 | 2023-06-24T01:06:13 | 163,596,349 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 682 | cpp | #include <bits/stdc++.h>
using namespace std;
#define ll long long
int main()
{
ll N, K;
cin >> N >> K;
vector < ll > A(N + 1);
for (ll i = 1; i <= N; i++) {
cin >> A[i];
}
set < ll > went;
ll current = 1;
ll roopStartNum = 0;
for (ll i = 1; i <= N; i++) {
if (went.find(current) != went.end()) {
... | [
"macbookpromacbookpromacbookpro@gmail.com"
] | macbookpromacbookpromacbookpro@gmail.com |
1efadf349e18526234716303986187c818cb35a5 | 88ae8695987ada722184307301e221e1ba3cc2fa | /chrome/browser/ui/views/extensions/extension_install_friction_dialog_view_browsertest.cc | cfb5fe0dfebfb0f5e8e485a46c300719d72d1402 | [
"BSD-3-Clause"
] | permissive | iridium-browser/iridium-browser | 71d9c5ff76e014e6900b825f67389ab0ccd01329 | 5ee297f53dc7f8e70183031cff62f37b0f19d25f | refs/heads/master | 2023-08-03T16:44:16.844552 | 2023-07-20T15:17:00 | 2023-07-23T16:09:30 | 220,016,632 | 341 | 40 | BSD-3-Clause | 2021-08-13T13:54:45 | 2019-11-06T14:32:31 | null | UTF-8 | C++ | false | false | 6,116 | cc | // Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <string>
#include "chrome/browser/ui/views/extensions/extension_install_friction_dialog_view.h"
#include "base/functional/callback_helpers.h"
#include "base/memory/r... | [
"jengelh@inai.de"
] | jengelh@inai.de |
3747187a55b9947028951ae597611ce899f56104 | 158737e794231f35d8e78fc2b63feace2adbb969 | /chapter10/testFunctions.h | b97b8a3c6988cb5e7441aca1d3d852050b50b67c | [] | no_license | MikeAWilliams/cpp_functional_programming | 7f673fdbe9e483c30bdd37d9b48df35425ae6bdb | 7cfd13b3053ca3938327700209df7ffd320b1271 | refs/heads/master | 2021-08-16T16:02:49.083150 | 2020-07-12T17:19:54 | 2020-07-12T17:19:54 | 202,960,521 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 758 | h | #include "tl/expected.hpp"
#include <optional>
#include <string>
// toy functionions
double Add3(double value);
bool IsEven(int value);
std::optional<int> Half(int value);
tl::expected<int, std::string> HalfE(int value);
std::optional<int> AddThreeToOddNumbers(int value);
tl::expected<int, std::string> AddThreeToOddN... | [
"mumakin@gmail.com"
] | mumakin@gmail.com |
7a9006dd5ea47e1206673cfc6874ba0281da9e14 | 7d0bdb0f0c11444b8224d38197ce4e64bd8ac350 | /cpp/11-c-tutorial-stringstream.cpp | 7c2ec809c87f25ce9b6ed182fd8e9de4c1b663c1 | [] | no_license | lutfiandri/hackerrank | 4ecedbcc8b1bf15929099af078344e9816f4a36c | 460580639d794d48b5569c2a8121ec81902becf5 | refs/heads/master | 2023-01-20T11:57:34.441661 | 2020-11-27T07:44:12 | 2020-11-27T07:44:12 | 257,918,216 | 0 | 0 | null | 2020-06-13T06:56:42 | 2020-04-22T14:01:10 | null | UTF-8 | C++ | false | false | 350 | cpp | #include <bits/stdc++.h>
using namespace std;
int main() {
string text;
cin >> text;
stringstream ss(text);
vector<int> numbers;
int number;
char ch = ',';
while (ss >> number) {
ss >> ch;
numbers.push_back(number);
}
for (auto num : numbers) {
cout << num <... | [
"lutfiandri232@gmail.com"
] | lutfiandri232@gmail.com |
ac945ad4c648810c76031482930eb3b740cf10f0 | b29d0fd5e52d90a37ac2e79d7a3c2ce41c6f756a | /src/rpcmasternode.cpp | 5678ac92281a510e6fb18ffd4f6879fd5e7d830b | [
"MIT"
] | permissive | MichaelHDesigns/HDLC | 58b8ec0714f926d15acfde5a99fae355c3f2e378 | 0c6dc4af3f7a015432a697ce720c9ac5bcb4f543 | refs/heads/main | 2023-04-26T00:50:00.386871 | 2021-06-04T02:24:20 | 2021-06-04T02:24:20 | 373,364,658 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 40,711 | cpp | // Copyright (c) 2009-2012 The Bitcoin developers
// Copyright (c) 2015-2017 The PIVX developers
// Copyright (c) 2015-2019 The HodlCash developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "activemasternode.... | [
"devilking6105@gmail.com"
] | devilking6105@gmail.com |
d9da35db08fae211f985ac0342532c4f4a2c5b8b | 629f7423b91988b6c735a417b72f6fd886198d16 | /PCK2020/final/q2.cpp | 07ae338371246f54dc78153bdc2ce87b0d3c109a | [
"MIT"
] | permissive | yu1k/competitive-programming | 6af576f51255ee6edc77f0e6d5b24bac0f65596f | 0c47db99ce7fb9bcf6e3b0dbfb8c84d9cfa165fd | refs/heads/master | 2021-12-11T15:14:19.201721 | 2021-12-01T14:49:29 | 2021-12-01T14:49:29 | 192,532,915 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 293 | cpp | #include <iostream>
using namespace std;
int main(){
int d;
cin >> d;
double result = 0;
int time = (d / (60 * 60));
d = (d % (60 * 60));
int minutes = (d / 60);
int seconds = (d % 60);
cout << time << " " << minutes << " " << seconds << endl;
return 0;
} | [
"48705423+yu1k@users.noreply.github.com"
] | 48705423+yu1k@users.noreply.github.com |
15293cfadc3fa9a97a7d7f7361fd57c0e0fa304f | 962da7e6864deef165217c8156b1e2138925223a | /src/tracking/include/tracking/InteractionDeviceBuilderInterface.h | 3387143f11094931117c913086eeed937c9c3e91 | [] | no_license | EchoPixel-Inc/NetworkingPrototype | 06ff6a7e9fea50e490bb0f0a54ef703240a33af1 | 0a13194fd89394380e3c35c79ac33687a664075a | refs/heads/master | 2023-07-27T13:12:17.547918 | 2021-09-07T23:34:14 | 2021-09-07T23:34:14 | 350,517,135 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 325 | h | #ifndef interactionDeviceBuilderInterface_h
#define interactionDeviceBuilderInterface_h
#include "tracking/interactionDeviceInterface.h"
namespace tracking {
class InteractionDeviceBuilderInterface
{
public:
virtual std::unique_ptr<InteractionDeviceInterface> create() const = 0;
};
} // end namespace tracking
#... | [
"jeffrey@echopixeltech.com"
] | jeffrey@echopixeltech.com |
7f297334ee39cd4168defff9c6f413fd8b4b0b0f | 40d75644ca5b183534e7b1b43698a2370747cda5 | /src/audioEffects.hpp | 61dd86114af529a02edc2b42bfdb219d445d70c1 | [] | no_license | taetaytae/pmc-spectrogram | f1937f321a5684bba59ce10c7f908a6a3e966656 | 52eadaafd0982c9472f2be037326c6458599c5e7 | refs/heads/main | 2023-03-05T19:19:24.756889 | 2021-02-16T03:05:37 | 2021-02-16T03:05:37 | 339,231,523 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 846 | hpp | //
// audioEffects.hpp
// PMCSpec
//
// Created by Mario A. Sánchez on 09/04/2019.
//
#ifndef audioEffects_hpp
#define audioEffects_hpp
#include <stdio.h>
#include "ofxMaxim.h"
#include "ofMain.h"
class audioEffects{
public:
audioEffects();
void loresParam(double param);
void hipassPar... | [
"mario.a.sanchez199902@gmail.com"
] | mario.a.sanchez199902@gmail.com |
0b12d7a6a389861f4db4c205d1084f4a798d9168 | 18b18e39f5b537d483b104d52d8d39f0131b8e15 | /main.cpp | 99f654a37abc3e453dbb835202d00f261d2d964b | [] | no_license | TakeTwiceDailey/TerminalChess | fc08621e70c2a4c99780f7f6a24afa778b3ddffa | 8b9310175febd329e9fd29990183b0de30c37122 | refs/heads/master | 2021-06-10T23:47:52.431368 | 2020-02-12T16:13:05 | 2020-02-12T16:13:05 | 100,545,367 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,881 | cpp | #include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include <stdarg.h>
#include <math.h>
#include <ctype.h>
#include <ncurses.h>
#include "joshua.h"
int time = 15000;
int y = 2;
int x = 0;
int main() {
int choice;
char moot[200];
initscr();
start_color();
chess();
// move( y, 0 )... | [
"c.dailey18@gmail.com"
] | c.dailey18@gmail.com |
f4bdd0bf470b031360b58caa9960cc63428cd4ce | ac4a15441674d103214e5829d11cb26dbceeddd2 | /algorithm/list/stackaqueue.h | e411d449990fd7a26b6fd9bd0536a56443f4fb82 | [] | no_license | jixingxiao/basicKnowledge | b36ef6cd277574beb79eebd61b982dbc1ef8ac41 | 14f93f5dcbd8f005ae2b8c127604200ecc977ff6 | refs/heads/main | 2023-01-10T11:15:09.804050 | 2020-10-25T08:40:45 | 2020-10-25T08:40:45 | 304,541,050 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,233 | h | #ifndef STACKAQUEUE_H
#define STACKAQUEUE_H
#include "listsolution.h"
#include <stack>
int findMaxNum(int* arr, int len)
{
stack<int> valueStack;
stack<int> maxStack;
for(int i = 0; i < len; ++i)
{
if ( maxStack.empty() || maxStack.top() < arr[i] )
{
maxStack.push(arr[i]);... | [
"976013085@qq.com"
] | 976013085@qq.com |
afbd84f4e39d4bbe3c06667800bf3e84e3c860a2 | a84b013cd995870071589cefe0ab060ff3105f35 | /webdriver/branches/chrome/chrome/src/cpp/include/chrome/browser/printing/print_job_manager.h | 4286a2d9a77dba89a81be5ffa4bae9e33f53e5e4 | [
"Apache-2.0",
"BSD-3-Clause"
] | permissive | vdt/selenium | 137bcad58b7184690b8785859d77da0cd9f745a0 | 30e5e122b068aadf31bcd010d00a58afd8075217 | refs/heads/master | 2020-12-27T21:35:06.461381 | 2009-08-18T15:56:32 | 2009-08-18T15:56:32 | 13,650,409 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,964 | h | // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_PRINTING_PRINT_JOB_MANAGER_H_
#define CHROME_BROWSER_PRINTING_PRINT_JOB_MANAGER_H_
#include <string>
#include <vector>
#... | [
"noel.gordon@07704840-8298-11de-bf8c-fd130f914ac9"
] | noel.gordon@07704840-8298-11de-bf8c-fd130f914ac9 |
7718cd5774adeb3664b5ddcf34b5d8d257beea14 | b20353e26e471ed53a391ee02ea616305a63bbb0 | /trunk/engine/tools/CatLog/CatLog.cpp | 248724de73ed8286d0334c4472d80ea0a2a25b79 | [] | no_license | trancx/ybtx | 61de88ef4b2f577e486aba09c9b5b014a8399732 | 608db61c1b5e110785639d560351269c1444e4c4 | refs/heads/master | 2022-12-17T05:53:50.650153 | 2020-09-19T12:10:09 | 2020-09-19T12:10:09 | 291,492,104 | 0 | 0 | null | 2020-08-30T15:00:16 | 2020-08-30T15:00:15 | null | GB18030 | C++ | false | false | 2,283 | cpp | // CatLog.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include "CatHelper.h"
#include "CMapFileMgr.h"
#include "CFetchMapFile.h"
#include "ErrLogHelper.h"
#include "bzip2/bzlib.h"
#include <sstream>
int main(int argc, char* argv[])
{
//首先看是否有help选项,如果有,直接打印help信息,退... | [
"CoolManBob@a2c23ad7-41ce-4a1d-83b7-33535e6483ee"
] | CoolManBob@a2c23ad7-41ce-4a1d-83b7-33535e6483ee |
04a328fd3776c4faa080ba4d10cd61f9cbec672d | b68457c378205b7afe30219405ef5ec1b03453cd | /Src/HSAFdnTrace/AutoGenerated/HSAAMDAQLProfileExtensionAPITraceClasses.h | d1562cbc99c390884d1676b01ff84658f9026d99 | [
"MIT"
] | permissive | GPUWorld/RCP | 3b3cbbaf2ddb442c7535d11aa6850fa4cce812fd | 2b1967ca22ea928ec138bbf22b773636408fa5ad | refs/heads/master | 2020-03-15T04:18:17.399427 | 2018-04-19T13:48:57 | 2018-04-19T13:48:57 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 16,541 | h | //==============================================================================
// Copyright (c) 2015-2017 Advanced Micro Devices, Inc. All rights reserved.
/// \author AMD Developer Tools Team
/// \file
/// \brief THIS CODE WAS AUTOGENERATED BY HSA CODE GENERATOR
//====================================================... | [
"christopher.hesik@amd.com"
] | christopher.hesik@amd.com |
3d7012b0b507103cdc2aae480e05a7fb60cd627a | d27efce941dd4d8d641a18cea90024c0a3617e16 | /State/SimpleStateMachine/Gumball.hpp | a38afde0e273cf3bef2a06e4e77509ceeaa07efe | [] | no_license | Akorra/HeadFirstDesignPatternsCpp | c2c42d34ff37430dcaa4f0d205377d82a25b8704 | 0cc6acfa9f076daccdf61a0ab8ece1d5d16e9e4f | refs/heads/master | 2023-06-18T10:40:56.898665 | 2021-07-15T08:11:31 | 2021-07-15T08:11:31 | 315,448,571 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 524 | hpp | #ifndef __GUMBALL_HPP__
#define __GUMBALL_HPP__
#include <iostream>
#include <string>
class GumballMachine
{
public:
enum STATE { SOLD_OUT, NO_QUARTER, HAS_QUARTER, SOLD };
GumballMachine(int count);
void insertQuarter();
void ejectQuarter();
void turnCrank();
void dispense();
std::... | [
"neverfearphilishere@gmail.com"
] | neverfearphilishere@gmail.com |
5cd940fb69dff8119c77689c5988caaffaf71b03 | fca075cd6dbb637b1a3db312c2cc900b11543986 | /qmonsterdebugger/src/amf/amfpacket.hpp | db252a0a26ab2b410110693146939dc2bc52030d | [] | no_license | alexander-koval/QMonsterDebugger | 9880c814830a713c0d701f864f90559cb8224c24 | 7bb478a1f494d7a74edf228b691059db55b0d914 | refs/heads/master | 2020-04-07T04:15:23.899016 | 2018-11-18T03:45:32 | 2018-11-18T03:45:32 | 158,047,262 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,918 | hpp | #pragma once
#ifndef AMFPACKET_HPP
#define AMFPACKET_HPP
#include <string>
#include "types/amfitem.hpp"
#include "utils/amfitemptr.hpp"
namespace amf {
class SerializationContext;
enum Amf0Marker : u8 {
AVMPLUS_OBJECT = 0x11
};
class PacketHeader : public AmfItem {
public:
template<typename T>
PacketHeader(std... | [
"alexander.koval.88@gmail.com"
] | alexander.koval.88@gmail.com |
2fffc08f8af6fb46a2caf03d8d90e45d98aff767 | 97e53e8028ffb9d3f736a0999cc470f9942ddcd0 | /13 Web编程/04 上 网 监 控/001 监控上网过程-例1/NetProcessAct/NetProcessActDlg.h | 30a11803f709f25a891fac5f96a56dd205ec5e20 | [] | no_license | BambooMa/VC_openSource | 3da1612ca8285eaba9b136fdc2c2034c7b92f300 | 8c519e73ef90cdb2bad3de7ba75ec74115aab745 | refs/heads/master | 2021-05-14T15:22:10.563149 | 2017-09-11T07:59:18 | 2017-09-11T07:59:18 | 115,991,286 | 1 | 0 | null | 2018-01-02T08:12:01 | 2018-01-02T08:12:00 | null | UTF-8 | C++ | false | false | 1,627 | h | // NetProcessActDlg.h : header file
//
#if !defined(AFX_NETPROCESSACTDLG_H__E4E2E42D_51C0_4F20_A687_94C899207160__INCLUDED_)
#define AFX_NETPROCESSACTDLG_H__E4E2E42D_51C0_4F20_A687_94C899207160__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "atlbase.h"
#include <Mshtml.h>
/////////////... | [
"xiaohuh421@qq.com"
] | xiaohuh421@qq.com |
095e03d4373b328343a94582f99e589b0a5f3ec0 | fbe7abe0b9f0ab8c6fe7ddcc2bfe37ac1ac14e4d | /ToyDraw/ToyDraw.h | 0f60777fbf5da471998a6d98a6792ae3ceefeb97 | [] | no_license | shimachao/ToyDraw | 4661e97c4459b48d72ff99e05fdcefe34d7fc7fb | 1d4f2e5f5f7d43e05aece7d85cf27ac2e8f462e5 | refs/heads/master | 2021-01-10T03:47:49.606682 | 2016-03-26T09:16:52 | 2016-03-26T09:16:52 | 54,771,573 | 1 | 0 | null | null | null | null | GB18030 | C++ | false | false | 1,247 | h | // 这段 MFC 示例源代码演示如何使用 MFC Microsoft Office Fluent 用户界面
// (“Fluent UI”)。该示例仅供参考,
// 用以补充《Microsoft 基础类参考》和
// MFC C++ 库软件随附的相关电子文档。
// 复制、使用或分发 Fluent UI 的许可条款是单独提供的。
// 若要了解有关 Fluent UI 许可计划的详细信息,请访问
// http://msdn.microsoft.com/officeui。
//
// 版权所有(C) Microsoft Corporation
// 保留所有权利。
// ToyDraw.h : ToyDraw 应用程序的... | [
"531236305@qq.com"
] | 531236305@qq.com |
ea9c4953718afbe5a3c793ccd508765c8e1b3805 | 9f5646571e6d7d52a4c6ef0b6f021f4801727288 | /acoustic_iso_lib/acoustic_iso_we_float/include/waveEquationAcousticGpu.h | 794837b98ef05168a3ba0bd3a0667d4853ecabb8 | [] | no_license | kristiantorres/acoustic_isotropic_operators | 79a765b86b627afc1a2068226837e25eb62da33b | a1aa5c595c7829a2405d54ffb4a3190d5e75f8fc | refs/heads/master | 2023-06-12T15:27:38.619733 | 2021-07-07T22:26:18 | 2021-07-07T22:26:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,554 | h | #ifndef WAVE_EQUATION_ELASTIC_H
#define WAVE_EQUATION_ELASTIC_H 1
#include <float3DReg.h>
#include <float2DReg.h>
#include <float2DReg.h>
#include <operator.h>
#include "waveEquationAcousticGpuFunctions.h"
#include "fdParamAcousticWaveEquation.h"
using namespace SEP;
//! Apply the elastic wave equation to a wavefield... | [
"sfarris@stanford.edu"
] | sfarris@stanford.edu |
9d036fa7c276c78cd01f3ce5b96595a1690b8b6d | 03179628e0d4155f093f3d266453a188cce195a4 | /src/qt/guiutil.h | c46da0fe4c68dd9d1caf8087d98e91c2bdc6ccf5 | [
"MIT"
] | permissive | MineGoldCoin/MineGoldCoin | 35098865fe1e10b7acb9db184d5cdf551c85d7bc | 3ca54aa84fc5d8d7baad0fb7cf50689ba5b5ea48 | refs/heads/master | 2021-09-13T06:20:23.078203 | 2018-04-25T21:18:58 | 2018-04-25T21:18:58 | 108,358,544 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,938 | h | // Copyright (c) 2011-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef GUIUTIL_H
#define GUIUTIL_H
#include <QHeaderView>
#include <QMessageBox>
#include <QObject>
#include <QString>
#incl... | [
"root@minegoldcoin.com"
] | root@minegoldcoin.com |
02b58b6602263690d7c34c671450aaf1aea1c0b8 | a01075fc702b79e7cd7caa2a1b6aed94fd3e96c7 | /genes/add_turn.cpp | 788bd0744aed9cc1db0ee084362ba1ae85d117db | [] | no_license | episkipoe/Agents | 3b05c68cc4dc9c4c037b0c8b91e99c303f2ffd82 | 6961e0cc446531b9074912bf3dd749985e3d175b | refs/heads/master | 2021-01-22T08:19:27.896266 | 2014-11-11T00:44:28 | 2014-11-11T00:54:30 | 2,039,596 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,960 | cpp | //add_turn
#include <string>
#include <stdio.h>
#include <stdlib.h>
#include <sstream>
#include <common/shmem.h>
#include <common/randomhelp.h>
#include <nnets/nnets.h>
int main(int argc, char *argv[]) {
srandom(100);
if(argc<2) return 0;
Net myNet;
//printf("add_movement started with file %s port %s\n", argv[0], a... | [
"dbennett"
] | dbennett |
ddec0c0456814a9014b79607e0026a7ffc60ab49 | 2178673eae88122b8919b1d5ebb43272b5e5fcd3 | /src/yatb.cc | a078d5c40e8857f0e2217a84fa8451038c48c031 | [] | no_license | silv3rr/yatb | 160d8f5f5da43defba148694d0c5a459ce9dc487 | 5e1ca7ca495c3de884b04fda43317f1ff8bd410c | refs/heads/master | 2020-07-17T21:07:52.607313 | 2020-02-10T21:29:54 | 2020-02-10T21:32:05 | 94,324,418 | 2 | 1 | null | 2017-06-14T11:38:03 | 2017-06-14T11:38:03 | null | UTF-8 | C++ | false | false | 10,378 | cc | #include "global.h"
#include "config.h"
#include "counter.h"
#include "lock.h"
#include "controlthread.h"
#include "stringlist.h"
#include "tools.h"
#include "tls.h"
#include "forward.h"
#include "iplist.h"
#include "whitelist.h"
#include "fpwhitelist.h"
#ifndef SOLARIS
#if (defined(sun) && (defined(__svr4__) || defin... | [
"hujer@users.sf.net"
] | hujer@users.sf.net |
c214c28659ec8662e9fa2fcce338a9bbf82eca6b | 82e078c16c778ac541778a13fe31b2222fedd011 | /lucky division.cpp | 22a5410261df7cbfba139257d63fa644b7912c14 | [] | no_license | Sivaramakrishnan1998/codeforces | bd3690242a5d03c72b84aa77e16babceb570f0e6 | c8caa21c98cead26f73c34a2ebe75aa065c9f403 | refs/heads/master | 2020-03-24T00:36:25.957914 | 2018-08-21T14:56:32 | 2018-08-21T14:56:32 | 142,299,039 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 375 | cpp | #include<bits/stdc++.h>
using namespace std;
int main()
{
int num,num2,flag=0,rem,count=0,k=0;
cin>>num;
num2 = num;
while(num>0)
{
rem = num%10;
flag+=(rem==4||rem==7)?1:0;
count++;
num/=10;
}
if(num2%4==0||num2%7==0||num2%47==0||num2%74==0||num2%477==0)
k =1;
if(flag==count||k==1)
... | [
"“sivaposhac1998@gmail.com”"
] | “sivaposhac1998@gmail.com” |
e1afcdeb2de92d880f3d84e43cd21d62e44f8d34 | 254cf4fb17789cb832d4a73443b60b177fcabd15 | /src/arrays/Array1.cpp | 42caa54098d85feaeebc7bd87ab7cd646978172a | [] | no_license | seokwookim-star/CSE241-src | a6314fa130df96f363b4cb21c11cd0a4d4c65f60 | dea573ca2426ce95a9a354718731d7772d3f8f87 | refs/heads/master | 2020-11-26T13:18:04.840046 | 2019-12-11T17:11:51 | 2019-12-11T17:11:51 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 161 | cpp | #include <iostream>
using namespace std;
int main()
{
int a[5] = {0, 1, 2, 3, 4};
for (int i = 0; i < 5; i++) {
cout << a[i] << "\n";
}
}
| [
"jooyong@unist.ac.kr"
] | jooyong@unist.ac.kr |
208df600191d7469abf561ea70ef02f3d87e461b | c8c2e81ac6d614e58f36fe62c616e8ed440b21be | /chrome/browser/ui/ash/assistant/assistant_web_view_impl_browsertest.cc | 1925b08571e675079a82278f7b86d4f748edad65 | [
"BSD-3-Clause"
] | permissive | alimon/chromium | 0bb167542e623bc9f8f75bfa9d9fe93b238cf5a1 | 1d1411ee3401ef9df9d78c80b31fb466e50223ac | refs/heads/master | 2023-03-18T12:40:13.554747 | 2020-05-21T19:13:50 | 2020-05-21T19:13:50 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,645 | cc | // Copyright 2020 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/ui/ash/assistant/assistant_web_view_impl.h"
#include <memory>
#include <string>
#include "ash/public/cpp/assistant/assistant_we... | [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
bb52de73a16f7c6b87a1ed9f486351362ebe0694 | 9ba2b02b04cc04c1085c081b123fa88eeb546d75 | /ObjectProposal/ObjectSegmentProposal/ObjSegmentProposal.cpp | f9d5d56a5f5c604cee0b717ab817f25443996980 | [] | no_license | dengshuo/Saliency | 78f24d2d6ed221af1db0fb2c24fa9e076b206874 | 6861f3aa4153e3b9243c10de4af6f29ae00498c5 | refs/heads/master | 2021-01-11T11:52:50.212405 | 2015-02-03T05:58:37 | 2015-02-03T05:58:37 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 13,935 | cpp |
#include "stdafx.h"
#include "ObjSegmentProposal.h"
namespace objectproposal
{
ObjSegmentProposal::ObjSegmentProposal(void)
{
verbose = false;
}
//////////////////////////////////////////////////////////////////////////
bool ObjSegmentProposal::GetCandidatesFromIterativeSeg(const Mat& cimg, const Mat& dmap, ... | [
"fj333xx@gmail.com"
] | fj333xx@gmail.com |
a2a75fc86287e45d74f92648619b8a8ccc69e80b | bab2a50dec758a565b84f6569b3c377a0273741a | /LeetCode_236_二叉树的最近公共祖先/LeetCode_236_二叉树的最近公共祖先/main.cpp | bc8566381a614cfe1d1e6c1a2a0e43e61bba66ad | [] | no_license | chx2502/LeetCode | 734ed70cc7a9c732ca7795c9f1920a6763548fb6 | 9c292b22ba4a3163691f3dfdf11037adbc644c1b | refs/heads/master | 2021-11-27T18:04:25.168830 | 2021-06-25T02:45:15 | 2021-06-25T02:45:15 | 180,375,645 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,617 | cpp | //
// main.cpp
// LeetCode_236_二叉树的最近公共祖先
//
// Created by chx on 2020/3/16.
// Copyright © 2020 __Ninja__. All rights reserved.
//
#include <iostream>
#include <vector>
using namespace std;
struct TreeNode {
int val;
TreeNode *left;
TreeNode *right;
TreeNode(int x) : val(x), left(NULL), right(NU... | [
"chx2502@gmail.com"
] | chx2502@gmail.com |
f0c06dcfbd39aaeaebd912b29ac0b11000141a66 | 345e9aa979e3a945a2013fec4680d2d54c0eb3a1 | /08/03.cpp | 0b4282f036a64be98022b295dcaec5f71df45899 | [] | no_license | Alexkkir/4_semester | 363d3ddcebd7e412c788743e6f8ae67a8298d661 | 3337ea6f7c386691444b70d4cac358cbd6187eef | refs/heads/master | 2023-07-17T10:43:27.694143 | 2021-09-05T16:16:20 | 2021-09-05T16:16:20 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 744 | cpp | //
// Created by Veniamin_Arefev on 12.04.2021.
//
#include <iostream>
namespace Game {
template<typename T>
class Coord {
public:
typedef T value_type;
T row, col;
Coord(const T &r = T(), const T &c = T()) : row(r), col(c) {}
};
template<typename T>
typename T::value_... | [
"veniamin.arefev@mail.ru"
] | veniamin.arefev@mail.ru |
f2752f4d5fbdf4ac4e18c0581f01680925d64d11 | aecf4944523b50424831f8af3debef67e3163b97 | /xrUpdate/MainFrm.h | e09226daadfdcca602b236b77aab3bbed1e30ac9 | [] | no_license | xrLil-Batya/gitxray | bc8c905444e40c4da5d77f69d03b41d5b9cec378 | 58aaa5185f7a682b8cf5f5f376a2e5b6ca16fed4 | refs/heads/main | 2023-03-31T07:43:57.500002 | 2020-12-12T21:12:25 | 2020-12-12T21:12:25 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 818 | h | // MainFrm.h : interface of the CMainFrame class
//
#pragma once
#include "upd_task.h"
#include "xrUpdateView.h"
class CMainFrame : public CFrameWnd
{
protected: // create from serialization only
CMainFrame();
DECLARE_DYNCREATE(CMainFrame)
// Attributes
public:
// Operations
public:
// Overri... | [
"andy@localhost"
] | andy@localhost |
c16544689f445fb4af88ab45f4db9cefa4872309 | b389755eed095f67bac67bde8690adf0217d8470 | /modules/cbl/engine/include/AACE/Engine/CBL/CBLEngineImpl.h | c92e4f5cda6ac0de355fd6451504bd71f3d37302 | [
"JSON",
"MIT",
"BSD-3-Clause",
"GPL-2.0-only",
"Apache-2.0"
] | permissive | shoesel/aac-sdk | 4fdbb85d4d51aaaad7adb5d7ae69dfd65559dbd6 | 8370f7c71c73dd1af53469dfa3de1eaf7aa2d347 | refs/heads/master | 2020-06-10T14:00:11.911393 | 2019-06-24T22:46:22 | 2019-06-24T23:04:52 | 193,653,787 | 1 | 0 | Apache-2.0 | 2019-06-25T07:06:17 | 2019-06-25T07:06:17 | null | UTF-8 | C++ | false | false | 3,406 | h | /*
* Copyright 2017-2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0/
*
* or in the "... | [
"muni.sakkuru@gmail.com"
] | muni.sakkuru@gmail.com |
5b2af23bd4dcfc95168afcf2c9f90ccaf0c4864a | e81b0d7ad764899169b027a21527531a133d9d58 | /apps/triangle/TriangleCounting.cpp | 58c5184582d7a42ef06e052b0882dba177d32b0e | [] | no_license | yaobaiwei/GraphD | 9ed898c485ec0217e4352b22c4a9f2a5f63ac852 | 36ad2b132d1ce99d076cb81c055e3056a4f80589 | refs/heads/master | 2020-04-16T18:20:47.818350 | 2019-01-15T08:45:52 | 2019-01-15T08:45:52 | 165,815,435 | 8 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,827 | cpp | #include "Vertex.h"
#include "Comper.h"
#include "Runner.h"
#include "Combiner.h"
class TCVertex:public Vertex<VertexID, int, VertexID, VertexID>
{
public:
virtual void compute(vector<VertexID>& msgs, vector<VertexID>& edges)
{
if(step_num()==1)
{
for (int i = 0; i < edges.size(); ++ i)
... | [
"chzyaobaiwei@gmail.com"
] | chzyaobaiwei@gmail.com |
511e370cd46282ba1ab26ec370f66ecb872dcce4 | 6022c96d139e3e6221045a89699c3289e8ba6897 | /sdk_V20191226/include/lcddatetime.h | 8eb20a42a341c9043bd33eb35dda11bba10fed5f | [] | no_license | xinsuinizhuan/qucsdk | ad96c25076db2da071684baa8fbffeac9d43027e | 3b4e31240ec2c5f6d68d0b536422a7743ce0bc0f | refs/heads/master | 2022-03-30T01:27:39.725721 | 2019-12-29T06:05:04 | 2019-12-29T06:05:04 | 256,074,043 | 1 | 0 | null | 2020-04-16T01:03:45 | 2020-04-16T01:03:44 | null | UTF-8 | C++ | false | false | 1,335 | h | #ifndef LCDDATETIME_H
#define LCDDATETIME_H
/**
* 当前时间LCD控件 作者:feiyangqingyun(QQ:517216493) 2016-11-25
* 1:可设置时间字符串格式
* 2:可设置中间点分隔符是否闪烁
* 3:可实时显示当前时间
*/
#include <QLCDNumber>
#ifdef quc
#if (QT_VERSION < QT_VERSION_CHECK(5,7,0))
#include <QtDesigner/QDesignerExportWidget>
#else
#include <QtUiPlugin/QDesignerEx... | [
"feiyangqingyun@163.com"
] | feiyangqingyun@163.com |
5d8b1a604192b929744d351319a6a84ad64eeeba | 1cc631c61d85076c192a6946acb35d804f0620e4 | /Source/third_party/boost_1_58_0/libs/interprocess/test/map_test.hpp | 04baada6e9125c9c0cf8180454f96c147d5e25b0 | [
"BSL-1.0"
] | permissive | reven86/dreamfarmgdk | f9746e1c0e701f243c7dd2f14394970cc47346d9 | 4d5c26701bf05e89eef56ddd4553814aa6b0e770 | refs/heads/master | 2021-01-19T00:58:04.259208 | 2016-10-04T21:29:28 | 2016-10-04T21:33:10 | 906,953 | 2 | 5 | null | null | null | null | UTF-8 | C++ | false | false | 22,203 | hpp | ////////////////////////////////////////
//
// (C) Copyright Ion Gaztanaga 2006-2012. 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)
//
// See http://www.boost.org/libs/interprocess for documentation.
//
//... | [
"reven86@gmail.com"
] | reven86@gmail.com |
cc712ec850c375e93ab52dd35722090eac8411b3 | f0b7bcc41298354b471a72a7eeafe349aa8655bf | /codebase/apps/interp/src/surf_interp/calc_li.hh | 20f6cba06362f05f7f3c124c4b98fd827de690d0 | [
"BSD-3-Clause"
] | permissive | NCAR/lrose-core | 23abeb4e4f1b287725dc659fb566a293aba70069 | be0d059240ca442883ae2993b6aa112011755688 | refs/heads/master | 2023-09-01T04:01:36.030960 | 2023-08-25T00:41:16 | 2023-08-25T00:41:16 | 51,408,988 | 90 | 53 | NOASSERTION | 2023-08-18T21:59:40 | 2016-02-09T23:36:25 | C++ | UTF-8 | C++ | false | false | 1,892 | hh | // *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
// ** Copyright UCAR (c) 1990 - 2016
// ** University Corporation for Atmospheric Research (UCAR)
// ** National Center for Atmospheric Research (NCAR)
// ** Bo... | [
"dixon@ucar.edu"
] | dixon@ucar.edu |
c99a4b4b2272e2b86dbf030f946a3566c0702615 | 3e0090304e8d66b54bd3439a953e01358b90d7f5 | /arrays-and-strings/1/isunique.cpp | c02864b676793c2b15bf8f48cf0d745f46c4e28c | [] | no_license | mihirp1/generic_algorithms_problems | bbc7ac3e002a35802ec28c881c4c3c69d629f235 | d4022431c3df49f4a14ac3f84cf42f3604816bd8 | refs/heads/master | 2020-07-02T21:56:38.278622 | 2019-09-22T21:55:10 | 2019-09-22T21:55:10 | 201,679,053 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 387 | cpp | #include<string>
#include<iostream>
#include<map>
int main()
{
std::map<char,int> m1;
std::string tmp = "MIHIRPHATAK";
for(int i = 0; i < tmp.size() ; ++i)
{
if(m1.count(tmp[i]) > 0)
{
std::cout << "Non Unique!"<<std::endl;
return true;
}
else
... | [
"phatak.mihir@gmail.com"
] | phatak.mihir@gmail.com |
dad85e0f0ea70ba8ddc5778c1c64f68efab21efe | 154b7a8dac10cbd0f9d766f38b4ef3c57b2b4ff1 | /include/gpgoap/goap.h | 33c20af8e338b913cdcaf5d54a1340955c6547ba | [
"MIT"
] | permissive | degski/gpgoap | fea00947109c22e43a2accadc09ef4c78008da20 | a8d40c91aff1a765519a57808debafb7e294174a | refs/heads/master | 2020-03-21T10:36:41.808956 | 2018-07-04T11:53:28 | 2018-07-04T11:53:28 | 138,461,206 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 5,515 | h |
/*
Copyright 2012 Abraham T. Stolk
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 t... | [
"degski@gmail.com"
] | degski@gmail.com |
60b6760379e746d54c0b00e92021fe6146e8a961 | 45356f36e45ba8e5c130d8bfba8877319beebfe6 | /ParallelKmeans/Program.cpp | ef09527b4e004a11359fcaa67befe571c24081a0 | [] | no_license | RonyLevAri/Parallel-K-means | d34dd9140184fa899b664c33532b499fa8661fb8 | 7e0b1a9610ab22240f37a25d3af13ffadb46f615 | refs/heads/master | 2020-01-23T21:44:00.005055 | 2016-12-17T18:27:22 | 2016-12-17T18:27:22 | 74,683,581 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,474 | cpp | #define _CRT_SECURE_NO_DEPRECATE
#include "FileHandle.h"
#include "PointsCalc.h"
#include "Kmeans.h"
#include <stdlib.h>
#include <stdio.h>
#ifdef _OPENMP
#include "omp.h"
#else
#define omp_get_thread_num() 0
#endif
#include <mpi.h>
#define PI 3.14159265358979323846
#define INPUT_ROUTE "C:\\Users\\afeka.ACADEMIC\\D... | [
"ronylevari@gmail.com"
] | ronylevari@gmail.com |
e748bc417038be3fa155f94bd119b822e4284357 | 43a2fbc77f5cea2487c05c7679a30e15db9a3a50 | /Cpp/Internal/SDK/AD_ThirdPerson_PlayerPirate_Male_Default_classes.h | 15c6704afebac209173f8549eacbb26798c60942 | [] | no_license | zH4x/SoT-Insider-SDK | 57e2e05ede34ca1fd90fc5904cf7a79f0259085c | 6bff738a1b701c34656546e333b7e59c98c63ad7 | refs/heads/main | 2023-06-09T23:10:32.929216 | 2021-07-07T01:34:27 | 2021-07-07T01:34:27 | 383,638,719 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,066 | h | #pragma once
// Name: SoT-Insider, Version: 1.102.2382.0
/*!!DEFINE!!*/
/*!!HELPER_DEF!!*/
/*!!HELPER_INC!!*/
#ifdef _MSC_VER
#pragma pack(push, 0x01)
#endif
namespace CG
{
//---------------------------------------------------------------------------
// Classes
//-----------------------------------------------... | [
"Massimo.linker@gmail.com"
] | Massimo.linker@gmail.com |
ce1dcfecbf9373449746a5e451f253ee536cf3b0 | ca3466b48d9a073f93743bbba86ed9236e809b43 | /Unreal/FileSystem/UnArchivePak.h | 28568529163f1145c01e890b0e16ec3bf24ae311 | [
"BSD-3-Clause"
] | permissive | polygonboutique/UEViewer | 192a6f1c20ea3ba14a2d5e0f6bf3cb75d8cfb322 | 8b016adfe8aef90ceada5dd03ce29c5747612f1b | refs/heads/master | 2022-12-28T03:53:43.799827 | 2020-10-01T16:23:55 | 2020-10-01T16:23:55 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,223 | h | #ifndef __UNARCHIVE_PAK_H__
#define __UNARCHIVE_PAK_H__
#if UNREAL4
// Pak file versions
enum
{
PakFile_Version_Initial = 1,
PakFile_Version_NoTimestamps = 2,
PakFile_Version_CompressionEncryption = 3, // UE4.3+
PakFile_Version_IndexEncryption = 4, // UE4.17+ - encrypts only pak file index data leaving file co... | [
"git@gildor.org"
] | git@gildor.org |
e132596e8c2badd26ad1328894b209c5f3eaa557 | bc5f120c4c8b16cef59d4e3b26e6438c8c4df04a | /controls/commandlineeditor.cpp | e08b666ad4c8d504bfc7348febd199153a2d6dd3 | [] | no_license | maxd/qtmgr.prototype | f22460a770865429f598a6c6480fc4a35d0fbf12 | 6b8cb904688314b09d1956f31740813758f59c67 | refs/heads/master | 2016-09-06T13:18:59.246727 | 2010-10-27T21:35:37 | 2010-10-27T21:35:37 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 264 | cpp | #include "commandlineeditor.h"
#include "ui_commandlineeditor.h"
CommandLineEditor::CommandLineEditor(QWidget *parent) :
QWidget(parent),
ui(new Ui::CommandLineEditor)
{
ui->setupUi(this);
}
CommandLineEditor::~CommandLineEditor()
{
delete ui;
}
| [
"closer.main@gmail.com"
] | closer.main@gmail.com |
00b9a31c782afbf15bc703322c5d2a2c3d4b6732 | d4695c2dffcb78d2c11d1d694e29220c3e27ae61 | /include/Configuration.h | 0a43e3b4fb0396823b587be1384e18652a82a613 | [] | no_license | martinWANG2014/RobustFLA | a5ad9aa1a07e517ad1260da12d8fe0c5dab1a7c1 | fa512ff1001b283b589d6b086067a307bca1275e | refs/heads/master | 2021-01-25T08:27:43.895841 | 2018-04-05T15:04:27 | 2018-04-05T15:04:27 | 93,765,696 | 0 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 7,561 | h | //
// Created by chenghaowang on 14/07/17.
//
#ifndef CONFIGURATION_H
#define CONFIGURATION_H
//#include <Python.h>
#include <cmath>
#include <vector>
#include <set>
#include <cstdio>
#include <map>
#include <random>
#include <boost/math/special_functions.hpp>
#include <queue>
#ifndef K_CONST
#define K_CONST
const d... | [
"chenghaomartin@gmail.com"
] | chenghaomartin@gmail.com |
1f41405b2e37abc12238a775b2a3bf2d8f0a8cc5 | 7661526c96c776b1a589ea8b389ecf7e31769278 | /Files_On_RPi/coop_con_loc_RPi/src/coop_con_loc/include/absolute_velocity_main.h | 72147f53673ad97295fe4239b91c335442d6adb7 | [] | no_license | alzizou/Quad_UWB | 0b22a5868796f768f65c38e7b652859ffcacaa94 | 8cb0a1c614fda5d9d00e174d58a7ff952e916989 | refs/heads/main | 2023-02-08T15:28:07.248591 | 2020-12-30T21:32:11 | 2020-12-30T21:32:11 | 325,576,385 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 559 | h | #ifndef ABSOLUTE_VELOCITY_MAIN_H
#define ABSOLUTE_VELOCITY_MAIN_H
#endif // ABSOLUTE_VELOCITY_MAIN_H
std::vector<int> vel_data_DIST;
long double data_x_UWB_mm = -10000.0;
long double data_y_UWB_mm;
long double data_z_UWB_mm;
std_msgs::String publish_data_Vel_NED;
const int vel_Num_Anchors = 8;
long double vel_Diff_... | [
"ali@humanitas.io"
] | ali@humanitas.io |
f12868bf4eb99391798faa81ad4d533e16ba8bc4 | 2fbb690411240a5a7ae46dded8a9b32a77c9ad34 | /arrayreodering.cpp | 16dde2cb11f3381433944b0c3a755f053faf2891 | [] | no_license | leonardo-lim/codeforces | 72937b15d2de2dec361c7c0feae53019e9d15f63 | 6ce4d5bac6ff2447991ac29388d5f59ac6cb758b | refs/heads/main | 2023-08-30T20:14:57.264924 | 2021-11-02T02:03:27 | 2021-11-02T02:03:27 | 423,676,320 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 540 | cpp | #include <bits/stdc++.h>
using namespace std;
int main() {
int t, n, a, cnt = 0;
map<int, vector<int>> m;
vector<int> v;
cin >> t;
while (t--) {
cin >> n;
for (int i = 0; i < n; i++) {
cin >> a;
m[a % 2].push_back(a);
}
for (auto d : m[0]) v.push_back(d);
for (auto d : m[1]) v.push_back(... | [
"leonardolim178@gmail.com"
] | leonardolim178@gmail.com |
4c4ec88d3d9432765f04db90710ab6785bebe6f3 | cc729a5493ad93be8ebfec113bb6038a2f7ebc29 | /Robotics-Crash-Course-master/arduino_code/sketches/test_sketches/distance_from_test_simple/distance_from_test_simple.ino | 4c525a7f7c38b44d29f6fc288d51c22e57deaed0 | [] | no_license | AnjoTherattil/RoboticsCrashCourse | e44140562574ab4177873d567bd36764a389495d | 0766a100d779116c4503514a7870d91cfcc58dee | refs/heads/master | 2022-11-26T10:28:39.670245 | 2020-07-27T19:19:28 | 2020-07-27T19:19:28 | 282,994,088 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 907 | ino | #include <Servo.h>
#include <HC_SR04.h>
#include <motor_control.h>
#define SERVO_PIN 9
#define TRIG_PIN 10
#define ECHO_PIN 2
#define ECHO_INT 0
#define CENTER 90
#define DESIRED_DISTANCE 80
//Global Variables
Servo actuator;
HC_SR04 dist_sensor(TRIG_PIN, ECHO_PIN, ECHO_INT);
int distance; //Variable to save distance... | [
"22therattila@wiltonps.org"
] | 22therattila@wiltonps.org |
fddb6c1ec29cadee36f4925ae9674c20767cb15d | 49f8e54f368e2aa26c7b6f8a72078aeab9474baa | /382 - Perfection.cpp | 7b9967af1181d46dcef9c02109f819dcedcbc48b | [] | no_license | dyhe83/UVa | c32e86213e99a76cbf3dcbcf50248429acbb52bf | a3f17f0aa137513be64fde191ded1eb1006d2d94 | refs/heads/master | 2021-02-04T19:28:23.893018 | 2020-02-28T07:23:11 | 2020-02-28T07:23:11 | 243,702,252 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 691 | cpp | #include <cmath>
#include <cstring>
#include <iomanip>
#include <iostream>
#include <numeric>
#include <set>
using namespace std;
int main() {
cout << "PERFECTION OUTPUT" << endl;
int N;
while (true) {
cin >> N;
if (N == 0) {
break;
}
set<int> s;
s.empty();
for (int i = 1; i < sqrt(N) + 1; i++) {
... | [
"dyhe83@gmail.com"
] | dyhe83@gmail.com |
368468d8bcb05dc660206ef20569cd1a2c922289 | 1f56f9d07657499d5d7bcce1d6349189f3c24269 | /src/rpcmining.cpp | bfbc5f00a466d13ae2599ab6e13ef7821104b157 | [
"MIT"
] | permissive | jesusleon1995/banq | d5ae4165032ceb2f210ceaf37738c24cc1749dca | 4d2c5448b6ecbbff488ef4d0c472a3a58ef27d10 | refs/heads/master | 2020-03-16T20:51:00.890446 | 2018-06-26T08:04:16 | 2018-06-26T08:04:16 | 130,862,851 | 0 | 0 | null | 2018-04-24T13:59:06 | 2018-04-24T13:59:05 | null | UTF-8 | C++ | false | false | 37,095 | cpp | // Copyright (c) 2010 Satoshi Nakamoto
// Copyright (c) 2009-2015 The Bitcoin Core developers
// Copyright (c) 2014-2017 The Dash Core developers
// Copyright (c) 2017-2018 The Banq Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/... | [
"info@banq.online"
] | info@banq.online |
a7a194d4fb960a6426c5583f0b5a541afb3006f0 | 6c5e732bfc440fd34f7a90914941eb600ac3b39c | /ros/coros/coros_core/src/tasks/CourierDeliveryTask.h | 6f4d6e006d373e9951fe667c3a180ba41ca1303a | [] | no_license | efraccaroli/ROSWebServices | e7e0ff2935652b9e2234fa8be9157a85716406b3 | 65f257d68674ddb2d235914e3aee8ecf0a99a408 | refs/heads/master | 2021-01-20T13:58:43.415536 | 2016-01-26T11:30:55 | 2016-01-26T11:30:55 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,183 | h | #ifndef COURIER_DELIVERY_TASK_H
#define COURIER_DELIVERY_TASK_H
#include "../../../robot_control/src/TurtlebotRobot.h"
#include "MoveToTask.h"
class CourierDeliveryTask : public MoveToTask
{
public:
CourierDeliveryTask(int id, double coordX[], double coordY[], int destCount) :
MoveToTask(id, coordX, coor... | [
"akoubaa@coins-lab.org"
] | akoubaa@coins-lab.org |
034fde2a7f221187e08ad1d3931f35809683ff21 | 6a54a4a7390902da5792ab7710b44cb75611307d | /java/lang/Short.h | 64f72fbe004f45a1b6d7212d9e96ca9c2ed7b730 | [] | no_license | NEUAI/opencdk | 37c0f4404c3b7b8a31b40483dccf78be74faf7fa | f364b02fdedabd0d69b4228956a46e89ab26b588 | refs/heads/main | 2023-07-31T11:01:38.036757 | 2021-09-06T08:25:57 | 2021-09-06T08:25:57 | 403,542,727 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,910 | h | //
// Created by 艾峥鹏 on 2021/8/15.
//
#ifndef OPENCDK_SHORT_H
#define OPENCDK_SHORT_H
#include <java/lang/Number.h>
#include <java/lang/Comparable.h>
class Short final : public Number, public Comparable<Short> {
const int16_t value;
public:
static const int32_t BYTES;
static const int16_t MAX_VALUE;
... | [
"im@aizhengpeng.cn"
] | im@aizhengpeng.cn |
4a85a8809459a541229de51095cdabf466fa41e3 | e012a5fda6d26217539eece5a0bfb40983135169 | /common/ScopedThread.h | 8a3fb58b6f40dc7df3fddd6dc366ccad64fcb99f | [] | no_license | sourcedelica/experiments-c | f095aa8052d5eed3ea24ab0f3d535c47fe09d6c2 | c7495ed726aa99cba0027ed5a717f8b58ccf1694 | refs/heads/master | 2021-08-15T13:19:47.437921 | 2021-08-10T04:14:24 | 2021-08-10T04:14:24 | 89,047,544 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 786 | h | #pragma once
#include <thread>
/**
* Create a thread that does not live outside the scope of the current block.
* Useful for preventing dangling references from the thread to variables in the block.
*/
class ScopedThread {
public:
explicit ScopedThread(std::thread t) : thread(std::move(t)) {
if (!threa... | [
"ericacm+github@gmail.com"
] | ericacm+github@gmail.com |
44cb203ce5839f4004f163d8d8a2af9abaa08a89 | a2111a80faf35749d74a533e123d9da9da108214 | /raw/pmbs12/pmsb13-data-20120615/sources/brbym28nz827lxic copy/55/sandbox/meyerclp/demos/Quelle1.cpp | 431c4a1cbd227d61698c3c02c220505f9099d352 | [
"MIT"
] | permissive | bkahlert/seqan-research | f2c550d539f511825842a60f6b994c1f0a3934c2 | 21945be863855077eec7cbdb51c3450afcf560a3 | refs/heads/master | 2022-12-24T13:05:48.828734 | 2015-07-01T01:56:22 | 2015-07-01T01:56:22 | 21,610,669 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,355 | cpp | #include <seqan/sequence.h>
#include <seqan/basic.h>
#include <seqan/find_motif.h>
#include <seqan/file.h>
#include <iostream>
using namespace seqan;
template<typename TAlphabet>
void countAllLetters(TAlphabet const&, String<char> str){
typedef typename Size<TAlphabet>::Type TSize;
TSize alphSize = ValueSize<TAlp... | [
"mail@bkahlert.com"
] | mail@bkahlert.com |
7497b84232eec6484b34864d329a9271b47895d1 | c623d8e2ce87f7c3db987656700938ff61075e4c | /arduino/snippets/photoresistor-read-from-analog.ino | 2fda8a0cb007637ea9100ffd4b7ffa18a80ae6a2 | [] | no_license | unbleaklessness/learn | 12fedc5605509aa2b55fb4e49aa8e86710d76c5e | 6ecf7153f3e7cfc8b781d6e66d818d3ce991e3cb | refs/heads/master | 2021-09-27T05:39:37.006237 | 2018-11-06T12:06:51 | 2018-11-06T12:06:51 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 191 | ino | int sensePin = 0;
void setup()
{
analogReference(DEFAULT); // Optional, it's on by default.
Serial.begin(9600);
}
void loop()
{
Serial.println(analogRead(sensePin));
delay(500);
}
| [
"oliegjio@gmail.com"
] | oliegjio@gmail.com |
9cdd8786110c775210fd73c492420e396cdb8ea7 | 08701c3a6e8f3884e3d71902d1a2347436177061 | /gui/CWindowPicker.cpp | dd7f9f29f052edd3fa3e110f844201c644570461 | [] | no_license | annihil-com/eth32_0.72 | bcabf3fa401b2502254b037f35633d36f6971f52 | eb05faed86817e61faffc1d621b40f1e3ea34428 | refs/heads/master | 2022-09-22T22:17:48.604326 | 2020-06-07T14:51:07 | 2020-06-07T14:51:07 | 268,111,304 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,664 | cpp | // ETH32 - an Enemy Territory cheat for windows
// Copyright (c) 2007 eth32 team
// www.cheatersutopia.com & www.nixcoders.org
#include "../eth32.h"
/*********************
* CWindowButton
*********************/
CWindowButton::CWindowButton(const char *clabel, int cx, int cy, int cw, int ch, wincat_t cat, CWindowPick... | [
""
] | |
abfb4371ce8b16b27956cc1334ec3786f9d6d3b5 | 1e0e21ebe6c9c3d907026b5380e1736b8221ed53 | /my_classes.cpp | 4a2e59b34050449c24c49c087c6db0da71df5860 | [] | no_license | tlin067/Opensim_development | c7d5399844ca615cd32559abdbab5dcae9dff8c4 | 274853bdf070362a6617377da1ae4801acadd97a | refs/heads/master | 2021-01-19T17:59:37.372559 | 2013-01-07T03:29:11 | 2013-01-07T03:29:11 | 7,476,282 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 86,935 | cpp | #include "my_classes.h"
extern double bestSoFar;
extern int stepCount;
/* ################################################## */
// SIMULATION TOOLS OBJECTS
SimTools::SimTools(){}
double SimTools::Calc_rms_VERSION2(Storage& data_trc, double& initialTime, double& finalTime, Array<Array<double>>& pk_data)
{
// Rea... | [
"tlin067@aucklanduni.ac.nz"
] | tlin067@aucklanduni.ac.nz |
919693fe0698b42a434b381409727ee5c08f643d | 948f4e13af6b3014582909cc6d762606f2a43365 | /testcases/juliet_test_suite/testcases/CWE762_Mismatched_Memory_Management_Routines/s01/CWE762_Mismatched_Memory_Management_Routines__delete_array_int64_t_calloc_54e.cpp | 9b6c7f9340d5141dc66bf79f600e2725d1f9fba7 | [] | no_license | junxzm1990/ASAN-- | 0056a341b8537142e10373c8417f27d7825ad89b | ca96e46422407a55bed4aa551a6ad28ec1eeef4e | refs/heads/master | 2022-08-02T15:38:56.286555 | 2022-06-16T22:19:54 | 2022-06-16T22:19:54 | 408,238,453 | 74 | 13 | null | 2022-06-16T22:19:55 | 2021-09-19T21:14:59 | null | UTF-8 | C++ | false | false | 1,607 | cpp | /* TEMPLATE GENERATED TESTCASE FILE
Filename: CWE762_Mismatched_Memory_Management_Routines__delete_array_int64_t_calloc_54e.cpp
Label Definition File: CWE762_Mismatched_Memory_Management_Routines__delete_array.label.xml
Template File: sources-sinks-54e.tmpl.cpp
*/
/*
* @description
* CWE: 762 Mismatched Memory... | [
"yzhang0701@gmail.com"
] | yzhang0701@gmail.com |
775ebb7af258d4bf91ff26aea5b780c3c33445d0 | 41b4adb10cc86338d85db6636900168f55e7ff18 | /aws-cpp-sdk-apigateway/include/aws/apigateway/model/PutMode.h | a1bff5efc8556a6020357ab2849423a5da9a9019 | [
"JSON",
"MIT",
"Apache-2.0"
] | permissive | totalkyos/AWS | 1c9ac30206ef6cf8ca38d2c3d1496fa9c15e5e80 | 7cb444814e938f3df59530ea4ebe8e19b9418793 | refs/heads/master | 2021-01-20T20:42:09.978428 | 2016-07-16T00:03:49 | 2016-07-16T00:03:49 | 63,465,708 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,066 | h | /*
* Copyright 2010-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file... | [
"henso@amazon.com"
] | henso@amazon.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.