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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
ecf121281660570e22fbc149dd5857aaf647d48b | bc7e7c41819aa162cd0b1e595baf9034e3e7aa78 | /Project1.cpp | 9f7100797cd0f7af9ee3912231cd36759e2e0e5d | [] | no_license | reaganshirk/DataStructuresProfessorPoject1 | ce75e2a651fd375468bbf30ddcabe30a538bda9e | 5070ba267bf725282163670a50906940f60f2e3a | refs/heads/master | 2020-04-23T18:11:55.409412 | 2019-02-18T21:26:37 | 2019-02-18T21:26:37 | 171,358,285 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,926 | cpp | //**********************************
// Aditya Narasimhan
// Project 1 CS 2413
// Spring 2019
//**********************************
#include <iostream>
using namespace std;
class SparseRow {
protected:
int row; //Row#
int col; //Column#
int value; //We will assume that all our values will be integers
public:
... | [
"reaganshirk@ou.edu"
] | reaganshirk@ou.edu |
8e0a4c102667151d853adb68ffce25c00f1a67ba | 721720964893a2fea43114d4a859812e834fd29c | /oop_Project_Eliyho_Tsuri/Controller.cpp | ba051d98842665f287a0ff5f8cc08ef5ba077f32 | [] | no_license | elitsuri/Eliyho_Tsuri_OOP_B-Super_Mario | 48a9a2a321064ebb55f1c071014be45acae79c07 | 71daf191d15b44ec0b7f696f0879ac713fa47f5e | refs/heads/master | 2023-06-27T17:03:38.543887 | 2021-08-04T05:17:56 | 2021-08-04T05:17:56 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,387 | cpp | #include "Controller.h"
#include <iostream>
Controller::Controller()
{
load_musics();
allocEnemies();
initializeEnemies();
}
void Controller::load_musics()
{
m_backs.push_back(Resources::get().get_sprite(0));
m_backs.push_back(Resources::get().get_sprite(4));
m_backs.push_back(Resources::get().get_sprite(6));
m... | [
"zelitesuri@gmail.com"
] | zelitesuri@gmail.com |
98973dae25f40c2263f48cd9b0c1304fb7674c7e | 12840d008d17df59a37997691774fa87e5f227be | /zhongzihao-personal/codeforces/371/371-2-D.cpp | e167560d8322f74559736582100393ee9ccee3ce | [] | no_license | clatisus/ACM-ICPC-Team-Archive | 4b6c3d2dfb300f928f4f201ae156bde5f871a734 | 7410ddfa81de8750668d8ac2c334987b5af7e613 | refs/heads/master | 2022-07-21T13:03:22.768792 | 2020-01-04T11:30:43 | 2020-01-04T11:30:43 | 136,951,655 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,583 | cpp | #include<bits/stdc++.h>
const int N = 2;
const int M = 16;
int ans[N][N][N];
int now[N][N];
int n;
void solve(int op1, int op2, int op3){
int left, right;
left = 1, right = ans[op1][op2][op3];
if (!op3){
std::swap(left, right);
right = ans[op1][op2][1];
}
while (left < right){
int mid = op3 ? left + right... | [
"clatisus@gmail.com"
] | clatisus@gmail.com |
99776eb8c6a57b5085910eb59c1ef9bd69688923 | d3e7b9d2ebe4d4aae85f05ea83f4b409f7a319f4 | /Count Univalue Subtrees.cpp | 83c1766794d3ca12f77bed7631d2312dad51d164 | [] | no_license | pkuzw/LeetCode-Zhao-Wei- | 43c952029b3bf5c142d6307836ea4fe6cf65f3f9 | 7834590f03daf944b0e6bb5ef9349aa0f36bca99 | refs/heads/master | 2021-03-22T04:45:40.709649 | 2018-12-27T14:51:52 | 2018-12-27T14:51:52 | 22,886,240 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,152 | cpp | ///@file Count Univalue Subtrees
///@author zhaowei
///@date 2016.01.15
///@version 1.0
///@date 2016.02.26
///@version 1.1
#include <vector>
using namespace std;
struct TreeNode {
int val;
TreeNode *left;
TreeNode *right;
TreeNode(int x) : val(x), left(NULL), right(NULL) {}
};
class Solution_v1 {
public:
///... | [
"zhaowei.pku@gmail.com"
] | zhaowei.pku@gmail.com |
1cd9c3fff4f6493d42884b8ac5fa3a9819532e5e | 0065cefdd3a4f163e92c6499c4f36feb584d99b7 | /rogue/cheat/sdk/SDK/StatWrapper_Rogue_DamagePerGamePlayed_parameters.h | ab235e018b9590d6e53bc33b897a4c42f8264a11 | [] | no_license | YMY1666527646/Rogue_Company_hack | ecd8461fc6b25a0adca1a6ef09ee57e59181bc84 | 2a19c81c5bf25b6e245084c073ad7af895a696e4 | refs/heads/main | 2023-08-20T06:07:14.660871 | 2021-10-21T20:33:53 | 2021-10-21T20:33:53 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,050 | h | #pragma once
// Name: roguecompany, Version: 425
/*!!DEFINE!!*/
/*!!HELPER_DEF!!*/
/*!!HELPER_INC!!*/
#ifdef _MSC_VER
#pragma pack(push, 0x01)
#endif
namespace CG
{
//---------------------------------------------------------------------------
// Parameters
//----------------------------------------------------... | [
"51001754+dmitrysolovev@users.noreply.github.com"
] | 51001754+dmitrysolovev@users.noreply.github.com |
5548035a56e5c86b0e5d4b3d87939d1b601ad30a | 031e4d530346aab54ba32e5ec0aeb8ab1a783be1 | /Report 2/W41/0.14/U | a83e1d8494c4988a0ac6af22e1d7401ccc5c870d | [] | no_license | shyam97/modelling1 | 781ddcf6c16b6bd8f528b0f58bd19953f86716d9 | 68bd2ebc7960111b86bbff04af96003229618af7 | refs/heads/master | 2022-11-21T07:03:25.868074 | 2020-07-20T16:20:09 | 2020-07-20T16:20:09 | 262,878,324 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,638,997 | /*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 7
\\/ M anipulation |
\*-------... | [
"shyam.hemamalini@gmail.com"
] | shyam.hemamalini@gmail.com | |
f0dc4edaa10891f66de42abb340c0990c8e6dd04 | ffcf31e66a828eef8f27c0f3268f0a70be1f7458 | /course-project/starnav/Helpers.h | d66b654d3f6c1de950d3922f6d939cc3496afd1e | [] | no_license | jdthorne/ensf545 | 387376ef77a33aa08f3413ecde00d99b0b45bf09 | f401a11773b1a2b8d127bb5580cfdb03e62546a8 | refs/heads/master | 2021-01-13T01:31:17.005242 | 2012-12-04T16:58:44 | 2012-12-04T16:58:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 478 | h | #pragma once
#include <string>
#include <sstream>
#include <vector>
inline std::vector<std::string> &split(const std::string &s, char delim, std::vector<std::string> &elems) {
std::stringstream ss(s);
std::string item;
while(std::getline(ss, item, delim)) {
elems.push_back(item);
}
return ... | [
"jdthorne@ENA0616.eng.ad.ucalgary.ca"
] | jdthorne@ENA0616.eng.ad.ucalgary.ca |
f049bc6c39a58c4b648e81671feba92560419d98 | b63a741200c47e3d7cf7f84a3b5497bcd43a77d7 | /soccer/src/object_recognition/src/objects/camera_object.cpp | b3787dd80c2ee9c516353f82e70e8111564d87ac | [] | no_license | ThinkerBoy/soccerbot | 9fdc8a791862b3e49c31a11c24b346e8aad59e52 | b2e325e0d73f0e2e9b8de5cfb955af3ed68ccfac | refs/heads/master | 2021-09-09T22:36:58.715753 | 2018-03-20T02:36:44 | 2018-03-20T02:36:44 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 75 | cpp | #include "objects/camera_object.hpp"
CameraObject::CameraObject() {
} | [
"vuwij@me.com"
] | vuwij@me.com |
3989b870616b8b595712119aadaff055effe45af | 718d71df2e99b8634127880778dd38cec9bcb4ca | /leetcode/20_valid_parentheses.cpp | b0c4d573098de0c27b7c2fec1224e4230cda34a1 | [] | no_license | afcarl/Algorithm_study | 57a741136c447feb03bb554f7fd4e21e5dc1f947 | 4440e2dcb34a61724c0c333f360a12ab90b22712 | refs/heads/master | 2020-03-25T03:20:42.063373 | 2016-05-07T17:54:00 | 2016-05-07T17:56:52 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 777 | cpp | /*
* 20_valid_parentheses.cpp
*
* Author: Qi Haozhi
* Copyright (c) 2015 Qi Haozhi
*
* You can star the project via:
* https://github.com/Oh233/Algorithm_study
*
* You may find the solution tutorial in
* http://oh233.github.io/2015/12/26/LeetCode-Report-16-20/
*/
class Solution {
public:
bool isValid(stri... | [
"macshqi@gmail.com"
] | macshqi@gmail.com |
fd45f4d4b2b3fd38055744616371abfd6838f076 | f43abbea7417d01eea1ef353ebf6ed52bfef6986 | /MVS2019/RuslanIvanov/mytest/stack/vector/Source.cpp | 3d34e2964b8898bf1d8faf636828febdbd500634 | [] | no_license | RuslanIvanov/WindowsTraning | dbf1c5f7335c096ca9132881f4f83e433307bb9b | b1c2b7e950b554b760834b54802b56fc99a5d831 | refs/heads/master | 2022-02-10T07:22:47.604030 | 2022-02-02T09:06:12 | 2022-02-02T09:06:12 | 229,194,648 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 433 | cpp | #include <vector>
#include <iostream>
int main()
{
std::vector<int> c{ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
for (auto& i : c) {
std::cout << i << " ";
}
std::cout << '\n';
c.erase(c.begin());
for (auto& i : c) {
std::cout << i << " ";
}
std::cout << '\n';
c.erase(c.be... | [
"rus_iv@list.ru"
] | rus_iv@list.ru |
90654c6a83d295745498a596b68849a85f611c22 | 92cee0ea17efeb26c8941c068af958b57566a72c | /Terrain.h | 10716ca6eb62905e9c09dab4a1cc19626a5e54b9 | [] | no_license | vipnet1/StrategyTest | 76b87f5b78def0ec0090e1a19d1b0e5856771da4 | 7c429e7707656d5dbd5dfdc1bca6c541d32277a1 | refs/heads/master | 2023-06-15T15:34:35.257086 | 2021-07-14T15:03:42 | 2021-07-14T15:03:42 | 385,967,243 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,540 | h | #pragma once
#include "Texture.h"
#include "Shader.h"
#include "VertexArray.h"
#include "VertexBuffer.h"
#include "IndexBuffer.h"
#define VERTEX_COUNT 64 //should be size of heightMap
#define WORLD_SIZE 128.0f
struct RenderData
{
VertexBuffer* vb;
IndexBuffer* ib;
};
static float barryCentric(glm::vec3 p1, glm::v... | [
"timur.pichkhadze@gmail.com"
] | timur.pichkhadze@gmail.com |
577f50e0ca83644766fb781e4f74f80cadf5e4b5 | ba55c9f2bb1acaf9f0063a5ac730cb6117bf799d | /epaper-web-image/epaper-web-image.ino | 32303cf6683d79686ad46f9518e4ad4ef1703640 | [] | no_license | 102orion/esp8266 | a6e8d99e357bfafcdfeec7a0cbbb1231c67d370f | 94bb53c937e2415bdef31a0a783dd0d66de37cd2 | refs/heads/master | 2020-03-24T10:12:39.461508 | 2018-06-20T16:14:12 | 2018-06-20T16:14:12 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,923 | ino | //
// Alternate between displaying two images, fetched from a remote URL.
//
// This script is designed to display a pre-processed image upon a 4.2"
// epaper, and is based upon the writeup located here:
//
// https://steve.fi/Hardware/d1-epaper/
//
// To use this you'll need to:
//
// 1. Find a monochrome image wh... | [
"steve@steve.org.uk"
] | steve@steve.org.uk |
4ac1c9e3ddf4301351abd8c8b9c834e5ac55d402 | b7f3edb5b7c62174bed808079c3b21fb9ea51d52 | /components/offline_pages/core/downloads/download_ui_adapter.cc | b1455972579121d839b9a3a093a8f2c447828488 | [
"BSD-3-Clause"
] | permissive | otcshare/chromium-src | 26a7372773b53b236784c51677c566dc0ad839e4 | 64bee65c921db7e78e25d08f1e98da2668b57be5 | refs/heads/webml | 2023-03-21T03:20:15.377034 | 2020-11-16T01:40:14 | 2020-11-16T01:40:14 | 209,262,645 | 18 | 21 | BSD-3-Clause | 2023-03-23T06:20:07 | 2019-09-18T08:52:07 | null | UTF-8 | C++ | false | false | 19,658 | 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/offline_pages/core/downloads/download_ui_adapter.h"
#include <utility>
#include "base/bind.h"
#include "base/bind_helpers.h"
#inclu... | [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
db2deff590fe84d42a348f04be679f240a346df1 | 7be8e3636bf08ebdc6662879dc5afec548705537 | /ios/Pods/Flipper-Folly/folly/system/MemoryMapping.h | f2f143d4eb4eaa67adeaa604a9077bd15046941e | [
"MIT",
"Apache-2.0"
] | permissive | rdhox/react-native-smooth-picker | 3c7384f1fed0e37f076361cce96071d01b70e209 | ae9316c49512f7ed9824c5a3ad50cdf5e80fffa9 | refs/heads/master | 2023-01-08T16:59:40.709147 | 2021-07-03T14:13:21 | 2021-07-03T14:13:21 | 160,224,312 | 230 | 31 | MIT | 2023-01-06T01:46:04 | 2018-12-03T16:54:10 | TypeScript | UTF-8 | C++ | false | false | 8,103 | h | /*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* 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 applic... | [
"admin@rdhox.io"
] | admin@rdhox.io |
37825876bc03b18bc218648eb31d301e5fb1de88 | a850b07742a9573c48e3f655cf66990fd41c32da | /component.h | e36faf0f206b0b6d1e9efcc5965119f566d24cfd | [] | no_license | StewartDouglas/EnigmaMachine | 3c2fd7da7c36efa0c752f56157aa4944d1f06452 | 6a66356b6506c9d21b78886f4eba092d3f477b7d | refs/heads/master | 2020-12-09T12:29:59.437468 | 2016-09-07T11:34:53 | 2016-09-07T11:34:53 | 14,539,774 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,294 | h | #ifndef __COMPONENT_H_INCLUDED__
#define __COMPONENT_H_INCLUDED__
#include "enigma.h"
/* Component is an abstract class and is the superclass of the classes
'Plugboard', 'Reflector' and 'Rotor'.
** Attributes **
- component_array: records how the component maps the alphabet onto itself.
- connectio... | [
"stewart@Stewarts-MacBook-Air.local"
] | stewart@Stewarts-MacBook-Air.local |
0bbf268346539072ed1209a4e79764a365cb7456 | 01ec5fae952211e0a0ab29dfb49a0261a8510742 | /backup/source/cpp/[923]三数之和的多种可能.cpp | 9e44f91a92431961581907a049794078e437ec21 | [] | no_license | algoboy101/LeetCodeCrowdsource | 5cbf3394087546f9051c493b1613b5587c52056b | 25e93171fa16d6af5ab0caec08be943d2fdd7c2e | refs/heads/master | 2021-02-20T00:18:51.225422 | 2020-06-21T09:04:24 | 2020-06-21T09:04:24 | 245,323,834 | 10 | 4 | null | 2020-03-09T02:23:39 | 2020-03-06T03:43:27 | C++ | UTF-8 | C++ | false | false | 1,114 | cpp | //给定一个整数数组 A,以及一个整数 target 作为目标值,返回满足 i < j < k 且 A[i] + A[j] + A[k] == target 的
//元组 i, j, k 的数量。
//
// 由于结果会非常大,请返回 结果除以 10^9 + 7 的余数。
//
//
//
// 示例 1:
//
// 输入:A = [1,1,2,2,3,3,4,4,5,5], target = 8
//输出:20
//解释:
//按值枚举(A[i],A[j],A[k]):
//(1, 2, 5) 出现 8 次;
//(1, 3, 4) 出现 8 次;
//(2, 2, 4) 出现 2 次;
//(2, 3, 3) 出现 2... | [
"chenwenwen0210@126.com"
] | chenwenwen0210@126.com |
b009b9f39d70114edab54331df16ead8e5ed7855 | 9e132cf7bd429c8ea78582e0347c9a0084fdae09 | /src/ass/ass3.cc | ab64d8543d214005291cc2687da63c77cab30325 | [] | no_license | sfcompaz/rmmm | d0cd72341641e1e2f03f8031b0e0ab5ad0715eef | 2dbdee000a27cbece43b1380d04294dc3aeaa6b0 | refs/heads/master | 2020-07-01T23:05:27.143193 | 2016-02-11T12:58:45 | 2016-02-11T12:58:45 | 13,830,028 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 194 | cc | #include "ass.ih"
Ass::Ass(Ass &&tmp)
:
d_capacity(tmp.d_capacity),
d_size(tmp.d_size),
d_hashes(tmp.d_hashes)
{
tmp.d_size = 0;
tmp.d_capacity = 0;
tmp.d_hashes = 0;
}
| [
"reneprogrammeert@xs4all.nl"
] | reneprogrammeert@xs4all.nl |
eb0ed378a8a84a634214196edabddfd86ad41def | ba64cf68fa030cc3ee95e758d9b7324901bb71e5 | /2019-Robot-Code/src/main/cpp/commands/SpeedTest.cpp | 31bbaf54e95e2b2502980f77d555856dbc991278 | [] | no_license | PRHS-Robotics/2019-Robot-Code | 9c1319a363c753daf938944e25c78877d5464b6d | 5818d37bb6c38cc263f6c792da047bd407fe7ce7 | refs/heads/master | 2020-04-05T02:27:30.696769 | 2019-03-23T14:02:28 | 2019-03-23T14:02:36 | 156,477,559 | 4 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 589 | cpp | #include "commands/SpeedTest.h"
#include "Robot.h"
#include "subsystems/DriveTrain.h"
SpeedTest::SpeedTest(Input *input) :
m_input(input),
Command("SpeedTest", *static_cast< frc::Subsystem* >(Robot::m_driveTrain.get()))
{
}
void SpeedTest::Initialize() {
}
void SpeedTest::Execute() {
Robot::m_driveTrai... | [
"sciencedude2003@gmail.com"
] | sciencedude2003@gmail.com |
3db96e4f6ccae66f56e494fd74d95172fd584c2c | 47b88e37be84a08ad1b49120c23fada7493859d7 | /V8Parser/out.gn/x64.release.sample/gen/torque-generated/src/builtins/array-tq-csa.cc | 6c34e215e6131b6fd307a9cfa821e515c9a1f3ab | [] | no_license | misterpilou/playweb | 18283fa9ff6d7b7a72148c2e7bd48cd016ee0699 | 6c943e362683b83de15bc403945798dfadf9ba97 | refs/heads/master | 2020-09-23T01:43:43.783684 | 2019-12-14T11:16:21 | 2019-12-14T11:16:21 | 225,369,119 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 38,171 | cc | #include "src/builtins/builtins-array-gen.h"
#include "src/builtins/builtins-bigint-gen.h"
#include "src/builtins/builtins-collections-gen.h"
#include "src/builtins/builtins-constructor-gen.h"
#include "src/builtins/builtins-data-view-gen.h"
#include "src/builtins/builtins-iterator-gen.h"
#include "src/builtins/builtin... | [
"pierrelouis.chevallier60@gmail.com"
] | pierrelouis.chevallier60@gmail.com |
ab3ba6180e327e9091ae75a4893465b82060bce7 | 4f21cd511b2b9f7a9c944027a2bc643071188d25 | /Code Design and Data Structures/Exercises/DynamicArrays/DynamicArrays/main.cpp | e89cb6d7adbeced2063f08b12ffff432bf1c3c45 | [] | no_license | MoltenMoustache/AIE_Year_One | f87b5405938c9894b90949e19c7f10376359d67b | 5a50c65e120e9c466c718e77ef42c608073a8094 | refs/heads/master | 2020-04-26T15:03:52.077158 | 2019-05-18T11:29:07 | 2019-05-18T11:29:07 | 173,635,406 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,583 | cpp | #include <iostream>
#include "dynamic_array.h"
#include "linked_list.h"
#include "stack.h"
#include "Queue.h"
#include <ctime>
int main() {
srand(time(nullptr));
//// *** DYNAMIC ARRAY ***
std::cout << "Dynamic Array:\n";
dynamic_array<int> intArray;
// Pushes 10 random numbers between 1 & 50, then displays t... | [
"45628513+MoltenMoustache@users.noreply.github.com"
] | 45628513+MoltenMoustache@users.noreply.github.com |
8db84a10455416a4db287858897c106b89b728d3 | c6a9aebb98fe56696e31232b9e8316ba34907be0 | /TM/interface/vertexInfo.h | c9fc1a138256a4293937ed41f45494e968d97c39 | [] | no_license | pallabidas/TreeMaker | 294cfd1c34aebae9669ee30e92e9bd1793977576 | e26d57d43bddc3652238257a3cc9f551dae6159e | refs/heads/master | 2023-05-01T00:25:37.437327 | 2023-04-23T11:06:48 | 2023-04-23T11:06:48 | 555,332,894 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,079 | h | #ifndef __VERTEX_INFO_H_
#define __VERTEX_INFO_H_
#include <memory>
#include <string>
#include <iostream>
#include <vector>
#include "TTree.h"
#include "TVector3.h"
#include "TClonesArray.h"
#include "FWCore/Framework/interface/Event.h"
#include "DataFormats/Common/interface/Handle.h"
#include "DataFormats/VertexReco/... | [
"pallabi91@gmail.com"
] | pallabi91@gmail.com |
7debf79bc442a101416c52076a81d3660a515cdc | ad273708d98b1f73b3855cc4317bca2e56456d15 | /aws-cpp-sdk-kms/include/aws/kms/model/ImportKeyMaterialResult.h | 70fa66bd2a0ec2d52f511054fed506c72a0819e1 | [
"MIT",
"Apache-2.0",
"JSON"
] | permissive | novaquark/aws-sdk-cpp | b390f2e29f86f629f9efcf41c4990169b91f4f47 | a0969508545bec9ae2864c9e1e2bb9aff109f90c | refs/heads/master | 2022-08-28T18:28:12.742810 | 2020-05-27T15:46:18 | 2020-05-27T15:46:18 | 267,351,721 | 1 | 0 | Apache-2.0 | 2020-05-27T15:08:16 | 2020-05-27T15:08:15 | null | UTF-8 | C++ | false | false | 1,198 | h | /*
* Copyright 2010-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" fil... | [
"henso@amazon.com"
] | henso@amazon.com |
5283f1aeecc61ecfe2af4e3633780ea6c81623a1 | f41781fe551719387576f025e2c89579b9eff3a2 | /maze/main.cpp | b16d20249516ae6d4934677c93aa4dd5e4c0b9ec | [] | no_license | pragmadox/data_structures | a17842a6f5218b8d4560dfaee9a4a308abcd82f3 | 24e79cae37f60a0a67b26de0b2e581bad4e5b891 | refs/heads/master | 2021-01-12T15:02:45.376714 | 2016-12-12T19:41:20 | 2016-12-12T19:41:20 | 71,669,720 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 851 | cpp | #include <stdio.h>
#include <iostream>
#include <iomanip>
#include <sstream>
#include <fstream>
#include <string>
#include <vector>
#include "maze.h"
#include "stack6.h"
int main()
{
//Create an object 'maze1' of type Maze;
Maze maze1;
maze1.coord_stack.initialize_stack(100);
//Call each function.
... | [
"jared.x.price@gmail.com"
] | jared.x.price@gmail.com |
d57a4ae3a97b943003397a020804760989b6a251 | 6128206ba3c67400a33b6237a5f1a5a0313b3d09 | /Robotics/PointCloud/PointCloudFilter/Filters/RandomRemovalFilterComponent.H | d9eab0729904efc8cb1a062664495516832f3657 | [] | no_license | sagargp/nrt-modules | bf9d7776d379cfc316373bd160dc46efe3caa8bd | 2b033ca83a499331ee2b694411563faa3901b8fc | refs/heads/master | 2021-01-18T09:51:27.255242 | 2012-05-09T22:24:33 | 2012-05-09T22:24:33 | 2,984,223 | 0 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 3,806 | h | /*! @file Algorithms/PointCloud/Filter/RandomRemovalFilterComponent.H
A component for radius filtering */
// //////////////////////////////////////////////////////////////////// //
// The NRT iLab Neuromorphic Vision C++ Toolkit, Copyright(C) 2000-2011 //
// by the University of Southern California (USC) and the i... | [
"voorhies@usc.edu"
] | voorhies@usc.edu |
606293243ad95c09bb447a8e0d3f0899b2c945c4 | d51fb8c894b39d6828bf82233d5caec90a67081f | /plugins/gstFpsCount/FpsCount.h | e530c1e5e563ddc669225659d367e8fc00d0db4f | [] | no_license | vchernov/underwater_video_enhancement | bc1f6e0e7a70892af34ae7cb5308bf3e4656219b | 939da7b53659a6d568edf4ea3720e924201c096b | refs/heads/master | 2021-06-09T04:28:24.485405 | 2016-10-14T22:01:38 | 2016-10-14T22:01:38 | 9,893,199 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 872 | h | #ifndef FPSCOUNT_H_
#define FPSCOUNT_H_
#define GST_PLUGIN_TYPE GstFpsCount
#include <timeutil/FpsCounter.h>
#include <gstPluginWrap.h>
namespace gstPluginWrap {
namespace details {
const char* name = "fpscount";
const char* longName = "FPS counter";
const char* classification = "Generic";
const char* description ... | [
"2chernov@gmail.com"
] | 2chernov@gmail.com |
5dcc8e26772efe937dc7b4f34af9c2ab544373a8 | bdd6985d528d1605633257be6359dec10f0d303a | /Server-Client/Vetorzao.cpp | d025d9203aa9745cc495a9c4d1f878dfe4ca882d | [] | no_license | Uncharacteristically/BD_g8 | a64bd2be55b8656d229f5bbad12c7fb9348ab66e | 17e87a55dc1cc9a179835f0b3c8e341965ea5de5 | refs/heads/master | 2021-05-27T00:31:23.023210 | 2012-11-28T22:54:31 | 2012-11-28T22:54:31 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,526 | cpp | /*
* File: Vetorzao.cpp
* Author: alexandre
*
* Created on October 19, 2012, 8:15 PM
*/
#include "Vetorzao.h"
Vetorzao::Vetorzao() {
}
void Vetorzao::reset(string Coord) {
int w;
int vi=0;
int term_a=0;
char term[20];
for(w=0; w<SIZE; w=w+1) {
while(Coord[vi]==' ')
... | [
"alexandre@Alexandres-MacBook-Air.local"
] | alexandre@Alexandres-MacBook-Air.local |
85a10e0210be2662d6e3e666e31087522fe41b29 | 083100943aa21e05d2eb0ad745349331dd35239a | /aws-cpp-sdk-s3/source/model/UploadPartResult.cpp | 9feea2896fcb3c476fd12859aa40f9f4629f67cd | [
"JSON",
"MIT",
"Apache-2.0"
] | permissive | bmildner/aws-sdk-cpp | d853faf39ab001b2878de57aa7ba132579d1dcd2 | 983be395fdff4ec944b3bcfcd6ead6b4510b2991 | refs/heads/master | 2021-01-15T16:52:31.496867 | 2015-09-10T06:57:18 | 2015-09-10T06:57:18 | 41,954,994 | 1 | 0 | null | 2015-09-05T08:57:22 | 2015-09-05T08:57:22 | null | UTF-8 | C++ | false | false | 2,645 | cpp | /*
* Copyright 2010-2015 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file... | [
"henso@amazon.com"
] | henso@amazon.com |
a51adb26e8ca3d3b1385134f8588ffbfc7e06eb0 | 69b4f7c49f18fc193f49275a2d32ffbcbe70471d | /C++ Basics/Bai tap/173.cpp | c8fa24f25b78b10b24240b7947843f0fe55fc7cb | [] | no_license | TD2106/Competitive-Programming | 05f322a14f1e7a1d62633b713f1416ab0c547b3b | 2905c9d5f36909330fc3637f5461aaba8928a154 | refs/heads/master | 2020-04-03T12:59:49.790124 | 2019-09-21T14:51:08 | 2019-09-21T14:51:08 | 155,270,877 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 177 | cpp | #include <iostream>
using namespace std;
int main ()
{
int n,s,nam=0;
cin>>n;
s=9870;
while(1)
{
s=s+s*0.1;
nam++;
if(s>n)
break;
}
cout<<nam<<endl;
return 0;
}
| [
"duy.le@ubitec.ch"
] | duy.le@ubitec.ch |
b6e80ebad36510f187c652c69c08e0b88c3d1965 | 74a37a606a86c273bef5193238eda15a28a5d018 | /pcl_tutorials/registration/registration_binlang.h | cf32e388483d5b124b8bc23ff790583aff1cd6e9 | [] | no_license | mzeybek583/pcl_tutorials | 281be18361c592be4001175a384df79dd69fbdae | 521453549631e28bedbcf3d461faf52ce147653f | refs/heads/master | 2021-04-02T02:27:59.571536 | 2019-04-26T13:01:52 | 2019-04-26T13:01:52 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 7,448 | h | #pragma once
#include <Eigen/Core>
#include <pcl/point_types.h>
#include <pcl/point_cloud.h>
#include <pcl/common/time.h>
#include <pcl/console/print.h>
#include <pcl/features/normal_3d.h>
#include <pcl/features/normal_3d_omp.h>
#include <pcl/features/fpfh.h>
#include "pcl/features/fpfh_omp.h"
#include <pcl/filters/fil... | [
"jackros1022@users.noreply.github.com"
] | jackros1022@users.noreply.github.com |
aecf31eef7ebbeb8a111d4c664c42f24799101f5 | 73023c191f3afc1f13b39dffea22b7f65a664f7d | /MatrixEngine/Classes/MCocoStudio/Native/ScriptBind_CCArmAnim.h | 35070bc3d3055ebfbe9092efa0a04df77659138f | [] | no_license | ugsgame/Matrix | 0a2c2abb3be9966c3cf7a4164799ed107c8f2920 | 1311b77bd9a917ec770e428efb9530ee6038617a | refs/heads/master | 2020-09-05T15:45:45.973221 | 2019-11-07T07:20:38 | 2019-11-07T07:20:38 | 220,145,853 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,154 | h |
#ifndef __SCRIPTBIND_CCARMANIM__
#define __SCRIPTBIND_CCARMANIM__
#include "ScriptBind_CocoStudio.h"
class cocos2d::extension::CCArmature;
class cocos2d::extension::CCArmatureAnimation;
class cocos2d::extension::CCColliderFilter;
class ScriptBind_CCArmAnim:public ScriptBind_CocoStudio
{
public:
ScriptBind_CCArmAni... | [
"670563380@qq.com"
] | 670563380@qq.com |
5e1f77d0ab31d2b8a0334836d8e0053bdc852555 | d3667989cbfef8941e11bd445c0573dd91454883 | /5_sizeof.cpp | d0a25622b6ab61605e1138e3f348f8ec78e6fe07 | [] | no_license | djeriko/cpp_algoritms_and_data_structures | 6cb98849378e62b075ff91c47f20c33c584b4376 | 72b0baedca697b75fa588c3370544694d3716540 | refs/heads/master | 2021-06-10T19:16:26.854482 | 2020-07-22T15:19:08 | 2020-07-22T15:19:08 | 254,341,750 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 559 | cpp | #include <iostream>
int main()
{
using namespace std;
struct t_Pair
{
int a;
int b;
};
bool x;
int y;
long long int z;
float a;
double b;
t_Pair p;
cout << sizeof(x) << '\n';
cout << sizeof(int) << '\n';
cout << sizeof(z) << endl;
cout << sizeof(a) << endl;
cout << sizeof... | [
"jerikosalivan@gmail.com"
] | jerikosalivan@gmail.com |
494922962299ed1146ac6869d68f7a350e353480 | 38582d46c7497e617b93e67b382b01c06819152b | /JustinHowellAS4/JustinHowellAS3/src/GfxMgr.cpp | e830013b311fbdcce91b5aecf68c1037c31eeebb | [] | no_license | jhowell702/2020-Spring-CS326-OgreAssignments | 23be52844ae17a4d35cde78ca05b2afd2618837d | 7ee889c325d810dbf79495e33fc316eb3abd595c | refs/heads/main | 2023-08-20T16:30:51.270073 | 2021-10-18T16:24:11 | 2021-10-18T16:24:11 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,459 | cpp | #include <GfxMgr.h>
#include <OgreEntity.h>
#include <OgreCamera.h>
#include <OgreViewport.h>
#include <OgreSceneManager.h>
#include <OgreRenderWindow.h>
#include <OgreConfigFile.h>
#include <OgreException.h>
GfxMgr::GfxMgr(Engine* eng)
: Mgr(eng)
{
mRoot = 0;
mWindow = 0;
mSceneMgr = 0;
mCamera = 0;
mInputMgr... | [
"justinhowell@nevada.unr.edu"
] | justinhowell@nevada.unr.edu |
73934ace279f82820d53dda116225995191cd3a2 | db106a7dc3312ea892e780aa83effb5ddcbd0acd | /src/MainMenu.cpp | 3a7748ad5643458aa190a440c35be5c81d5e14b6 | [
"Apache-2.0"
] | permissive | 00steve/Lapster | 0915f013527619b245dc7b9e9d4b381e942071f5 | 42c11d7bf96694c36f75d938563031cb08951ff1 | refs/heads/master | 2021-01-12T06:16:31.465885 | 2017-01-15T15:46:24 | 2017-01-15T15:46:24 | 77,334,276 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 712 | cpp | #include "MainMenu.h"
void MainMenu::Setup(){
}
MainMenu::MainMenu(){
Setup();
Draw();
}
MainMenu::~MainMenu(){
}
void MainMenu::Update(){
if(Button::CheckForScreenPressed()){
if(settingsButton.Pressed()){
Set(MODE_SETTINGS);
}
if(dataLoggerButton.Pressed()){
... | [
"stevemkrenz@gmail.com"
] | stevemkrenz@gmail.com |
04d1d1c33ae527028e90d1d9679d88a849c93e09 | 9949a7e070e6ce7ad92f069ad9c5574f65f5f0a0 | /algorithm/007-reverse_integer/cpp/solution.h | 4a0fa163e87de9bafa19e7ca1bbb06a6c28397d4 | [] | no_license | Slashyouth/arts | 84aa6530cd4427cec3a971de73bdc60ad82a5a84 | 63ddaabc41f2fcdcce25145454e3bbdc3a8e38cd | refs/heads/master | 2020-06-23T13:10:39.599873 | 2019-07-15T10:13:02 | 2019-07-15T10:13:02 | 198,633,331 | 2 | 0 | null | 2019-07-24T12:41:24 | 2019-07-24T12:41:24 | null | UTF-8 | C++ | false | false | 65 | h | class Solution {
public:
// todo: algorithm implementation
}; | [
"id@philon.cn"
] | id@philon.cn |
fdf0c1c35f486fc54c9b19241ecadbd9d0333e4a | c2b4dd8c41079ff46a5d26b8eb480a9ad31fdc12 | /SR-04/csb.ino | 5a356d7e5f885bfed9a60c9a3c61ae9b8083f9a9 | [] | no_license | poweryzp/arduino | 26f1e8bb417aefa824409b76f42db0263bed5198 | c9ec5f50026d97b03dd84065ecc7685099c88627 | refs/heads/master | 2020-06-25T22:51:50.215685 | 2020-04-18T11:27:23 | 2020-04-18T11:27:23 | 199,445,423 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,116 | ino | #include <Adafruit_GFX.h>
#include <Arduino_ST7789.h>
#include <SPI.h>
#define Trig 2
#define Echo 3
#define TFT_DC 8
#define TFT_RST 9
#define TFT_MOSI 11
#define TFT_SCLK 13
Arduino_ST7789 tft = Arduino_ST7789(TFT_DC, TFT_RST);
float cm;
float temp;
void setup(){
Serial.begin(9600)... | [
"noreply@github.com"
] | poweryzp.noreply@github.com |
de2b5a40e5b588dafa9a57b8dd351d4dd36bf913 | a9ba45404a4a1e5782e65225b4fe4aa6c5542b13 | /sstcore-6.0.0/src/sst/core/serialization/statics.cc | f588bc87b379250accd167e0623d68ca8a195e3c | [] | no_license | Knoxort/BE-SST | 099237bb2d604c46e82950db79758ffa1800fa67 | fe47a954489dbe6b361a0776eae0bd65dcb40523 | refs/heads/master | 2020-04-02T14:33:11.503958 | 2017-10-05T17:00:26 | 2017-10-05T17:00:26 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 966 | cc | // Copyright 2009-2016 Sandia Corporation. Under the terms
// of Contract DE-AC04-94AL85000 with Sandia Corporation, the U.S.
// Government retains certain rights in this software.
//
// Copyright (c) 2009-2016, Sandia Corporation
// All rights reserved.
//
// This file is part of the SST software package. For licens... | [
"chenna@hcs.ufl.edu"
] | chenna@hcs.ufl.edu |
b59d6df349201f7a7de283f174792309f8fe94c5 | 9a3b9d80afd88e1fa9a24303877d6e130ce22702 | /src/Providers/UNIXProviders/VolumeSet/UNIX_VolumeSet_VMS.hxx | acacfe756a28cee4cc7fcddc1ccbe2d080a1c1bc | [
"MIT"
] | permissive | brunolauze/openpegasus-providers | 3244b76d075bc66a77e4ed135893437a66dd769f | f24c56acab2c4c210a8d165bb499cd1b3a12f222 | refs/heads/master | 2020-04-17T04:27:14.970917 | 2015-01-04T22:08:09 | 2015-01-04T22:08:09 | 19,707,296 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,801 | hxx | //%LICENSE////////////////////////////////////////////////////////////////
//
// Licensed to The Open Group (TOG) under one or more contributor license
// agreements. Refer to the OpenPegasusNOTICE.txt file distributed with
// this work for additional information regarding copyright ownership.
// Each contributor lice... | [
"brunolauze@msn.com"
] | brunolauze@msn.com |
1fbeb449557b45f165aee6e1e4fd63f16923b446 | 0a5d2aaf9c9ef5a4b2a099c15127c0bc99240ed8 | /mainwindow.cpp | e29298c97c1a8d4b71183ceed7e019e4132434e6 | [] | no_license | haibin-chen/tank_war_qt | be266a9f92fa643e8455633f57b5f3d64890f636 | 68580891fd525a046ed8e385c96956588706c71b | refs/heads/master | 2020-04-27T00:47:09.467021 | 2019-03-06T04:37:47 | 2019-03-06T04:37:47 | 173,945,686 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 15,287 | cpp | #include "mainwindow.h"
MainWindow::MainWindow(QWidget *parent)
: QMainWindow(parent)
{
Sleep(1000);
showInformationMsg1();
showInformationMsg2();
//设置窗口名称
setWindowTitle("Tank War");
//设置窗口图标
setWindowIcon(QIcon(":/new/icon/pixs/p1tankU.png"));
//设置窗口大小
setFixedS... | [
"noreply@github.com"
] | haibin-chen.noreply@github.com |
f0208662baa254241ef12e5dd024739d2f47eda0 | b3ae5b71c7c08fccd7653f38688ed4ae4fd4c8ea | /GPS_L1_Serch/SignalProcDlg/GnrlDefine.h | ae21244c6073d0dd0e1bcbcfd544a03b712d450f | [] | no_license | shihatakeyama/GPS_L1_Serch | fcb3046e34f9fbe03559078ad4e92a9c6a1abc76 | f78a6f251e21ce333461cfed587efe00f616ae43 | refs/heads/master | 2022-11-16T00:26:17.872848 | 2020-07-13T00:40:37 | 2020-07-13T00:40:37 | 271,734,682 | 0 | 1 | null | null | null | null | SHIFT_JIS | C++ | false | false | 2,808 | h | /***********************************************************************************
* Gnrlで必要なデファイン
* Gnrlをコンパイルするソースは、必ず本ファイルをインクルードして下さい。
*
* GnrlDefine.h
* (旧 GlobalDefine.h)
*
* 2013/06/31 Createed
***********************************************************************************/
#ifndef GNRLDEFINE_H
#defin... | [
"57062795+shihatakeyama@users.noreply.github.com"
] | 57062795+shihatakeyama@users.noreply.github.com |
3e2f10fedf00d94acd609740b079ea396970b89d | 0db28bf724b7d7b54ab8426e2b376a418a2e6d57 | /CMC040/cmcfun/outp_finish.cc | 58d8e0df41ce71a1982108b2ab6e969038b33cc2 | [
"MIT"
] | permissive | khandy21yo/aplus | 48ea413a26a4a5e23ab557e6dd3560c6a579aba5 | 3b4024a2a8315f5dcc78479a24100efa3c4a6504 | refs/heads/master | 2021-01-11T06:53:05.825792 | 2019-03-08T23:30:37 | 2019-03-08T23:30:37 | 72,404,068 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,084 | cc | //! \file
//! \brief Close Out Any Open Report
// %SBTTL "OUTP_FINISH"
// %IDENT "V3.6a Calico"
////
// Source: ../../CMC030/cmcfun/source/outp_finish.bas
// Translated from Basic to C++ using btran
// on Monday, January 08, 2018 at 12:38:19
//
#include <iostream>
#include <cstdlib>
#include <cstring>
#include <unistd... | [
"khandy21yo@gmail.com"
] | khandy21yo@gmail.com |
3f3fa12f61d6668d222f285f680e5a2b572c4891 | 53b7d017afc59d62e0b22f817efbfa497d03b7e9 | /CallKinectSourceData/pch.h | cc91b19c5969301da876f5f5ae28729922461a97 | [] | no_license | yangsen228/CallKinectSourceData | 9f9427d0f9c6988e7dd356822f9249b8967179d1 | 60e3874d64aab9c3207fb7c530e86e38f977080a | refs/heads/master | 2020-06-09T15:02:15.506630 | 2019-07-04T14:28:20 | 2019-07-04T14:28:20 | 191,879,907 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 808 | h | // 入门提示:
// 1. 使用解决方案资源管理器窗口添加/管理文件
// 2. 使用团队资源管理器窗口连接到源代码管理
// 3. 使用输出窗口查看生成输出和其他消息
// 4. 使用错误列表窗口查看错误
// 5. 转到“项目”>“添加新项”以创建新的代码文件,或转到“项目”>“添加现有项”以将现有代码文件添加到项目
// 6. 将来,若要再次打开此项目,请转到“文件”>“打开”>“项目”并选择 .sln 文件
#include <iostream>
#include <time.h>
#ifndef PCH_H
#define PCH_H
template<class Interface>
i... | [
"yangsen228@gitee.com"
] | yangsen228@gitee.com |
a6f5a7504cb20d7b4dd8f80d0e65b8cb1f8d1be4 | ac3e2cba05d4c20a3a406fe89bc30e974a983272 | /266A.cpp | f3610959b5cb3df51904c3a365331c1ef82baaea | [] | no_license | parasharabhijeet/Codeforces-solutions- | 27823731108054fba79f0d20be679eede94705f2 | d8b7d1624cdb22dfe853f77b4d0d63c7dc3bcb0d | refs/heads/master | 2020-06-12T18:30:33.675675 | 2019-07-10T08:27:57 | 2019-07-10T08:27:57 | 194,387,904 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,028 | cpp | /*
Hey there stalker....
█▀▀▄░░░░░░░░░░░▄▀▀█
░█░░░▀▄░▄▄▄▄▄░▄▀░░░█
░░▀▄░░░▀░░░░░▀░░░▄▀
░░░░▌░▄▄░░░▄▄░▐▀▀
░░░▐░░█▄░░░▄█░░▌▄▄▀▀▀▀█
░░░▌▄▄▀▀░▄░▀▀▄▄▐░░░░░░█
▄▀▀▐▀▀░▄▄▄▄▄░▀▀▌▄▄▄░░░█
█░░░▀▄░█░░░█░▄▀░░░░█▀▀▀
░▀▄░░▀░░▀▀▀░░▀░░░▄█▀
░░░█░░░░░░░░░░░▄▀▄░▀▄
░░░█░░░░░░░░░▄▀█░░█░░█
░░░█░░░░░░░░░░░█▄█░░▄▀
░░░█░░░░░░░░░░░... | [
"noreply@github.com"
] | parasharabhijeet.noreply@github.com |
f96fbd547710eb409291a8fbf21e2e9c4a6d664c | 02bbc0eb91bee8ee80071000bd4c206232dade02 | /Win32/Win32 004/my_common.h | 3b34cd94f360913f48da9bec9e3e2b96be723f04 | [
"MIT"
] | permissive | SimpleTalkCpp/SimpleTalkCpp_Tutorial | f996173bce45f9cb7e33ba5be1f6f1ceb615e733 | 760a14086eb688346085b21e589b963ac5618c82 | refs/heads/main | 2023-04-15T09:54:47.950086 | 2023-04-08T12:44:39 | 2023-04-08T12:44:39 | 98,706,808 | 44 | 18 | null | null | null | null | UTF-8 | C++ | false | false | 182 | h | #pragma once
#include <stdio.h>
#include <windows.h>
#include <windowsx.h>
#include <stdint.h>
template<class T>
inline void my_bzero(T& s) {
memset(&s, 0, sizeof(s));
} | [
"SimpleTalkCpp@gmail.com"
] | SimpleTalkCpp@gmail.com |
f76be8b5051deb8f8da8097ed69363aa9bff71c5 | acd92f081599799a46f88201747ee29fab305801 | /engine/rendering/ViewCamera.cpp | 49d03cb1aafefa0acaa5a55128a9caf2aae551f7 | [] | no_license | shadow-lr/VulkanRenderer | 7d538cf07b8e1dd126cbe6b9c29838656b2b626e | 63ab42b0f48b768271472f4ce05371fe566144de | refs/heads/master | 2022-10-12T06:54:09.773120 | 2020-06-15T05:34:08 | 2020-06-15T05:34:08 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,168 | cpp | #include "ViewCamera.h"
#include "rendering/backend/Device.h"
const cml::vec3f WorldUp = cml::vec3f::up;
void ViewCameraData::Setup (CameraType type, cml::vec3f position, cml::quatf rotation)
{
this->type = type;
this->position = position;
this->rotation = rotation;
proj_mat_dirty = true;
view_mat_dirty = true;... | [
"cdgiessen@gmail.com"
] | cdgiessen@gmail.com |
0913c2bd5bed0f1dc84eafd370332b620596481c | d4a97c4c59e0c1320234e614b5182df631be1ba4 | /src/lexer.cpp | e771c746c2daa4174a10fe5b51f2723f46dc46e6 | [] | no_license | kakitgogogo/mcc | d4eb43aef90e95665845614003c044f62c516a24 | b8e6b65e553a714707f946c463aada65027e857c | refs/heads/master | 2021-04-15T09:27:08.642342 | 2018-05-10T05:00:59 | 2018-05-10T05:00:59 | 126,915,143 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 14,823 | cpp | #include <stdlib.h>
#include <errno.h>
#include <string.h>
#include <stdarg.h>
#include <algorithm>
#include "encode.h"
#include "lexer.h"
#include "buffer.h"
Lexer::Lexer(char* filename) {
FILE* fp = fopen(filename, "r");
if(!fp) {
error("Fail to open %s: %s", filename, strerror(errno));
}
fil... | [
"707828130@qq.com"
] | 707828130@qq.com |
d641f849ab0e2da5e906ccc356b36b50ef6c6014 | aa4899ac6c2b1eb0eb22d15953e18f7d1cdd4ee4 | /code/render/coregraphics/preshader.cc | 8ad3d23f7ca7df0705973758a3f41f3e6a1d20fd | [] | no_license | dzw/stellar2008 | bc2647f2a9eea03dea233335af66e9a916d2b1e3 | 5ff28d25b8cafdfccc79fa7e916b5cdc4f36b4ac | refs/heads/master | 2021-01-10T12:26:08.853827 | 2012-01-04T17:15:42 | 2012-01-04T17:15:42 | 36,920,393 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,397 | cc | //------------------------------------------------------------------------------
// preshader.cc
// (C) 2007 Radon Labs GmbH
//------------------------------------------------------------------------------
#include "stdneb.h"
#include "coregraphics/preshader.h"
#include "coregraphics/shaderinstance.h"
namesp... | [
"ctuoMail@gmail.com"
] | ctuoMail@gmail.com |
f460abe9c72d8c657dd3c67f2b4b1b63d887fa43 | 2b2bc705055c3ec1f70a0f3d953f21f395eeb0d8 | /Source/source/mob_fsms/ship_fsm.cpp | 703e564c588d3937c56d63a68053ae09391a0025 | [
"MIT"
] | permissive | Pablutnio/Pikifen | a058cefd37bb8d63989486c07d4c397f3e169909 | 724af6e554e59447b4362bb920c46a6f102efe35 | refs/heads/master | 2023-01-02T06:25:05.643701 | 2020-10-29T20:34:25 | 2020-10-29T20:34:25 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,560 | cpp | /*
* Copyright (c) Andre 'Espyo' Silva 2013.
* The following source file belongs to the open-source project Pikifen.
* Please read the included README and LICENSE files for more information.
* Pikmin is copyright (c) Nintendo.
*
* === FILE DESCRIPTION ===
* Ship finite state machine logic.
*/
#include "ship_fs... | [
"andreluis.g.silva@gmail.com"
] | andreluis.g.silva@gmail.com |
4da37c6fd867dddca48ea75a57c75ed3564e52dc | 193328418c6f5f69321dd4b9c42838e5f5ca5e9d | /GLTest/GLTest/VertexShader.cpp | a4cd459841d5e675ad832b4a7010ec1758ff4bf9 | [] | no_license | charre2017idv/OpenGLTesting | 9680abe207164d1d32fe6e9d1dd5117a642bd7d8 | 7cd34a1059f3e8002b35cc2af89811cf7e8c0c5c | refs/heads/master | 2020-08-29T17:31:14.281441 | 2019-10-28T19:48:12 | 2019-10-28T19:48:12 | 218,111,448 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 544 | cpp | #include "VertexShader.h"
VertexBuffer::VertexBuffer()
{
}
VertexBuffer::~VertexBuffer()
{
}
void VertexBuffer::Init(VertexBufferDesc _Desc)
{
m_Descriptor = _Desc;
RenderManager::getSingleton().CreateBuffer(*this);
}
void VertexBuffer::Bind() const
{
glBindBuffer(GL_ARRAY_BUFFER, m_VertexShader.ID);
}
vo... | [
"idv17c.rcharreton@uartesdigitales.edu.mx"
] | idv17c.rcharreton@uartesdigitales.edu.mx |
b269752ca718051efdab45c2a846cb3fdecd384b | d4291c13f4ebf3610f8c4adc75eede4baee0b2c1 | /RecoEgamma/ElectronIdentification/plugins/cuts/GsfEleTrkPtIsoRhoCut.cc | f99a133d0c86d5edc9e82ac7a5eda9766b8a78b9 | [
"Apache-2.0"
] | permissive | pasmuss/cmssw | 22efced0a4a43ef8bc8066b2a6bddece0023a66e | 566f40c323beef46134485a45ea53349f59ae534 | refs/heads/master | 2021-07-07T08:37:50.928560 | 2017-08-28T08:54:23 | 2017-08-28T08:54:23 | 237,956,377 | 0 | 0 | Apache-2.0 | 2020-02-03T12:08:41 | 2020-02-03T12:08:41 | null | UTF-8 | C++ | false | false | 2,505 | cc | #include "PhysicsTools/SelectorUtils/interface/CutApplicatorWithEventContentBase.h"
#include "DataFormats/EgammaCandidates/interface/GsfElectron.h"
#include "DataFormats/EgammaCandidates/interface/ConversionFwd.h"
#include "DataFormats/EgammaCandidates/interface/Conversion.h"
#include "RecoEgamma/EgammaTools/interface/... | [
"sam.j.harper@gmail.com"
] | sam.j.harper@gmail.com |
613ebe3932a687c835d663d345d5662cc6841bbd | a0e17c72de4cc6c7a58edb3b4a73766addca95e5 | /.ccls-cache/@Users@rampa2510@Desktop@algo/ArrayProblems@genSubArr.cpp | 558c2de60fba63e5037dd8d4632eff1c198e02bc | [] | no_license | rampa2510/dsa | 60d7da33eb2a566da54112fcee09539003ddecac | 4aee4c939eff5bac044c499f1a4f0b169f9a6109 | refs/heads/main | 2023-04-15T18:16:24.920370 | 2021-04-20T09:22:56 | 2021-04-20T09:22:56 | 335,856,168 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 278 | cpp | #include <iostream>
using namespace std;
int main() {
int a[5] = {1, 2, 3, 4, 5}, n = 5;
for (size_t i = 0; i < n; i++) {
for (size_t j = i; j < n; j++) {
for (size_t k = i; k <= j; k++)
cout << a[k] << ",";
cout << "\n";
}
}
return 0;
}
| [
"iamram2510@gmail.com"
] | iamram2510@gmail.com |
65065d2fb1e7da42ee3406d1f1e58b28f8e6c895 | 064742f5d72eed8e0a269cf7bdc1e6019973b237 | /SessionDescriptorGenericGrammar.hpp | 7c067d2bbaaac5dee7158a8f153666b9ddb3091e | [] | no_license | dries/WebP2P | 42e82fcf291a6fbc2b490bc0a9f6acafef374368 | 5497fd4fd7493fa3bcc493807d1b65f0a21e8cee | refs/heads/master | 2021-04-12T04:57:40.784303 | 2011-01-11T11:54:43 | 2011-01-11T11:54:43 | 1,144,692 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,816 | hpp | /**
* This file is part of WebP2P.
*
* WebP2P 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 Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* WebP2P is distributed in the ... | [
"dries.staelens@gmail.com"
] | dries.staelens@gmail.com |
4692027d4b7a7a49159d711a0cd44066cd1e8625 | a3585e97d02ed29a55c7353cb07bdcc40e080c7b | /Model/MaizePioneer/PlantInterface.cpp | 0f961d9a4dd800c61db6e903fbb0d5264f1a169c | [] | no_license | APSIMInitiative/APSIMClassic | d26a44585c57802f15b1f9a0641d2c21239905b5 | 2dc1d3475e340e45da473f1daf5e66e98f448361 | refs/heads/master | 2023-07-08T14:03:45.389036 | 2023-06-25T21:30:32 | 2023-06-25T21:30:32 | 130,158,232 | 32 | 47 | null | 2023-06-25T21:30:53 | 2018-04-19T04:17:59 | C# | UTF-8 | C++ | false | false | 550 | cpp | #include <ComponentInterface2/ScienceAPI2.h>
using namespace std;
#include "PlantInterface.h"
using namespace Maize;
//-----------------------------------------------------------------------------
// Create an instance of the Plant module
//-----------------------------------------------------------------------------... | [
"drew.holzworth@csiro.au"
] | drew.holzworth@csiro.au |
454faec6783aee105f017926519de8f91b7eb386 | 4f173bf5c7267ba37ea1afbf6f305b796dddc559 | /DlgED42Presets.h | bd59c70426c7d04dcafd1e61ce8ff0afa5b463fd | [] | no_license | antoine83/sicomex | d50d50c96222567a63720db6831901b79782e3f8 | 260f3b835a0050a321f2bf5bbe130a932476f154 | refs/heads/master | 2020-12-24T20:24:45.306792 | 2017-03-26T16:25:16 | 2017-03-26T16:25:16 | 86,247,091 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,696 | h | #if !defined(AFX_DLGED42PRESETS_H__064461CF_9249_4A3F_BB20_B93B3C180F1A__INCLUDED_)
#define AFX_DLGED42PRESETS_H__064461CF_9249_4A3F_BB20_B93B3C180F1A__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// DlgED42Presets.h : header file
//
#include "Equip\EquipED42.h"
#include "DlgED42PresetsTab.h"
... | [
"antoine.linux@sfr.fr"
] | antoine.linux@sfr.fr |
f4d087f71a232876b23e1df6a9825c38e1bcbda8 | 7c7cf9a52095378f5340b61c0a27b10238cecfc9 | /Source/RushReborn/Public/AI/BTTask_Idle.cpp | 59a719f070c94fab9e809c8a0362f280578b7976 | [] | no_license | yjh5246/RushReborn | 13e456b64f2b170da81d5ced2645bd8ab3dbcdb1 | 25584504f3bc8aa6c3c31c77a8b8f89d54581341 | refs/heads/master | 2023-07-25T19:42:45.394163 | 2021-05-06T23:31:39 | 2021-05-06T23:31:39 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 165 | cpp | #include "BTTask_Idle.h"
EBTNodeResult::Type UBTTask_Idle::ExecuteTask(UBehaviorTreeComponent& OwnerComp, uint8* NodeMemory)
{
return EBTNodeResult::InProgress;
}
| [
"mustafa.moiz125@gmail.com"
] | mustafa.moiz125@gmail.com |
96ffcf41487bbc28cebe1cd10c9e25e02879f2f3 | 8476eb45fe9dfd43818245e17a1c661b88e69400 | /CustomCodes/utils/funcs/KinDyn200511_221619/kin/mex/dR_RightHip_mex.hh | 2d1df617291e6dc555e2d19c976055e80eef3643 | [] | no_license | prem-chand/Cassie_Controller_AngularMomentum | f8c7521bc990b42d8ff098759e04637afaca2cc1 | c784242f1a949525accb8f9e9fe4a53feb0fba87 | refs/heads/main | 2023-08-15T02:09:23.748744 | 2021-09-21T21:43:24 | 2021-09-21T21:43:24 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 907 | hh | /*
* Automatically Generated from Mathematica.
* Mon 11 May 2020 22:28:04 GMT-04:00
*/
#ifndef DR_RIGHTHIP_MEX_HH
#define DR_RIGHTHIP_MEX_HH
#ifdef MATLAB_MEX_FILE
// No need for external definitions
#else // MATLAB_MEX_FILE
#include "math2mat.hpp"
#include "mdefs.hpp"
namespace SymExpression
{
void dR_Right... | [
"gyk199305@gmail.com"
] | gyk199305@gmail.com |
fb12247b25373bce151833c29f4d079fc9375388 | 2226840e8c92283c73530c6c2bf63f1e8e4af1c6 | /LocalStorage/Core/Core/Memory/FMallocBinned.h | 6e400851ac1123e50b7ac841540271dd5256ef17 | [] | no_license | timur-losev/LocalStorage | b87e44bf39a29f1a1394d0df05badea54f87a67a | 4f425c4756039ecc8473339dd73abd810094f63e | refs/heads/master | 2021-01-10T02:37:45.453697 | 2015-12-26T20:57:21 | 2015-12-26T20:57:21 | 44,805,112 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 26,069 | h | //
// FMallocBinned.h
// PetBuddies
//
// Created by void on 8/17/15.
// Copyright (c) 2015 Catalyst Apps. All rights reserved.
//
#pragma once
#include "FMemoryBase.h"
#include "Core/Math/FGenericMath.h"
#define MEM_TIME(st)
//#define USE_LOCKFREE_DELETE
#define USE_INTERNAL_LOCKS
#define CA... | [
"timur.losev@gmail.com"
] | timur.losev@gmail.com |
71c13a69c14f0155c8e412eaa1b1a1ad32479fb5 | 723c87bfb1cf7aba01307c04bb1ea81a28bac5bb | /2020/Apr/0421cheese.cpp | 2924b3fa9b1e0bb517d53f0ec5786aa58a4e43c1 | [] | no_license | qlqnf16/algorithms | 3174b9503e2fa320bbb2aee09a93cea4c6f9818e | 21f530d1e0f4a0ce3c2f51460e42ab0c03b9854e | refs/heads/master | 2021-06-13T00:37:21.932439 | 2021-05-06T14:30:05 | 2021-05-06T14:30:05 | 188,745,750 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,746 | cpp | #include <stdio.h>
#define MAX 1010
int H, W, N;
char map[MAX][MAX];
int visit[MAX][MAX];
int cheeseLocs[10][2];
int dir[][4] = {{0, 0, 1, -1}, {1, -1, 0, 0}};
struct queue {
int c;
int r;
int t;
};
queue que[MAX*MAX];
int wp, rp;
void pop() {rp++;}
queue front() { return que[rp]; }
int empty() { retu... | [
"lee.jeongmin1027@likelion.org"
] | lee.jeongmin1027@likelion.org |
7064118e42d7e6d3315bee297ecd15c0d1a57d30 | 67bceef7465584bb4a2d13e44774a24c86c92381 | /tests/benchdnn/pool/ref_pool.cpp | 4740c1623a71f6365dd1da644df86cb5029540b7 | [
"Intel",
"BSD-3-Clause",
"Apache-2.0"
] | permissive | heagoo/mkl-dnn | dc96c187a198df512419de9fef19378aa82620be | c7d30404d31d8873310dd4de45f16edbf5deb228 | refs/heads/master | 2020-05-26T08:35:06.804491 | 2019-05-23T12:40:49 | 2019-05-23T12:40:49 | 188,169,793 | 1 | 0 | Apache-2.0 | 2019-05-23T05:52:19 | 2019-05-23T05:52:19 | null | UTF-8 | C++ | false | false | 4,770 | cpp | /*******************************************************************************
* Copyright 2019 Intel Corporation
*
* 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.o... | [
"dmitry.zarukin@intel.com"
] | dmitry.zarukin@intel.com |
a973a5ce9d5b79d5a9eabbd5f2e164eb9e366470 | 0e083f405af00029c9ec31849f0f7f81c56844b5 | /csrc/mmdeploy/apis/cxx/mmdeploy/pipeline.hpp | e20ec6a224de575434471ca8039714843e3abec7 | [
"Apache-2.0"
] | permissive | open-mmlab/mmdeploy | 39b9e7b611caab2c76a6142fcb99f0bf1d92ad24 | 5479c8774f5b88d7ed9d399d4e305cb42cc2e73a | refs/heads/main | 2023-09-01T21:29:25.315371 | 2023-08-31T09:59:29 | 2023-08-31T09:59:29 | 441,467,833 | 2,164 | 605 | Apache-2.0 | 2023-09-14T10:39:04 | 2021-12-24T13:04:44 | Python | UTF-8 | C++ | false | false | 2,035 | hpp | // Copyright (c) OpenMMLab. All rights reserved.
#ifndef MMDEPLOY_CSRC_MMDEPLOY_APIS_CXX_MMDEPLOY_PIPELINE_HPP_
#define MMDEPLOY_CSRC_MMDEPLOY_APIS_CXX_MMDEPLOY_PIPELINE_HPP_
#include "mmdeploy/common.hpp"
#include "mmdeploy/core/value.h"
#include "mmdeploy/pipeline.h"
namespace mmdeploy {
namespace cxx {
class Pi... | [
"noreply@github.com"
] | open-mmlab.noreply@github.com |
f40ea10ecf0a67e96fe4a6d953bf5549371aef42 | 9f520bcbde8a70e14d5870fd9a88c0989a8fcd61 | /pitzDaily/871/uniform/time | 441e9ea708009638cfcacdebbeed1f57e3b921bc | [] | no_license | asAmrita/adjoinShapOptimization | 6d47c89fb14d090941da706bd7c39004f515cfea | 079cbec87529be37f81cca3ea8b28c50b9ceb8c5 | refs/heads/master | 2020-08-06T21:32:45.429939 | 2019-10-06T09:58:20 | 2019-10-06T09:58:20 | 213,144,901 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 968 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v1806 |
... | [
"as998@snu.edu.in"
] | as998@snu.edu.in | |
0b92eccfa52e97fa5d454c0a6d1a99253f38f12a | 58a0ba5ee99ec7a0bba36748ba96a557eb798023 | /CodeForces/Complete/900-999/922A-CloningToys.cpp | d4c4be0ad176692d99dae3b5cbfcb4d7dbf345c3 | [
"MIT"
] | permissive | adityanjr/code-DS-ALGO | 5bdd503fb5f70d459c8e9b8e58690f9da159dd53 | 1c104c33d2f56fe671d586b702528a559925f875 | refs/heads/master | 2022-10-22T21:22:09.640237 | 2022-10-18T15:38:46 | 2022-10-18T15:38:46 | 217,567,198 | 40 | 54 | MIT | 2022-10-18T15:38:47 | 2019-10-25T15:50:28 | C++ | UTF-8 | C++ | false | false | 181 | cpp | #include <cstdio>
int main(){
long x, y; scanf("%ld %ld", &x, &y);
puts((x == 0 && y == 1) || ((y > 1) && (x >= y - 1) && ((x - y) & 1)) ? "Yes" : "No");
return 0;
}
| [
"samant04aditya@gmail.com"
] | samant04aditya@gmail.com |
cacf4fdddd70edc20239d8818e1a7587a4958459 | 9dd024aa64a5cd7ecb7374ad5f1a6969aea49cd3 | /src/Graphics/Circle.cpp | 517c0f995dd257d215a86f3f5f8876f5e96db18c | [] | no_license | seenunit/GLSample | faeea4e80c252dd11dc3350be1a4e6780e096213 | 3ac859d9adb36f67792a25d1574eddd2d582fbdb | refs/heads/master | 2020-03-25T18:34:52.024686 | 2018-08-08T16:07:08 | 2018-08-08T16:07:08 | 144,038,142 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,894 | cpp | // Circle.cpp : implementation file
//
#include "stdafx.h"
#include <iostream>
#include "GLSampleDoc.h"
#include "Circle.h"
#include "Line.h"
#include <CMath.h>
using namespace std;
// CCircle
IMPLEMENT_SERIAL(CCircle, CGeomEntity, 1)
CCircle::CCircle()
{
}
CCircle::CCircle( CGeomPoint ptCenter, double dRadius, int... | [
"srinivasreddy.challa@outlook.com"
] | srinivasreddy.challa@outlook.com |
2fc7ccd9e100c60ff3be862b2cb38c1f322dcf7b | 1c4e8c99afe39efa508c3f99006cea97edd1787b | /code/ESP32_WiFi_Multisensor/ESP32_WiFi_Multisensor.ino | 91ae74a9825ddd319266c2eab94280818381f781 | [] | no_license | az666/ESP32-Course | 1d96938fdbd0e307169f688f9722779f5d397449 | 1872b7164f02c5f50f60f667e87bb4935d9ce854 | refs/heads/master | 2020-05-04T23:09:38.082167 | 2019-03-19T15:40:34 | 2019-03-19T15:40:34 | 179,534,588 | 0 | 1 | null | 2019-04-04T16:21:45 | 2019-04-04T16:21:45 | null | UTF-8 | C++ | false | false | 17,029 | ino | /*********
Rui Santos
Complete project details at http://randomnerdtutorials.com
*********/
// Load libraries
#include <WiFi.h>
#include <EEPROM.h>
#include "DHT.h"
#include <Adafruit_Sensor.h>
// Replace with your network credentials
const char* ssid = "REPLACE_WITH_YOUR_SSID";
const char* password = "REPL... | [
"hello@ruisantos.me"
] | hello@ruisantos.me |
9616cac0f5c597b3208f846d52583a06a2bfe9c1 | 9216eb383e166c8265790c2d6cc3bc5d9e23f11f | /src/Nodes/Ethernet.old/Node.c++ | 7b610ef0d30a5bca33a410a15d4c9ebf5d1395ea | [] | no_license | phatcabbage/EDNAS | fca7d88b092fb008847c335bae27eb7352eca6d6 | 90f57129c1e584acbf818e75efbb08b462097de8 | refs/heads/master | 2016-09-06T18:06:03.539627 | 2011-12-07T02:31:44 | 2011-12-07T02:31:44 | 2,929,741 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 167 | #include "EthernetNode.h++"
namespace Logging
{
template<>
OStreamLogger
Logged<Nodes::EthernetBase>::
Logger("EthernetBase");
}
namespace Nodes
{
}
| [
"phatcabbage@gmail.com"
] | phatcabbage@gmail.com | |
7ba243a9319e83414541b6405b600083076cb917 | 3ccf481fd3790b0646673f5f2bb05a599ffc2cde | /vistas/login.h | eaa5941ba80da3b3a1baeb530893528d3ef1f4fc | [] | no_license | sarahiva/IS2Proyecto1 | 973df39e18def71cacf87fc0cd73edef6e3b3695 | aa08610efd8304c669b3975532b4ae021c3e52fe | refs/heads/master | 2020-07-06T17:28:37.455168 | 2019-08-23T15:59:48 | 2019-08-23T15:59:48 | 203,091,144 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 699 | h | #ifndef LOGIN_H
#define LOGIN_H
#include <QDialog>
namespace Ui{
class Login;
}
class InicioAdmin;
class CtrlAutenticacion;
class Login : public QDialog
{
Q_OBJECT
protected:
virtual void keyPressEvent(QKeyEvent *event) override;
// virtual void closeEvent(QCloseEvent *event) override;
public:
... | [
"salberto.mtz@gmail.com"
] | salberto.mtz@gmail.com |
4a2a3c08fc2802f92244b5954ecce95840cf8c1d | 5de6eab15d7b8c74601f4f255fe25399e763840a | /Message/MSG_ACI.h | bc2bec2341462f060f85f25ad8c3c66b57ccdc17 | [] | no_license | shenwa12/vnoc | 63f07f9784b68d0d927bdb2eacc4e7e32ccfb773 | a9a296cdc3586c30e8a3052c29f25d77163c704e | refs/heads/master | 2021-01-21T17:13:34.697955 | 2013-01-06T05:16:31 | 2013-01-06T05:16:31 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 2,306 | h |
#ifndef VNOC_MSG_ACI
#define VNOC_MSG_ACI
#include "BaseMessage.h"
class MSG_ACI: public CMessage
{
public:
MSG_ACI(){
//0x21
BEGIN_PARAM_LIST
ADD_PARAM_LIST("RoomID")
ADD_PARAM_LIST("RoomType")
ADD_PARAM_LIST("RoomName")
ADD_PARAM_LIST("RoomRank")
ADD_PARAM_LIST("RoomState")
ADD_PARAM_LIST("Room... | [
"308974268@qq.com"
] | 308974268@qq.com |
d19bfcd6e0bfb967d7c0b2e32b810322fcefc750 | a92708d28a0ec6ddf083ae42a47e35f2121f0eba | /test/xts/acts/kernel_lite/util_check_posix/src/ActsUtilCheckApiTest.cpp | 80446c1a6686c28a00c6e061a10281f5a40e9fc4 | [
"Apache-2.0"
] | permissive | km1042412/my-OHOS | 322eca402c28eb68272c58214243ecb8a0960b3c | 3c74564d9c6c3b33b836c6a3cd1a6dbc6d4bc18e | refs/heads/main | 2023-03-28T05:36:56.244181 | 2021-03-16T06:25:01 | 2021-03-16T06:25:01 | 348,194,410 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 29,252 | cpp | /*
* Copyright (c) 2020 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applica... | [
"1042412750@qq.com"
] | 1042412750@qq.com |
85acdb6e45f116fae74363c64d968f359ff6d24d | 6e4f38f74ccb54025828aa4acdf12e6cc2e22831 | /problem1.cpp | 7d7c70b6d78528625fd3dc9ef93f5f65a70eabc7 | [] | no_license | dev-chouhan/Hacktorfest | dfbbf1d4b46b9a970203e2a1279c1e313093e105 | 9f825d89042749b175731e4652704189c88e4fa4 | refs/heads/main | 2023-08-26T02:51:57.673779 | 2021-10-06T18:36:25 | 2021-10-06T18:36:25 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 700 | cpp | #include<iostream>//dynamic array
using namespace std;
int main()
{
int n;
cin>>n;
int** arr=new int*[n];//create 2d array
for(int i=0;i<n;i++)
{
int* a=new int[3];//ab uske andr array aise define krte hai
for(int j=0;j<3;j++)
{
cin>>a[j];
}
*(arr... | [
"noreply@github.com"
] | dev-chouhan.noreply@github.com |
0ffe60a5de7e8f5579d1971326445fba2e3c8e2f | 2d483bccf76da70d8277dc4b1740d03d57b0702a | /Final Project/Final Project/Point.cpp | 64bd91fc9cf1c44a4476e7a005013055eb128dd6 | [] | no_license | celr/graphics | 346bc130a70486f0df17d1d23082cb22725f6b8e | a706012e2261f17f36199e58956bd4bdf434927c | refs/heads/master | 2020-12-24T17:25:55.869890 | 2013-05-31T02:57:24 | 2013-05-31T02:57:24 | 10,181,317 | 0 | 0 | null | 2016-10-31T06:30:02 | 2013-05-20T20:30:27 | C++ | UTF-8 | C++ | false | false | 495 | cpp | #include "stdafx.h"
#include "Point.h"
float vectorDot(Point a, Point b)
{
return a.x * b.x + a.y * b.y + a.z * b.z;
}
Point vectorScale(float scale, Point v) {
Point p;
p.x = scale * v.x;
p.y = scale * v.y;
p.z = scale * v.z;
return p;
}
float vectorMag(Point v) {
return sqrt(pow(v.x, 2) + pow(v.y, 2) + pow(... | [
"carlos@blewblew.com"
] | carlos@blewblew.com |
f8ea728d7812613aba8813f0a30f6a181e080a3f | 13e1e38318d6c832347b75cd76f1d342dfec3f64 | /3rdParty/V8-4.3.61/src/base/platform/platform-freebsd.cc | 68ed70af93fa04ac226c9188bc4599a1e8671b1d | [
"bzip2-1.0.6",
"BSD-3-Clause",
"Apache-2.0",
"GPL-1.0-or-later",
"ICU",
"MIT"
] | permissive | msand/arangodb | f1e2c2208258261e6a081897746c247a0aec6bdf | 7c43164bb989e185f9c68a5275cebdf15548c2d6 | refs/heads/devel | 2023-04-07T00:35:40.506103 | 2015-07-20T08:59:22 | 2015-07-20T08:59:22 | 39,376,414 | 0 | 0 | Apache-2.0 | 2023-04-04T00:08:22 | 2015-07-20T09:58:42 | C++ | UTF-8 | C++ | false | false | 8,205 | cc | // Copyright 2012 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Platform-specific code for FreeBSD goes here. For the POSIX-compatible
// parts, the implementation is in platform-posix.cc.
#include <pthread.h>
#i... | [
"w.goesgens@arangodb.org"
] | w.goesgens@arangodb.org |
62e0fba8c310936bd40089bf2c549060be51430b | bf5fa529e397307e1027aa185cd10069a45b9764 | /codeforce/1209C.cpp | 60ef963821f4a8bd7c907092fdd35e04c01a2c25 | [] | no_license | tjd229/Algorithm | e7324f052a64ec4a4efe9d62a043874e2b6d1e67 | 2754f4687166629768a7fbb5b1ceda744e6186f0 | refs/heads/master | 2022-09-13T23:13:00.272343 | 2022-09-11T07:53:47 | 2022-09-11T07:53:47 | 102,236,930 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,160 | cpp | //implementation
#include <stdio.h>
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <memory.h>
#include <set>
#include <map>
#include <queue>
#include <unordered_map>
#define ll long long
#define pii pair<int,int>
using namespace std;
int ans[200001];
//int use[2000... | [
"noreply@github.com"
] | tjd229.noreply@github.com |
8bebd6291a1d8533f0fb5b9754ed86a9c2955c35 | 1c8e5a1fc7f9dfee4969194c1bd77918eea73095 | /Source/AllProjects/CIDLib/CIDLib_Audio.hpp | 35130a5cdf1d0e689f023962837032491df8be51 | [] | no_license | naushad-rahman/CIDLib | bcb579a6f9517d23d25ad17a152cc99b7508330e | 577c343d33d01e0f064d76dfc0b3433d1686f488 | refs/heads/master | 2020-04-28T01:08:35.084154 | 2019-03-10T02:03:20 | 2019-03-10T02:03:20 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,823 | hpp | //
// FILE NAME: CIDLib_Audio.hpp
//
// AUTHOR: Dean Roddey
//
// CREATED: 11/08/1993
//
// COPYRIGHT: $_CIDLib_CopyRight_$
//
// $_CIDLib_CopyRight2_$
//
// DESCRIPTION:
//
// TAudio is a namespace that does various beeps, bonks, zings, and
// honks all of which are given enumerated values. It also supports basic
/... | [
"droddey@charmedquark.com"
] | droddey@charmedquark.com |
e3cef022f4049fe8ca74e37bf566282c5733ed65 | f130e0cc7771b903e4840f1193bde7020abe603d | /plugins/SandboxPlugin/SandboxPlugin.cpp | b4db195f855c1b185c14c0693fc5f594dd11377b | [] | no_license | Tnoriaki/jsk_choreonoid | c7c208f1505e65a05e2f02fe67059e431c19dbdd | 17ddf4a0b76ad29b6cc1504b4716dddeaa0d5c81 | refs/heads/master | 2021-01-20T05:04:15.257189 | 2017-07-28T16:41:55 | 2017-07-28T16:41:55 | 101,415,674 | 0 | 0 | null | 2017-08-25T15:09:43 | 2017-08-25T15:09:43 | null | UTF-8 | C++ | false | false | 12,287 | cpp | /**
@author Kunio Kojima
*/
#include <iostream>
#include <sstream>
#include <unistd.h>
#include <cnoid/Plugin>
#include <cnoid/ItemTreeView>
#include <cnoid/BodyItem>
#include <cnoid/WorldItem>
#include <cnoid/ToolBar>
#include <boost/bind.hpp>
#include <cnoid/MessageView>
#include <cnoid/Archive>
#include <cnoid... | [
"kunio.einstein@gmail.com"
] | kunio.einstein@gmail.com |
64ad2a402bae7676465882000aaa7c32db6fb8a3 | 434db926371b4fcee11c530baac9eccd8edbb0b7 | /bee_lvl2_converter/bee.cpp | adfe4a99332e5a54314f0af6131f86732b2688f7 | [] | no_license | asdlei99/hidden_bee_tools | 2dbe9a6cb613d078cbd9c22d32c1fe81436cb650 | 711583e7ca517cd690c1483da52eb72fd62e1335 | refs/heads/master | 2023-05-10T05:40:27.380457 | 2021-06-03T23:19:28 | 2021-06-03T23:19:28 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,538 | cpp | #include "bee.h"
#include <peconv.h>
BEE_TYPE check_type(BYTE *buf, size_t buf_size)
{
if (memcmp(buf, &MAGIC2, sizeof(MAGIC2)) == 0) {
return BEE_SCRAMBLED2;
}
if (memcmp(buf, &MAGIC1, sizeof(MAGIC1)) == 0) {
return BEE_SCRAMBLED1;
}
if (memcmp(buf, &NS_MAGIC, sizeof(NS_MAGIC)) == 0) {
return BEE_NS_FORMAT... | [
"hasherezade@gmail.com"
] | hasherezade@gmail.com |
6a9e7044656203f149a4596ed9a07d7934f78b32 | 93dfb034dab214dd9883070a044559c16a9aa7a8 | /week11/week11/week11/main.cpp | 9942c1a71e39768fdf78f383fb69abb7e9ba39de | [] | no_license | sexandmath/CS_HW | ccfb9704b934ccd3c5839df8019174c3aeca95a4 | a9801599a40ebdf4176f59a0522a59acc923fbbe | refs/heads/main | 2023-04-11T00:15:52.188202 | 2021-04-23T05:39:03 | 2021-04-23T05:39:03 | 339,978,172 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,861 | cpp | #include <SFML/Graphics.hpp>
#include <chrono>
#include <math.h>
#include <vector>
#include <list>
#include <memory>
#include <random>
struct Constants
{
const static int Width = 1200;
const static int Height = 800;
constexpr static float deg_to_rad = 0.017453f;
};
int my_random()
{
std::default_rand... | [
"pavlova.vd@phystech.edu"
] | pavlova.vd@phystech.edu |
e6126a0ac0892ff03a7352bf458c9294e91d7f29 | f24c9c3eb1124be176015ffec9c6f5763009f2dc | /KetaminRudwolf/src/render/GUIRenderer.cpp | de27ef4c2979bb4c0b2f9febe082e929f655437b | [
"Apache-2.0"
] | permissive | Vasile2k/KetaminRudwolf | 0fbdd911d381c0619faebd9e65147be14fbdca31 | 8e1703a2737c2ff914380a14c71f679e27786a10 | refs/heads/master | 2020-04-16T07:57:10.802826 | 2019-01-17T08:57:59 | 2019-01-17T08:57:59 | 165,405,264 | 5 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,126 | cpp | #include "GUIRenderer.hpp"
#include "../game/Game.hpp"
#define NK_INCLUDE_FIXED_TYPES
#define NK_INCLUDE_STANDARD_IO
#define NK_INCLUDE_STANDARD_VARARGS
#define NK_INCLUDE_DEFAULT_ALLOCATOR
#define NK_INCLUDE_VERTEX_BUFFER_OUTPUT
#define NK_INCLUDE_FONT_BAKING
#define NK_INCLUDE_DEFAULT_FONT
#define NK_IMPLEMENTATION
... | [
"andy.dorcu@yahoo.com"
] | andy.dorcu@yahoo.com |
27ab93eb7e004bd19ff9b7f0d2f5f84ef07c13df | 6338150e6083272fcb5ce0f9b2b228be0dc80cdd | /aieBootstrap-master/PhysicsEngine/PhysicsEngineApp.cpp | 085728a71d6a821564f606af5e4cf4a79dbd8ab2 | [
"MIT"
] | permissive | Goodii/PhysicsForGames | 55f162c1fe5a7c252b7aa10ac7aa19df3e3ee0e4 | 202ce3d82c6ad15774f6b0874bdaa4190278ec74 | refs/heads/master | 2018-09-05T13:34:15.435709 | 2018-06-04T12:59:06 | 2018-06-04T12:59:06 | 120,531,377 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,171 | cpp | #include "PhysicsEngineApp.h"
#include "Texture.h"
#include "Font.h"
#include "Input.h"
#include <Gizmos.h>
#include <glm/glm.hpp>
#include <glm/ext.hpp>
#include "Sphere.h"
PhysicsEngineApp::PhysicsEngineApp() {
}
PhysicsEngineApp::~PhysicsEngineApp() {
}
bool PhysicsEngineApp::startup() {
aie::Gizmos::create(2... | [
"iPatt98@gmail.com"
] | iPatt98@gmail.com |
873b0ff1f83f68b18b6a039dd63341f239597869 | 0b7a607e2f375d9309fd77f03376ed4183c76cb9 | /ALL/Chapter3.h | 445ff83ed7e8c196a2cf03924281fb8f9db964fb | [] | no_license | stkd/Opencv-CPP | 64d46a3ad57ae172400f57863672490d3d301a45 | 1bcc375c3502061d06da7c8d73c36105f26d73bc | refs/heads/master | 2022-03-11T20:14:16.285711 | 2019-11-23T13:39:31 | 2019-11-23T13:39:31 | 223,593,813 | 0 | 0 | null | null | null | null | BIG5 | C++ | false | false | 10,156 | h | #include<iostream>
#include<stdio.h>
#include<stdlib.h>
#include "Params.h"
#include<opencv2\opencv.hpp>
using namespace cv;
void thresholds(Mat imgin, Mat imgout, uchar thresh, int type)
{
int i, j;
for (i = 0; i < imgin.rows; i++)
{
for (j = 0; j < imgin.cols; j++)
{
switch (type)
{
case 2:
if (i... | [
"s1004306i@gmail.com"
] | s1004306i@gmail.com |
6319bd5e84e837fa93b3dc619ff1697c01676085 | b2d46af9c6152323ce240374afc998c1574db71f | /cursovideojuegos/theflostiproject/3rdParty/boost/libs/config/test/no_sfinae_pass.cpp | ec36a0ed667d4f6a44444dc4e30acc5cea2e5a42 | [] | no_license | bugbit/cipsaoscar | 601b4da0f0a647e71717ed35ee5c2f2d63c8a0f4 | 52aa8b4b67d48f59e46cb43527480f8b3552e96d | refs/heads/master | 2021-01-10T21:31:18.653163 | 2011-09-28T16:39:12 | 2011-09-28T16:39:12 | 33,032,640 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,146 | cpp |
// This file was automatically generated on Sun Jul 25 11:47:49 GMTDT 2004,
// by libs/config/tools/generate
// Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the
// Boost Software License, Version 1.0. (See accompanying file
// LICENSE_1_0.txt or copy at http://www.b... | [
"ohernandezba@71d53fa2-cca5-e1f2-4b5e-677cbd06613a"
] | ohernandezba@71d53fa2-cca5-e1f2-4b5e-677cbd06613a |
f5c4327625d498eb815b2954c41e29830a3e1e4c | f7e791ef542a1160fd0b861cf3d74c4cf940f0c9 | /Interview Bit/Math/find_nth_fibonacci.cpp | 7b6d8ba32222a6e653af5c2216a4d9f3d341cd07 | [] | no_license | simran1802/Coding-Practice | ac603959faa9a829e8ddd82222fc625053e5d3e7 | 0cce354e17df33f16ea0ea56ac867cf1c407b6a6 | refs/heads/master | 2023-08-21T02:59:42.542532 | 2021-08-21T15:52:02 | 2021-08-21T15:52:02 | 283,726,764 | 0 | 2 | null | 2021-11-01T14:14:20 | 2020-07-30T09:23:10 | C++ | UTF-8 | C++ | false | false | 859 | cpp | vector<long> mul(vector<long> m1, vector<long> m2){
vector<long> ans(4);
for(int i=0; i<=3; i++){
m1[i] %= 1000000007;
m2[i] %= 1000000007;
}
ans[0] = ( (m2[0]*m1[0])%1000000007 + (m2[2]*m1[1])%1000000007 )%1000000007;
ans[1] = ( (m2[1]*m1[0])%1000000007 + (m2[3]*m1[1])%1000000007 )%... | [
"noreply@github.com"
] | simran1802.noreply@github.com |
a1973494eb606e0c55b5e13b9266822d12272c98 | a5ff25a76f832aab675f653c11a127d65755c58a | /headers/glm/detail/type_mat4x3.inl | e02dedf577cdfdada7439669144010416fb16838 | [] | no_license | LiuZhichang/ZVK | f5fd47d0cda575af842dafd7d68bed117b653053 | e89a5e632eeaba9fc72d8e0f6f2d8f75e29c0da2 | refs/heads/master | 2023-08-16T03:24:12.135733 | 2021-10-20T01:40:58 | 2021-10-20T01:40:58 | 419,147,859 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 20,054 | inl | namespace glm {
// -- Constructors --
# if GLM_CONFIG_DEFAULTED_FUNCTIONS == GLM_DISABLE
template<typename T, qualifier Q>
GLM_FUNC_QUALIFIER GLM_CONSTEXPR
mat<4, 3, T, Q>::mat()
# if GLM_CONFIG_CTOR_INIT == GLM_CTOR_INITIALIZER_LIST
: value{col_type(1, 0, 0), col_type(0, 1, 0),... | [
"3318619633@qq.com"
] | 3318619633@qq.com |
2db3783b9a86a70ee00e4cad04aed063c33dbf1c | 95ee706550cd45c57dd5fe01805aa4291b9193bc | /src/renderer/raytracer/RayTracer.h | e5d79357e3525c66e36f71f0ceb93f245f65e5b3 | [] | no_license | DylanMeeus/3DRenderingFramework | 2bd5b194220c3b88c0c15a4cd2d1b9f9aab9548c | 8f205be633410fad9766b143ff1f34b35e570368 | refs/heads/master | 2021-01-10T17:10:01.653781 | 2015-06-02T14:48:18 | 2015-06-02T14:48:18 | 36,740,138 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 418 | h | #ifndef RAYTRACER_H_
#define RAYTRACER_H_
#include "renderer/raytracer/ARayTracer.h"
#include "scene/Scene.h"
#include "util/Colour.h"
#include "renderer/Ray.h"
#include "renderer/HitInfo.h"
class RayTracer: public ARayTracer {
public:
RayTracer(const Scene & scene):ARayTracer(scene){ }
virtual ~RayTracer(){ }
... | [
"meeusdylan@hotmail.com"
] | meeusdylan@hotmail.com |
18408d9ec908977227dc94178ef7da7cf5cc8dd4 | 1deb0ea79422612f85e6db636a68749fcedf34e5 | /EndPoint/TI/workspace/pru_mcasp_sine_test/src/main.cpp | 0ed2060ad1f40d6910f68b4534d85d4c7e59b85c | [] | no_license | bezumec82/SoundDevice | 442dd1992968ae4db0cf6932d83da4f952a74863 | 6dd197904bad2476f79f3ed06b7aca230a73db45 | refs/heads/master | 2022-11-16T05:00:46.808080 | 2020-07-14T09:58:25 | 2020-07-14T09:58:25 | 269,723,634 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,999 | cpp | #include "main.h"
long Get_timestamp_ms(void) {
struct timespec tspec = { 0 , 0 };
clock_gettime(CLOCK_REALTIME, &tspec);
return (((long) ((round(tspec.tv_nsec / 1.0e6)) + tspec.tv_sec * 1000)) & 0xffff);
}
/*----------------------------------------------------------------------------*/
#define POLL_FDS_A... | [
"laskov82@gmail.com"
] | laskov82@gmail.com |
efc716ce46c755b10cd2cdd852c8f8baff82b143 | 9c65b7cb50f96499cf8e1d72b8283ff34be90abc | /triangle/main.cpp | cf0837e0e3e707073db5d86b8d185ae7cf7ac1c4 | [] | no_license | Lacty/Glfw | 6b2ca36f3c0dd5f99080dc9e59c67838c5d9c113 | f0ba17103aed3f2a4fff2ce3a8af4a4ed5f82555 | refs/heads/master | 2016-08-12T18:54:37.345396 | 2016-02-03T10:59:30 | 2016-02-03T10:59:30 | 48,664,830 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 758 | cpp |
#include <iostream>
#include <GLFW/glfw3.h>
int main() {
GLFWwindow* window;
if (!glfwInit()) {
return -1;
}
window = glfwCreateWindow(640, 480, "triangle", nullptr, nullptr);
if (!window) {
glfwTerminate();
return -1;
}
glfwMakeContextCurrent(window);
while(!glfwWindowShouldClose(win... | [
"akira206@gmail.com"
] | akira206@gmail.com |
862149918ef98cbf37301afefc02f991a2ed537e | d5bbf4390aa1311633a626d83397b921c138b5a0 | /src/detection/detectoropencv.h | 77b07b44e53a182a838ad8ee53a31b914017b3e4 | [
"MIT",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | benpaobutingla/stereo-vision-toolkit | 4b294ee5626a3e7c5c484590c107ebe6c87e56aa | 7844a1df08348d1c4341a4b59d10f40b2a8192e2 | refs/heads/master | 2023-06-15T19:25:06.056366 | 2021-06-29T13:18:40 | 2021-06-29T13:18:40 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,627 | h | /*
* Copyright Deeplabel, used with permission of the author
* Author: Josh Veitch-Michaelis (jveitch@i3drobotics.com)
*/
#ifndef DETECTOROPENCV_H
#define DETECTOROPENCV_H
#include<iostream>
#include<fstream>
#include<string>
#include<vector>
#include<opencv2/opencv.hpp>
#include<opencv2/core/ocl.hpp>
#include<opencv... | [
"benknight135@gmail.com"
] | benknight135@gmail.com |
76e733901892b3c7f779469c1d5d15e30eea5301 | ae0e17237ee535a18936d7073a38938bb15cb674 | /LCDInterface.ino | cbf2da2262d72464cd669b704283c8e915599f4a | [] | no_license | bs061096/HomeAutomation | 99c0cfc9c7001fb03823c767133d62db601ec206 | e0c8d27c2789f95bafa4aadfcab13b4c8b6faef2 | refs/heads/main | 2023-02-23T23:01:54.896151 | 2021-01-26T08:53:33 | 2021-01-26T08:53:33 | 333,024,214 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 357 | ino | #include <LiquidCrystal.h>
LiquidCrystal lcd(12, 11, 6, 4, 3, 2); //re,en,d4-7
void setup() {
Serial.begin(9600);
lcd.begin(16, 2);
lcd.print("Type: ");;
}
void loop() {
// put your main code here, to run repeatedly:
if(Serial.available())
{ lcd.clear();
String str=Serial.readString();
lcd.setCursor(0,... | [
"noreply@github.com"
] | bs061096.noreply@github.com |
202be374769b3c314fda6583a037470374820d8e | 0b6a6e540d918d9668c567261965165231b945b3 | /packages/random/include/thunder/random/math.hpp | e0e9457d369fe45f083d6ca3835f4641ba21b348 | [
"BSD-3-Clause",
"Apache-2.0"
] | permissive | mapleyustat/Thunder | f5f7563e54ea79c5c5b37bf073a67f836bea85d8 | 866ccae60f41830fa9912fbdf50cc8abb412120c | refs/heads/master | 2020-03-28T22:09:07.039216 | 2014-11-03T23:59:49 | 2014-11-03T23:59:49 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,600 | hpp | /*
* \copyright Copyright 2014 Xiang Zhang All Rights Reserved.
* \license @{
*
* 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
*
* ... | [
"zhangxiangxiao@163.com"
] | zhangxiangxiao@163.com |
5264ab308e859273b4e772f8595aea3df14d026a | d0fb3f0c258145c3e06b99c0b555056e12e48d06 | /selene/img_io/_impl/JPEGCommon.hpp | 73644365cd32e1e5c60040d6be730168fd279f17 | [
"MIT"
] | permissive | js-god/selene | 2767a760be0ed14cf85fdb332d5b1d340830afec | 4131290135885958ca8bc5ff241d86a2da8ac66e | refs/heads/master | 2020-04-14T15:25:39.930070 | 2019-01-01T23:47:51 | 2019-01-01T23:47:51 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,644 | hpp | // This file is part of the `Selene` library.
// Copyright 2017-2018 Michael Hofmann (https://github.com/kmhofmann).
// Distributed under MIT license. See accompanying LICENSE file in the top-level directory.
#ifndef SELENE_IMG_IMPL_JPEG_COMMON_HPP
#define SELENE_IMG_IMPL_JPEG_COMMON_HPP
#if defined(SELENE_WITH_LIBJP... | [
"kmhofmann@gmail.com"
] | kmhofmann@gmail.com |
05a6028c8c52505d09bed4aaaebc4560ea5e0876 | 76412b66ddb30d217b495d9ac140872cd915c04e | /Leetcode_oj/Merge Intervals/Merge Intervals/Merge Intervals.cpp | 34673e0feec16de14d14819446c1a14eb71ac941 | [] | no_license | liyi1013/Algorithms | 8a9ff2e3c8c16738fd068a3b9766dff5b9112433 | 9f93689ba7dd6b248c10aba770a8bbc4c36e83b8 | refs/heads/master | 2021-01-10T08:15:39.316438 | 2016-02-08T02:23:33 | 2016-02-08T02:23:33 | 50,668,556 | 1 | 0 | null | null | null | null | GB18030 | C++ | false | false | 1,881 | cpp | //http://oj.leetcode.com/problems/merge-intervals/
//Given a collection of intervals, merge all overlapping intervals.
//For example,
//Given[1, 3], [2, 6], [8, 10], [15, 18],
//return[1, 6], [8, 10], [15, 18].
#include<vector>
#include<iostream>
#include <algorithm>
using namespace std;
//* Definition for an inte... | [
"liyi1013@foxmail.com"
] | liyi1013@foxmail.com |
0232be5a59d6bcee97e5e682d181065692f53c82 | 84d147ac09451432993a80c9f48ba0998c873ab6 | /data_structures/node.cpp | a78ae73eb635e2c1119846afcdc2e5622633b1e4 | [] | no_license | SimulationEverywhere-Models/ARSLab_TPS | 62f6deae0e6e3ab1abec069320231f6d195cdd59 | 4b7d9543e7856e2545c1a4e035602c6ca5956aba | refs/heads/main | 2023-07-25T14:49:11.756033 | 2021-08-31T21:45:01 | 2021-08-31T21:45:01 | 344,908,173 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,027 | cpp | #include "node.hpp"
Node::Node() {
//
}
Node::Node(int p1, int p2, float mass, float time, vector<float> impulse) {
//colliders = minmax(p1, p2);
colliders = {p1, p2};
restitutionTime = time;
this->impulse = impulse;
particles.insert({p1, p2});
this->mass = mass;
}
Node::~N... | [
"thomasroller@yahoo.ca"
] | thomasroller@yahoo.ca |
2e98391ed9d869dfbf851bcb9bba43b5052e4dea | 353653411fa1e0a0bc30c2c09728bacd0c8804e6 | /lib/ArduinoJson/include/ArduinoJson/JsonArraySubscript.hpp | 8c489680d31968390aedcdd34bf15df2ab7882f4 | [
"MIT"
] | permissive | trevstanhope/chractor | 762d8cf502bcdb95ad90eef91d486e5554cbd7b7 | bb54545955b165892aedd11e066ada63c1de1276 | refs/heads/master | 2023-05-10T20:05:18.311251 | 2021-08-28T03:48:46 | 2021-08-28T03:48:46 | 76,524,486 | 0 | 1 | MIT | 2023-05-01T21:49:15 | 2016-12-15T04:41:11 | C++ | UTF-8 | C++ | false | false | 1,990 | hpp | // Copyright Benoit Blanchon 2014-2016
// MIT License
//
// Arduino JSON library
// https://github.com/bblanchon/ArduinoJson
// If you like this project, please add a star!
#pragma once
#include "Configuration.hpp"
#include "JsonVariantBase.hpp"
#ifdef _MSC_VER
#pragma warning(push)
#pragma warning(disable : 4522)
#... | [
"tpstanhope@gmail.com"
] | tpstanhope@gmail.com |
0e164ac6b9dfbb2535d06b51e4e1dfb208a5dfc7 | 1179377f92239e331b41f0e365f64d0161d49cc3 | /components/Crankshaft.cpp | 6536f8749b8b23ff897c2423e5d554d91936517d | [] | no_license | mehdirezaiepour/engsim | 89bc844764f87d67ebbc4873f8dfa78e9fa1ecc3 | 64a80cae66f2881190d21798eda873e7a5f80035 | refs/heads/master | 2020-04-05T11:24:19.942096 | 2018-11-11T00:27:12 | 2018-11-11T00:27:12 | 156,833,519 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 63 | cpp | //
// Created by mehdi on 11/9/18.
//
#include "Crankshaft.h"
| [
"mehdi.rezaiepour@fau.de"
] | mehdi.rezaiepour@fau.de |
f4ef3a5a81118a94e57fa0fc010c6d640d451175 | 25d61c2179570a4f6efc708696afb16635d483d2 | /CPP/src/Card.cpp | dbdb37b2a1ee049e4bd2e87d7c851164ec089472 | [] | no_license | itsfunshine13/CardGame | e301d577155edabe281d12edb774b885c3700f48 | be6cf3dc806c3b7506567f54ea1253e5cf40643a | refs/heads/master | 2021-04-30T06:59:37.086838 | 2020-07-22T15:59:28 | 2020-07-22T15:59:28 | 121,459,920 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,488 | cpp | #include "../include/Card.h"
#include "../include/cardTypes.h"
#include "../include/cardUtils.h"
#include <iostream>
#include <string>
using namespace std;
Card::Card(
string cardName,
string cardDescription,
string cardID,
string cardReleased,
string deckLimit,
string cardRarity,
str... | [
"lumnjoshua@gmail.com"
] | lumnjoshua@gmail.com |
1c9dc3d221598c6186595baadd164043dcf46822 | a1e35a9dffc3057c650361184e01b8faab986c9d | /common/headers/isValidMap.hh | f088c4dbc7baf1620660b6dfd409744ac0fc7e9d | [] | no_license | guillaumeBoufflers/Bomberman | 9e61113b9285f7be0db69927a3926a9e3eaaaa4f | c0469d65d467de8b4acb01b22dbc4848bc716fd0 | refs/heads/master | 2021-01-22T04:36:39.367067 | 2014-01-24T19:20:46 | 2014-01-24T19:20:46 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 329 | hh | #ifndef __MAPVALIDITY_HH__
#define __MAPVALIDITY_HH__
#include <vector>
#include <sstream>
#include <iostream>
#include <iomanip>
#include <string>
#include <fstream>
#include <algorithm>
#include "errorWindow.hh"
#define MAXOBJ 22
namespace GameMap
{
bool isValidMap(const std::string &file, int nbPlayers);
}... | [
"guillaume.boufflers@gmail.com"
] | guillaume.boufflers@gmail.com |
6e8055bf51d9ba0e166e3207725934ea8990148f | d125ab73f06a20a763f5091b255a2725d969d3c8 | /SteamSellerBot/SteamSellerBot/SteamMarketItemPoster.cpp | d0039672e77b3f7fdd731ca4faa15fe6b29dfd1f | [] | no_license | bluejellybean/SteamMarketItemPoster | cd3e16eac0b4e545268c187afc57118d6d20c9e5 | 6ea58163d1c362762a050bb892ebc61848198fc0 | refs/heads/master | 2021-01-25T03:54:28.335492 | 2013-11-13T13:43:43 | 2013-11-13T13:43:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 438 | cpp | #include "stdafx.h"
#include <iostream>
#include "windows.h"
#include "menus.h"
#include "mainLoops.h"
#include "KeyboardSim.h"
//void FindCursorPos();
int main (){
menus newMenu;
newMenu.loadPresetVariables();
newMenu.menuLogic();
}
//This is just a tool to help get x y cords
//void FindCursorPos(){
// POINT p... | [
"alexbarkell@gmail.com"
] | alexbarkell@gmail.com |
9c7cfac6d8786113cafdbab8f322736c32a51199 | a712314e1428e8f5ab7b2db076002afef9c4a7fa | /nyla/lexer.h | 18a7423c1cf12bb8b856348e66b61e7ea12e84c5 | [] | no_license | JosephCRugh/nyla | 52004eff83912e5f06760853af133b04c53698ac | 40498a2b2873ef7c413ed7dc5d6b1e66beba1dc8 | refs/heads/main | 2023-08-19T11:18:18.899238 | 2021-09-18T00:43:04 | 2021-09-18T00:43:04 | 391,193,242 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,892 | h | #ifndef NYLA_LEXER_H
#define NYLA_LEXER_H
#include "source.h"
#include "log.h"
#include "tokens.h"
namespace nyla {
class lexer {
public:
lexer(nyla::source& source, nyla::log& log)
: m_source(source), m_log(log) {}
// Obtains the next token by
// analyzing the current source.
nyla::token next_token()... | [
"josephcrugh@gmail.com"
] | josephcrugh@gmail.com |
bf087fbea7c817538361c4c83e36242f23bfe547 | 7fb6d1261ad0bbf0953bef84a25448e56c8f58e8 | /Hotel.h | fa0d53c66a08b4d100dc449ecaf3f8884b58bab8 | [] | no_license | maria-linares/ProyectoFinalPOOFINAL | 8e77b5d8dc132073c7689829b8fdce8e9988280f | f0c88ba395e5ecff9fd625c943cc6fb0516adbe7 | refs/heads/master | 2020-06-08T04:20:04.108408 | 2019-07-05T21:19:15 | 2019-07-05T21:19:15 | 193,156,614 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 600 | h | //
// Created by Maria Jose Linares on 2019-07-04.
//
#ifndef PROYECTOFINALPOO_HOTEL_H
#define PROYECTOFINALPOO_HOTEL_H
#include "Objeto.h"
#include "Tipos.h"
class Hotel: public Objeto{
TipoEntero Estrellas;
TipoString Disponibilidad;
public:
Hotel(){};
Hotel(const TipoString& nombre, TipoCaracte... | [
"majolive@Majos-MacBook.local"
] | majolive@Majos-MacBook.local |
1df714f5e9b03db0725fd43fe075cb709a1c6143 | 804cc6764d90fdd7424fa435126c7fe581111562 | /Kernel/VirtualAddress.h | 57122725d55184b96097fb01a19522832086b317 | [
"BSD-2-Clause"
] | permissive | NukeWilliams/prana-os | 96abeed02f33f87c74dd066a5fa7b2d501cb2c62 | c56c230d3001a48c342361733dc634a5afaf35f9 | refs/heads/master | 2023-06-17T18:39:22.394466 | 2021-07-02T13:37:47 | 2021-07-02T13:37:47 | 358,167,671 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,003 | h | #pragma once
// includes
#include <AK/Format.h>
#include <AK/Types.h>
class VirtualAddress {
public:
VirtualAddress() = default;
explicit VirtualAddress(FlatPtr address)
: m_address(address)
{
}
explicit VirtualAddress(const void* address)
: m_address((FlatPtr)address)
{
}... | [
"krisna.pranav@gmail.com"
] | krisna.pranav@gmail.com |
b556289d464969932debb994c8c88ebc719d0928 | 7d5159be28f02ef7ed8ffefaecc1e99cc407745f | /Plugins/LandscapeGen/Source/MapboxDataSource/Private/MapboxDataSource.cpp | c981033ef8f75db3a7f578e5bc000a65def5c3b0 | [
"MIT"
] | permissive | wblong/GeoGDAL | 855418786b2e787ef45e4c3af10cb2943eb795a1 | 8512e3a04aeaf65d8c9a7891bdd84ed9de02e103 | refs/heads/main | 2023-05-10T05:20:00.809309 | 2023-05-08T01:47:21 | 2023-05-08T01:47:21 | 334,815,418 | 3 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 15,407 | cpp | #include "MapboxDataSource.h"
#include "Modules/ModuleManager.h"
#include "IImageWrapper.h"
#include "IImageWrapperModule.h"
#include "Interfaces/IHttpResponse.h"
#include "HttpModule.h"
#include "ImageUtils.h"
#include "GDALHelpers.h"
#include "LandscapeConstraints.h"
namespace
{
float long2tilexf(double lon, int z)... | [
"sdwangbaolong@163.com"
] | sdwangbaolong@163.com |
5b7a290eb9f8b7224246a733decba763e0c9dd75 | 641fa8341d8c436ad24945bcbf8e7d7d1dd7dbb2 | /ui/views/controls/button/button.cc | 416cdf3edad796a709b671973852bba96939c6e1 | [
"BSD-3-Clause"
] | permissive | massnetwork/mass-browser | 7de0dfc541cbac00ffa7308541394bac1e945b76 | 67526da9358734698c067b7775be491423884339 | refs/heads/master | 2022-12-07T09:01:31.027715 | 2017-01-19T14:29:18 | 2017-01-19T14:29:18 | 73,799,690 | 4 | 4 | BSD-3-Clause | 2022-11-26T11:53:23 | 2016-11-15T09:49:29 | null | UTF-8 | C++ | false | false | 2,557 | cc | // Copyright (c) 2011 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 "ui/views/controls/button/button.h"
#include "base/strings/utf_string_conversions.h"
#include "ui/accessibility/ax_node_data.h"
namespace v... | [
"xElvis89x@gmail.com"
] | xElvis89x@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.