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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
bb2b255e3daa9c34584cf861a1683c414699e03b | 5b702c0311e041b2a04763be9dd69bfccc4bfe5a | /lab1/Q9.cpp | 03316a4c4440bc3e76da1090d7a380be350b38db | [] | no_license | locpk/Programming-I | 77769c7ee814b448a465e5268593f20a38adb802 | 66b00001f889a0bb4c44fa2198a806e60e6280aa | refs/heads/master | 2021-01-01T16:06:56.475314 | 2014-11-06T20:44:32 | 2014-11-06T20:44:32 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 321 | cpp | #include "lab1.h"
#include "..\Console.h"
using namespace std;
using namespace System;
int Q9()
{
char ch = 'a';
cout << "What is your favorite letter? ";
cin >> ch;
cout << "The letter " << ch << " is between " << static_cast<char> (ch - 1) << " and " << static_cast<char> (ch + 1) << ".\n";
return EXIT_SUCCESS;
... | [
"locpk123@gmail.com"
] | locpk123@gmail.com |
6df0007c882da9cf942e32e2cccf2c7f4e9b0540 | 619a1b57f9f5741d7e05a063d9096456008c08f6 | /src/display/ScorePanel.cpp | 3f2f236ec5a96d9ed0c21f6a5340c4a946e29300 | [] | no_license | aeonphyxius/AeonMidasMiner | 2e1d245e59ba044620a33c9b88b72f2c62782561 | a036df325f955e36dfd73f29952147232a1ea0da | refs/heads/master | 2021-01-22T15:58:45.524980 | 2016-09-17T14:19:41 | 2016-09-17T14:19:41 | 68,412,732 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,042 | cpp | #include "ScorePanel.h"
#include "EventManager.h"
#include "ServiceManager.h"
#include "GenericDelegate.h"
#include "GameEvents.h"
#include "EventData.h"
#include <ScoreManager.h>
#include <string>
using namespace Display;
using namespace Core;
ScorePanel::ScorePanel(){
points_obj = new TextObject();
points_text_... | [
"alejandro@2awesomestudio.com"
] | alejandro@2awesomestudio.com |
e99458da12329bd5ca1a55fb2f00fba8dce1c07f | 2446967f95e6ecf28508f6ccfe8f950e9dca9d12 | /xcsp2test/bbstest/nbs_nei.cpp | 9986560bbb32dd53f547b56b83d2a47a26cc678c | [] | no_license | JLUCPGROUP/xcsp2test | b9721fd7d9d49c394183a9dd2e41748c025cb62d | f7ebcea8b5334896a0c8ce7bb2630de7d097c211 | refs/heads/master | 2018-12-15T15:03:08.092900 | 2018-09-14T14:31:07 | 2018-09-14T14:31:07 | 118,115,301 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,743 | cpp | //#pragma once
//#include <sstream>
//#include <string>
//#include "BuildGModel.h"
//#include "Timer.h"
//#include "CPUSolver.h"
//#include "XBuilder.h"
//#include "GModel.h"
//#include "SAC1o.h"
//using namespace cp;
//using namespace std;
//#define LOGFILE
//
//const int TimeLimit = 600000;
//const string X_PATH = "... | [
"leezear@live.cn"
] | leezear@live.cn |
d3e98541e36bf273ffe561011b45a86a56f9aebe | 0663da7c49f34ef6478fbe9e6598eeacf613ee07 | /test/copy_construct_test1.cpp | 0b9deca1a362b200ce2a51f9499d25007a5d97d6 | [] | no_license | shijie152/demo | bc143a799c80f8b981a310575cfc95087df044a6 | d225ea88a2db918485475c599abe5d9875e101d1 | refs/heads/master | 2022-04-26T22:43:32.419577 | 2020-04-30T06:09:35 | 2020-04-30T06:09:35 | 259,166,631 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 477 | cpp | /*默认的copy_construct*/
#include <iostream>
using namespace std;
class People
{
private:
int m_age;
public:
People(int age) : m_age(age)
{
cout << "constructor" << endl;
}
~People()
{
cout << "destructor" << endl;
}
int getAge() const
{
return m_age;
}
}... | [
"32998158+shijie152@users.noreply.github.com"
] | 32998158+shijie152@users.noreply.github.com |
578be43c2a6d5a9fcb9dde2892b70338fff6ec6d | 0aa065db5a5c88caed37a32b82adcad9d5df2505 | /C++/Day/Day.cpp | 7bc2ffe8c5ea81781396734e4c12ebca44fa8572 | [] | no_license | psyoongsc/LauguageStudy | b62ec2fe0cf1b0acf794ee8fac8dcaf082fd2870 | 4eecab943cd112d28e7d3778a3abc02bf844c36d | refs/heads/master | 2023-01-22T03:30:09.271492 | 2021-05-04T08:02:20 | 2021-05-04T08:02:20 | 140,408,832 | 0 | 0 | null | 2023-01-11T22:23:12 | 2018-07-10T09:25:31 | C# | UHC | C++ | false | false | 3,878 | cpp | #include "Day.h"
/*
January 31; February 28; LeapFrebruary 29; March 31;
April 30; May 31; June 30; July 31; August 31;
September 30; October 31; November 30; December 31;
*/
Day::Day()
{
time_t timer;
struct tm *t;
timer = time(NULL);
t = localtime(&timer);
year = t->tm_year + 1900;
month = t->tm_mon + 1;
... | [
"40999564+psyoongsc@users.noreply.github.com"
] | 40999564+psyoongsc@users.noreply.github.com |
e38e1eb9d7b7b254c2c9cded1bff602b3dccffd9 | 84cc4580e5bb8dda365932e31ec20ca45702f970 | /Spike11/Spike11/Spike11/Message.h | f871134c513d7e4af8c663474b11e4960465fd8e | [] | no_license | PubFork/gp-code | e21573b3dc5dd580ee6cc078336e5031ae4e932f | e7b7e1cd785afd58fe7e6e0d58293608c11c60e3 | refs/heads/master | 2020-07-08T16:36:03.620807 | 2016-11-07T10:45:44 | 2016-11-07T10:45:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 405 | h | #pragma once
#include <sstream>
#include "Object.h"
#include "BinaryReader.h"
#include "BinaryWriter.h"
class Message : public Object {
private:
std::stringstream _content;
BinaryReader _reader;
BinaryWriter _writer;
protected:
BinaryWriter& write();
public:
Message(std::string content);
Message();
virtual ~Me... | [
"jtunaley@gmail.com"
] | jtunaley@gmail.com |
bdac2f5fdeff023057a57c8dd55cc3881ff7628c | 27c75711bbe10b3120c158971bb4e830af0c33e8 | /Codeforces/CF538/C.cpp | 84eb8b8faf9e916538aa7e26ee326c1ca2e6be18 | [] | no_license | yl3i/ACM | 9d2f7a6f3faff905eb2ed6854c2dbf040a002372 | 29bb023cb13489bda7626f8105756ef64f89674f | refs/heads/master | 2021-05-22T02:00:56.486698 | 2020-04-04T05:45:10 | 2020-04-04T05:45:10 | 252,918,033 | 0 | 0 | null | 2020-04-04T05:36:11 | 2020-04-04T05:36:11 | null | UTF-8 | C++ | false | false | 988 | cpp | #include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cctype>
#include <cmath>
#include <ctime>
#include <cassert>
#include <iostream>
#include <iomanip>
#include <string>
#include <vector>
#include <set>
#include <map>
#include <queue>
#include <deque>
#include <bitset>
#include <algorithm>
#define MST(a,... | [
"yuzhou627@gmail.com"
] | yuzhou627@gmail.com |
ea8225056685b6b87f301da3d1cfbf04c6e602fd | 8e390bed32bc6662e433a244a576d3835bd79cd5 | /src/log.h | 0f7e1fd0f6c02531020bb559c4eac25e3c165dcd | [] | no_license | SamuelBailey/Cpp-Classes | d533f5d51f82e9a0927783cb8854d813b26960bb | 9b9b817635da0113331eaf713b7f07418156c3ef | refs/heads/master | 2022-11-02T06:36:59.099837 | 2020-06-21T19:53:48 | 2020-06-21T19:53:48 | 273,763,014 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 309 | h | #pragma once
class Log {
public:
enum Level : unsigned char {
ERROR,
WARNING,
INFO
};
private:
Level logLevel = INFO;
public:
void setLevel(Level level);
void warn(const char* message);
void error(const char* message);
void info(const char* message);
}; | [
"samuelrbailey19@gmail.com"
] | samuelrbailey19@gmail.com |
7c78576547316f5bd5e3688b7897bdd133601f03 | 583b2b81e0e7ac3c910bc00204f877aa9c48bdae | /Analysis/HiggsNuNu/LightTreeAna/interface/DataNormShape.h | 8e6667baab0f24b8f7a408744a126e5bc542783d | [] | no_license | danielwinterbottom/ICHiggsTauTau | 8c88a3322c8e362114a53c559634a7ecceb266d2 | 69f6b580ec1faa4e5b6ef931be880f939f409979 | refs/heads/master | 2023-09-01T17:49:18.865198 | 2023-02-07T13:14:15 | 2023-02-07T13:14:15 | 10,723,688 | 4 | 12 | null | 2023-09-07T08:41:44 | 2013-06-16T18:08:22 | Python | UTF-8 | C++ | false | false | 2,311 | h | #ifndef ICHiggsTauTau_HiggsNuNu_DataNormShape_h
#define ICHiggsTauTau_HiggsNuNu_DataNormShape_h
#include "UserCode/ICHiggsTauTau/Analysis/HiggsNuNu/LightTreeAna/interface/LightTreeModule.h"
#include "UserCode/ICHiggsTauTau/Analysis/HiggsNuNu/LightTr... | [
"pdunne@cern.ch"
] | pdunne@cern.ch |
e6d8e72d7b300044987fd1e04e87cc8236d1519c | 062b913ea243ce9ef85542d934c1ebfa116e2b77 | /behavior_algorithms/src/current_translational_wiggle_pull.cpp | 75706720c8c5fedefe2063ccbb6313b951e4b721 | [] | no_license | cwru-robotics/compliant_behaviors | 34afad570b9937c389ae5d6dc162be03accddf4c | a09e2cf6fa9d455fd846fe13eec1e68c7e6539a3 | refs/heads/master | 2023-05-23T16:29:46.340181 | 2021-06-18T15:51:14 | 2021-06-18T15:51:14 | 293,548,372 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 11,468 | cpp | // Translational Wiggle
// Matthew Haberbusch, Surag Balajepalli, and Rahul Pokharna
// Last updated 10/15/19
//
// All ROS-specific code labeled with "ROS:" comments
// ROS: include libraries
#include <iostream>
#include <sstream>
#include <ros/ros.h>
#include <cmath>
#include <geometry_msgs/Pose.h>
#include <geome... | [
"matthew.haberbusch@case.edu"
] | matthew.haberbusch@case.edu |
86924627a4af4f1bfd12da2887a0348b848a2725 | 0560aee2a84c507d2e91cb712393b37a7cfd4117 | /doc/archive/public/lib/vendor/Selenium/selenium-read-only/cpp/IEDriver/IECommandExecutor.cpp | 0e0fd28e3887a7868fcfb90ed5d622045d593b32 | [
"Apache-2.0"
] | permissive | Mujj/Constellation | 804df1190c7bf09c7498e0b6bcff247f5ae9c376 | 6bd9413cdd6bc835c0eddc48b1288b4132293cb6 | refs/heads/master | 2020-12-03T05:12:41.365567 | 2013-06-20T20:29:02 | 2013-06-20T20:29:02 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 28,066 | cpp | // Copyright 2011 Software Freedom Conservancy
// 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... | [
"root@development.motormeme.com"
] | root@development.motormeme.com |
acfc882d8a86c7effdc9404949ca87a547594410 | 5bc04daeef5284871264a7446aadf7552ec0d195 | /lib/darknet/include/yolo_v2_class.hpp | efe2b5f334b5671f61c89a7a5f18108f45bcd765 | [
"MIT"
] | permissive | Ace-Ma/LSOracle | a8fd7efe8927f8154ea37407bac727e409098ed5 | 6e940906303ef6c2c6b96352f44206567fdd50d3 | refs/heads/master | 2020-07-23T15:36:18.224385 | 2019-08-16T15:58:33 | 2019-08-16T15:58:33 | 207,612,130 | 0 | 0 | MIT | 2019-09-10T16:42:43 | 2019-09-10T16:42:43 | null | UTF-8 | C++ | false | false | 25,006 | hpp | #ifndef YOLO_V2_CLASS_HPP
#define YOLO_V2_CLASS_HPP
#ifndef LIB_API
#ifdef LIB_EXPORTS
#if defined(_MSC_VER)
#define LIB_API __declspec(dllexport)
#else
#define LIB_API __attribute__((visibility("default")))
#endif
#else
#if defined(_MSC_VER)
#define LIB_API
#else
#define LIB_API
#endif
#endif
#endif
#define C_SHARP_... | [
"max.austin@utah.edu"
] | max.austin@utah.edu |
82348cdc8a199631c0ab9f3dde7d9e049e9fea1f | 6bbb8c1ecd49aada4c990ab7caefb6564f66b900 | /GameArch.Programming.Practice/PP09.Inheritance/TextureManager.h | 88108c4932308a3ac76c215c8af2da7b52c021f4 | [] | no_license | BeFreeCODE/SDL | 6978b5afd99f627f23cc347c74fa5079c7939fd2 | d5f8d56bd8796c1132ca188f413210a4e292dee2 | refs/heads/master | 2020-06-03T15:58:45.505908 | 2014-05-01T03:26:03 | 2014-05-01T03:26:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 843 | h | #pragma once
#include <SDL.h>
#include <map>
#include <string>
class TextureManager
{
private:
static TextureManager* s_pInstance;
public:
static TextureManager* Instance()
{
if(s_pInstance == 0)
{
s_pInstance = new TextureManager();
return s_pInstance;
}
return s_pInstance;
}
~TextureManager(void)... | [
"kihanlll@gmail.com"
] | kihanlll@gmail.com |
299e570e009228ab8ebcba791d73bbbac271fd9c | 34487da73ed9ca3bee5cd0bea70fb60f59668377 | /quiz2.cpp | 5f7bd70c580919f39abc04137556f64d51c09904 | [] | no_license | ldai100/Codes-Saved-for-future-look-back | 595698226e38cc788a34c66fcb7284fc4661997c | d67bc88efd154ed42f53c029535c33ea4632548d | refs/heads/master | 2021-01-10T09:17:25.570642 | 2016-02-06T02:48:48 | 2016-02-06T02:48:48 | 51,186,728 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,424 | cpp | #include<iostream>
#include<vector>
using namespace std;
//without function;
vector<int> merge(vector<int> a, vector<int> b){
vector<int> c;
int helper[a.size()+b.size()], asize=a.size(), bsize=b.size(), temp;
//merging all the objects into one helper array;
for(int i=0;i<asize;i++){
helper[i]=a.back();
a.pop_back... | [
"dali0813@venus.cs.qc.cuny.edu"
] | dali0813@venus.cs.qc.cuny.edu |
f765ef0f56c43cadbd460d9aff9ba694bb2c5fcd | 2f8dbbde4c545deacc47fde5eef035205746686f | /problemas/1042 - Sort Simples.cpp | 4d24ba0193561f15e8c9673649e547c9e027de88 | [] | no_license | ElianMelo/urionlinejudge-cpp | 4e98fa22015d88e2a35db688e1e9923faafd6538 | a67d47a0dbd06285f6125e9436a504ad225675aa | refs/heads/master | 2020-04-03T17:39:49.604574 | 2019-05-26T03:20:32 | 2019-05-26T03:20:32 | 155,454,493 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 901 | cpp | #include <bits/stdc++.h>
using namespace std;
int main(){
int num1, num2, num3, maior, menor, medio, aux;
scanf("%d %d %d", &num1, &num2, &num3);
maior = num1;
if(num2 >= maior){
maior = num2;
menor = num1;
medio = num3;
}else if(num3 >= maior){
maior = num3;
... | [
"elianmelomorais@gmail.com"
] | elianmelomorais@gmail.com |
187145ef9d67f523ce4e14a2f55ea295e54e6ddc | 602ea0c05970cbd766df068b003671c561f59661 | /chrome/browser/chromeos/crostini/crostini_export_import.cc | 4f87d7229dbe0486729087b3e1e318ebe5e0b197 | [
"BSD-3-Clause"
] | permissive | VitalyKononenko/chromium | 088de78a639375b073cabb7665afc638334e8672 | b8ad2cadb6a163269cd7851bc7962744743785bd | refs/heads/master | 2023-03-01T10:15:00.815394 | 2019-08-15T19:51:40 | 2019-08-15T19:51:40 | 202,603,102 | 1 | 0 | BSD-3-Clause | 2019-08-15T19:54:34 | 2019-08-15T19:54:33 | null | UTF-8 | C++ | false | false | 22,614 | cc | // Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/chromeos/crostini/crostini_export_import.h"
#include <utility>
#include "base/bind.h"
#include "base/files/file_util.h"
#includ... | [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
7764eadbc5300799a52ed3f0fbdde3bc7768f304 | 134a7f55303c259393fe97f941846d6b0c984352 | /AnsiItDlg.cpp | 752bba4769e0e2c7113dadc8f1553f75d755fac1 | [] | no_license | Abin-Liu/AnsiIt | 74841f27e20f81900adea35d88dcdfd64d649425 | 290bad4dd9dd73d1f4f46f07c5a9600a7c0159c4 | refs/heads/master | 2020-03-19T16:43:58.187541 | 2018-06-09T13:53:47 | 2018-06-09T13:53:47 | 136,727,651 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,686 | cpp | // AnsiItDlg.cpp : implementation file
//
#include "stdafx.h"
#include "AnsiIt.h"
#include "AnsiItDlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CAboutDlg dialog used for App About... | [
"abinn32@163.com"
] | abinn32@163.com |
38d18e2e70756be70af247818a85b47ebddd8ce4 | daf52f4913219c520bb781fca9937aeb9430889f | /linkedList/mergeNode.cpp | b5525c99f90f82e0b48e209c173608f1b9ffb184 | [] | no_license | rostun/teenyWeeny | 4c3a34a9854b591d5e6916934365a197f2304539 | e1bf18d78bdad9251915c95e481192a831628482 | refs/heads/master | 2020-12-11T17:06:24.449542 | 2016-08-16T16:50:57 | 2016-08-16T16:50:57 | 54,285,702 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 847 | cpp | #include <stack>
/*
Find merge point of two linked lists
Node is defined as
struct Node
{
int data;
Node* next;
}
*/
int FindMergeNode(Node *headA, Node *headB)
{
Node *currentA = headA;
Node *currentB = headB;
stack <int> listA;
stack <int> listB;
while(curre... | [
"rosa.m.tung@gmail.com"
] | rosa.m.tung@gmail.com |
1ea443412e66c43751569a03914b81ef263216f2 | 7d5691687676b900553628f9287b7cb9094dac9a | /3party/glm/test/external/gli/gtx/loader_dds9.inl | 23a0f332a457bf321cc7572a7476d818489624eb | [
"MIT",
"Apache-2.0"
] | permissive | mapsme/omim | bf3ea4f419a547b7c124107e344d7f565d707c12 | 1892903b63f2c85b16ed4966d21fe76aba06b9ba | refs/heads/master | 2023-02-20T16:31:08.733960 | 2021-04-27T13:57:41 | 2021-04-28T14:44:52 | 42,798,033 | 5,032 | 1,527 | Apache-2.0 | 2022-10-03T08:28:24 | 2015-09-20T02:57:13 | C++ | UTF-8 | C++ | false | false | 23,471 | inl | ///////////////////////////////////////////////////////////////////////////////////////////////////
// OpenGL Image Copyright (c) 2008 - 2011 G-Truc Creation (www.g-truc.net)
///////////////////////////////////////////////////////////////////////////////////////////////////
// Created : 2010-09-08
// Updated : 2010-09-... | [
"alex@maps.me"
] | alex@maps.me |
ffdcb9c33e9a2015b1c5e1b458c1967bcd26c350 | f7e8786b1e62222bd1cedcb58383a0576c36a2a2 | /src/shell/application_manager/query_util_unittest.cc | d754740fe25b7d6bbb8a8312e5f89538b04a51f1 | [
"BSD-3-Clause"
] | permissive | amplab/ray-core | 656915553742302915a363e42b7497037985a91e | 89a278ec589d98bcbc7e57e0b80d055667cca62f | refs/heads/master | 2023-07-07T20:45:40.883095 | 2016-08-06T23:52:23 | 2016-08-06T23:52:23 | 61,343,320 | 4 | 5 | null | 2016-08-06T23:52:24 | 2016-06-17T03:35:34 | C++ | UTF-8 | C++ | false | false | 1,226 | cc | // Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "shell/application_manager/query_util.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace shell {
namespace {
TEST(QueryUtil, NoQuery)... | [
"pcmoritz@gmail.com"
] | pcmoritz@gmail.com |
f4bd840c10a7dd9dda04d2f68bd3ffe81ac47760 | 9192182cfcfcf4ce9f9bbb4003106e29b37b5bd1 | /mame-0.141/src/mame/includes/pooyan.h | ab68c45e2ad53ec3f3a4ab0ebd36caec6d6693d0 | [] | no_license | johkelly/MAME_hi | a2b9ea9d4f089f75e57de5963af187718733fccd | ccbec44e4c82e5ca83ba80de19bfb9c100dbd349 | refs/heads/master | 2020-05-17T13:29:54.978078 | 2012-07-13T19:03:50 | 2012-07-13T19:03:50 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 688 | h | class pooyan_state : public driver_device
{
public:
pooyan_state(running_machine &machine, const driver_device_config_base &config)
: driver_device(machine, config) { }
/* memory pointers */
UINT8 * videoram;
UINT8 * colorram;
UINT8 * spriteram;
UINT8 * spriteram2;
/* video-related */
tilem... | [
"john.kelly@readytalk.com"
] | john.kelly@readytalk.com |
902ab877eaeecad4e17dd496c6638178fa3e3396 | f27185d32d037f6ec76bb28cfeed2e86310192fd | /MiniBase/client.cpp | 38ebc5e9ba2570b53fa8bab35328dbae82dfbd46 | [] | no_license | zH4x/vermilion_new | 59abd84b04b4da27fef275ddfef4e5316b51f7f1 | dfdda63bee2e3033bd7ddcba86a6c323b3959a77 | refs/heads/master | 2020-09-08T12:40:52.238211 | 2019-10-03T10:44:22 | 2019-10-03T10:44:22 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 13,595 | cpp | #include "client.h"
bool FirstFrame = false;
bool ClearDisconnect = false;
net_status_t g_nStatus;
#include <wininet.h>
#include <Wbemidl.h>
#pragma comment(lib, "wbemuuid.lib")
#pragma comment(lib, "wininet.lib")
#define MYAC_PRIVATE_KEY /*5BE6D8BF8E4B8F837-*/XorStr<0xC7,19,0xA10D5352>("\xF2\x8A\x8C\xFC\x8F\xF4\x... | [
"or.75@ya.ru"
] | or.75@ya.ru |
010c43e42a866ae54e16ead55d8885590946bcd9 | e39e3a4b4dc3f9abf8c9c25d247e2c43085f399e | /chapter3/practise3_5/practise3_5/practise3_5.cpp | af8f1949637ecc6997ec5dd3c4fdf84ad7c08b48 | [] | no_license | dc-maggic/978-7-121-15535-2 | fc52a91b3dd58ccede74f102eb31eb69a6a3583a | f3bbc221f4bc52241398bc6529c8e6e9dac2ab97 | refs/heads/master | 2021-10-07T09:40:53.387393 | 2018-12-04T14:29:04 | 2018-12-04T14:29:04 | 155,890,380 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 289 | cpp | #include <iostream>
#include <string>
using std::cin;
using std::cout;
using std::endl;
using std::string;
int main()
{
cout << "输入多个字符串并把它们连接起来输出大字符串" << endl;
string line;
while (cin >> line)
cout << line;
cout << endl;
system("pause");
} | [
"dc-maggic@outlook.com"
] | dc-maggic@outlook.com |
cc2b58486deadd98ba966a94d42f1462d2802864 | ae50a4cd44bd13b54c28dc6e9aae8e30263153e2 | /Arduino_mega_server/ping.ino | 58ebb31569cf96c193c8452dfdbdd104dca09187 | [] | no_license | sergiyvn/Arduino | 2de6f66fda33aa8bf5ec286b6a2e58779b053177 | 3ee51d4361f836580cb5837c9b69098c92528463 | refs/heads/master | 2021-01-17T07:19:59.359734 | 2016-12-14T09:28:39 | 2016-12-14T09:28:39 | 38,753,923 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,655 | ino | /*
Modul Ping
part of Arduino Mega Server project
Response net devices
Warning! Use modify ICMPPing library
*/
#ifdef PING_FEATURE
#include <ICMPPing.h> // + 1378 bytes
#define TOTAL_NET_DEVICES 10
char netDevicesNames[TOTAL_NET_DEVICES][4] = {"SWH", "HOM", "MED", "CMP", "PRN", "MGA", "UN1", "UN2", "LRN",... | [
"sergiyvn@gmail.com"
] | sergiyvn@gmail.com |
ace9f4a32612b7c7b84aaa8d4ba8534f6a8d8529 | be2dfc076afc556d738f116fe86015bfcc086de7 | /Object_Oriented_Programming/homeworks/04-Class_Point_in_plane/Class_Point_in_plane/main.cpp | a35c1455c2f4f0a130c5a0e18a62277ddf82c391 | [] | no_license | middlehuang/CSIE-HW | da35014edd8ae79bcb76568005bebbfef4bea486 | db56a346fb0d76a502329ddfa0a4d68272b0fdeb | refs/heads/master | 2023-03-24T12:40:02.274241 | 2021-03-03T11:05:55 | 2021-03-03T11:05:55 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 472 | cpp | #include <iostream>
#include "Point.h"
using namespace std;
int main(void) {
Point point;
point.Set(0, 5);
cout << point.RetrieveVertical() << " " << point.RetrieveHorizontal() << endl;
point.Move(1, 2);
cout << point.RetrieveVertical() << " " << point.RetrieveHorizontal() << endl;
for (int i = 0... | [
"iriswu959@gmail.com"
] | iriswu959@gmail.com |
05d4ec3cfd742d876389a2d4542391a7bf218ad7 | 541d3bca231027dfb5e85ddccd55f1d58d89820f | /util/util_skyw.h | fa689b4711278cc3a6b73579f217ab212308efbe | [] | no_license | afrendybayu/qkura | 06b11ab5f5b3010c0550d365ca7c4e82470425a1 | fdf753bf420efa05eb744a0a5453fe028803c31e | refs/heads/master | 2016-09-05T23:15:47.634721 | 2014-09-23T09:08:54 | 2014-09-23T09:08:54 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 348 | h | #ifndef UTIL_SKYW_H
#define UTIL_SKYW_H
#include <QObject>
#include <QXmlStreamReader>
#include <QDebug>
class util_skyw : public QObject
{
Q_OBJECT
public:
explicit util_skyw(QObject *parent = 0);
void baca_xml(QString skyw);
signals:
public slots:
private:
QString parsing_payload(QString skyw);... | [
"afrendy@gmail.com"
] | afrendy@gmail.com |
2afc75c52f6d53f7919c8262dbe6c90e8bbfee6a | e6769524d7a8776f19df0c78e62c7357609695e8 | /tags/release-v0.3.52a/rs-Qt-gui/src/gui/graphframe.h | e2c87cea3e32a15437e22ce8e0844bda32671f15 | [] | no_license | autoscatto/retroshare | 025020d92084f9bc1ca24da97379242886277779 | e0d85c7aac0a590d5839512af8a1e3abce97ca6f | refs/heads/master | 2020-04-09T11:14:01.836308 | 2013-06-30T13:58:17 | 2013-06-30T13:58:17 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,967 | h | /****************************************************************
* RetroShare is distributed under the following license:
*
* Copyright (C) 2007,
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Soft... | [
"drbob7@b45a01b8-16f6-495d-af2f-9b41ad6348cc"
] | drbob7@b45a01b8-16f6-495d-af2f-9b41ad6348cc |
9e0c52c584863ab9fde717601458b9b629fef1e5 | 64534a2cfb924e1804859797f9858b79132131b5 | /src/gep/include/gep/settings.h | 450621a2834cff5ea9d2cbfbbda10919bdf0f991 | [] | no_license | marijnz/bouncingballs | 5b098aaa4890b35d74d75feb9997971f44de2cf2 | 5083307b4045a3304326998d88eac147b9d927d7 | refs/heads/master | 2020-07-20T11:57:18.650249 | 2015-01-28T18:11:51 | 2015-01-28T18:11:51 | 29,972,843 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,270 | h | #pragma once
#include "gep/math3d/vec2.h"
#include "gep/math3d/color.h"
#include "gep/interfaces/scripting.h"
namespace gep
{
namespace settings
{
struct General
{
std::wstring applicationTitle;
General() :
applicationTitle(L"Gameplay Programming")
... | [
"me@arcomul.nl"
] | me@arcomul.nl |
47b8fc7cae9f487a03c0595dd13efb33f10f6ebe | 6bb033053cd606cb6d2980b1a1c65e9a2f4bc43d | /GEngine/GFileStream.h | 44176f595c9bfef91ffd10ccebcb165d0c25d640 | [] | no_license | Gibex51/GEngine | ac320c6da28651bbb08cb1763a295c3780da6b9d | 0c7262e733fd5eafa5838f2ce1ac38da7ae82e04 | refs/heads/master | 2021-01-01T04:33:47.746012 | 2016-04-25T06:43:13 | 2016-04-25T06:43:13 | 57,017,883 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 618 | h | #pragma once
#include "GStructs.h"
#include <fstream>
using namespace std;
#define G_FSMODE_CREATE 0
#define G_FSMODE_READ 1
#define G_FSMODE_WRITE 2
#define G_FSMODE_READWRITE 3
class GFileStream
{
public:
size_t Position;
g_bool Create(const string &FileName, g_uint8 Mode);
void Releas... | [
"gibex51@mail.ru"
] | gibex51@mail.ru |
4bb5b434d3e8deb2564b29488b36434909cf3448 | c0b78fd512779b4cb4959e8513aa5f8b730fa59b | /src/OpenLL/Color.h | da175ce85c17c0ec4fec70faca19bc06a30084c2 | [] | no_license | Kracav4ik/saturn | d267d63376031f54be2efbf1f5c9e40bff8ed1bd | 835dcae3db86f0ac5d6dd40afacc2f83c7b5610d | refs/heads/master | 2023-07-14T09:48:02.971155 | 2021-05-24T03:21:01 | 2021-05-24T03:45:21 | 338,658,311 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 705 | h | #pragma once
namespace ll {
struct Color {
Color(float a, float r, float g, float b);
Color(float r, float g, float b);
Color();
float a;
float r;
float g;
float b;
bool isDiscard() const;
static Color greyscale(float v) {
return Color(v, v, v);
}
static const C... | [
"dikama2013@ya.ru"
] | dikama2013@ya.ru |
b6093a2bb835f39551709675c069fc465e509373 | e64282f4dc1c44705d0d121af79db55cf2b3d69e | /bcpp3-sourcecode/ch06/worked_example_1/dice.cpp | 78004a4fd45f7464d9ce05c7dbb2ec382a3a7d7b | [] | no_license | tonningp/cis201-class-examples | 58af125a78403f18569b0b11903b2defe8523642 | cc966e76879f6e8e4ad95be7eb72f21cb3b434ca | refs/heads/master | 2020-03-28T20:15:01.626664 | 2019-09-02T18:57:48 | 2019-09-02T18:57:48 | 149,052,947 | 4 | 6 | null | null | null | null | UTF-8 | C++ | false | false | 1,748 | cpp | #include <iostream>
using namespace std;
/**
Generates a sequence of die toss values for testing.
@param values the array to be filled with die toss values
@param size the size of the values array
*/
void generate_test_values(int values[], int size)
{
int next = 1;
for (int i = 0; i < size;... | [
"paul.tonning@student.vvc.edu"
] | paul.tonning@student.vvc.edu |
60d08c18b685cffea3033a72316e015c3d35c25b | 8e78f5da3c1b3467560ab39054a71e69f280b703 | /archieve/CF1100F/CF1100F.cpp | cd80cdaf389cb09da4340800a3d21484c55752e5 | [] | no_license | ycsgg/oi_code | aed9922a3bd53ef5ee88450d80af9fbb79a48479 | 1f98dca6fb0b69da2f566276cce89817fe828edd | refs/heads/main | 2023-09-03T04:55:49.611275 | 2021-11-19T08:31:31 | 2021-11-19T08:31:31 | 342,456,005 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,612 | cpp | #include <algorithm>
#include <array>
#include <iostream>
#include <vector>
#include <cstdio>
using namespace std;
const int N = 5e5 + 5;
namespace XorBasis {
const int LIM = 20;
array<int, LIM> basis, pos;
void insert(int x, int id) {
for (int i = LIM; ~i; i--) {
if ((x >> i) & 1) {
if (!basis[... | [
"ycs2495472711@outlook.com"
] | ycs2495472711@outlook.com |
0139536751422d649acec1e992c0444cf71cc34d | 67f988dedfd8ae049d982d1a8213bb83233d90de | /external/chromium/ui/aura/test/aura_test_helper.h | 5f47255fa39dca7cc199fc1a903f48d802254e64 | [
"BSD-3-Clause"
] | permissive | opensourceyouthprogramming/h5vcc | 94a668a9384cc3096a365396b5e4d1d3e02aacc4 | d55d074539ba4555e69e9b9a41e5deb9b9d26c5b | refs/heads/master | 2020-04-20T04:57:47.419922 | 2019-02-12T00:56:14 | 2019-02-12T00:56:14 | 168,643,719 | 1 | 1 | null | 2019-02-12T00:49:49 | 2019-02-01T04:47:32 | C++ | UTF-8 | C++ | false | false | 1,818 | h | // Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef UI_AURA_TEST_AURA_TEST_HELPER_H_
#define UI_AURA_TEST_AURA_TEST_HELPER_H_
#include "base/basictypes.h"
#include "base/memory/scoped_ptr.h"
c... | [
"rjogrady@google.com"
] | rjogrady@google.com |
7fe10250b14627acd86a8f51152401e394ed48bc | 0bd1265abbec9fa8b1ecca2b2e9bd48572ffaffc | /include/llvm/DebugInfo/PDB/Native/NativeSymbolEnumerator.h | 64d4c35c0858a29cd520b379218c43464b157e40 | [] | no_license | BenQuickDeNN/Kaleidoscope | 2daa74aaa1ec82866d4c4e8b72c68dd5a7ce803a | 573b769ecc1b78f1ad9d2fd0a68978028b528e14 | refs/heads/master | 2022-10-06T21:51:10.741879 | 2020-06-11T02:19:48 | 2020-06-11T02:19:48 | 208,954,736 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,774 | h | //===- NativeSymbolEnumerator.h - info about enumerator values --*- C++ -*-===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===---------------------... | [
"benquickdenn@foxmail.com"
] | benquickdenn@foxmail.com |
67806d90337cc657541e50f33918f17066226887 | 8e036ee47867781c2950ceba7fed99eef1b2d2a6 | /question-bank/0140-word-break2/solution.cpp | 5d4e81e1c240d8651c3041a836996fd51a731051 | [] | no_license | Suida/Leetcode | 5cb3a613e902a24b148d59b7c60efe3972ad6555 | 32f504b60ab67c41c0a68aacbeb3a35fdf0da083 | refs/heads/master | 2021-04-17T19:17:18.264384 | 2020-04-19T11:05:10 | 2020-04-19T11:05:10 | 249,468,857 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,397 | cpp | #include <vector>
#include <string>
#include <iostream>
#include <cstdio>
using namespace std;
struct Trie {
bool isEnd;
Trie** next;
};
class Solution {
public:
vector<string> wordBreak(string s, vector<string>& wordDict) {
int m = s.size();
Trie* root = &buildTrie(wordDict), *cur;
... | [
"suidar@foxmail.com"
] | suidar@foxmail.com |
01529810ce46f25631c23426e2c7cd9232c5d28c | 3b8473e406bcb897e4292883c4860d7ce662775e | /lib/Target/JSBackend/OptPasses.h | 44892cf907e0bf13530a058b7b3bb12e516ddad0 | [
"NCSA"
] | permissive | mcanthony/PNaCl-Dynamic-Linking | 3b5bfe328f8e4a2bdbd79f98799121930ff69408 | 92d899e138d977589f07075dbc31b781341c2f02 | refs/heads/dl | 2020-04-05T18:58:29.840981 | 2015-09-29T16:52:51 | 2015-09-29T16:52:51 | 44,759,629 | 0 | 1 | null | 2015-10-22T16:50:59 | 2015-10-22T16:50:59 | null | UTF-8 | C++ | false | false | 520 | h | //===-- JSTargetMachine.h - TargetMachine for the JS Backend ---*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===--------------------------------------------------------... | [
"jfb@chromium.org"
] | jfb@chromium.org |
05d72c6496a4d5886ad3e31ea35be691ca79397a | 7ef00c02863538e97cd741aaf228b0a4f64da059 | /CTC/1.7.cpp | c4caaa43462f3ff3c7b91aa2586edf6caba7803b | [] | no_license | E-Fung/CTC | d71eab70607a42423089a306f189f99c487da0b2 | 2bc28db8b75073c928f6a5f250936c3ccaea9773 | refs/heads/master | 2022-11-18T14:25:16.532832 | 2020-07-18T21:17:42 | 2020-07-18T21:17:42 | 280,741,100 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,146 | cpp | //This program rotates an N by N matrix by 90 degrees in place
#include<vector>
#include<iostream>
#include<string>
using namespace std;
void print(vector<vector<string>>& vec) {
int size = vec.size();
for (int i = 0; i < size; i++) {
for (int j = 0; j < size; j++) {
cout << vec[i][j] << " ";
}
cout << en... | [
"64280043+E-Fung@users.noreply.github.com"
] | 64280043+E-Fung@users.noreply.github.com |
2416500b28c473370098fc6a73dd696e9b587624 | 5119767489dc6bfa8d3b559766c87806a7e106bf | /sources/engine.cpp | afd756f283049443b2768cb99f5b61512c309658 | [] | no_license | xathanex/analiza | c6ffddf803402986651574c9bea364bac1b41854 | 3992767d8a716d436596cefe5146049f03d45fd9 | refs/heads/master | 2016-09-06T17:29:42.635674 | 2015-02-02T21:25:44 | 2015-02-02T21:25:44 | 26,316,612 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,805 | cpp | #include "engine.h"
#include "events.h"
#include <cmath>
#include <vector>
Engine::Engine(std::vector<const char *> shipNames) {
// sets start positions for all ships
// TODO: randomowe pozycje statków
// TODO: wykrywanie kolizji pozycji statków
/*
ShipProperties shipPos1, shipPos2;
shipPos1... | [
"kbigaj@uj.edu.pl"
] | kbigaj@uj.edu.pl |
6490a43eb0afdcf482e08edb41437b83b98708ae | c27637bbc71c302643566ba57057406ccec1bf96 | /FileHandler.h | 851e871bdeba5541b4387c12ecc1bc5d1f54679c | [] | no_license | dmterkula/Hashing-File-Comparison | b2ad73667fde76c5b59793742fec8f8ae380fec6 | 19108c58480e55308c09d79842c626f82be1beb1 | refs/heads/master | 2021-06-23T23:47:06.996524 | 2017-09-11T02:28:56 | 2017-09-11T02:28:56 | 103,080,465 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,703 | h | // FileHandler.h
/*
* Creates the outline for a class that reads and writes to files. This FileHandler also
* stores a Hasher object so that it can hash the strings it reads from a given file.
* This FileHandler will only read files that are valid. It also stores the current
* File name it is reding and writing to as a... | [
"David"
] | David |
dc910078468d0ed3ea03f569cc5347e059003896 | 7c2f76936ab69618e47a8033fa788aff573d6d24 | /catkin_ws/src/cpi_compare/src/cpi/CpiBase.h | 5b30c160847c988f7c7445daabcb7ae78b13b42b | [
"MIT"
] | permissive | UMich-BipedLab/cpi | 1a65ee0b28e86365f91a652a9fbf50046aadd061 | 9207d1ff1601242041c4f7cb2829b23e8d3bd3f6 | refs/heads/master | 2020-03-28T01:02:13.967054 | 2018-09-13T09:15:13 | 2018-09-13T09:15:13 | 147,471,222 | 1 | 0 | null | 2018-09-05T06:34:41 | 2018-09-05T06:34:41 | null | UTF-8 | C++ | false | false | 5,832 | h | /**
* MIT License
* Copyright (c) 2018 Kevin Eckenhoff
* Copyright (c) 2018 Patrick Geneva
* Copyright (c) 2018 Guoquan Huang
*
* 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... | [
"pgeneva@udel.edu"
] | pgeneva@udel.edu |
9ac6f9d64f59a96a564b067251760a11c6d49162 | 73c8a3179b944b63b2a798542896e4cdf0937b6e | /AtCoder/ABC-295/E.cc | f21b960244e3c0234cad2aa6a4b87f2fa6ef8443 | [
"Apache-2.0"
] | permissive | aajjbb/contest-files | c151f1ab9b562ca91d2f8f4070cb0aac126a188d | 71de602a798b598b0365c570dd5db539fecf5b8c | refs/heads/master | 2023-07-23T19:34:12.565296 | 2023-07-16T00:57:55 | 2023-07-16T00:57:59 | 52,963,297 | 2 | 4 | null | 2017-08-03T20:12:19 | 2016-03-02T13:05:25 | C++ | UTF-8 | C++ | false | false | 912 | cc | #include <bits/stdc++.h>
template<typename T> T gcd(T a, T b) {
if(!b) return a;
return gcd(b, a % b);
}
template<typename T> T lcm(T a, T b) {
return a * b / gcd(a, b);
}
template<typename T> void chmin(T& a, T b) { a = (a > b) ? b : a; }
template<typename T> void chmax(T& a, T b) { a = (a < b... | [
"jefersonlsiq@gmail.com"
] | jefersonlsiq@gmail.com |
4c6a310876ed2f0a0f8115b3ee54f750558cfbb8 | 57b6fa831fe532cf0739135c77946f0061e3fbf5 | /NWNXLib/API/Mac/API/CPlayOptions.cpp | 50775d0d08cb29831b345fc7a481169310993101 | [
"MIT"
] | permissive | presscad/nwnee | dfcb90767258522f2b23afd9437d3dcad74f936d | 0f36b281524e0b7e9796bcf30f924792bf9b8a38 | refs/heads/master | 2020-08-22T05:26:11.221042 | 2018-11-24T16:45:45 | 2018-11-24T16:45:45 | 216,326,718 | 1 | 0 | MIT | 2019-10-20T07:54:45 | 2019-10-20T07:54:45 | null | UTF-8 | C++ | false | false | 130 | cpp | #include "CPlayOptions.hpp"
#include "API/Functions.hpp"
#include "Platform/ASLR.hpp"
namespace NWNXLib {
namespace API {
}
}
| [
"liarethnwn@gmail.com"
] | liarethnwn@gmail.com |
6436e908ee9a2f5edfc7c6f14e06cb85066def56 | 2480ceee9f28f5e8a69fb6f5ed42fd63c22b4205 | /include/Pomdog/Signals/detail/EventBody.hpp | 0730146558e49ab591c1659d5e437c3aa0ee17bb | [
"MIT"
] | permissive | rokrepo/pomdog | 165db7884598c74bd530a4b7a1e83bc1e315c945 | b21fd4fef295aaa3e06ca15e5952109cd8e93f00 | refs/heads/master | 2022-10-25T04:09:09.721827 | 2020-06-18T05:33:25 | 2020-06-18T05:33:25 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,391 | hpp | // Copyright (c) 2013-2020 mogemimi. Distributed under the MIT license.
#pragma once
#include <type_traits>
#include <typeinfo>
#include <utility>
namespace Pomdog::Detail {
template <class T>
struct EventHashCode final {
static_assert(!std::is_pointer<T>::value, "T is not pointer.");
static_assert(std::is_... | [
"mogemimi@enginetrouble.net"
] | mogemimi@enginetrouble.net |
833304b7d72a372ed2700292b6e688abf83a6ef6 | d1c6d23117832c1417ac630587f21f508b92efb6 | /GameOfIherience.cpp | 09bf56aa466aadff84fbac33919842149ed0c9be | [] | no_license | YongLAGCC/cpp_game | 515e65827d1d1b2ca1f7adc279202cf43762e092 | f5e458de20a463a1d8587de039c3e2f6670114a6 | refs/heads/master | 2020-07-11T17:17:41.543981 | 2020-01-20T17:48:21 | 2020-01-20T17:48:21 | 204,603,121 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 475 | cpp | //Yong, Zhou
//Miguel Long. MAC125_7133
//#include "stdafx.h"
#include "Human.h"
#include<iostream>
using namespace std;
Human::Human()
{
}
Human::~Human()
{
}
Human::Human(int newStrength, int newHit) :Creature(newStrength, newHit)
{}
string Human::getSpecies()
{
return "Human ";
}
int ... | [
"1291001957.yz@gmail.com"
] | 1291001957.yz@gmail.com |
c3df573bf6517848578bd46fcbf90b52fe304d6d | ad5eaa9a33248f38884a5a5f0d52788afa2bc901 | /chrome/browser/ui/views/plugin_vm/plugin_vm_launcher_view.h | 21c69051a3ac466c5320abddb0f752f39e6d6a4c | [
"BSD-3-Clause"
] | permissive | dwb420/chromium | 2cc203d9cff6d64ccb4a2cbcad0aaad0a6778b4f | 6147f4cea449793bef7d5a4496a47184e2867401 | refs/heads/master | 2023-01-09T17:35:18.799896 | 2019-11-13T20:32:27 | 2019-11-13T20:32:27 | 221,362,316 | 0 | 0 | BSD-3-Clause | 2019-11-13T03:13:37 | 2019-11-13T03:13:36 | null | UTF-8 | C++ | false | false | 4,207 | h | // Copyright 2018 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_UI_VIEWS_PLUGIN_VM_PLUGIN_VM_LAUNCHER_VIEW_H_
#define CHROME_BROWSER_UI_VIEWS_PLUGIN_VM_PLUGIN_VM_LAUNCHER_VIEW_H_
#include "base/... | [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
2413d7a487e3bb96d14cfcc9f922975adcb8dcdb | c5d0d500897a38d7aa30299a56aa756e76072de4 | /src/task.cpp | fc83d3271bb1f9e7067eb031c28b9d3e5795a642 | [] | no_license | belukhin/mod-task08-shop | 6b0cd8906bbf0b1bbc489eac44afc111bf353402 | 56ddc077ffe3b5de97c9a06ce1dd736ac9671928 | refs/heads/main | 2023-05-14T09:19:26.704015 | 2021-06-08T22:33:20 | 2021-06-08T22:33:20 | 375,062,024 | 0 | 0 | null | 2021-06-08T15:40:33 | 2021-06-08T15:40:32 | null | UTF-8 | C++ | false | false | 5,303 | cpp | #include <string>
#include <iostream>
#include "../include/task.h"
using namespace std;
unsigned int Client::gen_id = 1;
long Fact(long n)
{
if (n == 0)
return 1;
else
return n * Fact(n - 1);
}
/////////////////////////
/// Shop
/////////////////////////
Shop::Shop(int cashCount, int rate,... | [
"79859537+belukhin@users.noreply.github.com"
] | 79859537+belukhin@users.noreply.github.com |
18557f498e7fe701c065c3047e5032e9e8a4a589 | ef9a782df42136ec09485cbdbfa8a56512c32530 | /newtrunk/src/fields/crops/cropItalRyegrass.cpp | a9c2753e8f00a21d6a07032b9829b6f0485b4c35 | [] | no_license | penghuz/main | c24ca5f2bf13b8cc1f483778e72ff6432577c83b | 26d9398309eeacbf24e3c5affbfb597be1cc8cd4 | refs/heads/master | 2020-04-22T15:59:50.432329 | 2017-11-23T10:30:22 | 2017-11-23T10:30:22 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,338 | cpp |
#include "../../base/common.h"
#include "cropItalRyegrass.h"
#include "../../products/products.h"
/*
* Temporary filler!! NJH May 2009
*/
cropItalRyegrass::cropItalRyegrass(string aName,
const int aIndex,
const base * aOwner,
... | [
"sai@agro.au.dk"
] | sai@agro.au.dk |
b97e19eed6d7df45f7bf37545986d59935e698c5 | 5e9c396ea5d81dce62ef4e6f260db21385608922 | /src/chrono_models/vehicle/gator/Gator_TMeasyTire.h | ca0eea237d81bc727cdd25d9130a9519d5a63d39 | [
"BSD-3-Clause"
] | permissive | gvvynplaine/chrono | 357b30f896eb6c1dcabcebd0d88f10fab3faff20 | a3c0c8735eb069d5c845a7b508a048b58e022ce0 | refs/heads/develop | 2023-01-05T08:43:13.115419 | 2020-07-09T08:24:34 | 2020-07-09T08:24:34 | 278,308,549 | 0 | 0 | BSD-3-Clause | 2020-10-30T12:17:47 | 2020-07-09T08:33:24 | null | UTF-8 | C++ | false | false | 2,898 | h | // =============================================================================
// PROJECT CHRONO - http://projectchrono.org
//
// Copyright (c) 2014 projectchrono.org
// All rights reserved.
//
// Use of this source code is governed by a BSD-style license that can be found
// in the LICENSE file at the top level of t... | [
"serban@wisc.edu"
] | serban@wisc.edu |
cd08436a67dffa0a89bc4520f5a6a29d18c3a4ee | 66728df25e2f68e40d64fb4e4692cdfb072e8789 | /Lab10/tache3/etape1.cpp | e216eed12786443edee62dc73622009320f59e2b | [] | no_license | matthieu994/INF3105 | bd19947dc25dcaefa67a19660d658b4f0da93c17 | 49a9290f5c067325a5b972cd7868f8b4d129e80c | refs/heads/master | 2021-10-30T07:50:06.755716 | 2019-04-25T20:49:15 | 2019-04-25T20:49:15 | 171,407,273 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 4,090 | cpp | /*
INF3105 / Lab10 -- Exercices sur l'héritage et les conteneurs.
Étape 1 : Comprendre le mécanisme d'héritage.
*/
#include <iostream>
using namespace std;
//***** Début des déclarations *************/
// Ceci irait normalement dans un ou plusieurs fichiers .h (personne.h, etudiant.h, employe.h).
// En C++, un... | [
"Matthieu-Xiaomi@Ubuntu"
] | Matthieu-Xiaomi@Ubuntu |
bf814f777044b6b3c2d8f616144cd72c637bda2e | ded247e7c0d0b553308c447a9680881aaf0ef849 | /PWGGA/GammaConv/AliAnalysisTaskMesonJetCorrelation.h | c51bca1d1db23278b0063fbf2173c274fdcfeb00 | [] | permissive | sjaelani/AliPhysics | 5898074160aea315c07e7c49b8f9c4fe0ec7478d | d7196ec9f1913dfec7d5537259826b8617bd89ef | refs/heads/master | 2022-11-13T00:07:18.394588 | 2022-11-01T19:42:33 | 2022-11-01T19:42:33 | 227,425,721 | 0 | 0 | BSD-3-Clause | 2019-12-11T17:44:33 | 2019-12-11T17:44:32 | null | UTF-8 | C++ | false | false | 27,607 | h | /**************************************************************************
* Copyright(c) 1998-2020, ALICE Experiment at CERN, All rights reserved. *
* *
* Author: Joshua Koenig <joshua.konig@cern.ch> *
* ... | [
"joshua.konig@cern.ch"
] | joshua.konig@cern.ch |
9967b319012bd4fd9620fefae81470c12438c98d | 214dbcc732e0f6a49336164c793bd4af4754a6f7 | /Algorithmics/Problems from various contests/bete1.cpp | b9dca226d2baa24aaf8a50dc70289d9637bc03c7 | [] | no_license | IrinaMBejan/Personal-work-contests | f878c25507a8bfdab3f7af8d55b780d7632efecb | 4ab2841244a55d074d25e721aefa56431e508c43 | refs/heads/master | 2021-01-20T08:24:47.492233 | 2017-05-03T12:22:26 | 2017-05-03T12:22:26 | 90,142,452 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 638 | cpp | #include <fstream>
using namespace std;
ifstream fin("bete1.in");
ofstream fout("bete1.out");
int n,l,k,a,b,i,j,s,ma,mb,na,nb;
int main()
{
fin>>n;
fin>>a;
ma=a;na=1;s=a;
for(i=2;i<=n;i++)
{
fin>>a;
if(ma<a){ma=a;na=1;}
else if(ma==a)na++;
... | [
"irinam.bejan@gmail.com"
] | irinam.bejan@gmail.com |
8b0957cf5cd6adfbe73484bfd933ce224776d9dc | ce666f2d46e07fe15f77fa4ba00635f527f731c9 | /MajnkraftLikeGame/source/Graphic/Vertex.cpp | 8c76c0df86d5621f7a41ae0f4905c48207bd102a | [] | no_license | ProjektHra-FRI/MajnKraft | 7a21f227366143fbc9866fa5fc29f156d1323e28 | 27eee57fd1064c8211fd182100955f1bb57174c7 | refs/heads/master | 2021-01-15T14:17:56.325722 | 2015-07-20T09:28:00 | 2015-07-20T09:28:00 | 25,922,017 | 0 | 3 | null | 2015-07-20T09:28:00 | 2014-10-29T13:25:33 | C++ | UTF-8 | C++ | false | false | 2,088 | cpp | /*
* File: Vertex.cpp
* Author: Lukas
*
* Created on Streda, 2015, júl 15, 22:23
*/
#include <glm/detail/type_vec.hpp>
#include "Vertex.h"
Vertex::Vertex() {
}
Vertex::Vertex(glm::vec3 position) :
position(position) {
}
Vertex::Vertex(glm::vec3 position, glm::vec2 texturePosition) :
... | [
"lukiluk5000@windowslive.com"
] | lukiluk5000@windowslive.com |
ec8cc8c2fa1958b9fa94f2da32c9f7aa54d94cd6 | bdd6458bc1dfb60fdd9b4bfd4afeec20e740794b | /OOP Week 2/Polynomial/Polynomial.cpp | 326e174ec8de242d133dd2f5be9d01ae3099a15d | [] | no_license | NearHuscarl/C-Exercise | 876954746ab9a3fdd9c198d1188ef28829e109cc | e95bfaae8da3933d0adb895917eefd4d5bee1044 | refs/heads/master | 2021-01-17T14:05:33.070837 | 2017-05-31T13:15:30 | 2017-05-31T13:15:30 | 83,463,305 | 3 | 1 | null | 2017-03-17T13:10:33 | 2017-02-28T17:59:10 | C++ | UTF-8 | C++ | false | false | 3,125 | cpp | #include <iostream>
#include "Monomial.h"
#include "Polynomial.h"
using namespace std;
Polynomial::Polynomial(int m):
mMaxIndex(m),
mpMonomial(nullptr)
{
}
Polynomial::Polynomial(const Polynomial &x)
{
mMaxIndex = x.mMaxIndex;
mpMonomial = new Monomial[mMaxIndex];
for(int i = 0; i < x.mMaxIndex; i++)... | [
"16520846@gm.uit.edu.vn"
] | 16520846@gm.uit.edu.vn |
eacabdbc1a16f2de9c87c2554fee5e1c9053ee28 | 47ea71af72277f587908e26ad202eac5761aa166 | /Game/Player.h | b356f33c2d0d030036bb5fdd04018a6d3844da87 | [] | no_license | Polarist05/Game | 1de51a3b4cee77ed19fbd0bd6c308d67694701e1 | 11b1fa4760e9b5e51b116c5c5ee33e0892372156 | refs/heads/9/1/64 | 2023-07-20T07:49:48.623818 | 2021-08-31T20:30:12 | 2021-08-31T20:30:12 | 394,599,921 | 0 | 0 | null | 2023-08-20T06:36:47 | 2021-08-10T09:42:28 | C++ | UTF-8 | C++ | false | false | 435 | h | #pragma once
#include "SFML.h"
#include "GameBaseClass.h"
#include "WorldControl.h"
class Player:public GameBaseClass
{
public:
RectangleShape& Sprite();
void Start() override {
Sprite().setSize(Vector2f(50,50));
Sprite().setOrigin(Sprite().getSize().x/2, Sprite().getSize().y/2);
Sprite().setFillColor(Color::Gr... | [
"princeofpirate1@gmail.com"
] | princeofpirate1@gmail.com |
e715e32a400b25a09df9062f001a1443e9fdbbcf | 09fc85cd58c0ed10e8ad780a5b19e3c0fcde667d | /test/mocks/thread/scoped_lock_test.cpp | 4d02fd0435b522fd4f2193d8c0e821671e41c1ab | [
"MIT"
] | permissive | Watch-Later/centurion | 40edb7c359c7bb1f4f8f7f819180166a2e033923 | cc71543b6a07b4fb1f9cb24e1f39ac852bc66a3b | refs/heads/main | 2023-06-04T07:45:48.814126 | 2021-05-26T09:47:15 | 2021-05-26T09:47:15 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 484 | cpp | #include "thread/scoped_lock.hpp"
#include <gtest/gtest.h>
#include "core_mocks.hpp"
#include "thread_mocks.hpp"
class ScopedLockTest : public testing::Test
{
public:
void SetUp() override
{
mocks::reset_core();
mocks::reset_thread();
}
};
TEST_F(ScopedLockTest, ConstructorFailsToLockMutex)
{
cen::... | [
"albinoscar99@hotmail.com"
] | albinoscar99@hotmail.com |
7720359104484955da9656c558fef315ca28f77b | 777a75e6ed0934c193aece9de4421f8d8db01aac | /src/Providers/UNIXProviders/AssociatedCacheMemory/UNIX_AssociatedCacheMemory_SOLARIS.hxx | 5d6773af86f2d8adaf8930949c094cde59705cc8 | [
"MIT"
] | permissive | brunolauze/openpegasus-providers-old | 20fc13958016e35dc4d87f93d1999db0eae9010a | b00f1aad575bae144b8538bf57ba5fd5582a4ec7 | refs/heads/master | 2021-01-01T20:05:44.559362 | 2014-04-30T17:50:06 | 2014-04-30T17:50:06 | 19,132,738 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 140 | hxx | #ifdef PEGASUS_OS_SOLARIS
#ifndef __UNIX_ASSOCIATEDCACHEMEMORY_PRIVATE_H
#define __UNIX_ASSOCIATEDCACHEMEMORY_PRIVATE_H
#endif
#endif
| [
"brunolauze@msn.com"
] | brunolauze@msn.com |
f36cac28295e10384b710c22eafb9b1a6b2e1841 | 2b45998c5472e30ea7058603bca3a77700b86b70 | /구글코드잼/codejamB.cpp | 21372863e665f440cb5fce8a1b22c1c5aa3b7589 | [] | no_license | forybm/CodeMountain | c6b5e404bc5947f2a41df76331bb1ba078dcbe41 | 7a3c8bc76db7f57ad68638f800513d0ea0a7c5a2 | refs/heads/master | 2021-06-21T15:05:30.653346 | 2017-07-27T06:03:55 | 2017-07-27T06:03:55 | 98,499,311 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 455 | cpp | #include <stdio.h>
void func(int a)
{
char pancake[111];
for(int i = 0 ; i < 111; i++) pancake[i]=0;
for(int k = 1 ; k <= a ; k++){
int count =0;
scanf("%s",pancake);
for(int i=0;;i++)
{
if(pancake[i+1] == 0 ){
if(pancake[i] == '-') count++;
break;}
if(pancake[i]!=pancake[i+1]) count++;
}
... | [
"forybm1@naver.com"
] | forybm1@naver.com |
9e829babef0288f76818561e55933fb22cc7e5e6 | 492976adfdf031252c85de91a185bfd625738a0c | /lib/hkStubs/Havok/Physics/Constraint/Atom/hkpConstraintAtom.h | a97ac13725ccec25c7c27327b75b62ca214113a0 | [] | no_license | zeldaret/botw | 50ccb72c6d3969c0b067168f6f9124665a7f7590 | fd527f92164b8efdb746cffcf23c4f033fbffa76 | refs/heads/master | 2023-07-21T13:12:24.107437 | 2023-07-01T20:29:40 | 2023-07-01T20:29:40 | 288,736,599 | 1,350 | 117 | null | 2023-09-03T14:45:38 | 2020-08-19T13:16:30 | C++ | UTF-8 | C++ | false | false | 2,341 | h | #pragma once
#include <Havok/Common/Base/hkBase.h>
struct hkpConstraintAtom {
public:
enum AtomType {
TYPE_INVALID = 0,
TYPE_BRIDGE, // 1
TYPE_SET_LOCAL_TRANSFORMS, // 2
TYPE_SET_LOCAL_TRANSLATIONS, // 3
TYPE_SET_LOCAL_ROTATIONS, // 4
TYPE_BALL_SOCKET, ... | [
"leo@leolam.fr"
] | leo@leolam.fr |
c1a2273c0168ffbe9a39896baab045dab7b795b4 | 26f9034e57216b3ad4b09ffcd831025fe1d78ea9 | /code/SimpleFactory/Factory.cpp | e0864736a7ca18cd88e01ee13372664f6c1dba9f | [] | no_license | jasonblog/design_patterns | 217e3f9a987abb6c7ed604d33f50143782f140c3 | 35bf13d6382d6040244c91bf21f70fb0e08344a1 | refs/heads/master | 2020-05-19T03:27:10.446568 | 2015-09-06T04:38:15 | 2015-09-06T04:38:15 | 41,972,269 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 599 | cpp | ///////////////////////////////////////////////////////////
// Factory.cpp
// Implementation of the Class Factory
// Created on: 01-十月-2014 18:41:33
// Original author: colin
///////////////////////////////////////////////////////////
#include "Factory.h"
#include "ConcreteProductA.h"
#include "ConcreteProduc... | [
"gigigigi"
] | gigigigi |
ce948225c1717edbfbf09346dd49bab0b41d9a64 | 13d7ed402bcf152b922095c2433824ed0188f387 | /src/flock_simulation/boid.hpp | f88f79012d3771e69ae199111ec3e306d7562cb2 | [
"MIT"
] | permissive | wangtaoyijiu/flockingbird | 550260a81ddbc2bdc11626d667b8be153017bede | eed3e7cead4a37635625d1055fb0a830e6152d1b | refs/heads/master | 2023-05-31T20:04:05.519880 | 2021-06-03T09:00:21 | 2021-06-03T09:00:21 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 553 | hpp | #pragma once
#include "../utility/vector_operations.hpp"
#include <ostream>
namespace flockingbird {
class Boid {
public:
Boid(Vector2D positionIn, Vector2D velocity)
: position(positionIn)
, velocity(velocity) {}
Vector2D position;
Vector2D velocity;
friend std::ostream& operator<<... | [
"falcowinkler@icloud.com"
] | falcowinkler@icloud.com |
d946c89bbe660e4a1b6e674902ba558b6c7004b3 | e35dd506083ad5119d035f517f8487bd0d0090bb | /OBOZY/2010 - Październik/kkdigits.cpp | ce0e0a61652d84c2a11604f72e8016b606c22dd5 | [] | no_license | Neverous/xivlo08-11 | 95088ded4aa7aeebc28da7c22b255446e4a43bda | 7daa4f5125aece228fc2f067a455e24ff20eb3f4 | refs/heads/master | 2016-08-12T15:59:21.258466 | 2016-03-22T14:41:25 | 2016-03-22T14:41:25 | 54,478,420 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,660 | cpp | /* 2010
* Maciej Szeptuch
* XIV LO Wrocław
*/
#include<cstdio>
//#define DEBUG(args...) fprintf(stderr, args)
#define DEBUG(args...)
int number;
char numbers[10][5][3] = {
{
{'x', 'x', 'x'},
{'x', ' ', 'x'},
{'x', ' ', 'x'},
{'x', ' ', 'x'},
{'x', 'x', 'x'},
}, // 0
{
{' ', ' ', 'x'},
{' ', ' ', 'x... | [
"neverous@neverous.info"
] | neverous@neverous.info |
6ea16724e870e16b3e73454fa7c2fd6decd4a283 | c694da160d4365eb2d5aad404334c6ed1d41a75c | /src/usr/initservice/plugins/initsvcudparserfactory.H | 7d73aaad2c72ba55eec5175ae63df1d94c4de84d | [
"Apache-2.0"
] | permissive | 3mdeb/talos-hostboot | b00e00fa4613731c01338a73dcf39dededae971f | 8d49baa2180fc3cff78c393b19e39816dfa8606f | refs/heads/master | 2022-12-18T01:04:50.303567 | 2018-04-25T02:13:30 | 2018-05-20T06:31:19 | 299,345,985 | 1 | 0 | NOASSERTION | 2020-09-28T15:40:46 | 2020-09-28T15:06:58 | C++ | UTF-8 | C++ | false | false | 2,599 | h | /* IBM_PROLOG_BEGIN_TAG */
/* This is an automatically generated prolog. */
/* */
/* $Source: src/usr/initservice/plugins/initsvcudparserfactory.H $ */
/* ... | [
"iawillia@us.ibm.com"
] | iawillia@us.ibm.com |
c6b9197bebe9dae4ce00d7af1c80e4883e3ca9fd | db019496ccdec20ad159feec1f4d7e97d469cf11 | /http-standalone-esp8266/http-standalone-esp8266.ino | b4a339ab2ab859cf6a4c7233688829dc36fd0365 | [
"MIT"
] | permissive | ArGJolan/arduino-sketches | 8a2f3882fdec45abe41a941d179c7d9048a48670 | 25b7c4b4309faa76388f8e0ac5b563a12e8e8828 | refs/heads/master | 2023-04-04T07:41:44.430970 | 2021-04-17T09:24:04 | 2021-04-17T09:24:04 | 333,207,793 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 243 | ino | #include "http.h"
void setup() {
setupWifi();
}
void loop() {
if (wifiReady()) {
Serial.print(get("http://worldtimeapi.org/api/ip.txt"));
} else {
Serial.println("Error in WiFi connection");
}
delay(30000);
}
| [
"argjolan@gmail.com"
] | argjolan@gmail.com |
7f896605171bea64e9383cca49a521695b05319c | c06207424322bbfc54ec82e8a6b172da681803c7 | /N-Queens/N-Queens_3.cpp | 2ad97676411358b042fbd946cf7ac09d86798f98 | [
"MIT"
] | permissive | yergen/leetcode | 4e5c6ee218695ddc99852a04032f9ebdc99880aa | a40e99d511a76a6a18dbe9a30567190847e821f1 | refs/heads/master | 2023-03-15T14:45:16.495176 | 2023-03-05T14:11:19 | 2023-03-05T14:11:19 | 180,911,779 | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 1,709 | cpp | #include<iostream>
#include<vector>
#include<string>
using namespace::std;
class Solution {
private:
vector<vector<string> > res;
int upperlim;
public:
vector<vector<string> > solveNQueens(int n) {
upperlim = (1 << n) - 1;//低n位全部置1
vector<string> cur(n, string(n, '.'));
helper(0, 0, 0, cur, 0);
return res;... | [
"15010908626@163.com"
] | 15010908626@163.com |
7eb2037ec462942182a56567bae528f37c605105 | 469e80e06f9f55e1089b3e4ef7e36a4bcae17ca9 | /example/src/ofApp.h | 75adb0fb84f4f33e1d0220ba34aeccd70a75bdcb | [
"MIT"
] | permissive | leozimmerman/ofxAudioDecoder | 6da98e0c9dd8e09ee5c1105853c906895e11bb26 | 70e27952b7133151f6475c8f0f9fb26ae368fa8b | refs/heads/master | 2021-01-13T08:56:54.623306 | 2016-09-29T19:36:04 | 2016-09-29T19:36:04 | 69,600,465 | 1 | 1 | null | 2016-09-29T19:26:37 | 2016-09-29T19:26:37 | null | UTF-8 | C++ | false | false | 272 | h | #pragma once
#include "ofMain.h"
#include "ofxAudioDecoder.h"
class ofApp : public ofBaseApp {
public:
void setup();
void update();
void draw();
void dragEvent(ofDragInfo dragInfo);
void loadFile(string filename);
ofxAudioDecoder audio;
ofMesh left, right;
}; | [
"kyle@kylemcdonald.net"
] | kyle@kylemcdonald.net |
8647f337216316dc1f767e741230f897ebed476b | 7391feeb5b8e31f982422bdd74517e954d8c955e | /Crypto/testsuite/src/CryptoTest.h | 37a01f5588050a1a8f9c1d2896388ace789c9cc3 | [
"BSL-1.0"
] | permissive | AppAnywhere/agent-sdk | 62d762d0424fc2e8d4a98b79fb150e635adedd4d | c5495c4a1d892f2d3bca5b82a7436db7d8adff71 | refs/heads/master | 2021-01-11T15:22:01.406793 | 2016-09-01T16:36:20 | 2016-09-01T16:36:20 | 80,341,203 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 864 | h | //
// CryptoTest.h
//
// $Id: //poco/1.7/Crypto/testsuite/src/CryptoTest.h#1 $
//
// Definition of the CryptoTest class.
//
// Copyright (c) 2008, Applied Informatics Software Engineering GmbH.
// and Contributors.
//
// SPDX-License-Identifier: BSL-1.0
//
#ifndef CryptoTest_INCLUDED
#define CryptoTest_INCLUDED
#in... | [
"guenter.obiltschnig@appinf.com"
] | guenter.obiltschnig@appinf.com |
730855bb297bb68fd89f456b252c1bd23a37d35e | ddcadc460cd2ced213396de76fcc53f61866998b | /Tutorial Projects/02 2019 Ultimate Unreal C++ Guide/Ultimate/Source/Ultimate/UltimateGameMode.cpp | 08598fe85503ea7bb37658ef4c5d876aef4c395e | [
"MIT"
] | permissive | mukobi/Unreal-Engine-Learning | 8ae3f35567cf2ddb6f8bbfd2ce94d5a243768ed1 | 90048cd46342ffb8e9c5b9e80c022fafbe547ae8 | refs/heads/master | 2022-11-01T13:18:01.291717 | 2020-06-15T00:53:06 | 2020-06-15T00:53:06 | 271,365,476 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 996 | cpp | // Copyright Epic Games, Inc. All Rights Reserved.
#include "UltimateGameMode.h"
#include "UltimateCharacter.h"
#include "UObject/ConstructorHelpers.h"
#include "UltimateGameState.h"
AUltimateGameMode::AUltimateGameMode()
{
// set default pawn class to our Blueprinted character
static ConstructorHelpers::FClassFind... | [
"gabrielmukobi@gmail.com"
] | gabrielmukobi@gmail.com |
5e5a77c52ab0a61894171433c8f6845cec11d2eb | aedb5d78cbe6acaf9becea0ea7b43c46a9584f5e | /src_client/related/databasemanage/pages/systemmainpage/filedeal/uploadingdatafile.h | d01db8a149059a8f7d996fa0dc2e9b1fb2201850 | [] | no_license | wey580231/Framewrok | 60a922d4cc868b0d0b7f87a529eab2724ca3c18f | 1050b079997a975dcc7b64e1bfa5eb8acb72d8c4 | refs/heads/develop | 2023-03-15T04:36:18.608430 | 2021-03-23T14:30:51 | 2021-03-23T14:30:51 | 326,935,482 | 0 | 1 | null | 2021-03-23T14:30:52 | 2021-01-05T08:31:30 | C++ | GB18030 | C++ | false | false | 1,502 | h | /*!
* @brief 发送文件
* @details
* @author yzg
* @version 1.0
* @date 2021.03.15 16:31:25
* @warning
* @copyright NanJing RenGu.
* @note
*/
#pragma once
#include <QObject>
#include <QThread>
#include <QFileInfo>
#include <QFile>
#include <base/util/rutil.h>
#include <commondefines/protocol.h>
#in... | [
"45348493+YZG030455@users.noreply.github.com"
] | 45348493+YZG030455@users.noreply.github.com |
2a4828e9a5f6fc848e24dc1feeb6f63ea66eebb8 | 3c188593997cc06eab489328d81a661de16eb9fe | /src/qt/test/test_main.cpp | c8405a17e7fbcac036c396d184d2f59bfbb99417 | [
"MIT"
] | permissive | yangchigi/BitHao-Source | 304fc1ec94e985090ccced61a008defd61a523dc | 76f330020a917d6680d3d15867773afc6887d541 | refs/heads/master | 2020-05-05T12:49:45.934520 | 2019-02-28T05:32:44 | 2019-02-28T05:32:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,542 | cpp | // Copyright (c) 2009-2018 The Bitcoin Core developers
// Copyright (c) 2014-2018 The Dash Core developers
// Copyright (c) 2017-2018 The BitHao Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#if defined(HAVE_C... | [
"48000899+cqcrypto@users.noreply.github.com"
] | 48000899+cqcrypto@users.noreply.github.com |
1b11a86801ec39f8aa545b4b0bf4359dd2644630 | 04b1803adb6653ecb7cb827c4f4aa616afacf629 | /components/spellcheck/common/spellcheck_struct_traits.cc | 2f0c4efc3732b805f1b8a69262166bba6f61042e | [
"BSD-3-Clause"
] | permissive | Samsung/Castanets | 240d9338e097b75b3f669604315b06f7cf129d64 | 4896f732fc747dfdcfcbac3d442f2d2d42df264a | refs/heads/castanets_76_dev | 2023-08-31T09:01:04.744346 | 2021-07-30T04:56:25 | 2021-08-11T05:45:21 | 125,484,161 | 58 | 49 | BSD-3-Clause | 2022-10-16T19:31:26 | 2018-03-16T08:07:37 | null | UTF-8 | C++ | false | false | 1,672 | cc | // 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.
#include "components/spellcheck/common/spellcheck_struct_traits.h"
#include "mojo/public/cpp/base/string16_mojom_traits.h"
namespace mojo {
spellcheck:... | [
"sunny.nam@samsung.com"
] | sunny.nam@samsung.com |
165a2b396066b738ac6a78fe5a92445728505644 | 903767e9e1bd7ae4c273621f2787e8e93ed38553 | /Codeforces/ECR/97/E.cpp | 8146890cefdac3316c05cd717677383bbfd9f41f | [] | no_license | itohdak/Competitive_Programming | 609e6a9e17a4fa21b8f3f7fc9bbc13204d7f7ac4 | e14ab7a92813755d97a85be4ead68620753a6d4b | refs/heads/master | 2023-08-04T08:57:55.546063 | 2023-08-01T21:09:28 | 2023-08-01T21:09:28 | 304,704,923 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,073 | cpp | #include <bits/stdc++.h>
#include <print.hpp>
using namespace std;
#define ll long long
#define ld long double
#define REP(i,m,n) for(int i=(int)(m); i<(int)(n); i++)
#define rep(i,n) REP(i,0,n)
#define RREP(i,m,n) for(int i=(int)(m); i>=(int)(n); i--)
#define rrep(i,n) RREP(i,(n)-1,0)
#define all(v) v.begin(), v.end()... | [
"itohdak@gmail.com"
] | itohdak@gmail.com |
2bddf932a0ea76290b0d19ee699b69a25ee8301f | babf1a2d4a38f6d0dd952907a2d6f732a93c0814 | /Program/Practice/ThiCK.cpp | 129d3a764afa898edd1c63aca4a308f73ef02e62 | [] | no_license | binhkio123/Coding | 059601abb0faac7fa8683420efd9f2887d8b3404 | 002820431bbafe9818f6008ec7c2efe99c29819f | refs/heads/main | 2023-08-03T10:07:26.426582 | 2021-09-24T05:49:45 | 2021-09-24T05:49:45 | 409,506,796 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,147 | cpp | #include<stdio.h>
#include<string.h>
#include<windows.h>
struct Olympic
{
int ID;
char Nation[4];
char Name[30];
float R[3]; //so thuc >0 <20 va =0 neu pham quy
float FR;
};
Olympic VDV[1];
void showMenu(){
system("cls");
printf("\n-----------CHUONG TRINH OLYMPIC MON NHAY XA-----------");
... | [
"vuanhquan01@gmail.com"
] | vuanhquan01@gmail.com |
256210df1536bbc17038c288876c816ee7bd5497 | 0ecb5f6911965c08b8a4d4297a10584b2e720310 | /Libraries/MDStudio-SDK/Source/MDStudio/PortableCore/UI/image.h | 4da578cdd8ca5f60c7b43d6710d01349041df241 | [
"Apache-2.0"
] | permissive | danodus/studioengine | 01c368835f8f8503b9ced298ec5da927621be67c | 1a18d373b26575b040d014ae2650a1aaeb208a89 | refs/heads/main | 2023-05-26T11:13:11.355483 | 2021-05-27T15:17:06 | 2021-05-27T15:17:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,268 | h | //
// image.h
// MDStudio
//
// Created by Daniel Cliche on 2014-07-15.
// Copyright (c) 2014-2020 Daniel Cliche. All rights reserved.
//
#ifndef IMAGE_H
#define IMAGE_H
#include <memory>
#include <string>
#include "size.h"
namespace MDStudio {
class Image {
bool _textureLoaded = false;
unsigned char* ... | [
"dcliche@meldora.com"
] | dcliche@meldora.com |
21c2ed4a2d4071359d8844a56ce78a557b10934f | 835b5664e703a224b598afd373286e7bd711efbb | /tri_engine/include/core/kernel/io/tri_file.hpp | b53722d0c52e2f65a50c668eb480b2c0e015bf12 | [] | no_license | doscoy/tri_engine | a4f70b7331b4ad0a1dc2a735dc59e7aabbdd9a82 | 429508946355563ff4fa0d09abde331517021137 | refs/heads/master | 2021-01-17T08:53:20.657417 | 2016-01-13T12:13:30 | 2016-01-13T12:13:30 | 4,419,828 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,251 | hpp | ////////////////////////////////////////////////////////////////////////
// Tri ENGINE
// copyright 2012... Tri ENGINE project team.
//
// Website: http://tri-engine.aquariuscode.com/
// License: https://github.com/doscoy/tri_engine/wiki/License
////////////////////////////////////////////////////////////////////... | [
"doscoy.t@gmail.com"
] | doscoy.t@gmail.com |
c8a43c505d0117633f46e8c939807e5542669197 | 9d917ee288f3071c0c2dfd7a9d192a0d1a3ca87a | /AMGLib/AMG_Thread.cpp | a0575592d50cd8c136130df2d250a19290e834f2 | [
"Zlib"
] | permissive | PSP-Archive/AMGLib-Plus | ce7cf9ebda7ccceb703244b7834f4f7cbe7b1d3d | c9ced0ed88c766a0eea7e8c357fe13b88bd069bb | refs/heads/main | 2023-07-19T03:41:14.642301 | 2021-09-18T15:51:24 | 2021-09-18T15:51:24 | 407,902,298 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,895 | cpp | // Includes
#include <pspkernel.h>
#include <pspctrl.h>
#include <pspmoduleinfo.h>
#include <pspthreadman.h>
#include <psppower.h>
#include <pspdisplay.h>
#include <pspgu.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include "AMG_Thread.h"
#include "AMG_3D.h"
#ifndef AMG_COMPILE_ONELUA
// Variables
A... | [
"pierluigiortenzi@gmail.com"
] | pierluigiortenzi@gmail.com |
8c957a09b258b927a3f6c69efda8c96dfc659205 | 502983baddff63bbf87f8e25fcd8681d8257b6f5 | /src/ESP32-devcam.cpp | c79d7a700523550771a22dcacb2298b46ea9937b | [
"MIT"
] | permissive | jelinj8/TenDollarWebcam | d3d1a3532dab90e7c7b19103da6affabbecfdb0e | 7854a6d592c1e5beca73298ecc764f32c9baf79a | refs/heads/master | 2023-04-14T13:59:58.739456 | 2023-03-26T19:21:42 | 2023-03-26T19:21:42 | 259,108,087 | 0 | 0 | null | 2020-04-26T18:49:27 | 2020-04-26T18:49:27 | null | UTF-8 | C++ | false | false | 9,719 | cpp | #include <Arduino.h>
// #define USEBOARD_TTGO_T
//
#define USEBOARD_AITHINKER
// #define USEBOARD_ESP_CAM
// #define ENABLE_OLED //if want use oled, turn on this macro
//
#define ENABLE_WEBSERVER
//
#define ENABLE_RTSPSERVER
// when pulled low, forces config (AP) mode.
#define FACTORYRESET_BUTTON 12
#define FLASH_L... | [
"jakub.jelinek@gmail.com"
] | jakub.jelinek@gmail.com |
ef4f8126f4fd2419a75ec54013eab9d5bdca5e56 | aa54d7be40f06d93a6fe2bdc7ccbe530a126d8c4 | /cli/src/demo/ui_test_sequence.cpp | 9a01fb2b680941b650fa98c574b5e899093c2b11 | [] | no_license | shipduck/cham-cham-cham | 1365a97ef565cc036bd3e2f8321c15799aa84fff | d6ddebea7fd7e385820b97693c1fd9ea643ae2a5 | refs/heads/master | 2016-09-06T03:19:41.333661 | 2013-08-28T13:15:20 | 2013-08-28T13:15:20 | 10,620,263 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,129 | cpp | // Ŭnicode please
#include "stdafx.h"
#include "ui_test_sequence.h"
#include "base/lib.h"
#include "irr/hmd_gui.h"
using namespace irr;
using namespace core;
using namespace video;
using namespace scene;
scene::ISceneNode *test = nullptr;
scene::ICameraSceneNode* fpsCamera = nullptr;
hmd_ui::Manager uiMgr;
UiTest... | [
"libsora25@gmail.com"
] | libsora25@gmail.com |
c93e513083fda526b54b15d90476f00bb9a05bd1 | 6b2a8dd202fdce77c971c412717e305e1caaac51 | /solutions_5648941810974720_1/C++/shishirt22/codejam.cpp | aac7379388f2d2975e8842ea57d08b13d193b6e5 | [] | 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 | 2,388 | cpp | #include <bits/stdc++.h>
using namespace std;
#define mod 1000000007
#define ll long long int
#define pb push_back
#define mp make_pair
#define lf long double
#define VI vector<ll>
#define ppl pair<ll,ll>
#define ppi pair<int,int>
#define F first
#define S Second
#define ML map<ll,ll>
#define itm map<ll,l... | [
"alexandra1.back@gmail.com"
] | alexandra1.back@gmail.com |
e8e1f4494f9231b529c8b17de76ceb6e04a9b759 | a9a9d4d58e1f2e9e043c9e4253604b8c6325811b | /src/qt/bitcoinaddressvalidator.cpp | c711d5c7087636f6ea959df6a91604580285df53 | [
"MIT"
] | permissive | 26rahulsingh/funbyte | d193d9989bdd177fd6a7548e66d4b85838771f4a | b3f7cc83157538b3f030ea34a6930e66c5c3da56 | refs/heads/master | 2021-04-06T08:14:38.933092 | 2018-03-12T10:00:43 | 2018-03-12T10:00:43 | 124,378,018 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,709 | cpp | // Copyright (c) 2011-2014 The Bitcoin Core developers
// Copyright (c) 2014-2017 The Dash Core developers
// Copyright (c) 2017-2018 The FunByte Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "bitcoina... | [
"singh.rahul26@hotmail.com"
] | singh.rahul26@hotmail.com |
22db2bd3853ff7a9d6b2add7035ba632fe8bdbe8 | 9176cec35f7e4242c5600ec20f9df86d4f0623b3 | /USpeak/servertcp.cpp | 21db6c99f0b13560e3cc76ec3117773c060dfa48 | [] | no_license | krdcl/USpeak | 48220716daf64ad7b3747c9d0d9ea09a7c414c05 | 0b1910bff510962b9cee73ae693f0f0ca8cecd28 | refs/heads/master | 2021-01-10T08:34:20.726530 | 2018-09-26T07:23:29 | 2018-09-26T07:23:29 | 45,999,762 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,375 | cpp | #include "servertcp.h"
ServerTCP::ServerTCP(QObject *parent) : QTcpServer(parent)
{
connect(this, SIGNAL(newConnection()),
this, SLOT(newClient()));
host_adress = QHostAddress::Any;
port = 9999;
time_out_wait = 300;
}
ServerTCP::~ServerTCP()
{
foreach(QTcpSocket * cliento,clients)
... | [
"krdcl@mail.ru"
] | krdcl@mail.ru |
1bc9816da2aaeddbf334d9388f3091c8403ee8d2 | 609fa5bdce507d6613e62bb71838909a3d5b7cb7 | /WorldofWombats/HabitatWombat/worker.cpp | 7444f02d90cfe2aaeb50017be99057c93aab3f48 | [] | no_license | great-communication/worldofwombats | 5e3c907b11289b57c8d7477ead86d821e669a259 | 0b47699b481f8f2e579e7706be114ff46b4d8439 | refs/heads/master | 2020-03-21T21:42:06.423006 | 2018-06-28T23:54:06 | 2018-06-28T23:54:06 | 139,078,762 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 14,730 | cpp | #include "worker.h"
#include "herdmember.h"
#include "registry.h"
#include "herder.h"
#include "imagepainter.h"
void Worker::setup(QString levelName, QSize backgroundSize) {
global = new Global(this); // Is it safe to have "this" as parent!?
global->setup();
worldBuilder = new WorldBuilder(this);
wo... | [
"tjiitjo@yahoo.com"
] | tjiitjo@yahoo.com |
0d8d3ecb45b9710a637907b2590b68bf7b3e0092 | 1596b3e365d5169e6b0590a4904fb5f3a71ca2fc | /VideoServer/libs/unimrcp/platforms/umc/src/umcconsole.cpp | 3165854082ea863275fefd530c7d4c05dc412247 | [
"LGPL-2.1-or-later",
"Apache-2.0",
"LicenseRef-scancode-public-domain",
"FSFUL",
"MIT"
] | permissive | zengfanmao/mpds | 7be4bc35be28b37b475ee0250236cb7450327ba6 | c2bba464eaddc9ec70604a8614d84c5334461e8e | refs/heads/master | 2022-12-11T08:29:52.181440 | 2020-01-16T08:49:09 | 2020-01-16T08:49:09 | 234,209,365 | 0 | 0 | MIT | 2022-12-08T02:39:45 | 2020-01-16T01:36:39 | C | UTF-8 | C++ | false | false | 8,229 | cpp | /*
* Copyright 2008-2014 Arsen Chaloyan
*
* 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 ag... | [
"zengfan007@126.com"
] | zengfan007@126.com |
4b41e25211f3f3a10f428e50d706f21e73befb70 | b18bb35192ba2e93685f754763872350fe2afbd5 | /9_2(线性群体)/9_4(Array).cpp | affd027a7f9d5fbea2eef35e3a8be4bb5fe9aa51 | [] | no_license | Shawn070/CPP | 4c890a5882af6aa190f6f30e42ccfa17c5109fb9 | 942096a9c78820987384df9ec0048b6fc552c06e | refs/heads/master | 2021-01-20T00:15:57.332018 | 2019-04-04T06:48:52 | 2019-04-04T06:48:52 | 101,275,015 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 984 | cpp | // 9_4.cpp
#include<iostream>
#include<iomanip>
#include "Array.h"
using namespace std;
int main(){
Array<int>a(10); // 用来存放质数的数组,初始状态有10个元素
int count=0;
int n;
cout<<"Enter a value>=2 as upper limit for prime numbers: ";
cin>>n;
for(int i=2; i<=n; i++){
// 检查i是否能被比它小的质数整除
... | [
"307882919@qq.com"
] | 307882919@qq.com |
bf03c52ee9fdcb59d16c035ace9c2fad2efc3aa7 | e51d009c6c6a1633c2c11ea4e89f289ea294ec7e | /xr2-dsgn/sources/xray/input/gamepad.h | ba2784871a791827764176f6ce150d57fff70ace | [] | no_license | avmal0-Cor/xr2-dsgn | a0c726a4d54a2ac8147a36549bc79620fead0090 | 14e9203ee26be7a3cb5ca5da7056ecb53c558c72 | refs/heads/master | 2023-07-03T02:05:00.566892 | 2021-08-06T03:10:53 | 2021-08-06T03:10:53 | 389,939,196 | 3 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 1,731 | h | ////////////////////////////////////////////////////////////////////////////
// Created : 21.11.2008
// Author : Dmitriy Iassenev
// Copyright (C) GSC Game World - 2009
////////////////////////////////////////////////////////////////////////////
#ifndef XRAY_INPUT_CONTROLLER_H_INCLUDED
#define XRAY_INPUT_CONTROLLER_... | [
"youalexandrov@icloud.com"
] | youalexandrov@icloud.com |
23ada58cfe1bc59ff54786b7541f6a2269e71522 | ddc7ed6ca7e543f5887b800ca297768652e96e82 | /protected.cpp | edc846ae48f38f7d1d716c6829c4faf3f8f22733 | [] | no_license | iversongit/20160315 | 416a7ba8e4dee718fbd3f170cec3202e4b9b40ce | 337bd4cf1f22cda81f2f49d8a11adc0ad4872d6c | refs/heads/master | 2021-01-10T10:27:24.962179 | 2016-03-15T16:21:55 | 2016-03-15T16:21:55 | 53,936,779 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 599 | cpp | ///
/// @file protected.cpp
/// @iverson (1564329410@qq.com)
/// @date 2016-03-15 04:33:07
///
#include <iostream>
using std::cout;
using std::endl;
class Base{
public:
void display(){
cout<<"_x --> "<<_x<<endl;
}
protected: //这是另一种形式的抽象类
Base(int x) : _x(x)
{
cout<<"Base(int)"<<endl;
}... | [
"1564329410@qq.com"
] | 1564329410@qq.com |
4966e4e2475b3826005a4f07e493b053c9ec0a6b | f36ad3bcb527ae00973fbb93a98f8b51e54d0277 | /UVa/Volume 1/146 - ID Codes.cpp | 2fee399de95a5f80bd6ca5c8194c8125dac4441d | [] | no_license | ianyong/competitive-programming | 739a1a6e3c353707caa23697c580e601c72f8686 | d0dd5d126cdf424715b51442332ce141a1e3a264 | refs/heads/master | 2022-08-27T06:37:38.822045 | 2022-08-19T09:16:32 | 2022-08-19T09:16:32 | 175,630,952 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 333 | cpp | #include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;
char code[51];
int main() {
while (true) {
scanf("%s", code);
if (strcmp(code, "#") == 0) {
break;
}
next_permutation(code, code + strlen(code)) ? printf("%s\n", code) : printf("No Successor\... | [
"ianyongyc@gmail.com"
] | ianyongyc@gmail.com |
6941ecea0b4d5b64f8ec7085a7b8659e0114c479 | f4e17640afef6d1b4d4a85f583a90e37f705dbd5 | /B2G/gecko/content/html/content/src/nsHTMLTableSectionElement.cpp | e42cae49bfafb05407ba3acf421f33b9999a30d8 | [
"LicenseRef-scancode-unknown-license-reference",
"Apache-2.0"
] | permissive | wilebeast/FireFox-OS | d370362916f0c5a5408fa08285dbf4779f8b5eb3 | 43067f28711d78c429a1d6d58c77130f6899135f | refs/heads/master | 2016-09-05T22:06:54.838558 | 2013-09-03T13:49:21 | 2013-09-03T13:49:21 | 12,572,236 | 4 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 9,297 | cpp | /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* 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 one at http://mozilla.org/MPL/2.0/. */
#include "mozilla/Util.h"
#includ... | [
"info@hadrons.me"
] | info@hadrons.me |
e6193e9daffca76d38ff5867a3f476eb73173ae4 | 7c7924348498b1183ed9d1a7a3b4682d4bd0aa1a | /sort algorithms/internal sort/selection/c++/selection.h | 28b3040e8b3f3095a9238f15f7f9820d23cfeb41 | [
"MIT"
] | permissive | rafaelcn/algorithms | c2877aebe66b3094a59091f7f4fa306453c1346d | feaa976317be7bb32849b528de768dc9ed8b4001 | refs/heads/master | 2023-07-31T14:18:37.987969 | 2023-07-11T04:20:33 | 2023-07-11T04:20:33 | 102,994,259 | 0 | 0 | MIT | 2018-10-19T00:57:33 | 2017-09-10T01:00:21 | C | UTF-8 | C++ | false | false | 1,460 | h | /** MIT License
*
* Copyright (c) 2017-2018 Rafael C. Nunes
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, cop... | [
"rafaelnunes@engineer.com"
] | rafaelnunes@engineer.com |
7428cc4c77807397b73eb2c66a8d09bb067500fc | 4210a2eb943c89e1e3339466d72dd45cc333bdde | /lib/src/DJI_API.cpp | 8f44c140ea8fd21a04045ad1d0579e1ed346bf2f | [] | no_license | ZKRT/MainBoardHardwareTest | 0ff9d01bb09895ce5022114d0d177162031a1911 | e32c5f899de409f26f3110d8343e74caa04c337b | refs/heads/master | 2021-01-12T05:45:31.823767 | 2017-03-31T09:17:03 | 2017-03-31T09:17:04 | 77,188,312 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 23,376 | cpp | /** @file DJI_API.cpp
* @version 3.1.7
* @date July 1st, 2016
*
* @brief
* Core API for DJI onboardSDK library
*
* @copyright 2016 DJI. All right reserved.
*
*/
#include "DJI_API.h"
#include <string.h>
#include <stdio.h>
using namespace DJI;
using namespace DJI::onboardSDK;
#ifdef USE_ENCRYPT
uint8_t D... | [
"413899391@qq.com"
] | 413899391@qq.com |
79eb77ef3565cf95d061b8ca69ad1ea99a2b0cd2 | 1af49694004c6fbc31deada5618dae37255ce978 | /components/page_info/android/connection_info_view_android.cc | b3e1b8ced50455efa48a8a89340600c396dd017d | [
"BSD-3-Clause"
] | permissive | sadrulhc/chromium | 59682b173a00269ed036eee5ebfa317ba3a770cc | a4b950c23db47a0fdd63549cccf9ac8acd8e2c41 | refs/heads/master | 2023-02-02T07:59:20.295144 | 2020-12-01T21:32:32 | 2020-12-01T21:32:32 | 317,678,056 | 3 | 0 | BSD-3-Clause | 2020-12-01T21:56:26 | 2020-12-01T21:56:25 | null | UTF-8 | C++ | false | false | 5,978 | cc | // Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/page_info/android/connection_info_view_android.h"
#include "base/android/jni_android.h"
#include "base/android/jni_array.h"
#include... | [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
4137a3f7c33e7b29753042601c841c2b0fa23a2f | 61c850d2a9de6468a885f671e4e298f217a90361 | /cgi/graphics.cpp | b4c5480e5b499bf5b34887efb5919e1a5b1bfeac | [
"Apache-2.0"
] | permissive | Cyraphim/Console-Graphics-Interface | bdd4e1bea87333ef658696320fac4e46093c5571 | 783b8f04adaa820761626c964e3bba20f7bea901 | refs/heads/main | 2023-08-27T13:02:23.943060 | 2021-09-16T14:12:20 | 2021-09-16T14:12:20 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,068 | cpp | #include "graphics.h"
#define NOMINMAX
#include <Windows.h>
#include "../cgi.h"
#define STB_IMAGE_IMPLEMENTATION
#include "stb_image.h"
#include <thread>
#include <mutex>
namespace cgi
{
namespace graphics
{
// Singleton init
CConsoleBuffer* CConsoleBuffer::m_instance = NULL;
void... | [
"daserialgenius@gmail.com"
] | daserialgenius@gmail.com |
534891387415c5a45c4388b01b36a5004c7a3a86 | 40b4b96bc62b242a887442728f36fa1b8439ddd5 | /format/PascalToMdl.h | 74024258f66a6b12c5a55e6e4ca394443ae7c56b | [] | no_license | javierfigueroacl/MemoriaUSM | 5838373771c7f00380bbee6bd887d1d12bdb339a | 44abb83fcbd1d0500adfa1cd3055e59b68f386ec | refs/heads/master | 2021-01-12T06:21:38.658358 | 2017-08-07T02:28:53 | 2017-08-07T02:28:53 | 77,346,980 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 218 | h | #ifndef PascalToMdl_h
#define PascalToMdl_h 1
#include <string>
#include <cctype>
#include <iostream>
#include <vector>
#include "../read_write/ReadPascal.h"
#include "../read_write/WriteMdl.h"
#endif
| [
"javier.figueroag@alumnos.usm.cl"
] | javier.figueroag@alumnos.usm.cl |
9d2a9c925aaeb5e5d914b68005d183910f61aafb | 2d2e951b42cac90d480d4e250e906c0ff19e8675 | /find_average/src/lib/solution.h | 1abc923c6a87e3ab7b2ab93b1fd868e42d855f05 | [] | no_license | YoeYang/EE599-HW1 | 222248f756d1ad3a7871801b1449d30e43f58ec1 | 8362b1e2c606b793c71b8ddcc71420ae942f901d | refs/heads/master | 2020-12-12T22:45:12.390070 | 2020-01-23T03:17:27 | 2020-01-23T03:17:27 | 234,248,483 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 159 | h | #ifndef TEMPLATE_SOLUTION_H
#define TEMPLATE_SOLUTION_H
#include <vector>
class Solution {
public:
double FindAverage(std::vector<int> &inputs);
};
#endif | [
"yoe@yoedeMacBook-Pro.local"
] | yoe@yoedeMacBook-Pro.local |
2b0c1193924d53ba3aea6ba601a2df3c332136e5 | 83fa0c25184c5b7907d1c63a67c9b8d56482569a | /Maximum_Depth_of_Binary_Tree.cpp | e23edc9cc22583443c925f93aec5e872101cf741 | [] | no_license | ouyangz/LeetCode | 56313e3326b5da2ff1ddad25d0a6855968f80c91 | 0402323e978a1e76f00ab404b14cc5cd95aadfbd | refs/heads/master | 2020-07-09T07:11:02.990404 | 2014-03-19T08:18:28 | 2014-03-19T08:18:28 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 546 | cpp | /**
* Definition for binary tree
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
class Solution {
public:
int maxDepth(TreeNode *root) {
if (root == NULL)
return 0;
else{
... | [
"soph.oyzj@gmail.com"
] | soph.oyzj@gmail.com |
d822a2ab5a6a624ada2edfd92a9d874b7bfe6fa3 | 198f071c0f3db78fc2b2209a2ab7da65f8f3b66e | /Contests/Olympiads/[KOI] Korean Olympiad of Informatics/KOI 2016/고등1-리조트.cpp | 5cdfa5f7869c79a5c6558ff9f9691cbb6b88876f | [] | no_license | gratus907/Gratus_PS | a33924836f67c14c3b1f8d4eecdfea73cd5cb98f | 7efdc7f37f268dccd2f8a0ec562aa7a4a67adf15 | refs/heads/master | 2023-07-27T03:43:17.731930 | 2021-08-31T17:26:54 | 2021-08-31T17:26:54 | 235,131,504 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 928 | cpp | #include <bits/stdc++.h>
#pragma GCC optimize("O3")
#pragma GCC optimize("Ofast")
#pragma GCC target("avx,avx2,fma")
#define ll long long
#define eps 1e-7
#define all(x) ((x).begin()),((x).end())
#define usecppio ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);
using namespace std;
using pii = pair<int, int>;
int INF = ... | [
"gratus907@naver.com"
] | gratus907@naver.com |
ba6566d4a4afac256faf332b98a28b9fafdb2b6d | ea2bb9b2b70ac5854248801371a236c4ea9c03c8 | /Code/Filter/vtkMimxPolyDataSingleSourceShortestPath.h | d60bfeda41d649ea1d371423d7da7bd37f3a85c1 | [] | no_license | Piyusha23/IAFEMesh | 557de885d80ac3575ece146cf97f1a807bfeeb4e | e91b34c9eaa9c8ecc4ebb5d16f4c13f330d75c9f | refs/heads/master | 2021-10-27T03:19:25.279119 | 2019-04-15T17:11:46 | 2019-04-15T17:11:46 | 181,531,319 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,323 | h | /*=========================================================================
Program: MIMX Meshing Toolkit
Module: $RCSfile: vtkMimxPolyDataSingleSourceShortestPath.h,v $
Language: C++
Date: $Date: 2013/01/02 20:39:31 $
Version: $Revision: 1.2 $
Musculoskeletal Imaging, Modelling and Experimentation (MIM... | [
"gadepiyusha@gmail.com"
] | gadepiyusha@gmail.com |
93a68c03026f7592042bbc42d4390c9fddf31b1e | 617a4f71917a92569c66d2d7789437d0cf1728d0 | /src/test/uint256_tests.cpp | e5e50c453d00da14c5e9a287a2f00ece5dca8e85 | [
"MIT"
] | permissive | minblock/luascoin | db251af5feda26125d436ea87a3b5cfc6d8ba5a7 | 499334f8d5c50dfe6c146a1cddacf2ee5c76f256 | refs/heads/master | 2023-08-06T03:32:34.218016 | 2023-07-29T00:36:56 | 2023-07-29T00:36:56 | 238,172,510 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,670 | cpp | // Copyright (c) 2011-2015 The Bitcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "arith_uint256.h"
#include "uint256.h"
#include "version.h"
#include "test/test_luascoin.h"
#include <boost/test/uni... | [
"38344452+minblock@users.noreply.github.com"
] | 38344452+minblock@users.noreply.github.com |
3d7f76720b2a81f05aa686f4efbde8225ed6539a | 9c2b4dfe2ccdcb5cce1a6a9ed93361660252df5e | /nei_result.h | 8627471be527f24adc9638972937dd3f808a1836 | [] | no_license | crazytyt/neitianfa | 980c9b67865477b30cbd16c0a53e2cd24dece7b0 | a5bc1fa627bffa992085be0df22e01e9da53d922 | refs/heads/master | 2021-01-13T08:44:51.632658 | 2017-03-09T02:04:22 | 2017-03-09T02:04:22 | 71,974,242 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 618 | h | #ifndef NEI_RESULT_H
#define NEI_RESULT_H
#include <QWidget>
namespace Ui {
class nei_result;
}
class nei_result : public QWidget
{
Q_OBJECT
public:
explicit nei_result(QWidget *parent = 0);
~nei_result();
int X1[15], X2[15];
int mErr, mCorr;
double mErrRate;
double X1max, X1min, X2max, X... | [
"tforjob@163.com"
] | tforjob@163.com |
8999168a40ad0c143090d3d2aba478c895919a42 | 737bd9818fb712801371d3552a6ee41d92bbd33e | /src/engine_core/wme_base/SXArray.cpp | 139ded8b31a06f6f5309d82a49d2c14076c79f78 | [
"MIT"
] | permissive | segafan/wme1_jankavan_tlc_edition-repo | 9bf8afb542d3a4a3949bf61c881927df4942410e | 72163931f348d5a2132577930362d297cc375a26 | refs/heads/master | 2020-12-24T17:54:12.910112 | 2015-04-26T23:03:42 | 2015-04-26T23:03:42 | 38,780,832 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,697 | cpp | // This file is part of Wintermute Engine
// For conditions of distribution and use, see copyright notice in license.txt
// http://dead-code.org/redir.php?target=wme
#include "dcgf.h"
#include "SXArray.h"
IMPLEMENT_PERSISTENT(CSXArray, false);
////////////////////////////////////////////////////////////... | [
"Jan Kavan@localhost"
] | Jan Kavan@localhost |
a90432779f18b115e669cb6d2ec9269e673d5761 | 4dc8131cda9ef4e3c6d0a5d1555ffa58d791c63a | /work/work/src/XF_amad/xf/core/behavior.cpp | 86b81d121313870c8c2bf84d076ad50c5b2fda84 | [] | no_license | BorgeatRemy/XF_PTR | 806cc2166a4cfb9cc267c9eb9c7164aa121ddc99 | 3877e6197b344eb4077ff4a008fbed234e2b437a | refs/heads/master | 2021-02-10T12:04:31.888615 | 2020-03-03T11:27:29 | 2020-03-03T11:27:29 | 244,379,950 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,510 | cpp | #include <assert.h>
#include "xf/xf.h"
#include "xf/interface/resourcefactory.h"
#include "xf/interface/dispatcher.h"
#include "xf/timeout.h"
#include "xf/initialevent.h"
#include "xf/behavior.h"
#include "trace/trace.h"
using interface::XFResourceFactory;
XFBehavior::XFBehavior(bool ownDispatcher)
{
this->_hasOw... | [
"48057941+BorgeatRemy@users.noreply.github.com"
] | 48057941+BorgeatRemy@users.noreply.github.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.