blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 3 264 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2
values | repo_name stringlengths 5 140 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 986
values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 3.89k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 23
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 145
values | src_encoding stringclasses 34
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 3 10.4M | extension stringclasses 122
values | content stringlengths 3 10.4M | authors listlengths 1 1 | author_id stringlengths 0 158 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
cd595372c4ba722ace7b1c09cb1680fc7b72f487 | 7866cf16724c0e90d45ab5fb97448a6b865b82b3 | /cpp/samchon/library/StringUtil.hpp | b8dbd3387edac6424ba43fb18407a18b9afa78df | [
"BSD-3-Clause"
] | permissive | samchon/framework | 652d8077e6fc355538fd96b08cf2a13d421fae58 | bdfaad460e3e8edce72f0dd5168aad2cf68c839d | refs/heads/master | 2021-01-23T09:01:37.452889 | 2020-01-18T09:06:52 | 2020-01-18T09:06:52 | 39,832,985 | 95 | 39 | BSD-3-Clause | 2018-02-09T01:18:49 | 2015-07-28T12:38:14 | C++ | UTF-8 | C++ | false | false | 22,230 | hpp | #pragma once
#include <string>
#include <iostream>
#include <sstream>
#include <samchon/WeakString.hpp>
#include <samchon/IndexPair.hpp>
#include <samchon/library/Math.hpp>
namespace samchon
{
namespace library
{
/**
* @brief Utility class for string
*
* @details
* <p> StringUtil is an utility class prov... | [
"samchon@samchon.org"
] | samchon@samchon.org |
53b789a022a759f23f56cdcad97f91dd85f9a31c | 204c5937cdea475f5c3dafde6d770a74ae9b8919 | /ACM contest/2015多校/4/06.cpp | 6cef04d8354d93369ec41e5f172a789ab05b8914 | [] | no_license | mlz000/Algorithms | ad2c35e4441bcbdad61203489888b83627024b7e | 495eb701d4ec6b317816786ad5b38681fbea1001 | refs/heads/master | 2023-01-04T03:50:02.673937 | 2023-01-02T22:46:20 | 2023-01-02T22:46:20 | 101,135,823 | 7 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 610 | cpp | #include <bits/stdc++.h>//construction
using namespace std;
#define pb push_back
typedef long long LL;
const int N = 30;
int a[N][N];
int main() {
int T;
LL k;
scanf("%d", &T);
while (T--) {
memset(a, 0, sizeof(a));
puts("28 21");
for (int i = 1; i <= 8; ++i)
for (int j = 1; j <= 8; ++j)
a[i][j] = 1;
... | [
"njumlz@gmail.com"
] | njumlz@gmail.com |
cfb7b53d63c4935bda131d45ea7602c930d8c311 | ccaf43320529059e43365b518fbfe7fa56a2a272 | /이동하기.cpp | 0d241b1b560da540ef35f01dd07ef211321189fa | [] | no_license | minsoonss/BOJ-Algospot | c02aeacfb1fa02909a3fb9a4c8ad1bc109325565 | bc3ead24d06e5632f5598b4772451875f026d4c5 | refs/heads/master | 2020-12-03T15:40:59.262840 | 2016-08-26T07:16:26 | 2016-08-26T07:16:26 | 66,530,621 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 394 | cpp | #include <iostream>
#include <algorithm>
using namespace std;
int d[1001][1001];
int main(){
int n,m,i,j;
cin >> n >> m;
for(i = 1; i <= n; i++){
for(j = 1; j <= m; j++){
cin >> d[i][j];
if(i == 0 && j > 0)d[i][j] += d[i][j-1];
else if(j == 0 && i > 0)d[i][j] += d[i-1][j];
else{
d[i][j]+=max(d[i-1]... | [
"wp024302@gmail.com"
] | wp024302@gmail.com |
9dcd2658a2e7ed1e90eec791899226b4bbc592fa | 71a0a5bffa4bfd8ed0b398c79f09c48705a2ae27 | /smart_feeder/smart_feeder.ino | f791c1ca605105c83a140636c8a472393f076eaa | [] | no_license | ariyanki/esp8266 | 4eaad9b9b73e68c37805624044335305acd83ee3 | e4b3fed4b79cec27f529327ad8bfe304d6554eb0 | refs/heads/master | 2023-02-13T07:39:06.047761 | 2021-01-03T10:07:32 | 2021-01-03T10:07:32 | 273,612,869 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 18,849 | ino | // Load Wi-Fi library
#include <ESP8266WiFi.h>
#include <Servo.h>
#include <NTPClient.h>
#include <WiFiUdp.h>
#include <ESP8266WebServer.h>
#include <ESP8266mDNS.h>
#include <EEPROM.h>
#include <ArduinoOTA.h>
Servo servo;
int servoFrom = 0;
int servoTo = 0;
// #### Network Configuration ####
// Access Point network c... | [
"ariyanki.bahtiar@gmail.com"
] | ariyanki.bahtiar@gmail.com |
0971f829aa2cb6d969f9e717835a159ffc76f084 | b8a69a6f1c2996fdc3de3ad1b22a1208849277f6 | /leftRotation.cpp | 7794deb21bb94c6c550d2a3876328eb4c07c2119 | [] | no_license | bjeevana94/HackerRank | bc8601be9e76df5862141668de053a1d035788d9 | 34c68d1083e003943ea91246d6412f9b1b402192 | refs/heads/master | 2021-01-11T20:16:01.641946 | 2017-06-13T09:08:16 | 2017-06-13T09:08:16 | 79,077,589 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 972 | cpp | #include <map>
#include <set>
#include <list>
#include <cmath>
#include <ctime>
#include <deque>
#include <queue>
#include <stack>
#include <string>
#include <bitset>
#include <cstdio>
#include <limits>
#include <vector>
#include <climits>
#include <cstring>
#include <cstdlib>
#include <fstream>
#inclu... | [
"noreply@github.com"
] | bjeevana94.noreply@github.com |
18069a82cad06a7e80c04792ca4830e5e87fe9f9 | 8763ca36fd606b2337dcef06c844673f710ac533 | /BSTNode.cpp | 2ac780311eafeec11c78acff0d22cec4af546933 | [] | no_license | espadatiburon/menuBST_CPP | 529e416824416beb10df932dab5d873a5bc4b983 | 8a0d271a2408c36183fdb5877863035e5e65ff65 | refs/heads/master | 2020-03-21T01:57:37.648421 | 2018-06-20T02:48:55 | 2018-06-20T02:48:55 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,987 | cpp | #ifndef BSTNODE_CPP
#define BSTNODE_CPP
#include "BSTNode.h"
namespace cs20 {
template <class Object>
BSTNode<Object>::BSTNode( const Object& theElement,
BSTNode<Object> * theLeftSide,
BSTNode<Object> * theRightSide,
int theSize) {
element = theElement;
rightSide = theRig... | [
"noreply@github.com"
] | espadatiburon.noreply@github.com |
d9d54298286227c10bef0dc7ba0b8aed62a4359a | bac649c895da8043ddb346a98ae1ae56a8d96a31 | /Codes/Light OJ/1053 - Higher Math/HigherMath.cpp | c7b1aee9bdaba100cd378292a8eee8dbe8a393b4 | [] | no_license | raihanthecooldude/ACM | f3d376554df7b744f771bbf559ab9e28e37a25cb | 4c4c6e5de49670abbd9976daf2ae723520874aea | refs/heads/master | 2021-07-02T00:46:57.203310 | 2019-05-27T17:59:37 | 2019-05-27T17:59:37 | 139,543,437 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 734 | cpp | #include<bits/stdc++.h>
#include<stdio.h>
#include<iostream>
#include<math.h>
using namespace std;
#define pi 3.1415927
#define MOD 1000000007
#define MAX 100005
#define UMAX 9223372036854775807
#define MAXARRAY 2000002
#define ll long long
#define nl '\n'
#define xx first
#define yy second
#define pb push_back
#defin... | [
"raihanthecooldude@gmail.com"
] | raihanthecooldude@gmail.com |
f89bc743c3b956d4a2b8bc2764230d6ca0cfd4fa | 492976adfdf031252c85de91a185bfd625738a0c | /src/Game/AI/AI/aiCastleLynelBattle.h | ff1ec332e671195a3d4d1e953a6d905629f7963b | [] | 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 | 530 | h | #pragma once
#include "Game/AI/AI/aiLynelBattle.h"
#include "KingSystem/ActorSystem/actAiAi.h"
namespace uking::ai {
class CastleLynelBattle : public LynelBattle {
SEAD_RTTI_OVERRIDE(CastleLynelBattle, LynelBattle)
public:
explicit CastleLynelBattle(const InitArg& arg);
~CastleLynelBattle() override;
... | [
"leo@leolam.fr"
] | leo@leolam.fr |
8e01190e73cb3a74e5910323e5f7f4266331ac79 | 14e00a226015c07522cc99b70fbcee5a2a8747d7 | /lab1/catkin_ws/src/libclfsm/src/FSMSuspensibleMachine.cc | 0ce38fce2989d1de85d6c9c76e394c36b86b53c0 | [
"Apache-2.0"
] | permissive | Joshua-Mitchell/robotics | 031fa1033bda465b813c40633da57886c3446a2c | 3f60f72bfaf9de4e2d65c7baac0dd57ee2d556b8 | refs/heads/master | 2020-04-27T13:01:25.073103 | 2019-03-10T14:49:08 | 2019-03-10T14:49:08 | 174,352,695 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,806 | cc | /*
* FSMSuspensibleMachine.cc
*
* Created by René Hexel on 24/09/11.
* Copyright (c) 2011-2014 Rene Hexel.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions... | [
"joshua.mitchell4@griffithuni.edu.au"
] | joshua.mitchell4@griffithuni.edu.au |
5cb77790949fc5e25e6199110586b10ebe64a4f8 | 6278552a2faaef9534f8a599dae881063fe12cf5 | /src/main.cpp | 0385189adb3e5e823e71df088315f7b751cc9371 | [] | no_license | SyedAzizEnam/MPC-Controller | 0fc8eafc9888bc48ad3ceca367910c02a22d2d31 | 7698677f7f1c8d00e00be7fdfadb598b7603aa1c | refs/heads/master | 2020-06-16T18:27:04.724289 | 2017-07-30T20:31:00 | 2017-07-30T20:31:00 | 94,153,766 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,247 | cpp | #include <math.h>
#include <uWS/uWS.h>
#include <chrono>
#include <iostream>
#include <thread>
#include <vector>
#include "Eigen-3.3/Eigen/Core"
#include "Eigen-3.3/Eigen/QR"
#include "MPC.h"
#include "json.hpp"
// for convenience
using json = nlohmann::json;
// For converting back and forth between radians and degre... | [
"azizenam@gmail.com"
] | azizenam@gmail.com |
f17a18611b4aafb084acbedfb8133a625c2f4030 | 5506803b1e48b519a748510fac5be2047319a333 | /example/oglplus/025_reflected_torus.cpp | 8975c29e862fd514d99c66424a8b9bcf671b8782 | [
"BSL-1.0"
] | permissive | James-Z/oglplus | dc5ed546094c891aeabffcba2db45cfc78e08ef9 | a43867907d5d132ba253178232e8852f51c83e6b | refs/heads/master | 2020-05-29T11:08:14.386144 | 2014-02-13T18:33:03 | 2014-02-13T18:33:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,882 | cpp | /**
* @example oglplus/025_reflected_torus.cpp
* @brief Shows how to draw a torus reflected in a horizontal plane
*
* @oglplus_screenshot{025_reflected_torus}
*
* Copyright 2008-2013 Matus Chochlik. Distributed under the Boost
* Software License, Version 1.0. (See accompanying file
* LICENSE_1_0.txt or co... | [
"chochlik@gmail.com"
] | chochlik@gmail.com |
81dd136780df0d5f3dcc385ddea4e2835b9f9987 | ed2f89fc0bfb136cbbd5a49733b7e46aadfdc0fd | /_MODEL_FOLDERS_/lightSpheres/lightSpheres_INIT.cpp | 29a55535f2e6ed7de43b3eec94cbe66cd6f8c94e | [] | no_license | marcclintdion/a7_3D_CUBE | 40975879cf0840286ad1c37d80f906db581e60c4 | 1ba081bf93485523221da32038cad718a1f823ea | refs/heads/master | 2021-01-20T12:00:32.550585 | 2015-09-19T03:25:14 | 2015-09-19T03:25:14 | 42,757,927 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 18,026 | cpp | #ifdef __APPLE__
#import <OpenGLES/ES2/gl.h>
#import <OpenGLES/ES2/glext.h>
#endif
//===============================================================================================
lightSpheres_SHADER = glCreateProgram();
//-----------------------------... | [
"marcclintdion@Marcs-iMac.local"
] | marcclintdion@Marcs-iMac.local |
ac865118a1b6695a7f0ed7325e8024b41396cdef | 7d36d9de8ddcf9cc6890ee985d8d515ed67411f6 | /include/user_factors.h | 7949ab2a02466b67a050b7182d9a0be7a1d9de69 | [] | no_license | Calm-wy/monodepth_localization | 0002098f563664e9bf8f45577764643dbf4f5c55 | 8192faf6a6467920a440a41d159bcfb7c3a14e98 | refs/heads/master | 2020-06-17T05:51:06.682349 | 2019-05-24T02:05:02 | 2019-05-24T02:05:02 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 26,271 | h | /**
* @file slam_factors.h
* @brief User defined factors
*
*/
#include <isam/isam.h>
#include "user_nodes.h"
// NOTE: When you add a new factor, modify gparser.cpp/h to enable proper graph loading
// Unfortunately, currently no loading from native isam is supported.
#pragma once
namespace Eigen {
typedef Mat... | [
"youngji.brigid.kim@gmail.com"
] | youngji.brigid.kim@gmail.com |
f1aefb530612b66eb0bf6dbf1f17bc073d75cad7 | b2c2de30aec8f6cd84162f9fdf3ab23614b6d963 | /opencv/sources/modules/core/test/test_rand.cpp | 9cb683aa55220d714b8b46a32b3ed069f3830cb2 | [
"BSD-3-Clause"
] | permissive | ASeoighe/5thYearProject | aeaecde5eb289bcc09f570cb8815fcda2b2367a6 | 772aff2b30f04261691171a1039c417c386785c4 | refs/heads/master | 2021-09-14T11:41:11.701841 | 2018-04-24T22:30:41 | 2018-04-24T22:30:41 | 112,224,159 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,981 | cpp | #include "test_precomp.hpp"
using namespace cv;
using namespace std;
class Core_RandTest : public cvtest::BaseTest
{
public:
Core_RandTest();
protected:
void run(int);
bool check_pdf(const Mat& hist, double scale, int dist_type,
double& refval, double& realval);
};
Core_RandTest::Core... | [
"aaronjoyce2@gmail.com"
] | aaronjoyce2@gmail.com |
c9d26134f06df057c4562147e7f77b12181b5645 | 5e59fe8bcdd12a2d375a58dbb719e1db395c7d16 | /mruby-sys/vendor/emscripten/system/lib/compiler-rt/lib/sanitizer_common/sanitizer_stacktrace_emscripten.cc | 610770704cedb4491bec1144c87ba0a11154a9bd | [
"NCSA",
"MIT",
"MPL-2.0"
] | permissive | ifyouseewendy/artichoke | 4ec7f34dcd644bd1156ac54b87953eb070c22cd0 | 6f569cbb0273a468cbe49f4c60144bf189cfb7a0 | refs/heads/master | 2020-07-05T20:53:41.334690 | 2020-03-19T22:07:12 | 2020-03-20T01:41:30 | 202,770,950 | 1 | 0 | MIT | 2019-08-16T17:23:33 | 2019-08-16T17:23:32 | null | UTF-8 | C++ | false | false | 1,332 | cc | //===-- sanitizer_stacktrace_emscripten.cc --------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===-------------------------------------------------------... | [
"rjl@hyperbo.la"
] | rjl@hyperbo.la |
64234dca87cdc115173958f640c332b8c24b619e | d09092dbe69c66e916d8dd76d677bc20776806fe | /.libs/puno_automatic_generated/inc/types/com/sun/star/awt/XMouseListener.hpp | c3495449258d432c60d891692743ec31b235eb65 | [] | no_license | GXhua/puno | 026859fcbc7a509aa34ee857a3e64e99a4568020 | e2f8e7d645efbde5132b588678a04f70f1ae2e00 | refs/heads/master | 2020-03-22T07:35:46.570037 | 2018-07-11T02:19:26 | 2018-07-11T02:19:26 | 139,710,567 | 0 | 0 | null | 2018-07-04T11:03:58 | 2018-07-04T11:03:58 | null | UTF-8 | C++ | false | false | 1,513 | hpp | #ifndef INCLUDED_COM_SUN_STAR_AWT_XMOUSELISTENER_HPP
#define INCLUDED_COM_SUN_STAR_AWT_XMOUSELISTENER_HPP
#include "sal/config.h"
#include "com/sun/star/awt/XMouseListener.hdl"
#include "com/sun/star/awt/MouseEvent.hpp"
#include "com/sun/star/lang/XEventListener.hpp"
#include "com/sun/star/uno/Reference.hxx"
#includ... | [
"guoxinhua@10.10.12.142"
] | guoxinhua@10.10.12.142 |
1f7ec6eb173e5aa4aeac2048080cdbd639d5296b | 4a7f31f146b1397455887c7e7ed30cdd5982b2bd | /includes/strategy/create.hpp | 6975326c8e416e7f2b1e74cb378cc919dec749f0 | [] | no_license | Disabled77/metaprogramming | 5ac73c2b4bc5e7034a16fcec133a1cdca2ae1ed2 | 010c9ae991b5bea98d5168fd3eddb93c0a7f6164 | refs/heads/master | 2020-03-29T05:58:43.258986 | 2017-06-29T13:19:22 | 2017-06-29T13:19:22 | 94,656,913 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 875 | hpp | #pragma once
namespace strategy {
template<class T>
struct NewCreate{
template<class... Args>
static T* create(Args... args){
return new T { args... };
}
};
template<class T>
struct MallocCreate{
template<class... Args>
static T* create(Args... args){
T* object = reinterpret_cast<T... | [
"dmitry.belous89@gmail.com"
] | dmitry.belous89@gmail.com |
32d907a959be20b0a7f350d9f9f48cd127c5b872 | 005f6e37941b66536f6719a7bb94ab4d3d7cf418 | /src/prx_packages/manipulation/simulation/plants/simple_planning_manipulator.hpp | cf0d19db06161c1d56bbe2efd93e3f80d4a464a5 | [] | no_license | warehouse-picking-automation-challenges/ru_pracsys | c56b9a873218fefb91658e08b74c4a1bc7e16628 | 786ce2e3e0d70d01c951028a90c117a0f23d0804 | refs/heads/master | 2021-05-31T05:52:33.396310 | 2016-02-07T22:34:39 | 2016-02-07T22:34:39 | 39,845,771 | 4 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 6,801 | hpp | ///**
// * @file simple_planning_manipulator.hpp
// *
// * @copyright Software License Agreement (BSD License)
// * Copyright (c) 2013, Rutgers the State University of New Jersey, New Brunswick
// * All Rights Reserved.
// * For a full description see the file named LICENSE.
// *
// * Authors: Andrew Dobson, Andrew K... | [
"kostas.bekris@cs.rutgers.edu"
] | kostas.bekris@cs.rutgers.edu |
5f281b56ca2a8fea8425a2da4aecbc23a01262b6 | d7fe5077a5694265c4bab15b7acbc8a4424ddd89 | /naive/src/Analysis/NoPredBlocks.cpp | 53309420f754752b92a1003d6f3468476e136741 | [] | no_license | fengjixuchui/acsac17wip | 56cfcea51e30d36f2f5fe5b0ef511ba2ae4ce83f | 5b93e78b96978977a485149c32594d85b1ae329d | refs/heads/master | 2023-03-16T19:33:31.606714 | 2020-11-02T16:29:10 | 2020-11-02T16:29:10 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,580 | cpp | #include "llvm/IR/Module.h"
#include "llvm/IR/Function.h"
#include "llvm/Pass.h"
#include "llvm/IR/InstIterator.h"
#include "llvm/IR/Instructions.h"
#include "llvm/IR/CallSite.h"
#include "llvm/IR/BasicBlock.h"
#include "llvm/Support/raw_ostream.h"
#include "llvm/Transforms/Utils/BasicBlockUtils.h"
using namespace ll... | [
"areiter@veracode.com"
] | areiter@veracode.com |
d4ff8968b5b5f272fd0da6da4fe70202a45b3096 | fa59cfedc5f57e881679fb0b5046da8c911229ca | /9465 스티커.cpp | 75007d318d104fd8d516d62b1630b47e91af4021 | [] | no_license | ju214425/algorithm | e2862df2c55490b97aefffaec99bb449a9db7e1f | db6d96eda3272a7faddaf11fdd02534d6231eafc | refs/heads/master | 2023-07-02T21:32:53.718629 | 2023-06-25T06:04:57 | 2023-06-25T06:04:57 | 193,701,850 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,731 | cpp | // #include <iostream>
// using namespace std;
// int max(int num1, int num2){
// return num1 > num2 ? num1 : num2;
// }
// int main(){
// int numberOfTests;
// cin >> numberOfTests;
// int answerArr[numberOfTests + 1];
// for(int i = 1 ; i <= numberOfTests ; i++){
// int length;
// cin >> length;
// int ... | [
"2016025841@hanyang.ac.kr"
] | 2016025841@hanyang.ac.kr |
4e6625fd121ed1977df0ad294158bbcfa9e13427 | f198391333b9ca636b35a98b62d822fb53f8b95d | /LANServer/LANServer.ino | 94bdccecf6c95d9d9c944c95cbc9ab22957400f7 | [] | no_license | Rezenter/LANOven | 518a0aa49464308e5eb7e4c32e2a874916ed4f25 | ec3958a41022efa35c5ae0fecadebcc6594cd8ba | refs/heads/master | 2021-01-11T00:45:44.841647 | 2016-10-10T08:57:46 | 2016-10-10T08:57:46 | 70,469,875 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,168 | ino | #include <UIPEthernet.h>
EthernetServer server = EthernetServer(1);//port
EthernetClient client;
bool alreadyConnected = false;
void setup()
{
pinMode(A0, INPUT);
pinMode(A1, INPUT);
pinMode(A2, INPUT);
pinMode(A3, INPUT);
uint8_t mac[6] = {0x00,0x01,0x02,0x03,0x04,0x05};
IPAddress myIP(172,16,13,21);
... | [
"noreply@github.com"
] | Rezenter.noreply@github.com |
0a5682a2d63acfb8051b3aac6eda419494723205 | d970f0f7275b7fb13bf315de797d5e38a06aa655 | /include/sico/frames/object_local.hpp | 4bfc9ec3d3ab56847a51a14888ea3565280f819b | [
"MIT"
] | permissive | fjacomme/sico | d5e4ece8a8600990135873900fd9cf4eada910f1 | 501b8f08313e4394ac8585167b74374e2ae3da09 | refs/heads/master | 2023-01-10T22:21:25.653182 | 2020-11-10T13:45:01 | 2020-11-10T13:45:01 | 264,876,122 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,616 | hpp | #pragma once
#include "sico/conversions/enu_local.hpp"
#include "sico/conversions/local_local.hpp"
#include "sico/frames/local_tangent.hpp"
#include "sico/types/orientations.hpp"
namespace sico {
/// Local Frame for an object positioned in an ENU frame
class frame_object {
protected:
frame_enu frame;
quat... | [
"florian@jacomme.fr"
] | florian@jacomme.fr |
bba78b98f6f8c58529862ea61b6201339bece2d1 | 4e68b2d90fbcf829435514ae3631c75b5ba2e438 | /src/yb/util/algorithm_util.h | aaa7fdecfb5bb1b5cbeba1dc269cacd4b3bb8bc2 | [
"OpenSSL",
"Apache-2.0",
"BSD-3-Clause",
"CC0-1.0",
"Unlicense",
"bzip2-1.0.6",
"dtoa",
"MIT",
"BSL-1.0",
"LicenseRef-scancode-public-domain"
] | permissive | bhrgv-bolla/yugabyte-db | b4b2c22d76b0503e1f96d1279b858800ae138119 | 7b12cce17745647e1870f7f7b44a9a71068ceecd | refs/heads/master | 2020-03-11T20:50:05.257512 | 2018-04-19T06:56:16 | 2018-04-19T10:39:19 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,285 | h | // Copyright (c) YugaByte, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
// in compliance with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writ... | [
"mbautin@users.noreply.github.com"
] | mbautin@users.noreply.github.com |
d1ce39cc84771ff1a302fc27ee3523c8d97d47d0 | a0320ceb1fb8d62cef8729b9c7245a25543398b1 | /Queues/slidingWindowMax.cpp | b38a489db4739ab49783a325c22777115a857339 | [] | no_license | Utkal97/Data-Structures-and-Algorithms | d558d847b8651fb0f6bd89026cca6d900f496fe2 | 6eca25b8ec71a118cda35c85d150ef6ae01b3243 | refs/heads/master | 2022-04-13T10:32:34.909651 | 2020-04-04T12:04:00 | 2020-04-04T12:04:00 | 247,907,610 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 917 | cpp | #include<bits/stdc++.h>
#include "DoubleEndedQueue.h"
using namespace std;
vector<int> slidingWindow(int A[], int len, int window_size) {
DoubleEndedQueue q;
for(int ind=0;ind<window_size;ind++) {
while(!q.empty() && A[ind] >= A[q.back()])
int popped = q.pop_back();
q.push_back(in... | [
"utkal.s15@iiits.in"
] | utkal.s15@iiits.in |
7b2ae70b2d51805efb79e23a08bad42f317de492 | c7ebab4f0bb325fddd99e2e6952241e6d5177faf | /Buffer.cpp | 71800e3bd44133ec88cb9c7e770712955754ef38 | [] | no_license | zhuqiweigit/mymuduo | d1cd19a4a10ad7c2d2d327dafa3a6c9379d8c76a | 31701d4b72cf29051bf721ea1d720535b048b39c | refs/heads/main | 2023-03-08T03:49:18.547494 | 2021-02-26T12:51:39 | 2021-02-26T12:51:39 | 342,574,386 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,706 | cpp | #include "Buffer.h"
#include <errno.h>
#include <sys/uio.h>
#include <unistd.h>
/**
* 维护了一个vector<char>Buffer, 和两个读写的int Index,使用int而非指针或迭代器,是因为vector的迭代器失效问题
*
* Buffer的布局: 0-----8---------------readIndex--------------writeIndex-----------------size-----capacity
* 空白头部 读过后的空闲区 待读数据 ... | [
"XXX@xx.com"
] | XXX@xx.com |
c81101c7bcbb78273876a76b1be5dba551b25a7f | cb796fe6cdd2b58782cd5bbd6b7bd29d4ea6a298 | /f1000/doc/fwsdk/IQA_LIB_uBlaze_rev1_5/include/hxx/ADC1_CH13.hxx | 8e11b0d2e4dc9c333947d90c46e33aa7565b76f6 | [] | no_license | IQAnalog/iqa_external | b0098d5102d8d7b462993fce081544bd2db00e52 | 13e2c782699f962fb19de9987933cbef66b47ce1 | refs/heads/master | 2023-03-23T13:46:16.550707 | 2021-03-24T18:03:22 | 2021-03-24T18:03:22 | 350,906,829 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,857 | hxx | //*******************************************************************************
// __ __ *
// / \/ \ *
// \ \ ... | [
"rudyl@iqanalog.com"
] | rudyl@iqanalog.com |
738e66fc4c9d586f015fa82e0b35213033daead3 | 9cf25c7877689dda2918a9c8f3a07b16f3549d9d | /Engine/Audio/AudioSystem.h | 49c8618800933de69f04b3eedddbbd78d3023c92 | [] | no_license | spo0kyman/GAT150 | e6b9befcde1eb3124e562884e94e5cb5727b3356 | ced74e960215ce5b0265636062195cda3e5ff9db | refs/heads/master | 2022-12-10T19:00:32.010359 | 2020-09-02T01:33:57 | 2020-09-02T01:33:57 | 284,793,101 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 304 | h | #pragma once
#include "Core/System.h"
#include "fmod.hpp"
namespace nc {
class AudioSystem : public System {
public:
virtual bool Startup() override;
virtual void Shutdown() override;
virtual void Update() override;
friend class Sound;
protected:
FMOD::System* m_system{ nullptr };
};
} | [
"61479588+spo0kyman@users.noreply.github.com"
] | 61479588+spo0kyman@users.noreply.github.com |
eca14227b5f94317f3910073e25394fc21122137 | 0a7c02bd90d575c2238cc25340cc670515452b05 | /data/dlopen/lib.cc | cbbe083de86d0ba3aec96826453a1fa906664b18 | [] | no_license | 010ric/inMemory_DBSystem_course | 181df3633b2bd24158e92b6bbaefef47777df45d | ced3d8ed10ecd46e347021544650a57481067c2e | refs/heads/main | 2023-01-14T03:51:54.829329 | 2020-11-21T10:47:44 | 2020-11-21T10:47:44 | 314,787,653 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 45 | cc | extern "C" int foo(int x) { return x * 2; }
| [
"mturic@inovex.de"
] | mturic@inovex.de |
d2d465366486abacf468cc9740266a07717f3043 | 1c1b09bba3a951df1b9dd24debc1d2b840477b89 | /FIT2096_Assignment2b_WillStojic/Player.cpp | 9ff1553e68656cef72b74bc39e4d442e041b1aca | [] | no_license | WillStojic/FIT2096_Assignment2b | 8e0e73dd98d808edefec526f5c5201cea46e40ce | 10f86d919d6cf44d318effaf1cef588b4f27f8a2 | refs/heads/master | 2020-03-17T00:37:11.510144 | 2018-05-28T19:06:30 | 2018-05-28T19:06:30 | 133,123,298 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,096 | cpp | #include "Player.h"
#include "MathsHelper.h"
Player::Player(InputController* input)
: PhysicsObject(Vector3(MathsHelper::RandomRange(1, 48), 0, MathsHelper::RandomRange(1, 48)))
{
m_input = input;
// The player is much stronger than any monster on the board
m_health = 200.0f;
m_gems = 0;
//starting ammo
m_ammo ... | [
"wsto0001@student.monash.edu"
] | wsto0001@student.monash.edu |
1d960042dd25ff02d954baeb89b66b4040bd25e6 | fc74816e1cfbef9f3a15f3955bfe608b2605c44b | /count.cpp | 073b09c00ae768cf8805564d6d4b93b9073c7c8e | [] | no_license | marklance/work | 5e90b5a7808228269e526516a152912bc7b1afdd | ff089d1644e5f99175b7828903b9047996935843 | refs/heads/master | 2021-04-28T09:17:27.555380 | 2018-06-03T15:52:41 | 2018-06-03T15:52:41 | 121,955,775 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 673 | cpp | #include <iostream>
#include <fstream>
#include <cstdlib>
int main(int argc, char * argv[])
{
using namespace std;
if (argc == 1)
{
cerr << "Usage: " << argv[0] << " filename[s]\n";
exit(EXIT_FAILURE);
}
ifstream fin;
long count;
long total = 0;
char ch;
for (int file = 1; file < argc; file++)
{
fin.op... | [
"2927295165@qq.com"
] | 2927295165@qq.com |
b8523ef664f336fbafe38f036dc8317fc6b50dca | d5dd043940702693d9308670d00d1b179f33e874 | /MIXKEY_NEW_CODE/Adafruit-GFX-Library-master/Adafruit_GFX.h | 5c1b92dc763b8fe8aa42be38e29ddb7adf25f341 | [
"BSD-3-Clause",
"BSD-2-Clause"
] | permissive | OasysLab/MIXKEY_NEW_CODE_NBIoT_3G | 520dc2f087cfddaa021f30723425b356c4c02cd1 | 82f1b79f034ab4389e3b7d6829b0cda1ac035181 | refs/heads/master | 2020-03-23T12:00:19.337505 | 2018-07-19T05:58:52 | 2018-07-19T05:58:52 | 141,531,040 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,006 | h | #ifndef _ADAFRUIT_GFX_H
#define _ADAFRUIT_GFX_H
#if ARDUINO >= 100
#include "Arduino.h"
#include "Print.h"
#else
#include "WProgram.h"
#endif
#include "gfxfont.h"
class Adafruit_GFX : public Print {
public:
Adafruit_GFX(int16_t w, int16_t h); // Constructor
// This MUST be defined by the subclass:
virtu... | [
"qqlinebotapi@gmail.com"
] | qqlinebotapi@gmail.com |
3ba96dd105aa816b78d5d5f37bd4479f1106ab2d | 375c093f555bddd1ce10e80530dba9119cc24306 | /BOJ/20361.cpp | 1ff903190b2cffd779ebfa73eebabbd48b0fa611 | [] | no_license | Seojeonguk/Algorithm_practice | e8c2add155a1341087e4c528f5346c8711525f96 | b29a1a7421edf2a9968229822dcbdc5a7926e2f5 | refs/heads/master | 2023-08-25T11:40:40.076347 | 2023-08-25T09:07:45 | 2023-08-25T09:07:45 | 154,248,766 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 382 | cpp | #ifdef _DEBUG
#include "bits_stdc++.h"
#else
#include "bits/stdc++.h"
#endif
#pragma warning(disable:4996)
using namespace std;
int n, x, k,a,b;
int main() {
#ifdef _CONSOLE
freopen("sample.txt", "r", stdin);
#endif
scanf("%d %d %d", &n, &x, &k);
for (int i = 0; i < k; i++) {
scanf("%d %d", &a, &b);
if (a ==... | [
"uk7880@naver.com"
] | uk7880@naver.com |
804c2545f58436e1df2eaca999344c6c3eb7344e | 0eff74b05b60098333ad66cf801bdd93becc9ea4 | /second/download/collectd/gumtree/collectd_repos_function_308_collectd-5.6.3.cpp | 59bef3734378a6afdb92c73c674bdf8dab83f14a | [] | no_license | niuxu18/logTracker-old | 97543445ea7e414ed40bdc681239365d33418975 | f2b060f13a0295387fe02187543db124916eb446 | refs/heads/master | 2021-09-13T21:39:37.686481 | 2017-12-11T03:36:34 | 2017-12-11T03:36:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 963 | cpp | static void aggregate(gauge_t *sum_by_state) /* {{{ */
{
for (size_t state = 0; state < COLLECTD_CPU_STATE_MAX; state++)
sum_by_state[state] = NAN;
for (size_t cpu_num = 0; cpu_num < global_cpu_num; cpu_num++) {
cpu_state_t *this_cpu_states = get_cpu_state(cpu_num, 0);
this_cpu_states[COLLECTD_CPU_STA... | [
"993273596@qq.com"
] | 993273596@qq.com |
1e2eab60eaa70114bb684e4ee635db610d8af8a5 | 391dede5cf715071d5fac9ac376d26c3b4edf040 | /linux/my_application.cc | 83d3efea9d28fd5e5102f095dd9f54cf29a81926 | [] | no_license | Vritika21/intertwined | 5fa0450fd9632f83b8722fcb25c2a1fefd9586f6 | d22dbd787fcc5a8543f56f9e79cd7894fd1c76fc | refs/heads/master | 2023-04-06T22:49:55.002306 | 2021-04-08T21:50:23 | 2021-04-08T21:50:23 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,654 | cc | #include "my_application.h"
#include <flutter_linux/flutter_linux.h>
#ifdef GDK_WINDOWING_X11
#include <gdk/gdkx.h>
#endif
#include "flutter/generated_plugin_registrant.h"
struct _MyApplication {
GtkApplication parent_instance;
char** dart_entrypoint_arguments;
};
G_DEFINE_TYPE(MyApplication, my_application, GT... | [
"madhurmaurya365@gmail.com"
] | madhurmaurya365@gmail.com |
de80a75a3b3eeadd4f3649dc92f5e2357c4e9e17 | a3634de7800ae5fe8e68532d7c3a7570b9c61c5b | /codechef/JUNE17PRMQ2.cpp | 7baaa3cebf4b6cb9faedcb6066d9c87412c279a0 | [] | no_license | MayankChaturvedi/competitive-coding | a737a2a36b8aa7aea1193f2db4b32b081f78e2ba | 9e9bd21de669c7b7bd29a262b29965ecc80ad621 | refs/heads/master | 2020-03-18T01:39:29.447631 | 2018-02-19T15:04:32 | 2018-02-19T15:04:32 | 134,152,930 | 0 | 1 | null | 2018-05-20T13:27:35 | 2018-05-20T13:27:34 | null | UTF-8 | C++ | false | false | 3,533 | cpp | #include<iostream>
#include<vector>
#include<algorithm>
#include<cstdio>
using namespace std;
inline void fastRead_int(long long &x)
{ register int c = getchar_unlocked();
x = 0;
int neg = 0;
for(; ((c<48 || c>57) && c != '-'); c = getchar_unlocked());
if(c=='-')
{ neg = 1;
c = getchar_unlocked();
}
... | [
"f20160006@goa.bits-pilani.ac.in"
] | f20160006@goa.bits-pilani.ac.in |
879d107ab1cc6c6cb7b4f9a64cc2a4bb8007e470 | e5c0b38c9cc0c0e6155c9d626e299c7b03affd1e | /trunk/Code/Engine/Graphics/StaticMeshes/StaticMesh.cpp | 8e9bb78979af5033d8a1d660a0c4d21c5a8405d0 | [] | no_license | BGCX261/zombigame-svn-to-git | 4e5ec3ade52da3937e2b7d395424c40939657743 | aa9fb16789f1721557085deae123771f5aefc4dd | refs/heads/master | 2020-05-26T21:56:40.088036 | 2015-08-25T15:33:27 | 2015-08-25T15:33:27 | 41,597,035 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,893 | cpp | #include "StaticMesh.h"
#include "RenderManager.h"
#include "Texture/Texture.h"
#include "Vertex/VertexType.h"
#include "Vertex/IndexedVertex.h"
#include "Core.h"
#include <iostream>
#include <fstream>
#include <vector>
#include <string>
#include "Texture/TextureManager.h"
#include "Shaders/EffectManager.h"
... | [
"you@example.com"
] | you@example.com |
29fde03134c5cf12e5099bbe300a2db94d4c3a97 | 22c04c1d53f4bb526766c38619261da4b3f2494a | /Scoreboard_v1.0/Scoreboard_v1.0.ino | cf687621220d0b3b719fde744e19988a8540eaf1 | [] | no_license | educoay/Scoreboard_rev.Arduino | 3fd48440ac8289d759868b6de32088709956cd84 | 2dcee8fb37852a81b36cc318e49b6dbe11507c35 | refs/heads/master | 2020-12-20T11:21:12.230193 | 2019-12-27T23:10:05 | 2019-12-27T23:10:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,671 | ino | /*
Скетч к проекту "Бегущая строка"
Страница проекта (схемы, описания): https://alexgyver.ru/GyverString/
Исходники на GitHub: https://github.com/AlexGyver/GyverString/
Нравится, как написан код? Поддержи автора! https://alexgyver.ru/support_alex/
Автор: AlexGyver, AlexGyver Technologies, 2019
https://AlexG... | [
"dyagilev@gmail.com"
] | dyagilev@gmail.com |
58cc94cc6cf3d72639343965e308a3679dfbae8f | 85983068d42318310065e40f43f7d9c6ad8a1114 | /Line Tracking Robot/LineTrackingRobot/LineTrackingRobot.ino | afd245ae99c3878ef2778d257ef00c019733262d | [] | no_license | WindyCityLab/equinoxLabs | 5df9b6ac0a859967ebcf623a6dd0de54e8f9c597 | 6d51a084aabfef7b5ce3f5789321d7108711da67 | refs/heads/master | 2021-01-22T15:50:55.694642 | 2015-07-19T15:49:14 | 2015-07-19T15:49:14 | 38,978,111 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,319 | ino | #include <Wire.h>
#include <Adafruit_MotorShield.h>
#include "utility/Adafruit_PWMServoDriver.h"
#include "TypesAndDeclarations.h"
Adafruit_MotorShield AFMS = Adafruit_MotorShield(); // Initialize the Shield
Adafruit_DCMotor *motorFL = AFMS.getMotor(1);
Adafruit_DCMotor *motorFR = AFMS.getMotor(4);
Adafruit_DCMotor *m... | [
"kevinmcquown@me.com"
] | kevinmcquown@me.com |
d0f6d40fe1fff56d3fc975026372e3ee8ec17efa | bd2ba8f1364a12dc0ea10003a98c4ef24f34b9bc | /src/make_sift_descriptor_file.cpp | 7acceea534469a970e7e8c34987ef2baf33381af | [] | no_license | kumpakri/registration-in-dynamic-environment | 921f92c0b823abe74d791f65be95994180b963c7 | 155bf0b94674a22cb27234d9d451905d284ceb39 | refs/heads/master | 2020-08-29T10:00:34.059880 | 2019-10-28T09:31:47 | 2019-10-28T09:36:56 | 217,998,679 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,249 | cpp | /**
* \file make_sift_descriptor_file.cpp
*
* \brief Creates SIFT descriptor file.
*
* \param 1 nFeatures
* \param 2 nOctaveLayers
* \param 3 contrastThreshold
* \param 4 edgeThreshold
* \param 5 sigma
* \param 6 path to positions file
* \param 7 path to image folder
* \param 8 output path for used positio... | [
"kumpakri@gmail.com"
] | kumpakri@gmail.com |
87f28394715944e36b38429726920ac0944b32b0 | 8abbb97e460df68c4bed5ccaa04983bfceb9b29d | /practicas/mergeSort.cpp | 594f438e25506c6f991c68a86783acc2e80bce26 | [] | no_license | JReneHS/Comp-Programming | e89c64c0d240d95fbf36358097ab15166a3b977b | 7af46dd8682ffc96245730669399194c9412c5ce | refs/heads/main | 2023-09-02T09:09:06.672628 | 2021-11-23T21:18:35 | 2021-11-23T21:18:35 | 354,477,551 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,918 | cpp | #include <bits/stdc++.h>
using namespace std;
void merge(vector<int> &arr,int lef,int rig, int mid) {
//Variables de uso muliple
int i,j,k,n1,n2;
//Pivotes para control de los bucles
n1 = mid-lef+1;
n2 = rig-mid;
//Arrays auxiliares
vector<int> auxL(n1);
vector<int> auxR(n2);
//Copia de los va... | [
"jhernandezs1509@alumno.ipn.mx"
] | jhernandezs1509@alumno.ipn.mx |
ef87e9a005d240a09debe6907ac470cdadfe38bd | a66391dc90f943137aa73b455608b71d5a0276bb | /Module/_FW_epsilon/FWepsilon.h | a6daa0cd098376eaa91abd8eb6a3729ff1adf664 | [
"MIT"
] | permissive | Schrausser/FunktionWin | 01c4f0bdacea3a0637e010a1b099206406ffc0b5 | f6920b6b6a9d84e24371ed8b07a1ea6621ce695a | refs/heads/main | 2023-06-28T11:14:52.442749 | 2023-06-11T18:05:41 | 2023-06-11T18:05:41 | 603,180,050 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 733 | h | //----------------------------------------------------------------------------------------------------|FWepsilon.h, SCHRAUSSER 2010
//
#if !defined(AFX_FWepsilon_H__0AAAAE94_E8F1_4C30_86BA_B40597F3E177__INCLUDED_)
#define AFX_FWepsilon_H__0AAAAE94_E8F1_4C30_86BA_B40597F3E177__INCLUDED_
#if _MSC_VER >= 1000
#prag... | [
"noreply@github.com"
] | Schrausser.noreply@github.com |
2866bf78789666c3a9e0154debcc386652e07eb3 | f0a739dda86d11b615d4225662dcd89b65b3d01a | /MapEditor/Direct3D/TestModel/ModelPart.h | feb18dfff571ad7cf641bf72ddd2d9a8aa34ade7 | [] | no_license | kbm0818/Portfolio | 173d3de48902083cf575c3231448fb6dc0ab4bc3 | dc4df24bb629379d55bfa15a84cd0fc6e8dc757f | refs/heads/master | 2020-03-28T22:49:21.942143 | 2018-10-02T07:33:35 | 2018-10-02T07:33:35 | 149,260,142 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,362 | h | #pragma once
#include "../Shaders/Shader.h"
#include "BinaryInputOutputHandler.h"
class Model;
class ModelMaterial;
class ModelBoneWeights;
class ModelBuffer;
class ModelPart : public Shader, public BinaryInputOutputHandler
{
public:
ModelPart(Model* model);
ModelPart(Model* model, ModelMaterial* material);
ModelPa... | [
"kbm0818@naver.com"
] | kbm0818@naver.com |
7581acb310afb7c5277669879a62f11c9ff80d7e | 0c9958ed35900fffb025aa6526527e7fc63a38b0 | /glengine.cpp | 42a04687744e75ef3e31884b029645c67815abe9 | [] | no_license | on62/fltk_opengl | 7dbea0bfe7a02cf1123a8a2dadf2905decbbca76 | db0e97aa447f41b85c5dd46961232a67c5bf6c86 | refs/heads/master | 2021-05-27T23:18:32.537044 | 2014-08-16T14:06:22 | 2014-08-16T14:06:22 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,683 | cpp | #include "glengine.h"
void GLEngine::InitializeProgram(std::vector<shaderName> & shaderNames)
{
// std::string strVertexShader = getFile("v.perspective.shader");
// std::string strFragmentShader = getFile("fragment.shader");
std::vector<GLuint> shaderList;
std::vector<shaderName>::iterator it;
for( it = shaderN... | [
"j.gleesawn@gmail.com"
] | j.gleesawn@gmail.com |
e1fb7c5cddefd14837917de3d08c4963b0ac5ca8 | c901b8389d196012f3cd1a3230ead6c2fc46a89b | /code/Substractive Synth/synth_with_tunings/synth_with_tunings.ino | d209cd700197a438de6fd5ac788f0430bc82d381 | [] | no_license | Marquets/SMC-Master-Thesis | 99ec41ec69bf3a40a168a8f334f65e10f0989ac3 | 675ace2cd14dfeb4151baf9b901f69a042bf03a1 | refs/heads/master | 2023-01-31T10:35:27.432119 | 2020-12-17T13:55:57 | 2020-12-17T13:55:57 | 296,834,085 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,928 | ino | // Waveform Example - Create 2 waveforms with adjustable
// frequency and phase
//
// This example is meant to be used with 3 buttons (pin 0,
// 1, 2) and 2 knobs (pins 16/A2, 17/A3), which are present
// on the audio tutorial kit.
// https://www.pjrc.com/store/audio_tutorial_kit.html
//
// Use an oscilloscope to vie... | [
"marcog07@ucm.es"
] | marcog07@ucm.es |
995dafd25e152defc978ef66ea666665ccdaddeb | ed444c4a0ed1fe679da64b81ec6aa1ddf885a185 | /Foundation/System/Thread/Thread.h | a35ae338c6c8567cb7a5a51a7d4e7f78208ab2b4 | [] | no_license | swaphack/CodeLib | 54e07db129d38be0fd55504ef917bbe522338aa6 | fff8ed54afc334e1ff5e3dd34ec5cfcf6ce7bdc9 | refs/heads/master | 2022-05-16T20:31:45.123321 | 2022-05-12T03:38:45 | 2022-05-12T03:38:45 | 58,099,874 | 1 | 0 | null | 2016-05-11T09:46:07 | 2016-05-05T02:57:24 | C++ | GB18030 | C++ | false | false | 998 | h | #pragma once
#include <functional>
#include <thread>
namespace sys
{
// 线程
class Thread
{
public:
friend class ThreadPool;
// 无效的线程id
static const int32_t INVALID_THREAD_ID = -1;
public:
Thread();
~Thread();
public:
// 执行
template<class _Fn, class... _Args>
void startWithParams(_Fn&& handler, _A... | [
"809406730@qq.com"
] | 809406730@qq.com |
3c0d836107f7b77c3fad63d1dbb630fe9450afa3 | 03ff59ad83be606ce82349173765ca2e5ab3c914 | /BFS_7562_나이트의이동.cpp | 7d70ee3ed7241605f4feed9629e0273eba69523d | [] | no_license | koreantique/CodingStudy | d59ada31fc6af3e1b39583a99df1fc27be11c0c4 | 405c5bfb79bd7f656751c77794d4a703c2172470 | refs/heads/master | 2022-07-28T07:47:28.609203 | 2020-05-22T06:46:24 | 2020-05-22T06:46:24 | 259,563,116 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,019 | cpp | #include <iostream>
#include <queue>
#include <algorithm>
#include <cstring>
using namespace std;
int d[301][301];
int c[301][301];
int dx[] = {-2,-1,1,2,-2,-1,1,2};
int dy[] = {-1,-2,-2,-1,1,2,2,1};
int n;
int cnt = 0;
void bfs(int x, int y, int cnt){
queue<pair<int,int>> q;
q.push(make_pair(x,y));
whi... | [
"koreantique_@naver.com"
] | koreantique_@naver.com |
1eb850fce25590db76e4893353d22f7cb14a8f96 | 92fb6d1d4d4928e556537ee719430e89faa65850 | /Cpp-Exerceise/chap06-析构函数/06-2_deconstructor.cpp | 9463d4621679ac0ed9c4ad2157512a7df4d9fdcf | [] | no_license | lekjons/Linux-Cpp-Development-Advanced-Learning | ebe825d3424e7d15bbff2e226de251db11ebf882 | 9ca47d6b1bb4719b919cae1f9d0e74a0f70e88f2 | refs/heads/master | 2023-02-19T05:59:55.584696 | 2021-01-04T11:43:54 | 2021-01-04T11:43:54 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 434 | cpp | //
// Created by Yang Shuangzhen on 2020/10/3.
//
#include <stdio.h>
class Test
{
int mi;
public:
Test(int i)
{
mi = i;
printf("Test(): %d\n", mi);
}
~Test()
{
printf("~Test(): %d\n", mi);
}
};
int main()
{
Test t(1); // 构造 Test(1)
Test* pt = new Test(2)... | [
"dreamre21@gmail.com"
] | dreamre21@gmail.com |
e5b3e13f8616bb527621fd382fdb92cd59ef95b8 | 96ccf2b290d2a289d2f5173a71f58173d457bbf1 | /code_analyser/llvm/tools/clang/include/clang/AST/ExprCXX.h | 9361011ff4fef16f4af4efce6f77a8cc7cc5b586 | [
"NCSA"
] | permissive | ProframFiles/cs410-octo-nemesis | b08244b741cb489392ee167afcf1673f41e493d1 | b14e565f32ad401ece41c58d8d3e0bba8c351041 | refs/heads/master | 2016-09-15T19:55:30.173078 | 2013-11-22T10:49:50 | 2013-11-22T10:49:50 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 152,841 | h | //===--- ExprCXX.h - Classes for representing expressions -------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===------------------------------------------------... | [
"aleksy.jones@gmail.com"
] | aleksy.jones@gmail.com |
c848896d11028cfa4fa9bd48a142ca941566ac1f | 69312fc3709f1e0007e9def5523cd0988081a7d2 | /sources/Crossword/app/console.h | 8f68300d3b42c10b9d10c2aa00cefae3680d3d6e | [] | no_license | Olieaw/--Crossword---Mini--Game-- | 792444dfc8a440d51745e999802a378a6f4ecd79 | 65cee2e85a12a4e556d216a643b09b6612a40239 | refs/heads/master | 2021-01-18T22:05:55.977251 | 2016-10-05T12:59:47 | 2016-10-05T12:59:47 | 52,116,312 | 2 | 3 | null | 2016-04-30T14:31:00 | 2016-02-19T21:04:41 | C++ | UTF-8 | C++ | false | false | 375 | h | #ifndef CONSOLE_H
#define CONSOLE_H
#include "vocalbulary.h"
#include "field.h"
#include <iostream>
#include <string>
#include <vector>
#include <fstream>
#include <cstring>
class Console
{
public:
Console();
void Menu();
void PrintWords(std::vector<std::string> str);
void PrintField(std::vector<std... | [
"olieaw1998@yandex.ru"
] | olieaw1998@yandex.ru |
aaabceaa5b153e75119855bb8377a8135d77a9b7 | 3cf1c3336e48023d06cd3fbaf6e1a157030f6f4b | /Eigen/src/SVD/BDCSVD.h | e8bfa26c0df8bef8fd5d769ec43f9466923897c9 | [] | no_license | pochemuto/MaterialSolver | e55399d7ad2e03fc55214007565c4e7d0da4b694 | aaeea0bf1ead818801111a6467fa9789d53c8dc9 | refs/heads/master | 2021-01-25T03:49:40.147690 | 2015-05-20T21:49:51 | 2015-05-20T21:49:51 | 33,502,329 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 45,101 | h | // This file is part of Eigen, a lightweight C++ template library
// for linear algebra.
//
// We used the "A Divide-And-Conquer Algorithm for the Bidiagonal SVD"
// research report written by Ming Gu and Stanley C.Eisenstat
// The code variable names correspond to the names they used in their
// report
//
// Copyrig... | [
"pochemuto@gmail.com"
] | pochemuto@gmail.com |
7c81584c5605163173fdf2afaff8c5f4c8732bc6 | 64573adcf26a4d94d4a84cb44cde3290868872e8 | /Tests/socket.h | c595433abadab5d940e2673b7d58040fe48bb019 | [] | no_license | vinhphuctadang/Reuse | 8cde3e57b5b7df5f3c948515ae0c5e6474d6cbcf | 272ea15f9fc9e51e344da80558815f68668ac9e7 | refs/heads/master | 2020-05-07T14:24:17.906398 | 2020-02-01T06:43:43 | 2020-02-01T06:43:43 | 180,592,839 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,042 | h | #ifndef SOCKETCPP_H
#define SOCKETCPP_H
#define WIN32_LEAN_AND_MEAN
#include <string>
#include <windows.h>
#include <winsock2.h>
#include <ws2tcpip.h>
#include <stdlib.h>
#include <stdio.h>
#include <mutex>
#include "StringUtils.h"
// Need to link with Ws2_32.lib, Mswsock.lib, and Advapi32.lib
#pragma c... | [
"noreply@github.com"
] | vinhphuctadang.noreply@github.com |
8b0df76c33486f7c17f8d577c79b0784d72f0d78 | 3433813671624fa5bb0a8a43ed9ae4f62c8ebb6f | /QuestionSet/VirtualJudge/ShortestPath/TiltheCowsComeHome.cpp | 37e0c8b837ecf53cdd94f714fa3cf6a20dbad71e | [] | no_license | Devildyw/DSA | d4310c6c7ce9eab4ab7897419e5a91f115ee6b9e | 969e62264fab5ecf15852895ce74973b13ce477d | refs/heads/main | 2023-08-29T21:41:33.202543 | 2021-10-30T15:44:14 | 2021-10-30T15:44:14 | 423,408,758 | 1 | 0 | null | 2021-11-01T09:35:19 | 2021-11-01T09:35:19 | null | UTF-8 | C++ | false | false | 1,404 | cpp | /*
* @Author: FANG
* @Date: 2021-08-22 23:25:42
* @LastEditTime: 2021-08-23 12:43:59
* @Description: https://vjudge.ppsucxtt.cn/problem/POJ-2387
* @FilePath: \DSA\QuestionSet\VirtualJudge\ShortestPath\TiltheCowsComeHome.cpp
*/
#include <iostream>
#include <algorithm>
#include <cstdio>
#include <cstring>
#include ... | [
"1639579565@qq.com"
] | 1639579565@qq.com |
7e3f9dbcf4d1ba126e2f0643c5ecb70f5df38da8 | 600df3590cce1fe49b9a96e9ca5b5242884a2a70 | /third_party/WebKit/Source/platform/graphics/CompositorMutableState.cpp | 6313cbfe2c1f4822de8ce4bb795b76426d3954a5 | [
"BSD-3-Clause",
"LGPL-2.0-or-later",
"LicenseRef-scancode-warranty-disclaimer",
"LGPL-2.1-only",
"GPL-1.0-or-later",
"GPL-2.0-only",
"LGPL-2.0-only",
"BSD-2-Clause",
"LicenseRef-scancode-other-copyleft",
"MIT",
"Apache-2.0"
] | 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 | 2,983 | cpp | // Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "platform/graphics/CompositorMutableState.h"
#include "cc/layers/layer_impl.h"
#include "cc/trees/layer_tree_impl.h"
#include "platform/graphics... | [
"enrico.weigelt@gr13.net"
] | enrico.weigelt@gr13.net |
978df33c8b0891d61bcef8fc46222f6e0961ff12 | 66eb3d9cdd1a66843942a71386ccc46fb0045d32 | /sort/quick_sort/quicksort.cpp | 5050b60e16a2091ee0ba04531dbe36adbc795eb3 | [] | no_license | KJTang/Algorithm | 764309818f004a25ae94be3e2cef38241873f91f | 29ae44edd462f59495338d965c92245787581f69 | refs/heads/master | 2021-01-10T18:46:51.610103 | 2017-06-30T05:42:02 | 2017-06-30T05:42:02 | 27,213,776 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,079 | cpp | #include <iostream>
#include <cstdlib>
using namespace std;
const int LENGTH = 10;
// int arr[LENGTH] = {3, 2, 7, 9, 8, 1, 0, 4, 6, 5};
int arr[LENGTH] = {9, 8, 7, 2, 5, 2, 3, 2, 1, 0};
void quickSort(int arr[], int front, int end);
void test(int arr[]) {
for (int i = 0; i != LENGTH; ++i) {
cout<<arr[i]... | [
"kaijietang@outlook.com"
] | kaijietang@outlook.com |
0ceda72c0a288268c794af2669933eeeb7f71b21 | 4b73addaed825276738d4c1e0ec7e96bb9b6c497 | /src/mr-controller.cpp | 4df5aef687992b6623c379b3dc8ebd7021f4c939 | [] | no_license | OohmdoO/mobile-robot-controller | 778eedc55f95c638b0c69cd5a2b49bb54663bb1b | 512b73b305c74abfa1b8f44d9eb66969f6349833 | refs/heads/master | 2023-03-17T12:04:18.522689 | 2020-09-27T11:53:12 | 2020-09-27T11:53:12 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,706 | cpp | #include "ros/ros.h"
#include <tf/tf.h>
#include "nav_msgs/Odometry.h"
#include <geometry_msgs/Pose2D.h>
#include <geometry_msgs/Twist.h>
#include <sensor_msgs/LaserScan.h>
#include <cmath>
#include "hybridAutomata.h"
double x_d=3.0, y_d=-2.0; //target goal location
//initializing and declaring variables for robot... | [
"f20171569@hyderabad.bits-pilani.ac.in"
] | f20171569@hyderabad.bits-pilani.ac.in |
d5324d3af26b485a3ae139b372bad4c2536b6c8e | 6ff80a1dc6d0895f701c33723397caff9d7005f5 | /include/Instancia.h | 51c2a18f57a677fc3e7457a8c468dd251a6cb53e | [] | no_license | arielsonalt/Construtivo-Guloso | 03853558cb24347984c3de8099ff9e6effbe1b1b | aa6e154a1ec63cedf63326ed93061fc5e55dfa28 | refs/heads/master | 2020-03-13T02:03:29.374932 | 2018-04-24T21:39:46 | 2018-04-24T21:39:46 | 130,916,798 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 481 | h | #ifndef INSTANCIA_H
#define INSTANCIA_H
#include "../include/Distancias.h"
#include "../include/Cliente.h"
#include "../include/CT.h"
#include <vector>
class Instancia
{
public:
Instancia();
void lerDistancias();
void lerCTs();
void lerClientes();
void imprimirDistancias();
void imprimirCTs()... | [
"32400603+arielsonalt@users.noreply.github.com"
] | 32400603+arielsonalt@users.noreply.github.com |
97b1a6204c20277ed8d9d97d5db95f642ba0db33 | c6beef27373e962d246e0ca59e60930f33068d9a | /lab2/01_studentgroup/academicgroup.hpp | 58bcb5ed1216a59c0ba77563d0d5a87bb54efbee | [] | no_license | aganur-ahundov/oop-ki14 | 260cd3b343185d27a0aba61cedd6fc91b0e4fbef | 78d8fb653d7f7891d97a2ea0afc32ba1b7364660 | refs/heads/master | 2021-01-18T00:41:21.681434 | 2016-01-14T12:04:09 | 2016-01-14T12:04:09 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 898 | hpp | // (C) 2013-2015, Sergei Zaychenko, KNURE, Kharkiv, Ukraine
#ifndef _ACADEMICGROUP_HPP_
#define _ACADEMICGROUP_HPP_
/*****************************************************************************/
class Student;
/*****************************************************************************/
class AcademicGroup
{
... | [
"zaychenko.sergei@gmail.com"
] | zaychenko.sergei@gmail.com |
d9c91baba657064e484b9434fcbf47d3fb3fc742 | 8a11dceabdf2286777d30c32a02e8d045feac907 | /String-primary/125-validPalindrome.cpp | 0bcbb9f248956c5da51dd0478914d50d348be407 | [] | no_license | warmthless/LeetCode | 192cb83dcb33005c0a583ba293efd39684e556fc | 7d3a29162a3bde61f5a20d01ce42c76dbc52c5f7 | refs/heads/master | 2020-03-22T12:53:02.794513 | 2018-07-25T12:35:05 | 2018-07-25T12:35:05 | 140,061,654 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 722 | cpp | //
class Solution {
public:
bool isPalindrome(string s) {
if(s.empty()) return true;
vector<char> modi;
for(int i=0; i<s.size(); ++i){
if((s[i] >='a' && s[i] <='z') || (s[i] >='A' && s[i]<='Z') || (s[i] >='0' && s[i]<='9') ){
modi.push_back(s[i]);
}
... | [
"noreply@github.com"
] | warmthless.noreply@github.com |
0b2a77f1b17bf891c59abad499a5b5103a0038e6 | 3da93763bbc39692ef6f468a91c42b335674af44 | /src/producer.cc | dd13a5291213fcc8c122342514c9fca0645a30ec | [] | no_license | mbirostris/cpt | 59f5fd0a45bf2c044b55156835dbb1c5c460ee84 | 5bae5d82647e271e686f892b0b762425563f1e50 | refs/heads/master | 2020-06-06T03:07:26.096708 | 2015-06-23T08:04:12 | 2015-06-23T08:04:12 | 27,839,425 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,214 | cc | #include "../interface/producer.h"
#include "../interface/counter.h"
chain producer::get(chain ch){
chain result = ch;
for (std::vector<std::string >::size_type i = 0; i != ch.getSize(); i++){
// czytamy oryginalny plik z drzewem
TFile *file = new TFile((ch.getFolder(i)+ch.getFilename(i)).c_str());
TTree... | [
"olszewski.mikael@gmail.com"
] | olszewski.mikael@gmail.com |
dee7efed53b60b78fbaef400ec19a88743d9f9e0 | 25adfb6b9406f64781535eed760272a104b3bb98 | /src/hailstone/stdafx.cpp | b9bf850878fb3db7720a9a8b96c3172a2cf0b3a1 | [] | no_license | shanfeng094/DSA | cf00d9981fbdbdf690061377a8cd615284102e27 | 3fcce6f128d7771602fa2f9809b06ee06329d006 | refs/heads/master | 2020-03-29T06:09:31.087389 | 2016-07-26T14:38:44 | 2016-07-26T14:38:44 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 262 | cpp | // stdafx.cpp : 只包括标准包含文件的源文件
// hailstone.pch 将作为预编译头
// stdafx.obj 将包含预编译类型信息
#include "stdafx.h"
// TODO: 在 STDAFX.H 中
// 引用任何所需的附加头文件,而不是在此文件中引用
| [
"wanglinzhizhi@hotmail.com"
] | wanglinzhizhi@hotmail.com |
d43a966ba619d1c0c28b8df20dcad4412968fae2 | cc6d2210ef75079ebb9d3569cb228d1709434a73 | /Arduino/NTP/NTP.ino | e5eb58e1cce3f232db35193742e52e3cf6c0eb49 | [] | no_license | kkulkarni32/Martiny | bf0257079a983b3aa01485d9612ab5961e82ea39 | 7d812af1a343437c5afc2ee0557c344993f843f8 | refs/heads/master | 2023-04-06T17:54:00.160361 | 2021-04-19T21:43:34 | 2021-04-19T21:43:34 | 302,507,912 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,504 | ino | #include <ESP8266WiFi.h>
#include <NTPClient.h>
#include <WiFiUdp.h>
// Replace with your network credentials
const char *ssid = "TP-Link_82DE";
const char *password = "67244737";
// Define NTP Client to get time
WiFiUDP ntpUDP;
NTPClient timeClient(ntpUDP, "pool.ntp.org");
//Week Days
String weekDays[7]={"Sunda... | [
"kkulkar4@asu.edu"
] | kkulkar4@asu.edu |
c4d79421bd19d57235ed92c6b8e9bc081d823a1e | 352abb7b0c7cada5248183549d24e1619bbe4dc5 | /arbi5_runing/NameConverter.cpp | bedb2af24adbd6dda87c80d861054352e40313c9 | [] | no_license | 15831944/arbi6 | 048c181196305c483e94729356c3d48c57eddb62 | 86a8e673ef2b9e79c39fa1667e52ee2ffdc4f082 | refs/heads/master | 2023-03-19T11:56:24.148575 | 2015-07-13T08:06:11 | 2015-07-13T08:06:11 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,412 | cpp | #include "NameConverter.h"
NameConverter* NameConverter::m_pNC=NULL;
NameConverter* NameConverter::getInstance()
{
if(m_pNC==NULL)
{
m_pNC = new NameConverter();
m_pNC->init();
}
return m_pNC;
}
string& NameConverter::trim_string(string &s, const char *chars/*=NULL*/)
{
if (s.length() > 0)
{
if (chars ... | [
"sunhao@sanss.com"
] | sunhao@sanss.com |
dce6e0fa6920856073d61d902d120135e2e6c566 | 276845ee0f0dfe0050a191dd94c55531cf71a839 | /mc15-smaract/smaractApp/src/O.linux-x86_64/smaract_registerRecordDeviceDriver.cpp | 06ad21fa10410a01f0d1e428280ac0a7d7de58b6 | [] | no_license | NSLS-II-LIX/xf16idc-ioc1 | fb2113d044e14e0bd4c96e9efea20668a1cbb51e | f04e6266fd4ad0ad7ad6caead7252f7e0d67e45d | refs/heads/master | 2021-07-06T22:42:49.120813 | 2021-04-27T12:51:52 | 2021-04-27T12:51:52 | 91,277,754 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 24,600 | cpp | /* THIS IS A GENERATED FILE. DO NOT EDIT! */
/* Generated from ../O.Common/smaract.dbd */
#include <string.h>
#include "epicsStdlib.h"
#include "iocsh.h"
#include "iocshRegisterCommon.h"
#include "registryCommon.h"
extern "C" {
epicsShareExtern rset *pvar_rset_aaiRSET;
epicsShareExtern int (*pvar_func_aaiRecordSize... | [
"lyang@bnl.gov"
] | lyang@bnl.gov |
47541dec62e93a5baf4e857e2b1f4e669f40cd6b | f999711a794bd8f28b3365fa9333403df179fd90 | /hust C语言学习/第七章/trim().cpp | 83aa43b00fe182957e9a80f58f14cc03ddd1edf6 | [] | no_license | Hanray-Zhong/Computer-Science | 2423222addff275e5822a1390b43c44c1b24a252 | dfea9d3ee465c36a405e50f53589bdacbd6d2ae2 | refs/heads/master | 2021-07-04T21:35:43.730153 | 2020-08-07T09:56:58 | 2020-08-07T09:56:58 | 145,799,254 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 570 | cpp | #include <stdio.h>
int strlen(char []);
int trim(char []);
int main(void)
{
char s[30];
scanf("%s",s);
printf("%d words: %s",trim(s),s);
return 0;
}
/***********trim()********/
int trim(char s[])
{
int i,num,j=0,k=0,l=strlen(s);
while(s[j]==' '||s[j]=='\n'||s[j]=='\t'||s[j]=='\r') j++;
i=l-1;
while(s[i-k]==' '... | [
"646374316@qq.com"
] | 646374316@qq.com |
db605cc7c5b71033d40eca34b9f241b0e0a0c3f6 | 38c10c01007624cd2056884f25e0d6ab85442194 | /chrome/browser/extensions/api/sync_file_system/sync_file_system_api.cc | 0b9aafc547c3634fae05f95eb0a23642f37a44ab | [
"BSD-3-Clause"
] | permissive | zenoalbisser/chromium | 6ecf37b6c030c84f1b26282bc4ef95769c62a9b2 | e71f21b9b4b9b839f5093301974a45545dad2691 | refs/heads/master | 2022-12-25T14:23:18.568575 | 2016-07-14T21:49:52 | 2016-07-23T08:02:51 | 63,980,627 | 0 | 2 | BSD-3-Clause | 2022-12-12T12:43:41 | 2016-07-22T20:14:04 | null | UTF-8 | C++ | false | false | 13,764 | cc | // Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/extensions/api/sync_file_system/sync_file_system_api.h"
#include <string>
#include <utility>
#include "base/bind.h"
#includ... | [
"zeno.albisser@hemispherian.com"
] | zeno.albisser@hemispherian.com |
8cf404733987f076fd539e23316480de1cfbc63c | 9f156c1282493ddc322c9a352c54a06f6a72bf45 | /sum.cpp | 5c5b9d763d8910096db092a18d3fa89c88a6a35e | [] | no_license | notetook/sum_test | 1cda6da888864f2daa218544145b332d965b48ab | 5ac36aacd90b50080d59698b4982195f8f11aca0 | refs/heads/master | 2020-06-26T18:15:30.605743 | 2016-09-08T08:00:20 | 2016-09-08T08:00:20 | 67,676,804 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 45 | cpp | int sum ( int n )
{
return n * (n+1) / 2;
}
| [
"notetake@korea.ac.kr"
] | notetake@korea.ac.kr |
7bda8d0e3c66f839bba4cecff1c2c49fb1de3403 | 7f18180685eb683cc46edd9ad73306a365e501cd | /Romulus/Source/Utility/SceneToSTL.cpp | 62fabcfdeb255b401550f2f6567e24573434b853 | [] | no_license | jfhamlin/perry | fab62ace7d80cb4d661c26b901263d4ad56b0ac2 | 2ff74d5c71c254b8857f1d7fac8499eee56ea5ab | refs/heads/master | 2021-09-05T04:15:57.545952 | 2018-01-24T04:35:29 | 2018-01-24T04:35:29 | 118,711,533 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,834 | cpp | #include "Render/IScene.h"
#include "Math/Matrix.h"
#include "Math/Vector.h"
#include "Utility/SceneToSTL.h"
#include <map>
namespace romulus
{
using namespace render;
using namespace math;
namespace
{
void GeometryChunkInstanceToSTL(const GeometryChunkInstance& gci,
std::ostream& ou... | [
"james@goforward.com"
] | james@goforward.com |
5834e2a9503c0334f18f0a723119cbc5a6b7abf0 | 12efddb38fd5bd1c2b2b3bb1b672714b694d5602 | /lualib/lualib_sharedmemory.cpp | d6fd98f2a39527474253ba79e1e322e44740cdc0 | [] | no_license | chenxp-github/SmallToolsV2 | 884d61200f556379551477030aa06c64593ce9d4 | 1a8aa863d0bc3744d376284ace85c7503b871f45 | refs/heads/master | 2022-06-01T05:19:25.417439 | 2022-04-30T05:31:53 | 2022-04-30T05:31:53 | 210,530,450 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,263 | cpp | #include "lualib_sharedmemory.h"
#include "mem_tool.h"
#include "sys_log.h"
#include "lualib_stream.h"
LUA_IS_VALID_USER_DATA_FUNC(CSharedMemory,sharedmemory)
LUA_GET_OBJ_FROM_USER_DATA_FUNC(CSharedMemory,sharedmemory)
LUA_NEW_USER_DATA_FUNC(CSharedMemory,sharedmemory,SHAREDMEMORY)
LUA_GC_FUNC(CSharedMemory,sh... | [
"xiangpeng_chen@126.com"
] | xiangpeng_chen@126.com |
af0a587c874cb571aa4517a9f78365679e8ea266 | 3dce87b553dc904240c9c6230a5fd18371020e48 | /src/Quadraphonics.cpp | 0dc43572ca61245d7baea37fd104c7b4305ecc4f | [
"BSD-3-Clause",
"LicenseRef-scancode-free-unknown"
] | permissive | KoreTeknology/Quadraphonic-Plugins-for-VCV-Rack | ce1729eb98031af8ee6acc2dccb32db08e5d43b5 | 96885ce5351d06ba3e603e4d29c4403f23edc53e | refs/heads/master | 2022-06-16T09:36:04.288728 | 2019-02-28T19:28:32 | 2019-02-28T19:28:32 | 170,126,911 | 13 | 4 | BSD-3-Clause | 2022-05-27T01:17:28 | 2019-02-11T12:42:46 | C++ | UTF-8 | C++ | false | false | 922 | cpp | //***********************************************************************************************
//
// QuadraphonicStudio Modules for VCV Rack by Uriel deveaud
// Module name: Main cpp for Quadraphonics modules
// https://github.com/KoreTeknology/Quadraphonic-Plugins-for-VCV-Rack
//
//******************************... | [
"noreply@github.com"
] | KoreTeknology.noreply@github.com |
c6736e136dc0c5cf9feb61c3e784acd048ecb732 | 77c7744d0b303165f0418eaef588939b561c98f2 | /Module 2/Chapter03/chapter03/scenetoon.h | 2509b531c5178c556ef2bac1ba496329aca75545 | [
"MIT"
] | permissive | PacktPublishing/OpenGL-Build-High-Performance-Graphics | 3e5f0dcae0b0c60b8c41d52aa32b20fe6aacc5dc | 7e68e1f2cf1b0a02c82786c6fde93b34b42f2b86 | refs/heads/master | 2023-02-16T04:21:45.656668 | 2023-01-30T10:14:51 | 2023-01-30T10:14:51 | 88,623,563 | 81 | 26 | null | null | null | null | UTF-8 | C++ | false | false | 650 | h | #ifndef SCENETOON_H
#define SCENETOON_H
#include "scene.h"
#include "glslprogram.h"
#include "vboplane.h"
#include "vboteapot.h"
#include "vbotorus.h"
#include "cookbookogl.h"
#include <glm/glm.hpp>
using glm::mat4;
class SceneToon : public Scene
{
private:
GLSLProgram prog;
int width, height;
VBOPlane... | [
"jijom@packtpub.com"
] | jijom@packtpub.com |
a23e7ace9ea99cdb56e58ab77b377c0406359e74 | cc051fc770f7dce5b19750cf8eade652fe03f17c | /depthCameraPcl.h | 137f8889b4168553d3bfd7e4c8fb39b8f2ade219 | [] | no_license | underdoeg/godot-depth-camera-test | f0778f0b1444775924a28d51443b8768f5988547 | f823b0fcbc4fe74c1e88196cd2288a07aaabcf8d | refs/heads/master | 2021-01-19T20:12:15.411608 | 2017-03-11T22:33:16 | 2017-03-11T22:33:16 | 84,684,085 | 3 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 332 | h | #ifndef DEPTHCAMERAPCL_H
#define DEPTHCAMERAPCL_H
#include "depthCamera.h"
class DepthCameraPcl: public DepthCamera{
OBJ_TYPE(DepthCameraPcl, DepthCamera)
public:
DepthCameraPcl();
bool startGrabbingImpl();
bool stopGrabbingImpl();
private:
std::shared_ptr<pcl::io::OpenNI2Grabber> grabber;
};
#endif // DEPTH... | [
"philip@undef.ch"
] | philip@undef.ch |
9b054940c7234e0fb6f166d49f485391caebcd21 | 9e0d6d3cff2e03ab4487269f295dc872e07544e4 | /src/main.h | dacb3d07593e205e788304167fcaeb117276d78d | [
"MIT"
] | permissive | gyun0526/ESRcoin | b39c6776f6b767e6f87d57b227b1233201219515 | 25a418f88f7554a00f60a9cbfcb875f07d2c75fc | refs/heads/master | 2021-05-03T11:34:53.617508 | 2018-02-07T03:12:29 | 2018-02-07T03:12:29 | 120,550,930 | 1 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 72,423 | h | // Copyright (c) 2009-2010 Satoshi Nakamoto
// Copyright (c) 2009-2014 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 BITCOIN_MAIN_H
#define BITCOIN_MAIN_H
#include "bignum.h"
#include "sync.h... | [
"gyun0526@gmail.com"
] | gyun0526@gmail.com |
55fe439f98391de265ef74844cdb4454ac346bf1 | 1b0818c047ac532e38f153497de6ebcebc596359 | /src/build_tree.cpp | 30d403dc89e380e2a1f1ee3ef4eca91172fab696 | [] | no_license | peipei2015/3d_model | fbe5f7f0df736b09263b0816eebf4908ae18d4c1 | 0e4a04d6e647b395b7dc3939262d5c2609a59598 | refs/heads/master | 2021-01-20T20:36:40.304043 | 2016-06-24T11:31:33 | 2016-06-24T11:31:33 | 61,878,023 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,807 | cpp | #include <pcl/point_types.h>
#include <pcl/point_cloud.h>
#include <pcl/console/parse.h>
#include <pcl/console/print.h>
#include <pcl/io/pcd_io.h>
#include <boost/filesystem.hpp>
#include <flann/flann.h>
#include <flann/io/hdf5.h>
#include <fstream>
typedef std::pair<std::string, std::vector<float> > vfh_model;
/** \... | [
"1607458232@qq.com"
] | 1607458232@qq.com |
3052984719aa91f18615c7937861c07a526b5082 | 2cae54fe441ad0e84b8df6917153bbe3c81ae986 | /conundrum/conundrum.cpp | 13b67d8c57c560523a8b1f629fd64b8b6202748a | [
"MIT"
] | permissive | omarchehab98/open.kattis.com-problems | 3cb08a475ca4fb156462904a221362b98c2813c9 | 0523e2e641151dad719ef05cc9811a8ef5c6a278 | refs/heads/master | 2020-03-31T04:23:06.415280 | 2019-10-29T00:50:08 | 2019-10-29T00:50:08 | 151,903,075 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 260 | cpp | #include <iostream>
using namespace std;
int main() {
string cipherText;
cin >> cipherText;
int numberOfDays = 0;
for (int i = 0; i < cipherText.size(); i++) {
if (cipherText[i] != ("PER")[i % 3]) numberOfDays++;
}
cout << numberOfDays;
} | [
"omarchehab98@gmail.com"
] | omarchehab98@gmail.com |
2981f5b7723db2c9dad0ecca3c4b790961fe5191 | 57789c0479da2d7a25478a1689ff892613ce4945 | /Classes/WXPanel.h | 5cebc8e0d8e434242d637ae9c00c956a3ab4ddbf | [] | no_license | niujianlong/Nodie | 0c83c2e762e816b3b1e25284d6379b7347361b04 | 45e25c86292a5635312b1c55545d9358fd6be7dd | refs/heads/master | 2020-04-16T22:20:56.707466 | 2015-11-12T04:29:45 | 2015-11-12T04:29:45 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 1,593 | h | #pragma once
#include "WXSimplePanel.h"
//移动类型
typedef enum
{
tween_type_only_start,//只从开始到结束tween
tween_type_only_end,//只从结束到开始tween
tween_type_both,//从开始到结束,结束到开始都tween
}TweenType;
class WXSimpleButton;
class WXPanel: public WXSimplePanel
{
public:
WXPanel(void);
~WXPanel(void);
virtual void initPanel();... | [
"543062527@qq.com"
] | 543062527@qq.com |
782c0973bbac9ce229c8cacca512e2321b4200c0 | 111d82bef126e3a6fb86c0dc59ded74705932213 | /src/marker.cpp | 682ad08fe2fcfa94f6f458d599e567f56ea5d011 | [] | no_license | Mekanikles/pyzzlix-c | 67919cdd0e1f1b11993aa7b26c76556b7f7a5269 | 8db46d88930a5987286f81ed7114b71dd948a520 | refs/heads/master | 2021-03-12T20:14:46.095897 | 2011-01-18T09:51:34 | 2011-01-18T09:51:34 | 1,109,821 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 403 | cpp | #include "marker.h"
#include "animation.h"
Marker::Marker()
{
this->setAnimation(new Animation("marker", 32, 32));
this->boardx = 0;
this->boardy = 0;
//this->movesound = Resources().getSound("markermove");
//self.turnsound = Resources().getSound("markerturn")
//self.failsound... | [
"joel@crunchbang.(none)"
] | joel@crunchbang.(none) |
bdcb896691484a4220377546bbc51070c2c22a85 | 4c23be1a0ca76f68e7146f7d098e26c2bbfb2650 | /ic8h18/0.0045/IC3H7COC3H6-I | a7b7e569448bbb037bcb48e3fdfa5118f9cf424a | [] | no_license | labsandy/OpenFOAM_workspace | a74b473903ddbd34b31dc93917e3719bc051e379 | 6e0193ad9dabd613acf40d6b3ec4c0536c90aed4 | refs/heads/master | 2022-02-25T02:36:04.164324 | 2019-08-23T02:27:16 | 2019-08-23T02:27:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 846 | /*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 6
\\/ M anipulation |
\*-------... | [
"jfeatherstone123@gmail.com"
] | jfeatherstone123@gmail.com | |
59e44ce397dffd1ed557b61e3eee4c3e45edb588 | 592a4ece8141d0192d78219e62350cdf2ba4b185 | /calculadoraniveldios.cpp | 69dd91ea54e8dcebbb1e2161c82a79e52902ff04 | [] | no_license | 31012001-RenanMariscal/Calculadora | b1d10f314ef98c948fc437255bd131d5f31a18ce | 44ac886feeebc3a93400e45c76b4cb8579e83976 | refs/heads/master | 2020-06-04T23:45:09.792671 | 2019-06-16T20:30:29 | 2019-06-16T20:30:29 | 192,237,836 | 0 | 0 | null | 2019-06-16T21:18:58 | 2019-06-16T21:18:58 | null | UTF-8 | C++ | false | false | 1,230 | cpp | /******************************************************************************
Online C++ Compiler.
Code, Compile, Run and Debug C++ program online.
Write your code in this editor and press "Run" button to compile and execute it.
******************************************... | [
"noreply@github.com"
] | 31012001-RenanMariscal.noreply@github.com |
f370f3f568c68629f421999f4244fadc9b9f80db | cd2e994213caff60377b6fb6157651952a8241a5 | /source_code/component/animator/motion_state/knight/knight_skill_motion_state.cpp | 1be2daead9f4b30a42966d0b91d8010a69d456f9 | [] | no_license | KodFreedom/KF_Framework | 80af743da70e63c3f117d8b29aff4154d7b3af1b | ca7fadb04c12f0f39d1d40ede3729de79f844adc | refs/heads/master | 2020-12-30T16:01:49.674244 | 2018-02-25T09:54:07 | 2018-02-25T09:54:07 | 91,193,033 | 6 | 0 | null | 2018-02-25T09:54:08 | 2017-05-13T17:56:31 | C++ | UTF-8 | C++ | false | false | 945 | cpp | //--------------------------------------------------------------------------------
// knight_skill_motion_state.cpp
// this is a motion state class which is auto-created by KF_ModelAnalyzer
//--------------------------------------------------------------------------------
#include "knight_skill_motion_state.h"
#inclu... | [
"kodfreedom@gmail.com"
] | kodfreedom@gmail.com |
60bf434358dff62c8ee13a6964c72d2a5da97abb | 047f7a970e17ab992d0a534eeb52ee893b1313a2 | /src/game/components/Player.hpp | c614e4d3990212f3855910b4e55554d54f182ac6 | [] | no_license | hhsaez/judgementday | 39607848af87f0e046c4b310e838545893fab214 | 704dabffdc053f708395a4f471f19ddbeb7319e4 | refs/heads/master | 2020-03-12T08:14:38.457364 | 2018-04-25T14:53:18 | 2018-04-25T14:53:18 | 130,523,259 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,436 | hpp | #ifndef JUDGEMENT_DAY_COMPONENTS_PLAYER_
#define JUDGEMENT_DAY_COMPONENTS_PLAYER_
#include "JudgementDayCommon.hpp"
namespace judgementday {
class Action;
namespace messaging {
struct SpawnPlayer {
crimild::Node *board;
};
}
namespace components {
... | [
"hhsaez@gmail.com"
] | hhsaez@gmail.com |
034367cb1dc13be1e08fd1780d3092a5818127de | b9c8edc82ab483ba0f0f3e94ebad9409829da73f | /Vulkan_Win32/src/renderer/modelbuffer.h | 77ef132265aa3aef063eefad7f22fea7faff04f6 | [] | no_license | vectorlist/Vulkan_Application | 27b4e2161bfc91827d3e3a94dffa3891d5406357 | f24e6b344c8b76fff7c363f7241aeefc26588536 | refs/heads/master | 2021-01-12T03:18:06.729988 | 2017-01-12T01:04:55 | 2017-01-12T01:04:55 | 78,179,141 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,370 | h | #pragma once
#include <renderer.h>
class ModelBuffer : public Renderer
{
public:
ModelBuffer(Window* window);
virtual~ModelBuffer();
void buildProcedural() VK_OVERRIDE;
void buildPipeline() VK_OVERRIDE;
void buildFrameBuffers() VK_OVERRIDE;
void buildCommandPool() VK_OVERRIDE;
void buildCommandBuffers() VK_OV... | [
"xarchx80@gmail.com"
] | xarchx80@gmail.com |
7a2e0661f38ee59346bac14376f1c821c6efba57 | 409de9ad0fa66bb905908c3de39997690524336e | /trunk/src/virtual_network.cc | c3bc965abad65ba8e4fda579d33ed76e329afe81 | [
"MIT"
] | permissive | saumitraaditya/Tincan | 0dcba7708f32ddfc4ab061aef79680f834fd1153 | 51b7b554b8c32faa04b1704e28cbab1d7ce3d8bf | refs/heads/master | 2019-07-17T03:43:04.071976 | 2017-11-27T03:25:30 | 2017-11-27T03:25:30 | 69,046,620 | 0 | 0 | null | 2016-09-23T17:30:42 | 2016-09-23T17:30:42 | null | UTF-8 | C++ | false | false | 21,166 | cc | /*
* ipop-project
* Copyright 2016, University of Florida
*
* 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, copy, modify... | [
"kcratie@users.noreply.github.com"
] | kcratie@users.noreply.github.com |
98a1a792acf95b145c2230ee01d1f85fa2816369 | 9030ce2789a58888904d0c50c21591632eddffd7 | /SDK/ARKSurvivalEvolved_DinoColorSet_TekStrider_parameters.hpp | 45b0688d16887c5ded82675b63cdec3e17aea557 | [
"MIT"
] | permissive | 2bite/ARK-SDK | 8ce93f504b2e3bd4f8e7ced184980b13f127b7bf | ce1f4906ccf82ed38518558c0163c4f92f5f7b14 | refs/heads/master | 2022-09-19T06:28:20.076298 | 2022-09-03T17:21:00 | 2022-09-03T17:21:00 | 232,411,353 | 14 | 5 | null | null | null | null | UTF-8 | C++ | false | false | 740 | hpp | #pragma once
// ARKSurvivalEvolved (332.8) SDK
#ifdef _MSC_VER
#pragma pack(push, 0x8)
#endif
#include "ARKSurvivalEvolved_DinoColorSet_TekStrider_classes.hpp"
namespace sdk
{
//---------------------------------------------------------------------------
//Parameters
//----------------------------------------------... | [
"sergey.2bite@gmail.com"
] | sergey.2bite@gmail.com |
d2a2085762d2bd36918036f8f6c8a9028b22b2ee | 9d364070c646239b2efad7abbab58f4ad602ef7b | /platform/external/chromium_org/ppapi/proxy/ppp_messaging_proxy.h | ced608a08c96a6ecd69e01296bd6a962103b41c3 | [
"BSD-3-Clause",
"LicenseRef-scancode-khronos"
] | permissive | denix123/a32_ul | 4ffe304b13c1266b6c7409d790979eb8e3b0379c | b2fd25640704f37d5248da9cc147ed267d4771c2 | refs/heads/master | 2021-01-17T20:21:17.196296 | 2016-08-16T04:30:53 | 2016-08-16T04:30:53 | 65,786,970 | 0 | 2 | null | 2020-03-06T22:00:52 | 2016-08-16T04:15:54 | null | UTF-8 | C++ | false | false | 1,113 | 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 PPAPI_PROXY_PPP_MESSAGING_PROXY_H_
#define PPAPI_PROXY_PPP_MESSAGING_PROXY_H_
#include "base/compiler_specific.h"
#include "ppapi/c/pp_instan... | [
"allegrant@mail.ru"
] | allegrant@mail.ru |
8043c4205c720f0b9955915f3a6664b445e6bc24 | b4aee1d85320b398555b3782e872773044d4d685 | /practice/11.1/randwalk.cpp | 156aab4514fcfc05bd93b1236a896179e04c1394 | [] | no_license | crazyqipython/Cpp-primer-plus | 5a455ef0e16d461d963d659ff28a61eb27374269 | 0ebfe6feec17c5e920ff56b658464685cef26af1 | refs/heads/master | 2021-01-09T06:23:22.692388 | 2016-08-29T13:09:53 | 2016-08-29T13:09:53 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,737 | cpp | #include <iostream>
#include <fstream>
#include <cstdlib>
#include <ctime>
#include "vect.h"
int main()
{
using namespace std;
using VECTOR::Vector;
srand(time(0));
double direction;
Vector step;
Vector result(0.0, 0.0);
unsigned long steps = 0;
double target;
double dstep;
ofs... | [
"hblee12294@gmail.com"
] | hblee12294@gmail.com |
7bfb7731f842553cd1c512716a0cb1ea41896e38 | e64de6e15e83104511203b19cddf533ab0b83858 | /test/parser-util.h | 0e10b83ba26b2c6a4b9e27afba687a176c20c9c0 | [] | no_license | brn/yatsc | 49b998ed4a55795fd28bd6a6a3964957e1740316 | d3fe64ea4b979ef93c9239b46bc8f9672faabe98 | refs/heads/master | 2021-01-01T19:00:44.883959 | 2015-03-30T00:53:09 | 2015-03-30T00:53:09 | 20,675,007 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,810 | h | /*
* The MIT License (MIT)
*
* Copyright (c) 2013 Taketoshi Aono(brn)
*
* 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 rig... | [
"dobaw20@gmail.com"
] | dobaw20@gmail.com |
c4a725819c6e4da2f55dcf678a198a64f2ee3de1 | de841c20a88755e0a90d32add9948bb1c2f86f1c | /SimpleGame/SimpleGame/Classes/GameOverScene.cpp | 6cd09a2561d53bd7650205b00a7c5f7fc25b4f53 | [] | no_license | childhood/Cocos2dxLib | bad07deceb2408757ee29a8165a154e32e0d6113 | 9aecf86921df191ec1a5695546d4d517f92063b9 | refs/heads/master | 2020-12-25T04:35:49.859848 | 2012-03-08T16:09:49 | 2012-03-08T16:09:49 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,165 | cpp | //
// GameOverScene.m
// SimpleGame
//
// Created by kdanmobile09 on 12-3-8.
// Copyright 2012年 __MyCompanyName__. All rights reserved.
//
#import "GameOverScene.h"
#import"HelloWorldScene.h"
CCScene* GameOverScene::scene()
{
CCScene *scene = CCScene::node();
GameOverScene *layer = GameOverScene::no... | [
"guanghui8827@126.com"
] | guanghui8827@126.com |
b483be9c08f48bb560285bde6d3819b4b5a065f9 | c30962f9ae130128d0cc7b4946828d40643dd703 | /src/base/MDDiscreteDistribution.cc | d58b10b6b0c6276fc257668e8a5710001ddf41a5 | [
"Apache-2.0"
] | permissive | SoonyangZhang/hmdp | e3a5bfa4582c0c238cdd26517bfcd2f1ff1a101d | 8a11c1563ad75ed4cdd29c52479c5aa98b678e07 | refs/heads/master | 2022-03-03T10:44:28.111223 | 2019-08-26T10:18:10 | 2019-08-26T10:18:10 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 20,370 | cc | /**
* Copyright 2014 Emmanuel Benazera beniz@droidnik.fr
*
* 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 applica... | [
"emmanuel.benazera@xplr.com"
] | emmanuel.benazera@xplr.com |
79c771f8062a9908ca3fcb7cfb360e1f4d875931 | ae86cda3dbbfe821694b0d59e0c9b8d83cc4aacc | /Practicas/PFinal/letras/src/diccionario.cpp | 0801c428bd0d8f30109d64d4a334ad0512bdb786 | [
"MIT"
] | permissive | josepadial/ED | 1624376d0d8fbe4923d23c6c2e14fd8faa07fea6 | c095e65843e695e05cbb4d0ae34652d223c45425 | refs/heads/master | 2020-08-11T03:57:35.319909 | 2020-04-05T18:39:40 | 2020-04-05T18:39:40 | 214,486,158 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,950 | cpp | /*
Curso: 2018/2019
Asignatura: Estructura de datos
Autores: Jose Antonio Padial Molina
Elena Ortiz Moreno
Practica: Final "Letras"
*/
#include "diccionario.h"
istream& operator>>(istream &is, Diccionario &dic){
string aux;
while(getline(is,aux)){
dic.datos.insert(aux);
}
return is;
}... | [
"joseismael511@gmail.com"
] | joseismael511@gmail.com |
3fef0e346a3753fe53285831951acd515e45c13e | cccfb7be281ca89f8682c144eac0d5d5559b2deb | /components/history_clusters/core/history_clusters_db_tasks_unittest.cc | a48de270a04385b4258af1dbf8dda33dc7b3d5c8 | [
"BSD-3-Clause"
] | permissive | SREERAGI18/chromium | 172b23d07568a4e3873983bf49b37adc92453dd0 | fd8a8914ca0183f0add65ae55f04e287543c7d4a | refs/heads/master | 2023-08-27T17:45:48.928019 | 2021-11-11T22:24:28 | 2021-11-11T22:24:28 | 428,659,250 | 1 | 0 | BSD-3-Clause | 2021-11-16T13:08:14 | 2021-11-16T13:08:14 | null | UTF-8 | C++ | false | false | 2,579 | cc | // Copyright 2021 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/history_clusters/core/history_clusters_db_tasks.h"
#include "base/strings/stringprintf.h"
#include "base/time/time.h"
#include "test... | [
"chromium-scoped@luci-project-accounts.iam.gserviceaccount.com"
] | chromium-scoped@luci-project-accounts.iam.gserviceaccount.com |
a946c079a3440b612b92e482817e846b4f0ac199 | 931544d66c832c092e0b0b0c6baabbecfe0d47d0 | /solutions/hackerrank/array-left-rotation.cpp | 7c87d26614d23ea86a62ffb37426ffbd3c7c7519 | [
"MIT"
] | permissive | rahulsah123/CodeMonk | 99f006e963d2618ad29987e690e275660877179c | 700d500b56566b63252a51bac8fe30949403d243 | refs/heads/master | 2020-06-13T01:07:37.147814 | 2016-11-27T17:16:40 | 2016-11-27T17:16:40 | 75,470,634 | 1 | 0 | null | 2016-12-03T11:50:46 | 2016-12-03T11:50:46 | null | UTF-8 | C++ | false | false | 799 | cpp | /**
* @author yangyanzhan
* @email yangyanzhan@gmail.com
* @homepage http://www.yangyanzhan.com
* @github_project https://github.com/yangyanzhan/CodeMonk
* @online_judge hackerrank
* @problem_id array-left-rotation
* @problem_address https://www.hackerrank.com/challenges/array-left-rotation
**/
#include <algor... | [
"yangyanzhan@gmail.com"
] | yangyanzhan@gmail.com |
bf4f97fe8ddaf060f64d90d9d0acdf243fb15212 | b800fcf6bc5b78a5f84c9da4c3bab74cb8693a3d | /pgm7/Wheat.cpp | a06326ab08129f75ebf0d3f319edae8dd2a947fb | [] | no_license | billymeli/CS311 | 15f3f42259cd5df0c2cf6cd1521c21456225569f | 47f4d26963a85f42b31b45bac71bf56837ec5227 | refs/heads/master | 2021-05-09T16:11:37.693620 | 2018-05-02T01:17:39 | 2018-05-02T01:17:39 | 119,101,152 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,317 | cpp | // File Name: Wheat.cpp
// Author: Billy Meli
// Student ID: w882x457
// Assignment Number: 7
#include <iostream>
#include <string>
#include "Wheat.hpp"
using namespace std;
namespace {
const double AVG_WEIGHT_PER_BUSHEL = 60.0;
const double IDEAL_MOISTURE_LEVEL = 13.5;
}
// Default constructor (initializes all ... | [
"mstevebilly@yahoo.com"
] | mstevebilly@yahoo.com |
d17c66d77db7c434ed7dc65a34f26f819dfd9697 | 5d392ba659c3c304ea55e9efe562a730051f1d5c | /myInfixPostfix.cpp | 0a53e4fb12bddbd2fbd527677fb41d228cfba9da | [] | no_license | TimManh/CMPE_126 | b9bf1d82fddb66a354068bb7c5437d2a2262bedc | e035f494844eec35b71e808b65cece0d9f5ff290 | refs/heads/master | 2020-04-26T22:23:36.594064 | 2019-03-05T04:16:36 | 2019-03-05T04:16:36 | 173,871,542 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,298 | cpp | /*
* myInfixPostfix.cpp
*
* Created on: Oct 12, 2018
* Author: admin
*/
#include"arrayStack.h"
#include<iostream>
#include<string>
using namespace std;
int prec(char c)
{
if(c == '^')
return 3;
else if(c == '*' || c == '/')
return 2;
else if(c == '+' || c == '-')
retu... | [
"noreply@github.com"
] | TimManh.noreply@github.com |
4e785bee270622fff1f27aa657fb53efd679a9e2 | f47b84753c54723afa751f08060b1dab39b9bd0d | /src/goto-diff/change_impact.cpp | 381cbd7e3be2fac8d99b338d7d70458a2a044ae8 | [
"BSD-4-Clause",
"LicenseRef-scancode-unknown-license-reference",
"BSD-2-Clause"
] | permissive | pkesseli-archive/cbmc-legacy | 9d8fac56c56902cd3bc22216c37f220699348c0a | 81f06d59850db7fc2603f06d54a8736d8c596194 | refs/heads/master | 2021-05-01T17:42:37.368349 | 2016-08-12T14:04:10 | 2016-08-12T14:04:10 | 52,523,903 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 20,335 | cpp | /*******************************************************************\
Module: Data and control-dependencies of syntactic diff
Author: Michael Tautschnig
Date: April 2016
\*******************************************************************/
#include <iostream>
#include <goto-programs/goto_model.h>
#include <analy... | [
"peter.schrammel@cs.ox.ac.uk"
] | peter.schrammel@cs.ox.ac.uk |
c3cf5e749bc43fe06e0f8254957859b0fab92a9a | bd2fd73ce4e1f7dfb76970f5948fd6a0129680a8 | /c_stuff/GUI_@/GUI_@/olcPixelGameEngine.h | 093267f0f258211154a136e826c6095a8c941d33 | [] | no_license | jglatts/randoms | 5b64f078f4f16f377a725831e75889e252309cbb | 847e0386f4cb46e8c0cebbe4cbe3a9462c90e2e7 | refs/heads/master | 2022-12-20T04:33:03.120799 | 2020-09-27T12:11:15 | 2020-09-27T12:11:15 | 263,608,378 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 119,107 | h | /*
olcPixelGameEngine.h
+-------------------------------------------------------------+
| OneLoneCoder Pixel Game Engine v2.06 |
| "What do you need? Pixels... Lots of Pixels..." - javidx9 |
+-------------------------------------------------------------+
What is this?
~~~~~~~~~~~~~
o... | [
"noreply@github.com"
] | jglatts.noreply@github.com |
2dce4897b7da98d999fca1c1983f4a8c41c82376 | de4a7f00df913bec160e91e2b255e41d0518eabe | /http_asio/connection.cpp | 119da6267fa189f914d3673bb21ebadd3a542452 | [] | no_license | octocat9lee/practical-network-programming | 67fd7b923d3826461b7aa3c4f77ff3be67614781 | 66707ed0523254cebe62baad6fdf4856857125f7 | refs/heads/master | 2021-05-12T06:44:36.494923 | 2019-03-08T04:00:33 | 2019-03-08T04:00:33 | 117,224,864 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,994 | cpp | //
// connection.cpp
// ~~~~~~~~~~~~~~
//
// Copyright (c) 2003-2010 Christopher M. Kohlhoff (chris at kohlhoff dot com)
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
#include "connection.h"
#include <vecto... | [
"295861542@qq.com"
] | 295861542@qq.com |
b76554fcebe4c4eb3e962a9663c32f7e3e59e548 | 6ae1105a9ee4ec00eaf4a7c8d29af03e218ae68c | /Home_Automation_Slave_2/Home_Automation_Slave_2.ino | 8c0f042464e6b2b4ad5013666a16a362fca75070 | [] | no_license | kaustubhcs/Home-Automation | e2c49b3f7f3a9a704739277837f910361db41c03 | 192a52ea3c1af677c8f76b3ebc5917d2a574ea38 | refs/heads/master | 2021-01-22T21:13:09.958546 | 2015-10-22T15:48:32 | 2015-10-22T15:48:32 | 41,579,976 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,327 | ino | #include <SoftwareSerial.h>
#define relay_0 2 // T
#define relay_1 3 // E
#define relay_2 11 // C
#define relay_3 6 // H
#define relay_4 4 // N
#define relay_5 45 // O
#define relay_6 47 // V
#define relay_7 52 // A
#define relay_8 51 // N
#define relay_9 53 // Z
#define relay_10 49// A
#define cfl relay_0
#defi... | [
"kaustubhcs07@gmail.com"
] | kaustubhcs07@gmail.com |
158440f78aac2c4880d01eb933291266822cdba7 | 3285e052b9d7e492160c91116a698193a6337d28 | /Graphic_base/formgraph.cpp | 27b8a682f8f78ef79158fd1b608558c9da5e4738 | [] | no_license | Schuka48/Ghost | 483771b362fb4d11d7ed55bb8e45667526d77e8d | e9313ff359faba9e258d724839842f88231dc36d | refs/heads/main | 2023-06-21T20:04:33.462765 | 2021-07-21T15:18:52 | 2021-07-21T15:18:52 | 381,788,581 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 11,180 | cpp | #include "formgraph.h"
#include "ui_formgraph.h"
#include <QJsonDocument>
FormGraph::FormGraph(QWidget *parent) :
QWidget(parent), ui(new Ui::FormGraph),
_source(nullptr), connFlag(false)
{
ui->setupUi(this);
dlgInput = new DlgInput();
connect(ui->btnCreateNode, &QPushButton::clicked, this, &For... | [
"artem.shchukin.2000@mail.ru"
] | artem.shchukin.2000@mail.ru |
93ef035a42a7ba146d4a0abfd7af4ed709b3c046 | 415b65fc161ca9dc99b99c409c039864471fe131 | /Customer/customer.h | 878346d9a3241ca321624621166184245d207e12 | [] | no_license | Austin0077/Cpp | c87bf9e9821d729faea328eeec8215209e18ed0c | 862753680a83d12d86b877e6de8baee74d3fc1c3 | refs/heads/master | 2021-09-03T23:06:14.455575 | 2018-01-12T18:20:29 | 2018-01-12T18:20:29 | 105,043,560 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 288 | h | # include<iostream>
#include <string>
using namespace std;
class Customer
{
private:
int Id;
string Fname;
string Sname;
double Credit;
public:
void setid(int);
void setFname(string);
void setSname(string);
void setCredit(double);
void Display();
};
| [
"austinqweyu@gmail.com"
] | austinqweyu@gmail.com |
32f56ed8ee3266d588edc9f946f355b01579dae0 | a615c4057ddb49f14dca11a45947fdacfebb5c1c | /Graphics/XYQ/Sprite2.h | bf9376c518abae61c3bea2b69d4dfb0e8dd5a839 | [] | no_license | oceancx/XYQEngine | 6dae130cbb997f585fd9b2a5a8965c3d7fddc3cd | 6f93e788d5df2d34774f51f6cae2ff52b3024094 | refs/heads/master | 2021-01-12T04:44:34.328169 | 2017-02-28T13:23:18 | 2017-02-28T13:23:18 | 77,779,051 | 1 | 0 | null | null | null | null | GB18030 | C++ | false | false | 491 | h | #ifndef SPRITE2_H
#define SPRITE2_H
#include "../../defines.h"
#include <vector>
/*
一个动画序列组
*/
class Sprite2
{
public:
Sprite2();
~Sprite2();
int mGroupSize; //方向数
int mFrameSize; //帧数
int mWidth; //宽度
int mHeight; //高度
int mKeyX; //关键帧X
int mKeyY; //关键帧Y
struct Sequence
{
int key_x;
int ke... | [
"oceancx@gmail.com"
] | oceancx@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.