blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 4 201 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2
values | repo_name stringlengths 7 100 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 260
values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 11.4k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 17
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 80
values | src_encoding stringclasses 28
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 8 9.86M | extension stringclasses 52
values | content stringlengths 8 9.86M | authors listlengths 1 1 | author stringlengths 0 119 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0e90d0f6a8ce90f6a76e2bec6ad486a9a4a8046a | fe5e4748939432af1d691f9d5837206fbf6c6c2f | /C++/bfs_4.cpp | ab358cfa89455f1c25507562d4c0817d26161b16 | [] | no_license | soadkhan/My-Code | e0ebe0898d68df983e8c41e56633780d6ac22c39 | 72fc258cdbf08d86f20a565afe371713e8e8bc39 | refs/heads/master | 2021-01-23T03:27:34.181019 | 2017-03-24T14:42:15 | 2017-03-24T14:42:15 | 86,077,758 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,863 | cpp | #include<bits/stdc++.h>
using namespace std;
typedef unsigned long long int ulld;
typedef long long int lld;
typedef long int ld;
class node{
public:
ld x;
ld y;
node(int a=0, int b=0){
x = a;
y = b;
}
bool operator == (node a){
if(x==a.x&&y==a.y) return tru... | [
"khancse5914@gmail.com"
] | khancse5914@gmail.com |
41b472878bb0ffe02474a43f939a0f9d14736c31 | b62835c35ededb2d1b4cb0a83db1945f06099479 | /threads/threads/sample.cpp | ffe4901e335165c8ef0d0cd3c87d6567c05e3c12 | [] | no_license | kylerichey/exampleCodeCS360 | b03a584492f8a480af612cf23c85991d82ad5836 | b88805047bacdffb2e8982db1da919ea68bac5b3 | refs/heads/master | 2021-01-24T17:50:44.485337 | 2016-03-28T21:08:15 | 2016-03-28T21:08:15 | 53,171,449 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 956 | cpp | #include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
#include <unistd.h>
void *functionC(void *ptr);
int counter = 0;
main()
{
int rc1, rc2;
pthread_t thread1, thread2;
/* Create independent threads each of which will execute functionC */
if( (rc1=pthread_create( &thread1, NULL, &functionC, NULL... | [
"kylerichey@users.noreply.github.com"
] | kylerichey@users.noreply.github.com |
b5b70ea6679d5af7de9a77fdcf3cb0fb7a07ef78 | 058355106fcf57b746afc5e9979281477c8bd34c | /.history/138.copy-list-with-random-pointer_20200907102809.cpp | fbf65e27a52076910a2e4344160d812b3ce7149b | [] | no_license | Subzero-10/leetcode | ff24f133f984b86eac686ed9b9cccbefb15c9dd8 | 701ec3dd4020970ecb55734de0355c8666849578 | refs/heads/master | 2022-12-24T19:03:16.482923 | 2020-10-11T09:25:29 | 2020-10-11T09:25:29 | 291,388,415 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 978 | cpp | /*
* @lc app=leetcode id=138 lang=cpp
*
* [138] Copy List with Random Pointer
*/
// @lc code=start
/*
// Definition for a Node.
class Node {
public:
int val;
Node* next;
Node* random;
Node(int _val) {
val = _val;
next = NULL;
random = NULL;
}
};
*/
class Solution {... | [
"shizheng961111@gmail.com"
] | shizheng961111@gmail.com |
39f254028246b96f1f7f1493dd100052b2867c5f | 8de91a1aebb00600a98a69b7b8c783cb6a020720 | /cp/MaxFlow.cpp | 05ef8dbcd14733a3b3738e3a9485ab2cd295f79c | [] | no_license | RenatoBrittoAraujo/Competitive-Programming | 2148d5fc4b0ac4b8fdbadc8de2916b31a549e183 | de641f129a1ce27deffb7bf7c1635d702d05bf3e | refs/heads/master | 2020-05-22T21:17:41.420014 | 2019-05-17T00:39:20 | 2019-05-17T00:39:20 | 186,523,234 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,340 | cpp | #include <bits/stdc++.h>
using namespace std;
#define MAX_V 1500 //more than this and maxflow takes too long
#define inf 1000000
using vi = vector<int>;
int G[MAX_V][MAX_V];
vi p;
int mf,f,s,t;
void augment(int v,int me){
if(v==s){
f=me;
return;
}else if(p[v]!=-1){
augment(p[v],min(m... | [
"renatomwbbritto@gmail.com"
] | renatomwbbritto@gmail.com |
7de8422be9b8145b2418279d253c84d60eef52c5 | 8f5f13f74e63cbe9d8a28d60a649b9fece7b2146 | /OpenGL/src/5_advanced_lighting/3_15_deferred_lighting_with_SSAO_with_blur.cpp | f676fbbf29156d07db5b7de0b385ce991575d4d0 | [] | no_license | GameDevZone/OpenGL | 0a2c424405cd8f97efefb29bdc884df8fd31a97f | 1670e4d90187536eb0e477416f7d134431d142de | refs/heads/master | 2020-04-11T02:52:35.337836 | 2019-02-21T09:01:09 | 2019-02-21T09:01:09 | 161,459,704 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 25,404 | cpp | #include <glad/glad.h>
#include <GLFW/glfw3.h>
#include "../std_image.h"
#include "glm.hpp"
#include "gtc/matrix_transform.hpp"
#include "gtc/type_ptr.hpp"
#include "../Shader.h"
#include "../Camera.h"
#include "../Model.h"
#include <iostream>
#include <random>
#define WINDOW_WIDTH 1280
#define WINDOW_HEIGHT 720... | [
"rain330047@outlook.com"
] | rain330047@outlook.com |
bc2bfc8bbf202f7adf914d9b06690c13fe892768 | e58a4f1b096b9544ef56f865afe9f079d3fc89db | /Graphs/breadth_first_search_in_graphs.cc | 92bda9a92f974211793494933103aa3efe7b51ab | [] | no_license | 0APOCALYPSE0/Algorithm-Concepts | c14c27ba967f524202ed9be8a79428bfc01e5dc0 | 587f620dc5b1481790987a86ef34225899d4f35d | refs/heads/master | 2023-06-13T08:05:02.208567 | 2021-07-04T22:32:25 | 2021-07-04T22:32:25 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,305 | cc | #include <bits/stdc++.h>
using namespace std;
#define ll long long int
#define endl "\n"
template<typename T>
class Graph{
map<T,list<T>> adjList;
public:
Graph(){}
// Function To add the nodes into the graph.
void addEdge(T src,T des,bool bidir = true){
adjList[src].push_back(des);
if(bidir){
adjList[des]... | [
"ajaysharma388"
] | ajaysharma388 |
80f7c532559ad444bd1aaf29b105c279c18a08db | f0bba79c584a12c8461c4650572953ef719cbbaf | /include/core/gpumemory.h | a92e1456fc464f503e0370e4e4cba98637e90127 | [] | no_license | YYXXYYZZ/soft-renderer | 88490cf1665dc4ba49c77817a181cb9118dfc800 | f4300575b967fc6035b4b41df441182554ce8c45 | refs/heads/master | 2021-11-25T10:46:08.291477 | 2014-10-29T07:57:29 | 2014-10-29T07:57:29 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,486 | h | #ifndef GPUMEMORY_H
#define GPUMEMORY_H
#include <map>
#include <cstring>
#include <typeindex>
#include <iostream>
#include <exception>
using std::string;
using std::map;
using std::type_index;
namespace GPUMemory {
struct MemoryInfo{
void * address;
int size;
string type;
};
typedef map<string,MemoryIn... | [
"tangbongbong@gmail.com"
] | tangbongbong@gmail.com |
7b040c87258aa6fe094d601d6f589386390d4bd5 | 15612c6affbeb98781e19f7de0d3f1db72cf1db9 | /include/utility/relation_node.hpp | 97e5891a725439904d443bf8903a71bbf70d4c53 | [
"Apache-2.0"
] | permissive | federeghe/chronovise | 332ad62ab046a2ff8ed1d03cf7e66a366717b630 | 4b332f10669af73f33e00f8749040eed9601bfb2 | refs/heads/master | 2023-02-24T05:25:51.369574 | 2021-12-08T10:31:26 | 2021-12-08T10:31:26 | 111,384,255 | 3 | 5 | null | null | null | null | UTF-8 | C++ | false | false | 2,009 | hpp | /*
* chronovise - Copyright 2018 Politecnico di Milano
*
* 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... | [
"federico.reghenzani@polimi.it"
] | federico.reghenzani@polimi.it |
d7a556185663cc98990de49e3175279a6e05f520 | 37421955fdae8ab64fa65c4fa91a6b2622bc14ef | /common/camera.h | 99fbafcb7fdf33da12cbd11b8b3e59f06dd905d0 | [] | no_license | SasaWakaba/Stelemate | c8ac4f49e4116911c044a9f559437c9b82d464bd | 20c003206ff3ba2b987ef978a98c8fe0514f87ab | refs/heads/master | 2020-09-05T18:52:41.011485 | 2020-03-29T11:53:39 | 2020-03-29T11:53:39 | 220,181,236 | 0 | 0 | null | null | null | null | SHIFT_JIS | C++ | false | false | 857 | h | #pragma once
#include "Game_Object.h"
class CCamera:public CGameObject
{
private:
XMMATRIX m_ViewMatrix;
RECT m_Viewport;
static XMFLOAT3 m_Eye; //カメラ座標
static XMFLOAT3 m_at; //見てる場所(注視点)
XMFLOAT3 m_CameraFront; //カメラの正面、長さ1
XMFLOAT3 m_CameraRight; //カメラの右側、長さ1
XMFLOAT3 m_CameraUp; //カメラの上、長さ1
... | [
"sasa.wakaba0405@gmail.com"
] | sasa.wakaba0405@gmail.com |
dde61d24a8ec8ab0aa669234ad4b8f9cccd4ccab | efa0c247b3d0636c14e83d548b407024c1aa594d | /core/pygmy_console.cpp | 7af2dae02f36841429a8f8c995480e174b061002 | [] | no_license | WarrenDGreenway/pygmyos | 2729dd6e1fb6e80081a7660de3d00fb148ddacb5 | f1738456a974c680539101e223a0e608e8564f52 | refs/heads/master | 2020-05-30T04:26:22.628394 | 2014-06-24T04:08:07 | 2014-06-24T04:08:07 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,260 | cpp | /**************************************************************************
PygmyOS ( Pygmy Operating System ) - BootLoader
Copyright (C) 2011-2012 Warren D Greenway
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published b... | [
"mightydubster@gmail.com"
] | mightydubster@gmail.com |
9d82c3f45d9417342d4cf95f55276234ac428495 | 5e191124f3ae3cb374500b392123b75475b55030 | /tpl/gtest-mpi-listener/gtest-mpi-listener.hpp | 44e9578e1ce67de5d4439d3767c93977c52f8a39 | [
"BSD-3-Clause"
] | permissive | LLNL/MPIDiff | 501056918b6c49c8970b284251f73bbd7e62b089 | f7e24ce6ba4c2139424b26707742a7124ac8a045 | refs/heads/develop | 2023-06-30T16:45:28.039741 | 2021-08-04T15:45:09 | 2021-08-04T15:45:09 | 321,845,944 | 4 | 0 | BSD-3-Clause | 2021-08-04T15:45:10 | 2020-12-16T02:31:35 | C++ | UTF-8 | C++ | false | false | 19,412 | hpp | /******************************************************************************
*
* Slight modifications made by Alan Dayton (2019)
*
*******************************************************************************/
//
/******************************************************************************
*
* Copyright (c)... | [
"dayton8@llnl.gov"
] | dayton8@llnl.gov |
31e6426075fb037ae514214f4ad1dfd0a400c303 | 3bd1a6c15e63cbbef0e60a02957fb01722139f47 | /RoverMain/RoverFi.cpp | 488a20f5efd01026cec120dfdc49967c9ed9d919 | [] | no_license | DynamicBrute/SARSRover | 447ed77d266686776b4c8f703eb7a384e609dc82 | 30c9b25914b842937abd1b0b169bf6f7527c12b1 | refs/heads/master | 2020-05-17T05:15:04.989202 | 2015-04-21T16:58:34 | 2015-04-21T16:58:34 | 33,909,840 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,626 | cpp | #include "RoverFi.h"
#include "GPS.h"
#include "GPIO.h"
#include "HMC5883.h"
//#include "RoverMain.h"
char ssid[] = "SARSNet";
// your network password
char password[] = "sarsrover";
WiFiClient debugClient;
//Server object, the argument is the port that it listens too
WiFiServer debugServer(3284);
WiFiServer mainSe... | [
"crabbybrian135@gmail.com"
] | crabbybrian135@gmail.com |
52a43133980c01041fea2209f911688d000885f0 | bd8cd86bc15d0249c1f369363a6b0c652e530f3f | /tools/caffe2ncnn.cpp | 0eff756aed3acf33275dc94177c85897406f4adb | [] | no_license | zjd1988/mtcnn_vs2017_based_on_ncnn | 85cd8a62be726aacbf44e431fdd0087abd2dd55d | 3487fa3a15dad51b152266086a0c84164d9e7392 | refs/heads/master | 2020-04-12T14:58:18.352752 | 2019-05-21T10:46:33 | 2019-05-21T10:46:33 | 162,566,929 | 5 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 28,601 | cpp | // Tencent is pleased to support the open source community by making ncnn available.
//
// Copyright (C) 2017 THL A29 Limited, a Tencent company. All rights reserved.
//
// Licensed under the BSD 3-Clause License (the "License"); you may not use this file except
// in compliance with the License. You may obtain a copy ... | [
"942002795@qq.com"
] | 942002795@qq.com |
457ac81b2f53dc5f3dd38774e432d5f86fa4ce4d | aa803dab12247d693cddb8e2ba1b61f807547fe9 | /build-SMail-Desktop_Qt_5_4_1_MSVC2013_64bit-Debug/ui_mainwindow.h | b57400ec4fc348c1f9684832be58bb9b44ad20ca | [] | no_license | Luqaz/SPOVM | 1a767ccc6f8e5c996deb4b4beb99eefa266395a2 | 5fa5d18a6250c7ee7a0b8b3bed6ecbad32cf469a | refs/heads/master | 2020-12-25T19:26:09.156788 | 2015-05-31T16:39:18 | 2015-05-31T16:39:18 | 30,823,319 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,211 | h | /********************************************************************************
** Form generated from reading UI file 'mainwindow.ui'
**
** Created by: Qt User Interface Compiler version 5.4.1
**
** WARNING! All changes made in this file will be lost when recompiling UI file!
****************************************... | [
"qazus666@gmail.com"
] | qazus666@gmail.com |
2e7d2144d4a8365ee58e6b203563b4089467d6ae | d0c44dd3da2ef8c0ff835982a437946cbf4d2940 | /cmake-build-debug/programs_tiling/function14539/function14539_schedule_15/function14539_schedule_15.cpp | 34f3a0086c48f3256198d482c3c0cea85fb84035 | [] | no_license | IsraMekki/tiramisu_code_generator | 8b3f1d63cff62ba9f5242c019058d5a3119184a3 | 5a259d8e244af452e5301126683fa4320c2047a3 | refs/heads/master | 2020-04-29T17:27:57.987172 | 2019-04-23T16:50:32 | 2019-04-23T16:50:32 | 176,297,755 | 1 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 1,781 | cpp | #include <tiramisu/tiramisu.h>
using namespace tiramisu;
int main(int argc, char **argv){
tiramisu::init("function14539_schedule_15");
constant c0("c0", 256), c1("c1", 128), c2("c2", 2048);
var i0("i0", 0, c0), i1("i1", 0, c1), i2("i2", 0, c2), i01("i01"), i02("i02"), i03("i03"), i04("i04");
input ... | [
"ei_mekki@esi.dz"
] | ei_mekki@esi.dz |
f523f810a34c707f69f06a32a7b6c4cdaab6631b | c22d65113ebf726c89fdc8da2a7e5e3552478014 | /src/libraries/Bounce2/Bounce2.h | e9fe87cdbe180c07125b284b793ac10d5ba37123 | [] | no_license | d-diot/mainmcu | 4b1795607223a65b7f956916912994e87188a9b4 | fc2175f937a0f086eb50ddf2b26ac53298460cf4 | refs/heads/master | 2023-02-27T12:43:55.095736 | 2021-01-29T20:54:52 | 2021-01-29T20:54:52 | 268,135,663 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,300 | h | /*
The MIT License (MIT)
Copyright (c) 2013 thomasfredericks
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, m... | [
"franz-unix@htpc.localdomain"
] | franz-unix@htpc.localdomain |
4fb1a52d748490242e2d2a86623aa59b6c14d186 | c824d97cc1208744e4453bac916dcc24dc77a377 | /libcaf_io/caf/io/network/stream_manager.hpp | c9129d4c56adf1dc5baaba06417ca8b692ab6c9c | [
"BSL-1.0"
] | permissive | DePizzottri/actor-framework | 1a033440660c4ea507b743b0d46a46de7fd30df6 | bdbd19541b1e1e6ec0abe16bcf7db90d73c649d2 | refs/heads/master | 2021-01-24T00:23:18.672012 | 2018-04-28T13:04:21 | 2018-04-28T13:04:21 | 59,172,681 | 0 | 0 | null | 2017-03-07T04:22:26 | 2016-05-19T04:04:18 | C++ | UTF-8 | C++ | false | false | 2,414 | hpp | /******************************************************************************
* ____ _ _____ *
* / ___| / \ | ___| C++ *
* | | / _ \ | |_ Actor *
... | [
"dominik.charousset@haw-hamburg.de"
] | dominik.charousset@haw-hamburg.de |
842dcfb3f6758d88873d60a66f6007e37cdcf6ce | 8eac6a6d838ceb06c44daa28bb9ef7aaccddbf9b | /Chapter11/ch11ex2/DLHashTable.h | 478bd21802e614e5802ba0f13415dc735bc91a96 | [] | no_license | Song621/CPP-Classes-and-Data-Structures | e66def3fca5eb85c2e7503e5d8293879e53250c6 | d9c1ede3c92ab123a600a18ae03f124e41ba3c6f | refs/heads/master | 2023-08-30T12:56:06.279988 | 2021-11-10T16:53:46 | 2021-11-10T16:53:46 | 303,077,699 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,484 | h | #pragma once
#include "Array.h"
#include "CollisionList.h"
template <class DataType>
class DLHashTable
{
public:
DLHashTable(int (*hf)(const DataType&), int s);
bool insert(const DataType& newObject);
bool retrieve(DataType& retrieved);
bool remove(DataType& removed);
bool update(DataType& updateObject);
void ma... | [
"2972918569@qq.com"
] | 2972918569@qq.com |
75a303642f8bc683a5bbe664f60b731685865ac4 | f0779717341f2c471191a94250f5b83ab3dc20cc | /OpenCV3/CPP-TCP-Client/CPP-TCP-Client/main.cpp | 52ac2624257c173696723642a11704b9222d22cd | [] | no_license | IceArmour/ZSC-2017-ETHEIH | c6de0e143dcf683d436c0dd653423743769ba9d9 | f85f0a64c7b2521bfc8e6a6d58c88980f0027e05 | refs/heads/master | 2020-03-27T08:34:03.460285 | 2018-08-12T23:15:10 | 2018-08-12T23:15:10 | 131,006,600 | 0 | 0 | null | 2018-04-25T12:57:53 | 2018-04-25T12:57:53 | null | UTF-8 | C++ | false | false | 1,343 | cpp | //--------------------------------------【程序说明】-------------------------------------------
// 程序说明:第11次汇报 CPP-TCP-Client
// 程序描述:建立TCP通信协议,作为客户端与VISOR进行通信
// 开发测试所用操作系统:Windows 10 64bit
// 开发测试所用IDE版本:Visual Studio 2017
// 2018年8月9日 Created by @ZHWKnight
// 2018年4月13日 Revised by @ZHWKnight
//----------------------... | [
"china.wenhuang@gmail.com"
] | china.wenhuang@gmail.com |
6ace4346789645c05334fadbcae6ddcd85808d28 | 1d928c3f90d4a0a9a3919a804597aa0a4aab19a3 | /c++/Chaste/2016/8/AbstractAcinarUnitFactory.cpp | 1d66673254aedfa5d9313fe09f668d4ff2f7e6f7 | [] | no_license | rosoareslv/SED99 | d8b2ff5811e7f0ffc59be066a5a0349a92cbb845 | a062c118f12b93172e31e8ca115ce3f871b64461 | refs/heads/main | 2023-02-22T21:59:02.703005 | 2021-01-28T19:40:51 | 2021-01-28T19:40:51 | 306,497,459 | 1 | 1 | null | 2020-11-24T20:56:18 | 2020-10-23T01:18:07 | null | UTF-8 | C++ | false | false | 2,664 | cpp | /*
Copyright (c) 2005-2016, University of Oxford.
All rights reserved.
University of Oxford means the Chancellor, Masters and Scholars of the
University of Oxford, having an administrative office at Wellington
Square, Oxford OX1 2JD, UK.
This file is part of Chaste.
Redistribution and use in source and binary forms... | [
"rodrigosoaresilva@gmail.com"
] | rodrigosoaresilva@gmail.com |
068249937238b4474fabad7e5fccb75659d0154f | 9a9297f7760f3e07ce281e7ab0e85dd2e2d607bd | /testbed/tests/es_benchmark_seed1.cpp | 72c6623cb649663494468452fcb1bdaedf1d0205 | [
"MIT"
] | permissive | DomiKoPL/BoxCar2D.cpp | c63d8b6e181a280529b8271928be3423cb362098 | a3bbb80304bccf7a8a232bfb8fe78718c47e03f7 | refs/heads/main | 2023-07-18T17:55:01.032440 | 2021-09-19T16:19:47 | 2021-09-19T16:19:47 | 332,049,853 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,818 | cpp | #include "test.h"
#include <string>
#include "car.h"
#include "chromosome.h"
#include <algorithm>
#include "es_benchmark_seed1.hpp"
#include <iostream>
#include "settings.h"
ESBenchmarkSeed1::ESBenchmarkSeed1()
{
blocked_environment = nullptr;
}
void ESBenchmarkSeed1::Step(Settings& settings)
{
if(blocked_environm... | [
"xkowal99@gmail.com"
] | xkowal99@gmail.com |
ffb2fcdbae14fb0cd8739ebd2217472f2ebafa7d | 8d39f509abf62a0947f3e9dd11a1bc02665b609e | /comp2012h/csd_only/lecture/7-class/Emp_codes/static.cpp | 2293bea9c145f7f09d3baa86145bde7afd230ab3 | [] | no_license | clcheungac/clcheungac.github.io | c77c8a0c5b2261cf37602ce644c143e266184277 | 815885f2af89ef3ac32fad607786c6e8fa47c6e0 | refs/heads/master | 2021-01-10T13:08:37.959427 | 2018-12-30T13:44:20 | 2018-12-30T13:44:20 | 48,602,655 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,608 | cpp | // Fig. 10.23: fig10_23.cpp
// static data member tracking the number of objects of a class.
#include <iostream>
using std::cout;
using std::endl;
#include "SEmployee.h" // Employee class definition
int main()
{
// use class name and binary scope resolution operator to
// access static number function getCount
... | [
"clcheungac@connect.ust.hk"
] | clcheungac@connect.ust.hk |
31b48c3c2aacaff1842804173f687c81655133ea | 995ec94d7831c13e7025ed59f274def5bce18c39 | /area3.cpp | abb701d2ae5d1f7e508f02988ce1fdf3f9221ada | [] | no_license | srm1071/codingpractice | 71697c5dd011ae560e1473350e57c2c1b3a8e654 | b54a7d915c426a2c030fb256d9989d011ead5aee | refs/heads/master | 2022-10-16T12:59:33.102073 | 2022-10-06T18:39:18 | 2022-10-06T18:39:18 | 137,438,850 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 867 | cpp | #include<iostream>
#include<math.h>
using namespace std;
float area(int,int,int);
float area(int,int);
float area(int);
int main()
{
int a,b,c,r,k;
cout<<"enter your choice"<<endl;
cout<<"1:area of triangle"<<endl;
cout<<"2:area of circle"<<endl;
cout<<"3:area of rectangle"<<endl;
cin>>k;
if(k==1)
{
cout<<... | [
"noreply@github.com"
] | noreply@github.com |
626698f15d91203e09063693c38b9af803d1bcda | a19c187518fe30e61ed377c4c13376e162b5f0c1 | /utrason_alice_yannick.ino | 8e8c7273516aec7ea928551bfd01fe3fe216bf80 | [] | no_license | ycarissan/utrason_alice_yannick | 1113d39faa86ad152160d5b92502cd6e31df687c | e8764bba5edcacfaba66e1770e7e7f753f8c183a | refs/heads/master | 2022-08-13T11:48:55.653856 | 2020-05-24T09:06:57 | 2020-05-24T09:06:57 | 266,360,665 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,326 | ino | /*
* Ultrasonic Sensor HC-SR04 and Arduino Tutorial
*
* by Dejan Nedelkovski,
* www.HowToMechatronics.com
*
*/
// defines pins numbers
const int trigPin = 2;
const int echoPin = 3;
// defines variables
long duration;
int distance;
void setup() {
pinMode(10, OUTPUT);
pinMode(11, OUTPUT);
pinMode(trigPin, OUTPUT); // ... | [
"ycarissan@gmail.com"
] | ycarissan@gmail.com |
71f6a27c440793cc1ec61f17efa085ba29a7ebf5 | 91e6abe135f8969bfc7aeba30277271590b76ff6 | /cartographer/cartographer/mapping/map_builder.cc | 80eb7fe5c218ef92428d8ffa4e005ff0a6525d3b | [
"Apache-2.0"
] | permissive | eglrp/carto_modify | 2075d186fbd5f802b627a5f50e6e62cbf2f1ad4b | 9d5eb1d1fa511d1ce41222ea7006c416cd513434 | refs/heads/master | 2020-04-07T03:08:25.908720 | 2018-11-14T03:03:39 | 2018-11-14T03:03:39 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 17,363 | cc | /*
* Copyright 2016 The Cartographer Authors
*
* 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... | [
"chenzhe78@sina.com.cn"
] | chenzhe78@sina.com.cn |
8d85a96e2987285412807bf7aa6e7d3c057206e0 | fa623d526d6ca624d60a702f5c6671cbcec1c23e | /praduck/levelmap.h | d128d14e50a77a1eba2a03375c8b2745fa81195f | [] | no_license | imclab/plusplus-warrior | a9e3372de7bfbdc68efc2f9936efb6e035b80825 | 668279f82ca7a641d68c66d87589f2327eb0403c | refs/heads/master | 2021-05-01T20:31:36.547667 | 2014-02-06T03:14:49 | 2014-02-06T03:14:49 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 780 | h | #ifndef __praduck__LevelMap__
#define __praduck__LevelMap__
#include <iostream>
#include <fstream>
#include <iomanip>
#include "BaseTile.h"
#include "CreatureTile.h"
class TileController;
using namespace std;
class LevelMap {
protected:
BaseTile* map[20][20];
BaseTile* TileFromChar(char c);
public:
int ... | [
"aaron.d@apple.com"
] | aaron.d@apple.com |
29cb0510e98b37a20bd1f7ea4b7d36b954711aad | efe2b4dedbc6bab31ffe88c271daa5463f8649f6 | /branches/fast-extension/src/udp_tracker_connection.cpp | d08abd3595eacec600dec250f555c23f5efea516 | [] | no_license | svn2github/libtorrent | 867c84f0c271cdc255c3e268c17db75d46010dde | 8cfe21e253d8b90086bb0b15c6c881795bf12ea1 | refs/heads/master | 2020-03-30T03:50:32.931129 | 2015-01-07T23:21:54 | 2015-01-07T23:21:54 | 17,344,601 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 14,411 | cpp | /*
Copyright (c) 2003, Arvid Norberg
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the f... | [
"arvidn@f43f7eb3-cfe1-5f9d-1b5f-e45aa6702bda"
] | arvidn@f43f7eb3-cfe1-5f9d-1b5f-e45aa6702bda |
373b86995aaeba7d31ab4a985ec4d24233a0a3a5 | 1815b64a60fa9d0ccd3270d53cd176536558153f | /chrome/browser/policy/messaging_layer/util/heartbeat_event_factory.cc | 4aab15858c2ce01ee974b486c74f51c320413c15 | [
"BSD-3-Clause"
] | permissive | violetForeden/chromium | ae8c65739de96dd141136e6523b4a2c5978491d9 | 43f3ea874caca29eead4dc4dfb1c8ce6f11fa5da | refs/heads/main | 2023-06-29T09:43:21.454580 | 2021-09-12T08:27:01 | 2021-09-12T08:27:01 | 405,598,541 | 1 | 0 | BSD-3-Clause | 2021-09-12T09:22:55 | 2021-09-12T09:22:55 | null | UTF-8 | C++ | false | false | 1,693 | 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 "chrome/browser/policy/messaging_layer/util/heartbeat_event_factory.h"
#include "chrome/browser/policy/messaging_layer/util/heartbeat_event.h"
#... | [
"chromium-scoped@luci-project-accounts.iam.gserviceaccount.com"
] | chromium-scoped@luci-project-accounts.iam.gserviceaccount.com |
529d86e6767550da9d1dd9a8261c6098364d2487 | 5e1cf134e9be0c30ab0f1175e578ebc2917eab9e | /PrimeC++/beforeJan17_2016/callPrivate.cpp | 9c6d0f6511a82ced4f4b2ea35a7c933d7135c19d | [] | no_license | LiehuoChen/CPLUSPLUS_STUDY | d0d1339113d8ff34a1bcb4dec7db4ecd3f22c291 | 2cda080b1ab7893db4145542db69ca2b1c03bc48 | refs/heads/master | 2021-01-10T16:57:42.639576 | 2016-01-17T23:54:37 | 2016-01-17T23:54:37 | 49,798,875 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 389 | cpp |
#include<iostream>
using namespace std;
class Base {
public:
virtual int fun(int i) { cout << "Base::fun(int i) called" << endl; }
};
class Derived: public Base {
private:
int fun(int x) { cout << "Derived::fun(int x) called" << endl; }
};
int main()
{
//Derived *ptrD = new Derived;
//ptrD->fun... | [
"lchen66@binghamton.edu"
] | lchen66@binghamton.edu |
47f03ff81ab71217cc3e8ebabdfcf6502f96132f | 78590c60dac38e9b585d0a277ea76944544e9bd8 | /src/pool/pstring.cxx | 4c17513a96aee622eaf9cc3b0170584ad44c15df | [] | no_license | sandeshdevadiga/beng-proxy | 05adedcf28c31ad5fbaa073f85e5d2d420e5b3ca | 436e8de75a28aa8c7b09f6ed97c1a1dfcf0fcfc4 | refs/heads/master | 2023-03-02T09:04:20.466704 | 2021-02-11T17:05:38 | 2021-02-11T17:10:48 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,133 | cxx | /*
* Copyright 2007-2021 CM4all GmbH
* All rights reserved.
*
* author: Max Kellermann <mk@cm4all.com>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* - Redistributions of source code must retain the abo... | [
"mk@cm4all.com"
] | mk@cm4all.com |
beda539299351df342cb8150329bafea3b430413 | d85f2df596f794c92d1a36ffa3d99c389b30e797 | /ArquiSoftSolid/ClienteCredito.cpp | d6d7d05bc655bba289fdf7f132a19c312e0db451 | [] | no_license | kevdie/SOLID | 057717e683e11987d4d20b647c972721ee726a26 | 9cc2903bf243ff0e6f73e5a4f070737273a8361f | refs/heads/master | 2022-12-28T08:08:26.816722 | 2020-10-13T16:28:14 | 2020-10-13T16:28:14 | 303,761,529 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 754 | cpp | #include "ClienteCredito.h"
int ClienteCredito::getTotalPagos()
{
return totalPagos;
}
void ClienteCredito::setTotalPagos(int totalPagos)
{
this->totalPagos = totalPagos;
}
int ClienteCredito::getPagosRealizados()
{
return pagosRealizados;
}
void ClienteCredito::setPagosRealizados(int pagosRealizados)
{
this->p... | [
"kevindiegofloresantezana@hotmail.com"
] | kevindiegofloresantezana@hotmail.com |
199f1967544ea0551c4caf575dcb5a6050442f1a | 24068d8b6d306b17beb5c99ca1c113b972929764 | /SocialGameOpenGLApplication/PrologEngine.h | e354079c6343cdf7f3c142c26f2b913cabb9a404 | [] | no_license | brunoflavio-com/engenius | 1a33a772d691fd4d601957675de37edd582d2c2e | 0164eefdf59fd8c36ec04b285cdce58bc9683687 | refs/heads/master | 2020-12-31T02:48:44.104432 | 2014-01-16T14:04:53 | 2014-01-16T14:04:53 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 298 | h | #pragma once
#include <SWI-cpp.h>
class PrologEngine
{
public:
static PrologEngine& getInstance();
PlEngine * getEngine();
private:
PrologEngine();
~PrologEngine();
PlEngine * swiprolog;
//disallow copies.
PrologEngine(PrologEngine const&);
void operator=(PrologEngine const&);
}; | [
"bmflavio@gmail.com"
] | bmflavio@gmail.com |
b05b768585a2da7932ef59055e8fbfd2723bd683 | f77c9ed429f4bdc903815fccb5d5efcdd3110a7f | /RovController/Sensors/ImuSensor.cpp | 6935589c85601723cecb982475254c8dc2bbc33c | [] | no_license | lawrence-tech-rov-team/Rov-Controller | 1e348c780ec854a06c6862b636a5e1f91379e123 | 0ac227c88e6630d933af16d1f5e7ebdf6cfa9b69 | refs/heads/master | 2020-12-02T23:46:59.091308 | 2020-05-04T20:39:22 | 2020-05-04T20:39:22 | 231,159,016 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,733 | cpp | /*
* ImuSensor.cpp
*
* Created: 2/19/2020 8:49:46 PM
* Author: zcarey
*/
#include "ImuSensor.h"
#include "../Robot.h"
ImuSensor::ImuSensor(const uint8_t TempId, const uint8_t AccelId, const uint8_t MagId, const uint8_t GyroId, const uint8_t EulerId, const uint8_t LinearId, const uint8_t GravityId, const uint8_... | [
"zcarey@ltu.edu"
] | zcarey@ltu.edu |
c3073a438eb84ebb36e12fe23b7bb73d4597609a | eaba85a3864089c45b9820052162529e1a4b7b77 | /src/ds-algo/trie.cpp | d4f9e8fd634b71285118e1ebfbd22403c7d23147 | [] | no_license | shafwanur010/cp | 77efc596af1038ba2c4769988fc948803ea10d78 | 1d0fc234956e8b469b1ed769c9fa1bae4a72888a | refs/heads/master | 2023-09-03T23:04:05.054541 | 2023-08-19T06:20:50 | 2023-08-19T06:20:50 | 288,452,374 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,505 | cpp | #include <bits/stdc++.h>
using namespace std;
struct node {
node *child[26];
bool isEnd;
};
node* make() {
node *u = new node;
for (int i = 0; i < 26; i++) {
u->child[i] = nullptr;
}
u->isEnd = false;
return u;
}
void insert(node *root, string s) {
node *u = root;
for (char c : s) {
int id... | [
"shafwanurrahman010@gmail.com"
] | shafwanurrahman010@gmail.com |
4ab5076d09392144a7e0b02e9ba61e504671668d | 8739fbb376ece424772c617874affb1040739916 | /stencils/TurbViscosityBufferFillStencil.cpp | 8b13900a8ec7a03bab83d2a3843aae833d1cc416 | [] | no_license | gasteigerjo/turbulent | 6d34c0aeba0ff797d0d327f50268dc791e405f94 | ed61a9503312c99abfe5ffc577f398f7b549681d | refs/heads/master | 2022-03-12T07:43:28.750274 | 2016-01-25T14:38:52 | 2016-01-25T14:38:52 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,231 | cpp | #include "TurbViscosityBufferFillStencil.h"
TurbViscosityBufferFillStencil::TurbViscosityBufferFillStencil(const Parameters & parameters,
FLOAT * turbViscLeft, FLOAT * turbViscRight,
FLOAT * turbViscBottom, FLOAT * turbViscTop,
int lowOffset) :
ScalarBufferFillStencil<TurbulentFlowFie... | [
"thomas@tpaula.de"
] | thomas@tpaula.de |
6f74e6851a700687498ca18d0785515c19ebc43e | 881065f461f7bc9abd1a99dd2e09da78d0348c01 | /Programm/VokabeltrainerDGJE.cpp | b507d7c152b915a79ea95de92ce2063ea5961ea0 | [] | no_license | DennisGoss99/Projekt-Voc | 14a2f0618e7413b510c4c0944e186044b37230f7 | c94f51414808959caa34422b60a8b2105668a421 | refs/heads/master | 2020-05-06T15:18:46.559369 | 2019-04-30T21:09:46 | 2019-04-30T21:09:46 | 180,183,380 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,108 | cpp | //---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
#include <tchar.h>
//---------------------------------------------------------------------------
#include <Vcl.Styles.hpp>
#include <Vcl.Themes.hpp>
USEFORM("uFrmCheckVoc.cpp", frmCheckVoc);
USEFORM("uFrmMain... | [
"dennisgossler98@gmail.com"
] | dennisgossler98@gmail.com |
d232b04c5868575cdf2289515c9b811f68c769d6 | 7568cf9fc1eee857141ab265311edcaf964f54b4 | /components/omnibox/common/omnibox_features.cc | aa4ae3d6a631c711ccd82ba9d9112638afd1d90c | [
"BSD-3-Clause"
] | permissive | cbosoft/chromium | f4f0c9e1ae596850c04038eed34d21040103569f | 072e9137131be2f8a99efbfc7dc8fd8c1cd4c4eb | refs/heads/master | 2023-01-06T22:31:37.388286 | 2020-05-28T18:24:23 | 2020-05-28T18:24:23 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 16,998 | cc | // Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/omnibox/common/omnibox_features.h"
#include "build/build_config.h"
namespace omnibox {
// Allows Omnibox to dynamically adjust num... | [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
7b4f9d04098d45c78028e60b4dce3894f976405d | 6aeccfb60568a360d2d143e0271f0def40747d73 | /sandbox/SOC/2011/simd/libs/simd/mini_nt2/nt2/include/constants/eps_related.hpp | 4c6c82567432698aaf5681e0c840957770bcc788 | [] | no_license | ttyang/sandbox | 1066b324a13813cb1113beca75cdaf518e952276 | e1d6fde18ced644bb63e231829b2fe0664e51fac | refs/heads/trunk | 2021-01-19T17:17:47.452557 | 2013-06-07T14:19:55 | 2013-06-07T14:19:55 | 13,488,698 | 1 | 3 | null | 2023-03-20T11:52:19 | 2013-10-11T03:08:51 | C++ | UTF-8 | C++ | false | false | 185 | hpp | #ifndef NT2_INCLUDE_CONSTANTS_EPS_RELATED_HPP_INCLUDED
#define NT2_INCLUDE_CONSTANTS_EPS_RELATED_HPP_INCLUDED
#include <nt2/toolbox/constant/include/constants/eps_related.hpp>
#endif
| [
"loufoque@gmail.com"
] | loufoque@gmail.com |
1ceab5827a70adf5b7d563c94fe057ac2172b4fe | 297497957c531d81ba286bc91253fbbb78b4d8be | /third_party/aom/test/decode_api_test.cc | 57df634644d1965efbb0dbb1664fd5aba603b5dc | [
"LicenseRef-scancode-unknown-license-reference",
"BSD-2-Clause"
] | permissive | marco-c/gecko-dev-comments-removed | 7a9dd34045b07e6b22f0c636c0a836b9e639f9d3 | 61942784fb157763e65608e5a29b3729b0aa66fa | refs/heads/master | 2023-08-09T18:55:25.895853 | 2023-08-01T00:40:39 | 2023-08-01T00:40:39 | 211,297,481 | 0 | 0 | NOASSERTION | 2019-09-29T01:27:49 | 2019-09-27T10:44:24 | C++ | UTF-8 | C++ | false | false | 1,495 | cc |
#include "third_party/googletest/src/googletest/include/gtest/gtest.h"
#include "config/aom_config.h"
#include "test/util.h"
#include "aom/aomdx.h"
#include "aom/aom_decoder.h"
namespace {
TEST(DecodeAPI, InvalidParams) {
static const aom_codec_iface_t *kCodecs[] = {
#if CONFIG_AV1_DECODER
aom_code... | [
"mcastelluccio@mozilla.com"
] | mcastelluccio@mozilla.com |
7070cc477d92c7681b725e465ba6f6e6e7f13add | 775acebaa6559bb12365c930330a62365afb0d98 | /source/sdksamples/gotolasttextedit/IGTTxtEdtUtils.h | 94df381a12a98ef4dabcfb5b47babba9c530bce1 | [] | no_license | Al-ain-Developers/indesing_plugin | 3d22c32d3d547fa3a4b1fc469498de57643e9ee3 | 36a09796b390e28afea25456b5d61597b20de850 | refs/heads/main | 2023-08-14T13:34:47.867890 | 2021-10-05T07:57:35 | 2021-10-05T07:57:35 | 339,970,603 | 1 | 1 | null | 2021-10-05T07:57:36 | 2021-02-18T07:33:40 | C++ | UTF-8 | C++ | false | false | 1,584 | h | //========================================================================================
//
// $File: //depot/devtech/16.0.x/plugin/source/sdksamples/gotolasttextedit/IGTTxtEdtUtils.h $
//
// Owner: Adobe Developer Technologies
//
// $Author: pmbuilder $
//
// $DateTime: 2020/11/06 13:08:29 $
//
// $Re... | [
"75730278+Tarekhesham10@users.noreply.github.com"
] | 75730278+Tarekhesham10@users.noreply.github.com |
1719f6b99f1aff9a2e70af7e699c5e7b6fefca4d | 6694e0f5fc41ce0aea00a74f69d1c73447088b73 | /PR4_Banking/Saving_Account.h | 36da073999b8716256e6577dd6f3a88b770411aa | [] | no_license | enerelt21/Banking | 70bf955a3c8821fc5bdde017538c3747d9c76035 | eea0e181ed95b92c551647b34a05e579548792c8 | refs/heads/master | 2021-04-15T09:43:06.820137 | 2018-03-24T04:04:58 | 2018-03-24T04:04:58 | 126,416,130 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 584 | h | #ifndef SAVING_ACCOUNT_H
#define SAVING_ACCOUNT_H
#include <iostream>
#include <string>
#include "Account.h"
class Saving_Account : public Account
{
private:
double interest = 4.5;
public:
//constructor
Saving_Account(Customer* cust, int account_id) : Account(cust, account_id) {}
//destructor
~Sav... | [
"noreply@github.com"
] | noreply@github.com |
4f617d1a7368aee5e091f343751c24cc52f80796 | 877fff5bb313ccd23d1d01bf23b1e1f2b13bb85a | /app/src/main/cpp/dir7941/dir7942/dir8062/dir8063/dir12766/dir12767/dir13029/dir13714/dir14735/file14818.cpp | 5d3d12d505fb8587fe2dca4a7aa76019fd9febe3 | [] | no_license | tgeng/HugeProject | 829c3bdfb7cbaf57727c41263212d4a67e3eb93d | 4488d3b765e8827636ce5e878baacdf388710ef2 | refs/heads/master | 2022-08-21T16:58:54.161627 | 2020-05-28T01:54:03 | 2020-05-28T01:54:03 | 267,468,475 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 115 | cpp | #ifndef file14818
#error "macro file14818 must be defined"
#endif
static const char* file14818String = "file14818"; | [
"tgeng@google.com"
] | tgeng@google.com |
5fcd8a3374ec9f569544647bc616d1c212277e25 | 313bb78d5b0ee1935099fd693ecd1016f65abb9d | /source/SetTransparency/SetTransparency.cpp | c096259ce5d9af235d05419d78e0c2645015eed0 | [] | no_license | kaida-kaida/settransparency | 915acef6c100d129a6c3b7428b0bb67de299efa9 | 18f11b2e24dad3e642c70c109c9a2ccadbcdf838 | refs/heads/master | 2021-01-11T14:12:18.549999 | 2014-03-29T09:11:59 | 2014-03-29T09:11:59 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,301 | cpp | // SetTransparency.cpp : Defines the entry point for the application.
//
#include "stdafx.h"
#include "SetTransparency.h"
#include <string>
using namespace std;
HWND hWnd_main = NULL;
DWORD g_pid = 0;
BYTE g_alpha = 0;
wstring g_app_title = wstring(L"");
wregex g_pattern_title;
BOOL CALLBACK EnumWindowsProc(
_In_ ... | [
"Colin.Xu@gmail.com"
] | Colin.Xu@gmail.com |
a21ddb1be28ddc8c5ab0ae911830d60d2b45c48a | d8c6bd6d6caf88398169bfdf55dc9b49661c65cc | /proj5/server.cpp | d60c356cd6a9c9642c643cc254ad74b7d4124153 | [] | no_license | KendallWeihe/PrimitiveCloudServer | 99bacfa35a2bf7efd7db16ea4fbde06997f66a48 | 412d4de19890015c1617af71efafd73236ba21e5 | refs/heads/master | 2020-06-17T15:48:01.177295 | 2016-12-02T04:24:41 | 2016-12-02T04:24:41 | 74,990,735 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,397 | cpp | extern "C" {
#include "csapp.h"
}
#include <iostream>
#include <string>
#include <netinet/in.h>
#include <fstream>
#include <vector>
using namespace std;
// function declarations
unsigned int convert_header_to_host_order(char client_message[]);
void get(char buf[], int connfd);
void put(char buf[], int connfd);
v... | [
"kendallweihe@gmail.com"
] | kendallweihe@gmail.com |
26b7f5021acb3bd395f22f33e76094533bfd75f4 | b643341b408b090e9f83e21713e14fa8b7508a80 | /Source/artoolkit6-dependency/include/AR6/ARTrackableSquare.h | 4def59bcdab3852404f3d7e96e36172bcc597fcc | [] | no_license | ThorstenBux/artoolkit6-calibration-android | a911fdf15efd00dbba2e95f2ae654262ced9c403 | f19b3a707bb7ceef37eccb54ebd15205f1637954 | refs/heads/master | 2021-07-11T12:06:13.662950 | 2017-10-13T09:15:34 | 2017-10-13T09:15:34 | 105,212,852 | 1 | 2 | null | 2017-09-29T00:44:32 | 2017-09-29T00:44:31 | null | UTF-8 | C++ | false | false | 3,218 | h | /*
* ARTrackableSquare.h
* ARToolKit6
*
* This file is part of ARToolKit.
*
* ARToolKit is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your opt... | [
"thorsten.bux@outlook.com"
] | thorsten.bux@outlook.com |
bc8917997920f1de0f1bcc31a59181d0cb1ff8a8 | 1cc1b1a94493e6962cad12f1f89e584bf0311e8f | /RemoveDuplicatesFromSortedArray.cpp | fe8aedd190f5d7f8560f1d394cd1939845df75d0 | [] | no_license | LeonXJ/leonleetcode | 26c138f8cdc46c974ae4912039949eddbc3a46aa | 42be6485cc586b1f13b08ef0f938762d3f05f009 | refs/heads/master | 2016-09-16T02:26:53.063483 | 2013-09-10T09:02:09 | 2013-09-10T09:02:09 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 507 | cpp | int removeDuplicates(int A[], int n) {
// Start typing your C/C++ solution below
// DO NOT write int main() function
if(!A || n==0){
return 0;
}
if(n==1){
return 1;
}
int iFirst = 0;
int iSecond = 1;
for(iSecond = 1... | [
"leonxj@gmail.com"
] | leonxj@gmail.com |
2bf43c6e97fdb10f48d140bc1d60a8e9cd8d8fb3 | 3a3ed2c22e418467b9a54863e810116d8f3e5f0a | /src/SGIEngine/Timer.h | 92efe51c90ffcba116870adf35d1e02cac89e737 | [] | no_license | ArnauBigas/SGI-Engine | dbb96d99075fb481e12a64eef4efd7e7752fc808 | 882ed9647d9be104b5706fdeeed44946f9d16587 | refs/heads/master | 2021-05-31T13:04:32.336605 | 2016-05-06T20:22:19 | 2016-05-06T20:22:19 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 239 | h | #ifndef TIMER_H
#define TIMER_H
class Timer {
public:
void start();
void stop();
void reset();
unsigned long getTime();
private:
bool running;
unsigned long startms;
unsigned long ms;
};
#endif /* TIMER_H */
| [
"samb1999@hotmail.co.uk"
] | samb1999@hotmail.co.uk |
c1f1e3066b063d06b3689ef4b438b9fa39f00b34 | 0a00b5f68d68c9648dc2bb118210512bc07ced33 | /sublime vala/declunchtime.cpp | 716c0c02128a4e4c30d246b146e7e1476afed8e7 | [] | no_license | Anugrahchaturvedi/my_code_cpp02 | 98ad9e8edcf6847ca50d558b1a640d50684b20fa | 91b4e0d23264c1f11c4033bfbdfd5c95e94fd853 | refs/heads/master | 2023-05-31T23:42:13.009480 | 2021-06-01T18:22:29 | 2021-06-01T18:22:29 | 372,919,929 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 336 | cpp | #include<bits/stdc++.h>
using namespace std ;
int main()
{
long long int t , n , k;
int sum =0 , arr[n];
//cin >> t ;
//while (t--)
//{
cin >> n >>k;
//cin >>k;
for (int i =0 ; i< n ;i++)
{
cin >>arr[i];
}
for (int i=0; i< n ; i++)
{
sum=sum + arr[i];
}
cout << "sum id "<<sum << endl;
... | [
"kushal.kush867@gmail.com"
] | kushal.kush867@gmail.com |
0d9d25ccb823f77f2bdb6a009d150bc47c03325c | c0c025007b7732bc3ca309b834b2e3e210276577 | /sample/accounting_Beta2/homepage_1.h | afa14947c21c282433b463e9a411adaf536814c2 | [] | no_license | gukurhgodp31/CSharpHomework | 1d936814604084a521141f93cbfe8a4272cee7a4 | 6e5ff3787a3c992e2574acd3a9c1aad5457474a4 | refs/heads/master | 2023-04-19T19:32:42.746660 | 2021-04-13T02:57:28 | 2021-04-13T02:57:28 | 365,220,500 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 674 | h | #ifndef HOMEPAGE_1_H
#define HOMEPAGE_1_H
#include <QDialog>
#include <QtCharts>
using namespace QtCharts;
namespace Ui {
class Homepage_1;
}
class Homepage_1 : public QDialog
{
Q_OBJECT
public:
explicit Homepage_1(QWidget *parent = 0);
~Homepage_1();
QString income;
QString output;
QString ... | [
"wushangza19931030@126.com"
] | wushangza19931030@126.com |
c50ff5c02374ef42c44345bceadfbb580319f541 | f413bf20ddbfd37c171385cf095a39392fcb4867 | /Source/Rendering/Misc/vaZoomTool.h | 3eb09ff25ce044c62a61f447c15377d0c59c40a8 | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | NewKidHere/XeGTAO | be44d3c0db9688958c7088f28113d585f25c5e58 | 65b387cd2fa7dd14b1382807a6be9750ea305376 | refs/heads/master | 2023-08-13T19:32:51.044319 | 2021-09-20T17:07:18 | 2021-09-20T17:07:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,329 | h | ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2016-2021, Intel Corporation
//
// SPDX-License-Identifier: MIT
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////... | [
"filip.strugar@gmail.com"
] | filip.strugar@gmail.com |
b4edda58fa62b56b648dea082ab080f138c0bf6a | ea92cb09d832e11ea8b1e74d35326091fb6bbaa6 | /demos/d/src/ActivatingCollisionAlgorithm.h | ab0351f6c2d109eb2bc77eeffd836cbf8d53dc64 | [
"MIT"
] | permissive | DesignEngrLab/StabilityStudy | 3929b704b7365b839a64c34b6273ee1f5e637fba | 8ed7685621c76dc74816855a6cf370317fe401fb | refs/heads/master | 2021-01-16T23:03:25.276541 | 2016-10-06T23:59:23 | 2016-10-06T23:59:23 | 70,174,035 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 241 | h | #pragma once
#include "CollisionAlgorithm.h"
namespace BulletSharp
{
public ref class ActivatingCollisionAlgorithm abstract : CollisionAlgorithm
{
internal:
ActivatingCollisionAlgorithm(btActivatingCollisionAlgorithm* native);
};
};
| [
"huangwe@oregonstate.edu"
] | huangwe@oregonstate.edu |
0ae5dd53148517d2642eae6cf5f0b9a370f6c33c | aab49f04e01a3f248ce5adb0d65088bc921fb380 | /1.Introduction-to-Programming-Practice/week-10/55-reverse-array-elements.cpp | b12bfb9011615133fbdfa02852393bee1b206284 | [] | no_license | gyokkoo/Introduction-to-Programming-FMI-2017 | bb8983c159cf802cf3b9b533e503a3dceaf24b4a | 6a467f894991d69c6a06cd36309b600d46e91a93 | refs/heads/master | 2023-06-14T10:27:10.622804 | 2021-07-07T16:37:41 | 2021-07-07T16:37:41 | 107,156,320 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,197 | cpp | /**
*
* Solution to exercises
* Introduction to programming course
* Faculty of Mathematics and Informatics of Sofia University
* Winter semester 2017/2018
*
* @author Gyokan Syuleymanov
* @idnumber 62117
* @task 55
* @compiler GCC
*
* Assignment:
* Да се състави програма, чрез която предварително въведени N
* естест... | [
"gyokan.nezhdetov@gmail.com"
] | gyokan.nezhdetov@gmail.com |
912f25fab5805c732460a1c894012b9d8e4b0240 | d1e88b853c50997dbc16dca812fe9b0e04bbf759 | /myserver.h | 3a0242657c1aba49af67392c4501c923f2f9f2ca | [] | no_license | HelloAWorld/myserverclient | ba64690880b4fffb30b1b9de56ed433683ff573c | c639b5716fd6750a5ec16e06cc70be794e92b94d | refs/heads/master | 2021-01-05T13:21:58.686315 | 2020-02-17T06:32:26 | 2020-02-17T06:32:26 | 241,034,281 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 406 | h | #ifndef __MY_SERVER_H__
#define __MY_SERVER_H__
#include "sys/epoll.h"
#include "sys/socket.h"
#include "sys/types.h"
#include "mysocket.h"
#include <map>
class CMyServer
{
public:
CMyServer();
int create_server(int port);
int epoll_bind();
int start_loop();
int handle(int fd);
int end_loop();
private:
int m_e... | [
"hell0_world@sina.cn"
] | hell0_world@sina.cn |
8748e8bcc6c9976b8b85f5131dfb00103a39ed4a | 3bbefab6c034154ae4724baf0fe9de1eb2008d82 | /src/appleseed/foundation/meta/benchmarks/benchmark_integerdivision.cpp | c11f42b95c6e8d6e42b4fbbd089797611e4717ae | [
"MIT"
] | permissive | johnhaddon/appleseed | e959a30ab24f80a4cb3639d22c1b16b58fc3373c | 82eb4693f7a64fcaf238272a1ad62ff38c5b870b | refs/heads/master | 2021-01-22T09:32:01.704121 | 2016-08-22T17:41:23 | 2016-08-22T17:41:23 | 17,192,177 | 1 | 0 | null | 2016-08-24T12:04:18 | 2014-02-25T23:36:11 | C++ | UTF-8 | C++ | false | false | 2,531 | cpp |
//
// This source file is part of appleseed.
// Visit http://appleseedhq.net/ for additional information and resources.
//
// This software is released under the MIT license.
//
// Copyright (c) 2010-2013 Francois Beaune, Jupiter Jazz Limited
// Copyright (c) 2014-2016 Francois Beaune, The appleseedhq Organization
//
... | [
"beaune@aist.enst.fr"
] | beaune@aist.enst.fr |
801577cd4a6c19e42b10e1fd52b7b22452a8d337 | b11b2b488d94ae20f58cfe40bae0987c32b5945e | /LEMOS-2.3.x/tutorials/mesh/movingBlockRBF/constant/turbulenceProperties | 692307c1ebe81f02be4787b6ad6407e7c379394c | [] | no_license | jamesjguthrie/mayerTestCase | 93dbd9230e16a0f061cec97c7ddf6cb5303e1c95 | 9279ad56b62efa1507ff8b1bcd96e3ce2daceb56 | refs/heads/master | 2021-03-30T18:20:33.641846 | 2019-06-25T12:55:07 | 2019-06-25T12:55:07 | 26,530,210 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 900 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 2.2.1 |
... | [
"james@heyjimmy.net"
] | james@heyjimmy.net | |
b43ceb5a62ae838017fbcf328f14a1469fd9bc74 | d62a7af792a62892e39a13e4d5eecc045172f5f6 | /Source/Player.cpp | 8f8e251c1b169117e0a4ef987988ed7b114b2236 | [] | no_license | MasterSofter/LunarLander | 2317985d1c12b2b664f283836bda07b85fa86d8e | d675b34767ee4747ffad8cd3ecf092455f8a5ef1 | refs/heads/master | 2020-04-23T11:18:14.174369 | 2019-02-17T14:37:09 | 2019-02-17T14:37:09 | 171,132,065 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,930 | cpp | #include "Player.h"
#include "CommandQueue.h"
#include "LunarModuleNode.h"
#include <SFML/Network/Packet.hpp>
#include <map>
#include <string>
#include <algorithm>
using namespace std::placeholders;
struct ThrustOn
{
ThrustOn(double t) {thrust = t;}
void operator() (LunarModuleNode& lunarModule, sf::Time) const {... | [
"art.master.pk@gmail.com"
] | art.master.pk@gmail.com |
40babb99421c5d116731e63df88d877e99bd4615 | 877fff5bb313ccd23d1d01bf23b1e1f2b13bb85a | /app/src/main/cpp/dir521/dir522/dir572/dir2774/file3555.cpp | 06c1721f12a02022b063356031f7b4244d01c1db | [] | no_license | tgeng/HugeProject | 829c3bdfb7cbaf57727c41263212d4a67e3eb93d | 4488d3b765e8827636ce5e878baacdf388710ef2 | refs/heads/master | 2022-08-21T16:58:54.161627 | 2020-05-28T01:54:03 | 2020-05-28T01:54:03 | 267,468,475 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 111 | cpp | #ifndef file3555
#error "macro file3555 must be defined"
#endif
static const char* file3555String = "file3555"; | [
"tgeng@google.com"
] | tgeng@google.com |
9174567b2421b12339f04e4ebff0df7e18b7bfc7 | e315a4322fcfb050215c24ac0e8f786138dec096 | /HW10 10.cpp | 0e088fc9892133fbdb5614bcb06625813df25154 | [] | no_license | HasaliEdirisinghe/Homework-10 | 486460d2f5b581efc67b715a18c5b11fa55189fc | 226e7198bcefca066a8bc36ffdd724624d7a400f | refs/heads/main | 2023-08-15T04:22:26.486341 | 2021-10-23T16:55:01 | 2021-10-23T16:55:01 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,155 | cpp | #include<iostream>
#include<string.h>
using namespace std;
// A program to merge two files and write it in a new file.
int main()
{
FILE *file1, *file2, *fnew;
char current, fname1[20], fname2[20], fname3[30];
//getting user inputs
cout << "Input the 1st file name: ";
cin >> fname1;
cout << "Input the 2nd ... | [
"edirisi-im19041@stu.kln.ac.lk"
] | edirisi-im19041@stu.kln.ac.lk |
830a3d97f42f7ab793fca58619b7547f82cf69ce | 9fb71ba51dd38af8c22bbe06fb4dc460c8c0d7df | /src/Density/check_density_continuity_at_mt.hpp | 56a68123a0a579bcdcee8a501b015b564bc1c350 | [
"BSD-2-Clause"
] | permissive | ckae95/SIRIUS | 15e279fb24220bf10ebce0fd2a9630cdc3e2ac67 | ecb7edb4f19577c85b0cec82aa6a0d5374ee1f33 | refs/heads/master | 2021-04-09T15:50:43.754267 | 2018-03-16T15:50:06 | 2018-03-16T15:50:06 | 125,530,189 | 0 | 0 | BSD-2-Clause | 2018-03-16T14:50:45 | 2018-03-16T14:50:45 | null | UTF-8 | C++ | false | false | 1,399 | hpp | //inline void Density::check_density_continuity_at_mt()
//{
// // generate plane-wave coefficients of the potential in the interstitial region
// ctx_.fft().input(&rho_->f_it<global>(0));
// ctx_.fft().transform(-1);
// ctx_.fft().output(ctx_.num_gvec(), ctx_.fft_index(), &rho_->f_pw(0));
//
// SHT s... | [
"toxa81@gmail.com"
] | toxa81@gmail.com |
ab830abee4785755c7a55b61756618cb16fb6a41 | 32e43c3cce09f4659035644e70a4e2e88b021c15 | /abc178/d.cpp | e5892337b4511934136fab5f03956b3792268644 | [] | no_license | sp4ghet/comp | 22c7453bcd4aff56970f3ee465e0c66ca0ab697f | 222911d45ab513c88d5450919d8c803cb0f7da1c | refs/heads/master | 2020-12-04T15:59:34.368399 | 2020-09-19T15:00:31 | 2020-09-19T15:00:31 | 231,827,088 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,281 | cpp | #include <bits/stdc++.h>
using namespace std;
using ll = long long;
using P = pair<int, int>;
using vint = vector<int>;
using vvint = vector<vint>;
using vll = vector<ll>;
using vvll = vector<vll>;
using vchar = vector<char>;
using vvchar = vector<vchar>;
using vp = vector<P>;
using vpp = vector<pair<P, P>>;
using vvp ... | [
"8775460+sp4ghet@users.noreply.github.com"
] | 8775460+sp4ghet@users.noreply.github.com |
94dfa9a8b39db13f3e95f76815789cf77d194269 | 1dbf007249acad6038d2aaa1751cbde7e7842c53 | /cdn/src/v2/model/RequestLimitRules.cpp | ad5a3fbf48542d500a7708f0f3e57ed8c94a3aba | [] | permissive | huaweicloud/huaweicloud-sdk-cpp-v3 | 24fc8d93c922598376bdb7d009e12378dff5dd20 | 71674f4afbb0cd5950f880ec516cfabcde71afe4 | refs/heads/master | 2023-08-04T19:37:47.187698 | 2023-08-03T08:25:43 | 2023-08-03T08:25:43 | 324,328,641 | 11 | 10 | Apache-2.0 | 2021-06-24T07:25:26 | 2020-12-25T09:11:43 | C++ | UTF-8 | C++ | false | false | 6,745 | cpp |
#include "huaweicloud/cdn/v2/model/RequestLimitRules.h"
namespace HuaweiCloud {
namespace Sdk {
namespace Cdn {
namespace V2 {
namespace Model {
RequestLimitRules::RequestLimitRules()
{
status_ = "";
statusIsSet_ = false;
priority_ = 0;
priorityIsSet_ = false;
matchType_ = "";
matchTypeIs... | [
"hwcloudsdk@huawei.com"
] | hwcloudsdk@huawei.com |
3d75180851068227cf8199ae4dc3e6e68cfc9304 | 408a6a47509db59838a45d362707ffe6d2967a70 | /Classes/GameOver.cpp | 4d28e2c16ffb00c84449f7382cbee3caf90a2efa | [] | no_license | DanicaMeng/RabbitRun | 87d511645b90d9129d026b636adcb3e1b8854dd8 | 97892a01876186a2e69ff9776c70bdf2ea10f9bd | refs/heads/master | 2021-05-15T21:14:05.028696 | 2018-10-19T04:08:30 | 2018-10-19T04:08:30 | 27,667,757 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,388 | cpp | #include "GameOver.h"
#include "Global.h"
#include "GameScene.h"
#include "DataM.h"
GameOver::GameOver()
{
}
GameOver::~GameOver()
{
}
bool GameOver::init()
{
if ( !CCLayerColor::initWithColor(ccc4(0, 0, 0, 200)) )
{
return false;
}
DataM::getInstance()->saveHighScore();
CCLabelTTF *title = CCL... | [
"libo@chukong-inc.com"
] | libo@chukong-inc.com |
5264cc54bca04f7c04401d8af196c0b133a29883 | da74ee93fd07d0f66f0a102b194b75e456948a95 | /problemset-new/011/01105-filling-bookcase-shelves/tiankonguse.cpp | 07e48eaeaf7eca38eb38f41d1c5c81120cc05b8b | [] | no_license | L65430/leetcode-solutions | c01a0199d017e89c63c41da22671d5cec2456834 | 8d3f9c04fdc1273c03d9893b8f4e1a45a6aef59f | refs/heads/master | 2020-06-13T10:35:59.220331 | 2019-06-30T13:11:07 | 2019-06-30T13:11:07 | 194,629,079 | 1 | 0 | null | 2019-07-01T08:13:36 | 2019-07-01T08:13:36 | null | UTF-8 | C++ | false | false | 1,538 | cpp | /*************************************************************************
> File Name: filling-bookcase-shelves.cpp
> Author: tiankonguse
> Mail: i@tiankonguse.com
> Created Time: 2019年06月30日 11:37:47
> link:
> No: 1105. Filling Bookcase Shelves
> Contest: https://leetcode.com/contest/week... | [
"i@tiankonguse.com"
] | i@tiankonguse.com |
680a27dddaede7283ef210ef8bce1467960ee86f | cf8ddfc720bf6451c4ef4fa01684327431db1919 | /SDK/ARKSurvivalEvolved_DinoEntry_Jerboa_functions.cpp | 6e33f470e9da02901395399d064de25ec9a6d74b | [
"MIT"
] | permissive | git-Charlie/ARK-SDK | 75337684b11e7b9f668da1f15e8054052a3b600f | c38ca9925309516b2093ad8c3a70ed9489e1d573 | refs/heads/master | 2023-06-20T06:30:33.550123 | 2021-07-11T13:41:45 | 2021-07-11T13:41:45 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,005 | cpp | // ARKSurvivalEvolved (329.9) SDK
#ifdef _MSC_VER
#pragma pack(push, 0x8)
#endif
#include "ARKSurvivalEvolved_DinoEntry_Jerboa_parameters.hpp"
namespace sdk
{
//---------------------------------------------------------------------------
//Functions
//-----------------------------------------------------------------... | [
"sergey.2bite@gmail.com"
] | sergey.2bite@gmail.com |
3ebf58a2eb5123b34b297ac3e961c3be9a52da96 | 7fd5e6156d6a42b305809f474659f641450cea81 | /glog/base/commandlineflags.h | 3ecc7729c68d73ca2cba9633f7277c53e747be26 | [] | no_license | imos/icfpc2015 | 5509b6cfc060108c9e5df8093c5bc5421c8480ea | e998055c0456c258aa86e8379180fad153878769 | refs/heads/master | 2020-04-11T04:30:08.777739 | 2015-08-10T11:53:12 | 2015-08-10T11:53:12 | 40,011,767 | 8 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,986 | h | // Copyright (c) 2008, Google Inc.
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of condi... | [
"git@imoz.jp"
] | git@imoz.jp |
a143d5774ccc967085de5ad6ed96e9f70ab7bf3e | 37d6909e8d5d50c9672064cbf9e3b921fab94741 | /백준/9935번 문자열 폭발/9935.cpp | 1677588c97387810e43a36dbad17f97597e1b34e | [] | no_license | lee-jisung/Algorithm-study | 97e795c6cb47d1f4f716719f490031479d0578ca | d42470cd24b3984dc15992089d34dbe2ae6bb70d | refs/heads/master | 2021-06-28T05:49:12.417367 | 2021-04-01T13:53:43 | 2021-04-01T13:53:43 | 225,784,579 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,082 | cpp | #include <iostream>
#include <string>
using namespace std;
/*
res에 문자를 하나씩 추가,
추가한 문자와 폭파 문자의 끝이 같다면 => 끝에서부터 거꾸로 탐색하여 폭파와 같은 문자열이 추가됐는지 확인
-> 현재 추가하는 idx가 폭파열 길이보다 작다면 pass
- 추가되었다면 idx를 폭파열 길이만큼 줄여주고 다시 해당 idx부터 문자 추가
- 아니라면 pass
*/
int idx;
string str, boom;
char res[1000001];
int main(void) {
i... | [
"noreply@github.com"
] | noreply@github.com |
2afdfb525ef59c8d35a41a3fc715dee015ccea5c | 8929e7535533d43e62f0dde3d384ee46cc28e3c7 | /AnimationManager/AnimationModel.cpp | de7eee0b1a74c198c6a4c9d0db161db7d38c4bab | [] | no_license | Nakio195/OSSAM-Editor | 4e2b2311a278d3042f7774d8a53fff5846ce2d73 | bcaf2fc2cab28a38fd723e48a79eb886d7a61d59 | refs/heads/master | 2023-03-08T22:52:08.781597 | 2023-03-03T18:04:43 | 2023-03-03T18:04:43 | 86,177,811 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,974 | cpp | #include "AnimationModel.h"
#include <QJsonDocument>
#include <QJsonArray>
#include <QFile>
#include <QMessageBox>
AnimationModel::AnimationModel(AssetModel *assets, QObject *parent)
: QAbstractTableModel(parent), mAssets(assets)
{
}
QVariant AnimationModel::headerData(int section, Qt::Orientation orientation, i... | [
"theo.p-h@live.fr"
] | theo.p-h@live.fr |
ebba2782c33c6c8860e1510abfd8958ce08021ff | 7744436f65e0e66d336d60656776d9de3b70e56c | /windows_internals/processassignments/createthreadterminate.cpp | ee4ecabdfadde4b4e578a764544fccf95394a0e2 | [] | no_license | paruchurimadhurima/NCR-INTERN | e91082888e80c1d0983828c6ce434eac5654020c | 2471c98e152a0ec13a2cdfc97268726f039a454b | refs/heads/master | 2021-01-13T21:07:17.418646 | 2020-03-20T12:56:25 | 2020-03-20T12:56:25 | 242,494,608 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 999 | cpp | #include<Windows.h>
#include<iostream>
#include<tchar.h>
using namespace std;
/*
DWORD WINAPI ThreadFun(LPVOID Str)
{
cout << "Hi" << endl;
return 0;
}
int _tmain(int argc, WCHAR* argv[], WCHAR* env[])
{
HANDLE CreateThreadHandle;
LPVOID Str = NULL;
CreateThreadHandle = CreateThread(NULL,//security attributes thr... | [
"INSERT_YOUR_EMAIL"
] | INSERT_YOUR_EMAIL |
e78c75429264cd1c53f8853558b8002b2687edc6 | 51c7fb59d55f32fa39f0428c227dabdf7313b990 | /编程7.15.cpp | 79bc218da953a0ef2505ec956fb64ca02511c047 | [] | no_license | longme2/C | ce3a29d99dc9178b6a36a09c35354ad9f0479572 | c31ae4b6215c33e1fd587701e16077f8344f23dd | refs/heads/master | 2020-05-15T09:31:24.739955 | 2019-04-19T01:33:48 | 2019-04-19T01:33:48 | 182,178,893 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 222 | cpp | #include<stdio.h>
int main()
{
int a,sum=1,n;
printf("Enter a positive integer: ");
scanf("%d",&a);
n=a;
while(a!=0)
{
sum*=a;
a--;
}
printf("Factorial of %d: %d",n,sum);
return 0;
}
| [
"noreply@github.com"
] | noreply@github.com |
b8d63402eefbadd26950c0e9090c4dde86a82e1d | bc2a6e1f41ced330c04c199d0e13f7f8b82bd6ef | /src/halibs/examples/src/button.cpp | cb3b3d2acff34c3d9c4a794b9cb7070c0efea9bc | [] | no_license | SoCXin/MEGA328P | 372187c044c402ae90c3c3192b4d90f8ea996f3e | 321166c6f287e441d0ae906ecfddc5d3cff706f2 | refs/heads/master | 2023-04-27T02:10:27.492148 | 2021-05-18T07:51:01 | 2021-05-18T07:51:01 | 157,304,433 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 804 | cpp | /**
* \file examples/applications/button.cpp
* \brief Example for usage of Button and Led (very simple)
*
* This file is part of avr-halib. See COPYING for copyright details.
*/
#include "platform.h"
#include "avr-halib/drivers/ext/button.h"
#include "avr-halib/drivers/ext/led.h"
using avr_halib::drivers::... | [
"qitas@qitas.cn"
] | qitas@qitas.cn |
404ac6bb71782c5e2a0c8395ac9995cae9f90903 | 9da42e04bdaebdf0193a78749a80c4e7bf76a6cc | /third_party/gecko-2/win32/include/nsIURIRefObject.h | 65aa1424aabdd0a75bf16b806f1ef2cb1298fb74 | [
"Apache-2.0"
] | permissive | bwp/SeleniumWebDriver | 9d49e6069881845e9c23fb5211a7e1b8959e2dcf | 58221fbe59fcbbde9d9a033a95d45d576b422747 | refs/heads/master | 2021-01-22T21:32:50.541163 | 2012-11-09T16:19:48 | 2012-11-09T16:19:48 | 6,602,097 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,439 | h | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM e:/builds/moz2_slave/rel-2.0-xr-w32-bld/build/editor/idl/nsIURIRefObject.idl
*/
#ifndef __gen_nsIURIRefObject_h__
#define __gen_nsIURIRefObject_h__
#ifndef __gen_nsISupports_h__
#include "nsISupports.h"
#endif
#ifndef __gen_domstubs_h__
#include "domstubs.h"
#endif
... | [
"haleokekahuna@gmail.com"
] | haleokekahuna@gmail.com |
3ebf22a746c60d25d144c770b282cebdf6e8f1ec | 76be06b529203553c26366904bd1bc8fce167048 | /testPierrot/test_courbure_gaussienne/tp1/build-starterLight-Desktop-Debug/ui_dialoghistogramme.h | eb5420f05668257ffb12aab6c41546d089529db3 | [] | no_license | jjzhang166/PFE_Livewire | 824393dab6a6c712ef38b95480b705f51490fb07 | decbeeef7d70a4e2b3bf1e39840aeaef3095f264 | refs/heads/master | 2022-04-12T12:07:42.104463 | 2020-03-26T23:23:42 | 2020-03-26T23:23:42 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,350 | h | /********************************************************************************
** Form generated from reading UI file 'dialoghistogramme.ui'
**
** Created by: Qt User Interface Compiler version 5.9.5
**
** WARNING! All changes made in this file will be lost when recompiling UI file!
*********************************... | [
"mattioli.pierre@orange.fr"
] | mattioli.pierre@orange.fr |
af96e325aebb10caaa5f6792c3c70083c482d0c4 | d0c44dd3da2ef8c0ff835982a437946cbf4d2940 | /cmake-build-debug/programs_tiling/function13917/function13917_schedule_5/function13917_schedule_5_wrapper.cpp | bbdfb7a81e8dfba072c621377844fce107301b0c | [] | no_license | IsraMekki/tiramisu_code_generator | 8b3f1d63cff62ba9f5242c019058d5a3119184a3 | 5a259d8e244af452e5301126683fa4320c2047a3 | refs/heads/master | 2020-04-29T17:27:57.987172 | 2019-04-23T16:50:32 | 2019-04-23T16:50:32 | 176,297,755 | 1 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 926 | cpp | #include "Halide.h"
#include "function13917_schedule_5_wrapper.h"
#include "tiramisu/utils.h"
#include <cstdlib>
#include <iostream>
#include <time.h>
#include <fstream>
#include <chrono>
#define MAX_RAND 200
int main(int, char **){
Halide::Buffer<int32_t> buf00(524288, 128);
Halide::Buffer<int32_t> buf0(524... | [
"ei_mekki@esi.dz"
] | ei_mekki@esi.dz |
a408ce3b8abc1ee03017a76d9db859ce29ec48b5 | 1afec7d1d3099138b5afe5fd73dfd3d24ff4eb15 | /src/wallet/transaction.cpp | 0c72293af4bc8870f456e50415b643b1eaedf021 | [
"MIT"
] | permissive | republic-productions/finalcoin | 5c7c6b0734178fe22db63f0946ec555f59e8d0eb | 7c0f335ded1e5c662034c822ca2c474b8e62778f | refs/heads/main | 2023-09-04T17:04:32.683667 | 2021-10-14T17:45:22 | 2021-10-14T17:45:22 | 417,209,088 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 723 | cpp | // Copyright (c) 2021 The Finalcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include <wallet/transaction.h>
bool CWalletTx::IsEquivalentTo(const CWalletTx& _tx) const
{
CMutableTransaction tx1 {*... | [
"republicproductions@protonmail.com"
] | republicproductions@protonmail.com |
bc4c8f3a546de62475be2017bc85e432dd816b27 | 1c444bdf16632d78a3801a7fe6b35c054c4cddde | /include/bds/bedrock/actor/goal/VexRandomMoveGoal.h | d24911fa64bd88afd1df55fa91e697de3ec96fec | [] | no_license | maksym-pasichnyk/symbols | 962a082bf6a692563402c87eb25e268e7e712c25 | 7673aa52391ce93540f0e65081f16cd11c2aa606 | refs/heads/master | 2022-04-11T03:17:18.078103 | 2020-03-15T11:30:36 | 2020-03-15T11:30:36 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 579 | h | #pragma once
#include <string>
#include "Goal.h"
class VexRandomMoveGoal : public Goal {
public:
~VexRandomMoveGoal(); // _ZN17VexRandomMoveGoalD2Ev
virtual bool canUse(); // _ZN17VexRandomMoveGoal6canUseEv
virtual bool canContinueToUse(); // _ZN17VexRandomMoveGoal16canContinueToUseEv
virtual void t... | [
"honzaxp01@gmail.com"
] | honzaxp01@gmail.com |
f4fbd5f57a4cded0cb521841d4468141c9a6eaba | 57ef781e0cb3d3701c358be39213eeba96ff780d | /priority_linkedlist.cpp | 54b8a3a45e1d02911398687b37b721d31dc95644 | [] | no_license | hpatelcode/Data-Structures | bf06428e99e5f4ae5d09f1af1a33c8a607463e11 | d40a4245bed0dbeec12df43446dfc5aa276e911b | refs/heads/master | 2020-04-21T15:38:05.665161 | 2019-02-08T02:39:40 | 2019-02-08T02:39:40 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 225 | cpp | #include <iostream>
#include "DoublyLinkedList.h"
using namespace std;
class priority_linkedlist {
public:
//priority_linkedlist(){
//Node *head = NULL;
//}
void push (int x){
//Node *n;
//n = new Node;
}
};
| [
"noreply@github.com"
] | noreply@github.com |
4e377a17082231d429b0fcee09527701b936e4f2 | 5e1ae0c5e8f26339759b43e6627771edcf7d16ce | /art/compiler/dex/vreg_analysis.cc | 7e1e7e184732d4a0a04cb2dfa453cc6975729e00 | [
"NCSA",
"Apache-2.0"
] | permissive | guoyanjun0313/cb40_6735 | d303eec21051633ee52230704a1dfd0f3c579cc0 | fc5aa800555da17f2c2c3f75f95f772ff67b40c0 | refs/heads/master | 2022-12-28T16:44:38.678552 | 2018-04-18T03:00:31 | 2018-04-18T03:00:31 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 17,959 | cc | /*
* Copyright (C) 2014 MediaTek Inc.
* Modification based on code covered by the mentioned copyright
* and/or permission notice(s).
*/
/*
* Copyright (C) 2011 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with th... | [
"liuyiping@t-road.cn"
] | liuyiping@t-road.cn |
df0c6e86829ad53b3d1fef0a6fb5f33d2f5b147e | ab45de67f367fe254e8b4cae5f0f9e52cecaac78 | /kozDX/PixelShader.cpp | 1446b5d28f176d24c9f7eb77edaa2ecda5ba8f36 | [] | no_license | kozonoyuki/kozDX | 3e23ebc157fcf33fdc9c8e6f2f226737ade6ae97 | 96cf89d7be0c3c35d1c973ccbca83a1936ae12b4 | refs/heads/master | 2021-03-24T12:27:56.238957 | 2015-05-09T13:30:42 | 2015-05-09T13:30:42 | 27,296,073 | 0 | 0 | null | null | null | null | SHIFT_JIS | C++ | false | false | 1,442 | cpp | /**
* @file PixelShader.cpp
* @brief ピクセルシェーダをラップ
* @author kozonoyuki
* @date 11/29に書き始め
*/
#include "stdafx.h"
#include "PixelShader.h"
#include "Utility.h"
koz::PixelShader::PixelShader()
{
// デフォルト設定
m_EntryName = "PS";
m_ShaderVersion = "ps_4_0";
}
koz::PixelShader::~PixelShader()
{
}
HRESULT koz::Pix... | [
"yuki.guiter@gmail.com"
] | yuki.guiter@gmail.com |
3b20e4b211effe0ad62ebeac288a5bcae65d6f96 | 97aab27d4410969e589ae408b2724d0faa5039e2 | /SDK/EXES/INSTALL VISUAL 6 SDK/INPUT/6.0_980820/MSDN/VCPP/SMPL/MSDN98/98VSa/1036/SAMPLES/VC98/atl/atltangram/atltangramcanvas/atltangramcanvasimpl.cpp | af476458b2e304cfdabcd3209eb21ff29537eefb | [] | no_license | FutureWang123/dreamcast-docs | 82e4226cb1915f8772418373d5cb517713f858e2 | 58027aeb669a80aa783a6d2cdcd2d161fd50d359 | refs/heads/master | 2021-10-26T00:04:25.414629 | 2018-08-10T21:20:37 | 2018-08-10T21:20:37 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,297 | cpp | // AtlTangramCanvasImpl.cpp : Implementation of CAtlTangramCanvas
//
// This is a part of the Active Template Library.
// Copyright (C) 1996-1998 Microsoft Corporation
// All rights reserved.
//
// This source code is only intended as a supplement to the
// Active Template Library Reference and related
// electronic do... | [
"david.koch@9online.fr"
] | david.koch@9online.fr |
fa204b67b49e4516fe5369b789ce0f62d26d26e6 | 9bf5f43c9adc4a7fdfe4a6c03e805a9623685171 | /SpaceRacer/Source/Asteroid.h | a1eeacfd73fab669c0ea3a130b917c44a9d8beaf | [] | no_license | caioteixeira/SpaceRacer | 8e4ba58c072139e91c9a5949b4c85a143ff6fdaf | ae31ba5203975f316b1a1bdddbf2b13318af62e0 | refs/heads/master | 2016-08-11T18:51:37.601961 | 2015-10-29T21:27:27 | 2015-10-29T21:27:27 | 45,133,433 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 292 | h | #pragma once
#include "Actor.h"
#include "AudioComponent.h"
class Asteroid : public Actor
{
DECL_ACTOR(Asteroid, Actor);
public:
Asteroid(Game & game);
AudioComponentPtr GetAudio(){ return mAudio; };
private:
AudioComponentPtr mAudio;
SoundPtr mExplosionSound;
};
DECL_PTR(Asteroid); | [
"marquest@usc.edu"
] | marquest@usc.edu |
569110132e9afc7fc23df8574a02307f52c0e3df | f875f2ff25629091b2f234140891f407ef537608 | /aws-cpp-sdk-location/include/aws/location/model/CreateMapResult.h | 705bd7378c4303e9f4cef861873bce9204da20ce | [
"MIT",
"Apache-2.0",
"JSON"
] | permissive | Adam9911/aws-sdk-cpp | 39f0c057c25053929aec41ef8de81a9664c1a616 | da78cc54da7de3894af2742316cec2814832b3c1 | refs/heads/main | 2023-06-03T10:25:53.887456 | 2021-05-15T14:49:26 | 2021-05-15T14:49:26 | 367,572,100 | 0 | 0 | Apache-2.0 | 2021-05-15T07:52:14 | 2021-05-15T07:52:13 | null | UTF-8 | C++ | false | false | 6,255 | h | /**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/location/LocationService_EXPORTS.h>
#include <aws/core/utils/DateTime.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
template<typena... | [
"aws-sdk-cpp-automation@github.com"
] | aws-sdk-cpp-automation@github.com |
e0e72bd21307ec980404e79d47cb506e837cfeb8 | f66293cb97cee6438fa800338b9e226058120711 | /UVa/10079-PizzaCutting.cpp | ff2c57baf44c8e15b8454a9c6b16be395b5a6f66 | [] | no_license | FarihaUpoma/Programming-Codes | 0734f295526d1a98bd3515972dbf82ac76143f44 | 647ce64a8f69bb2193ffd0ccb68da65a6a71162a | refs/heads/master | 2021-08-26T08:12:05.935212 | 2017-11-22T11:26:29 | 2017-11-22T11:26:29 | 111,667,728 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 395 | cpp | #include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <math.h>
#include <algorithm>
#include <ctype.h>
#include <iostream>
using namespace std;
#define eps 1e-10
#define PI acos(-1)
int main()
{
long long int n, x;
while(scanf("%lld", &n))
{
if(n<0) break;
... | [
"noreply@github.com"
] | noreply@github.com |
a2987ea72ba13b851be2b6fab3aad64df7f82e95 | c01229900ffcc6aeb98c3d49f1ef63d699a2f12b | /include/game_renderer.hpp | ea9a15d8ce73a1b9ec21f6b12906185b63eca890 | [
"MIT"
] | permissive | rosskidson/nestris_x86 | 32dda38de2e1acbe786dc842d40bf9131fb1c25e | ce5085436ff2c04f8f760c2d88469f77794dd6c3 | refs/heads/master | 2023-03-11T19:20:30.225094 | 2021-01-10T21:29:08 | 2021-01-10T21:29:08 | 325,801,988 | 5 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,563 | hpp | #pragma once
#include <memory>
#include <set>
#include "assets.hpp"
#include "das.hpp"
#include "drawers/pixel_drawing_interface.hpp"
#include "game_states.hpp"
#include "key_defines.hpp"
#include "statistics.hpp"
#include "tetromino.hpp"
namespace nestris_x86 {
class GameRenderer {
public:
GameRenderer(std::uniq... | [
"ross.kidson@gmail.com"
] | ross.kidson@gmail.com |
044ddf326c99fbde0b07b84766db3134f65aaf8a | dfe01ef79596f1c9f12c6ba6fe46d703369054fe | /renderdoc/driver/d3d12/d3d12_stringise.cpp | 551cbb9f29db2bedac8daadf5e8bc03127c2a40e | [
"LicenseRef-scancode-unknown-license-reference",
"MIT"
] | permissive | galek/renderdoc | 330b209da7618e38df595e8d3c5ac5f9e5734853 | 39d31e880d9d8997372f0121bec8950e9b4e4442 | refs/heads/master | 2021-11-25T06:15:53.681934 | 2021-10-28T09:49:15 | 2021-10-28T10:24:46 | 40,795,914 | 0 | 0 | null | 2015-08-16T02:17:03 | 2015-08-16T02:17:03 | null | UTF-8 | C++ | false | false | 47,799 | cpp | /******************************************************************************
* The MIT License (MIT)
*
* Copyright (c) 2019-2021 Baldur Karlsson
*
* 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... | [
"baldurk@baldurk.org"
] | baldurk@baldurk.org |
abf3b128710657840c24495304b977e7a476d28a | bedc7ba29919fe77b96338096a33c548cc4a3f44 | /histogram.h | b07e6be546ec7ee27d6bb35ca5552d43615cfca8 | [] | no_license | MavrinaAA/cs_laba03 | 4f9fa5dded123b13dfda8f60e5e4b2a3d5071c8c | 508a4db751fc1c8c23d1535764a1281b97ddcfb7 | refs/heads/main | 2023-05-14T00:37:45.800633 | 2021-05-19T16:13:16 | 2021-05-19T16:13:16 | 361,726,563 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 287 | h | #pragma once
#include <vector>
#include <iostream>
using namespace std;
void
find_minmax(const vector<double>& numbers, double& min, double& max);
vector<size_t>
make_histogram (const vector<double>& numbers,size_t bin_count);
void
show_histogram_text (const vector<size_t>& bins);
| [
"alenamavrina93@gmail.com"
] | alenamavrina93@gmail.com |
e86e27dc8a89248c0be024d02651d70af14a07c6 | 4369050c1694b57db3c6f4417a0824978af97062 | /src/SDL2/Entities/Texture.cpp | f6869b1078e0226a3f7ce41e1f05e73d691377b5 | [] | no_license | Serdok/GoldenPhoenix | 18c6c87440bab6cd94f0a2ba79173150630d2c30 | 927519c80038f452f626a9e4d19c64fa95156772 | refs/heads/master | 2021-05-20T23:09:12.889371 | 2019-05-06T17:26:12 | 2019-05-06T17:26:12 | 252,445,809 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,851 | cpp | //
// Created by serdok on 09/03/19.
//
#include "Texture.h"
Texture::Texture( const std::string& imagefile, bool fullscreen )
: _fullscreen( fullscreen )
{
// Load the image
_texture = AssetsManager::GetInstance()->GetTexture( imagefile );
// Fetch image size
SDL_QueryTexture( _texture, nullptr, nul... | [
"anass.lahnin@univ-lyon1.fr"
] | anass.lahnin@univ-lyon1.fr |
efe64c5ff649cb127b8e5b35facfcfc51f046d5e | 5ea5dc570b6d6bd243abd948d83021bf00cfd066 | /VRENAR Object Classes/Eye Tracking.h | d4a20a0511bbacefd76614adbfb6ebfa055265a7 | [
"Apache-2.0"
] | permissive | REMMI-Research/VRENAR-auto | 3b1548aaa85df4081d9b2c91e652e5b65853ab56 | 8462798407bb67d9a7463df879da9da35475e8c1 | refs/heads/master | 2020-04-07T18:23:40.400898 | 2018-11-21T21:33:50 | 2018-11-21T21:33:50 | 158,608,191 | 0 | 0 | Apache-2.0 | 2018-11-21T21:33:51 | 2018-11-21T21:28:07 | null | UTF-8 | C++ | false | false | 603 | h | ///////////////////////////////////////////////////////////
// Eye Tracking.h
// Implementation of the Class Eye Tracking
// Created on: 21-Nov-2018 21:19:48
// Original author: Magneto
///////////////////////////////////////////////////////////
#if !defined(EA_1DDAAAFF_99B0_4f34_AADC_A1AC84B7EDC0__INC... | [
"noreply@github.com"
] | noreply@github.com |
717225bc6ea0788e5edf5b5496536221e1f40c44 | cf2b77f1e27736862d349509dee8374c787b050d | /sloeber.ino.cpp | 8b2609ab016d60a275f37d5ec63661a217e5c93d | [] | no_license | eziya/ESP8266_GxEPD_TEST | 55e9fa18fa0be1557e61e8f21e71956d5a1d51d5 | 6b7b168af456ffc62ae30b9313c8556ff76024a7 | refs/heads/master | 2020-03-31T17:29:58.782077 | 2018-10-22T13:17:18 | 2018-10-22T13:17:18 | 152,425,327 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 930 | cpp | #ifdef __IN_ECLIPSE__
//This is a automatic generated file
//Please do not modify this file
//If you touch this file your change will be overwritten during the next build
//This file has been generated on 2018-10-11 20:14:33
#include "Arduino.h"
#include "Arduino.h"
#include <GxEPD.h>
#include <GxGDEP015OC1/GxGDEP015O... | [
"eziya76@gmail.com"
] | eziya76@gmail.com |
023ee51ece6a36f5a6e84b6d5b8e17f0d25e88d7 | f9ff7e219c50aa6961846bde39deb0418f58fb8f | /usami-ray/include/usami/ray/bsdf/bsdf_geometry.h | e360d1d6318022ba279afd572238b5214951ebdd | [] | no_license | daiyousei-qz/Usami | a46073b86fc02d04756678992d1c6748d12e3e67 | dfdbb463818302462a881c9cc077c258716f3027 | refs/heads/master | 2023-03-15T07:27:44.678096 | 2021-03-10T20:58:28 | 2021-03-10T20:58:28 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,018 | h | #pragma once
#include "usami/math/math.h"
namespace usami::ray
{
// calculation of Bsdf instance would be done in local coordinate
// where scattering normal vector is mapped to kBsdfNormal
constexpr Vec3f kBsdfNormal = Vec3f{0.f, 0.f, 1.f};
// create transform from **world coordinate** to **bsdf loca... | [
"eds_dev@outlook.com"
] | eds_dev@outlook.com |
ce64adb1d02aabc44817038c17d655e5a16ee42d | 250dd2597d72cf7b7c109909ea5b33b151e42af2 | /src/stdio/zstdio.h | 7805f6f7ea1d723de24598fb0db5a032324153a5 | [] | no_license | goddanao/php-czmq-legacy | 83d5ab582ebc69df891e4d77a99c2fc460efa3b6 | 3ae0a16008462f868007f7cb9c1f8145110f154a | refs/heads/master | 2021-01-22T15:49:59.766391 | 2016-03-16T12:17:45 | 2016-03-16T12:17:45 | 29,911,347 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,808 | h | #pragma once
#include "../common.h"
class ZStdIn : public ZHandle, public Php::Base {
public:
ZStdIn() : ZHandle(STDIN_FILENO, false, "fd"), Php::Base() { }
Php::Value recv(Php::Parameters ¶m){
Php::Value result;
result.reserve(4096);
int num_read = read(get_fd(), (void *) result.... | [
"goddanao@gmail.com"
] | goddanao@gmail.com |
c6cdc7a9e9d4a08e960cdf8b02fa3c139f7d5ef2 | 4ac1e916a5c376d687ad868b218bd95074f5fa12 | /r7q2/src/MinhaEmpresa.cpp | 5e849e783fb6dfdf5d5f31a3a0c15ee99e0f3f78 | [] | no_license | henriqueeraraujo/roteiro7 | 87abba2243590190c1dfdf825e318f99bedd261c | ab9ee4fe9896ae98756eb7ebbb3efea645c64229 | refs/heads/master | 2021-07-13T17:52:52.170028 | 2017-10-19T12:48:15 | 2017-10-19T12:48:15 | 104,886,962 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 723 | cpp | #include "MinhaEmpresa.h"
MinhaEmpresa::MinhaEmpresa(){
f1=Funcionario();
c1=Consultor();
}
void MinhaEmpresa::menu(){
cout<<"\n**********\tMENU\t**********\n";
cout<<"0 - Sair\n";
cout<<"1 - Mostrar dados do Funcionario\n";
cout<<"2 - Alterar nome do Funcionario\n";
cout<<"3 - Alterar matr... | [
"henriqueeraraujo@gmail.com"
] | henriqueeraraujo@gmail.com |
840cdcad7e681deec3db18499902777bc8bd2c3f | d9c4b7e621e8016203008fc31e6d0d7bffaf7279 | /Node.h | 7e25b4eb7b868051931bc4501be4c51b11f2b944 | [] | no_license | FranciscoGJ/ABBTreap | c6965dfc4332f1309fd022a60d973c4145c55132 | f0117d9246555bb8de1c86adc2f45ed5bdf41427 | refs/heads/master | 2021-07-12T22:01:32.673302 | 2015-06-11T01:21:49 | 2015-06-11T01:21:49 | 107,433,935 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 544 | h | //
// Created by Francisco on 27-05-2015.
//
#ifndef TAREA2ESTRUCTURA_NODE_H
#define TAREA2ESTRUCTURA_NODE_H
#include <iostream>
using namespace std;
template <typename k, typename v>
class Node{
public:
k key;
v value;
int priority;
Node<k,v>* m_right;
Node<k,v>* m_left;
Node(k key, v va... | [
"21.francisco.gonzalez@gmail.com"
] | 21.francisco.gonzalez@gmail.com |
ae455cb1e165ab0e17c5639542f038a425767bbd | 7efc72aa1cf4667f759a7a89d015143b5f8456e9 | /src/learn/01/camera_class.cpp | 6e9e29e9b76afc5fdfbc12d32c38b9c15f2eea6e | [] | no_license | ORZaaa/openGL | ebe88120ec4c4a04e491dd4197bcc59055f80d9a | d8bd29f8d8cf3b943c48903a3ee0c2e0536e4583 | refs/heads/master | 2020-05-20T07:12:07.090639 | 2019-05-07T17:03:13 | 2019-05-07T17:03:13 | 185,444,031 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 11,946 | cpp | ///**
//*┌──────────────────────────────────────────────────────────────┐
//*│ Info:
//*│ Author: Carl
//*│ Version: 1.0
//*│ Creat Time: 19.04.21
//*└──────────────────────────────────────────────────────────────┘
//*/
//
//#include <glad/glad.h>
//#include <GLFW/glfw3.h>
//#define STB_IMAGE_IMPLEMENTATIO... | [
"chen.mo@outlook.com"
] | chen.mo@outlook.com |
f1a81e9fbf3ade6db8db2a1f89f0d9230ff01978 | e92a0b984f0798ef2bba9ad4199b431b4f5eb946 | /2009/simulateur/src/pc/usb.cpp | ab8de296ac8a15d4d13f1712525ad3a4de6990ea | [] | no_license | AdamdbUT/mac-gyver | c09c1892080bf77c25cb4ca2a7ebaf7be3459032 | 32de5c0989710ccd671d46e0babb602e51bf8ff9 | refs/heads/master | 2021-01-23T15:53:19.383860 | 2010-06-21T13:33:38 | 2010-06-21T13:33:38 | 42,737,082 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 110 | cpp | #include "../common/simul.h"
#ifdef SIMULATION
#include "usb_simul.cpp"
#else
#include "usb_real.cpp"
#endif
| [
"vincent.delaitre@ens-lyon.org"
] | vincent.delaitre@ens-lyon.org |
fd183dbde4c9711dbcbf6597ec48defd28371bea | 1393b088958301a6c2f6766df2864c61365e9d4b | /Code/Algorithms/L2/CloudMasking/vnsShadowVariationThresholdImageFilter.h | 64ef3c3db3bcb5b0e0beb50a7e64527fad9d7e11 | [
"Apache-2.0"
] | permissive | alexgoussev/maja_gitlab | f6727468cb70e210d3c09453de22fee58ed9d656 | 9688780f8dd8244e60603e1f11385e1fadc90cb4 | refs/heads/develop | 2023-02-24T05:37:38.769452 | 2021-01-21T16:47:54 | 2021-01-21T16:47:54 | 332,269,078 | 0 | 0 | Apache-2.0 | 2021-01-23T18:17:25 | 2021-01-23T17:33:18 | C++ | UTF-8 | C++ | false | false | 10,093 | h | /*
* Copyright (C) 2020 Centre National d'Etudes Spatiales (CNES)
*
* 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 appl... | [
"julie.brossard@c-s.fr"
] | julie.brossard@c-s.fr |
ff4c5a831aefa332c98efdd64b07becbb2a25a04 | 498dab3961bd056615ebcca32f5b5d89122d5efe | /external/glm/gtc/noise.hpp | b4a33bb60b3d6c6c257fff68cc416d29a8a00121 | [
"MIT"
] | permissive | andy-thomason/Vookoo | 3ee6b24e798afcca0d228ff5444b5e7577f8369a | d24318c9bf9dbbd38c596353bd7f9eacbab0e862 | refs/heads/master | 2023-08-29T06:35:01.669135 | 2022-06-15T18:47:30 | 2022-06-20T14:59:56 | 52,352,579 | 551 | 66 | MIT | 2022-08-08T12:36:18 | 2016-02-23T11:00:22 | C++ | UTF-8 | C++ | false | false | 1,508 | hpp | /// @ref gtc_noise
/// @file glm/gtc/noise.hpp
///
/// @see core (dependence)
///
/// @defgroup gtc_noise GLM_GTC_noise
/// @ingroup gtc
///
/// Include <glm/gtc/noise.hpp> to use the features of this extension.
///
/// Defines 2D, 3D and 4D procedural noise functions
/// Based on the work of Stefan Gustavson and Ashi... | [
"andy@andythomason.com"
] | andy@andythomason.com |
c5a02ccb0912e8f12ed93468314272e32c998b2a | 801f7ed77fb05b1a19df738ad7903c3e3b302692 | /refactoringOptimisation/differentiatedCAD/occt-min-topo-src/src/MoniTool/MoniTool_SignText.cxx | 8a0be6eacf9d36ea63896330bfce03bfb0d81ea8 | [] | no_license | salvAuri/optimisationRefactoring | 9507bdb837cabe10099d9481bb10a7e65331aa9d | e39e19da548cb5b9c0885753fe2e3a306632d2ba | refs/heads/master | 2021-01-20T03:47:54.825311 | 2017-04-27T11:31:24 | 2017-04-27T11:31:24 | 89,588,404 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,157 | cxx | // Copyright (c) 1999-2014 OPEN CASCADE SAS
//
// This file is part of Open CASCADE Technology software library.
//
// This library is free software; you can redistribute it and/or modify it under
// the terms of the GNU Lesser General Public License version 2.1 as published
// by the Free Software Foundation, with spe... | [
"salvatore.auriemma@opencascade.com"
] | salvatore.auriemma@opencascade.com |
87eaf8f12389f7542c70948771ffab1d763bc27a | eea72893d7360d41901705ee4237d7d2af33c492 | /src/rich/CsRCLikeAll05.cc | 924c25c1d0de1869811e688242f2f6edc65ba442 | [] | no_license | lsilvamiguel/Coral.Efficiencies.r14327 | 5488fca306a55a7688d11b1979be528ac39fc433 | 37be8cc4e3e5869680af35b45f3d9a749f01e50a | refs/heads/master | 2021-01-19T07:22:59.525828 | 2017-04-07T11:56:42 | 2017-04-07T11:56:42 | 87,541,002 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 37,720 | cc | /*!
\File CsRCLikeAll05.cc
\----------------------------
\brief CsRCLikeAll05 class implementation.
\author Paolo Schiavon
\version 1.0
\date May 2004
*/
#include <iostream>
#include <ostream>
#include <cstdio>
#include <iomanip>
#include "CsOpt.h"
#include "CsHist.h"
#incl... | [
"lsilvamiguel@gmail.com"
] | lsilvamiguel@gmail.com |
46ed807805ddaddd867d79c2afc747fd402bd52d | 1abf985d2784efce3196976fc1b13ab91d6a2a9e | /opentracker/include/OpenTracker/core/Module.h | 455c6be4510d69ccce823beac989c519bcbf501d | [
"BSD-3-Clause"
] | permissive | dolphinking/mirror-studierstube | 2550e246f270eb406109d4c3a2af7885cd7d86d0 | 57249d050e4195982c5380fcf78197073d3139a5 | refs/heads/master | 2021-01-11T02:19:48.803878 | 2012-09-14T13:01:15 | 2012-09-14T13:01:15 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,294 | h | /* ========================================================================
* Copyright (c) 2006,
* Institute for Computer Graphics and Vision
* Graz University of Technology
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that ... | [
"s.astanin@gmail.com"
] | s.astanin@gmail.com |
a5fa5889e117e5f7fcb706a194aef97acd741f36 | 4b09ab5e0addcb2f8160e40cb1bf1cae5066d102 | /src/kalman_filter.h | 33632cf5e05b50718cb8945289d15e36a40b2341 | [
"MIT"
] | permissive | jayshah19949596/Extended-Kalman-Filter | 4ab2d13b876aa75bfd09f4af4343abc4bc8ec650 | 0ff22cf78e7547275245088530581427927f393f | refs/heads/master | 2021-04-09T10:24:14.204441 | 2018-04-08T18:36:55 | 2018-04-08T18:36:55 | 125,472,897 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,737 | h | #ifndef KALMAN_FILTER_H_
#define KALMAN_FILTER_H_
#include "Eigen/Dense"
class KalmanFilter {
public:
// state vector
Eigen::VectorXd x_;
// state covariance matrix
Eigen::MatrixXd P_;
// state transition matrix
Eigen::MatrixXd F_;
// process covariance matrix
Eigen::MatrixXd Q_;
... | [
"jai.s@somaiya.edu"
] | jai.s@somaiya.edu |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.