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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
e7ae71c3426f7ee7236e41b3d3435f850467d425 | 18b7e1d835914f00a8510b59ef79ad3a7270d76c | /AlternatelyBlinkingLEDs/AlternatelyBlinkingLEDs.ino | 67d4787004e80eaf9be561f2f8b8e4a9d98a53cf | [] | no_license | Franziska-Paetzold/Arduino | ddce20bb8337afa139aed01d7746ceac88d92d8d | 5454f8ddd2d72d045f34605f44d3c9028dcda822 | refs/heads/master | 2020-03-18T06:07:26.400752 | 2018-05-22T13:05:40 | 2018-05-22T13:05:40 | 134,377,662 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 262 | ino |
int pinA = 13;
int pinB = 9;
void setup() {
pinMode(pinA, OUTPUT);
pinMode(pinB, OUTPUT);
}
void loop() {
digitalWrite(pinA, HIGH);
digitalWrite(pinB, LOW);
delay(1000);
digitalWrite(pinA, LOW);
digitalWrite(pinB, HIGH);
delay(1000);
}
| [
"s0554620@htw-berlin.de"
] | s0554620@htw-berlin.de |
965e19c9fe555064895b9d801aca87d9eafb5de2 | 301455e9f9187f9a9e313837e48f57756dc51fcf | /llvm-project/llvm/lib/Transforms/Utils/LoopVersioning.cpp | 30a783c8ef11d9e9a2eacf2900327c955cb8f303 | [
"NCSA",
"LLVM-exception",
"Apache-2.0"
] | permissive | djolertrk/call-site-params-stats | 0832a24d52ac8ea5edd63ffc71446203cb5d6c3d | a88d560f57111fcaf7318c041808be6f6d2612bf | refs/heads/master | 2022-06-30T18:31:29.253782 | 2020-05-15T13:35:10 | 2020-05-15T13:35:10 | 263,873,406 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 12,708 | cpp | //===- LoopVersioning.cpp - Utility to version a loop ---------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===---------------------------... | [
"djordje.todorovic@syrmia.com"
] | djordje.todorovic@syrmia.com |
c38c76656366d0dcfd4353aed8c302961374d17c | f7ec60de12f1b6c2ae37061b2e67362a340222e6 | /Step1.Gait_Library/gen/opt/J_step_length.cc | 2520ce2fc5bbf0493870d8da7a06bb0cb5618919 | [] | no_license | yangcyself/TA_GaitDesign | c01d8d60ac4227add58df3ce6cad837b824c09c5 | 45b2afaaceec8b46dd9c8a4d52f7136f81b99f77 | refs/heads/master | 2020-09-20T19:41:43.542067 | 2020-02-15T03:26:47 | 2020-02-15T03:26:47 | 224,573,966 | 1 | 0 | null | 2019-11-28T05:06:52 | 2019-11-28T05:06:52 | null | UTF-8 | C++ | false | false | 3,165 | cc | /*
* Automatically Generated from Mathematica.
* Tue 17 Sep 2019 23:17:48 GMT-04:00
*/
#ifdef MATLAB_MEX_FILE
#include <stdexcept>
#include <cmath>
/**
* Copied from Wolfram Mathematica C Definitions file mdefs.hpp
* Changed marcos to inline functions (Eric Cousineau)
*/
inline double Power(double x, double y) {... | [
"pczhao@umich.edu"
] | pczhao@umich.edu |
f2b5498029831f39e3f2f5c5f949e938ca761318 | 5be3ca602106abe50f135b15db026b95f049c088 | /Exam.14.11.18/var1.cpp | 473fd07d38bc971922cb928c4f27856bad1d8adb | [] | no_license | NickGeorgiev/sd-is-2018-group-2-4 | 066a12f3619b783307df542d4584b6379ca34a9e | a9d6542c64b10861df86bcc9e4b1d38c16a122ab | refs/heads/master | 2020-03-30T17:36:54.725302 | 2019-01-10T15:24:18 | 2019-01-10T15:24:18 | 151,462,663 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,521 | cpp | #include <iostream>
#include <string>
template <class T>
struct DLinkedListNode
{
T data;
DLinkedListNode<T> *previous;
DLinkedListNode<T> *next;
DLinkedListNode(const T &_data, DLinkedListNode<T> *_next = nullptr, DLinkedListNode<T> *_previous = nullptr) : data(_data), next(_next), previous(_previous)... | [
"nikikg95@gmail.com"
] | nikikg95@gmail.com |
9c434af3e4e682ee6a34e3e0f9811cf688af49ec | e602970bf718259811aa28b42b4dc1cad35f8219 | /examples/iotApp/MenuBrightness.h | df292c8342a4d54088a588aec11d158b947ec418 | [
"Apache-2.0"
] | permissive | harshadesai/iotivity-upnp-bridge | 224ac2256e29f7d68941a3a227fbf37ee24911c1 | 6105bc199500627e3c8435c908badc65925afb4b | refs/heads/master | 2022-03-26T16:21:50.014413 | 2018-08-14T17:48:09 | 2018-08-14T17:48:09 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,998 | h | //******************************************************************
//
// Copyright 2016 Intel Corporation All Rights Reserved.
//
//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance w... | [
"richard.s.bell@intel.com"
] | richard.s.bell@intel.com |
dd21632c4cdd18be99e1640e43ee62cc470fbfce | 2c2e3ad5fc2450ad3fed750e815226264e38ab27 | /Kapitel Ein-7/src/main.cpp | c001fe92b087db3ff94e5c965bc91bafdfdf36fa | [] | no_license | MichaelHBBrooks/Skuld | 30092c8031174ddf945ade46f156f41e27d35840 | e2a252b4df0be0bfd447d0e8eaf47dfe2a843575 | refs/heads/master | 2021-01-23T04:48:35.138852 | 2017-04-14T01:59:41 | 2017-04-14T01:59:41 | 80,391,692 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,398 | cpp | /**
* Write an algorithm such that if an element in an MxN matrix is 0, its entire row and column are
* 0.
*
* Programmer response:
* This doesn't make much sense to me. If there's a single zero in the matrix, would that infect
* the entire matrix and make it entirely filled with zeroes? As in...
* 1 2 3 ... | [
"Michael.H.B.Brooks@gmail.com"
] | Michael.H.B.Brooks@gmail.com |
02fec27673e09ebd6412b10705f34ca839a5b071 | c5e279f84fd2d8dcdae92a5785f9843ac07c23e8 | /hardware/arduino/zuno/cores/zuno/HLCore.cpp | 9348726dd28082ea7e5a7c877114d0aab2b0fcf9 | [] | no_license | emilhetty/Z-Uno-Core | b807d1b122faa65e43df4cbbd2f8a7bd0aa208c8 | 23509d44b5e981931a58346e72f604387b6f257f | refs/heads/master | 2021-01-13T07:14:23.384925 | 2016-10-12T20:57:17 | 2016-10-12T20:57:17 | 71,503,403 | 1 | 0 | null | 2016-10-20T20:50:26 | 2016-10-20T20:50:25 | C++ | UTF-8 | C++ | false | false | 2,749 | cpp | #include "Arduino.h"
#include "ZUNO_call_proto.h"
DWORD g_pulse_timeout_us = 0; // in microseconds
DWORD g_pulse_timeout_loops = 0; // in cycles == 1s
// calculate micros
//
// time = c + cycles * f
// where c & f are constants
// We can calculate it by means of logic analyzer
// We have at least 2 measures and ... | [
"iu7-x3@mail.ru"
] | iu7-x3@mail.ru |
2ab5d59db078e03ee98b8f832e80d5359f7e30dd | 5230f99fad3b78bed0bb894d4690f16e8f2fbae2 | /src/harris_corner_detector/harris.hpp | 4f76c43012f2efd5af148e310e13a0215b38e831 | [] | no_license | collenjones/computer_viz_experiments | d12b877229c21b05a706bacd8ec9a91132b6cae4 | 5e621b625e997199c30d4ed244839a86038183cf | refs/heads/master | 2020-04-25T14:50:42.025860 | 2019-02-28T06:11:57 | 2019-02-28T06:11:57 | 172,856,262 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 448 | hpp | #ifndef harris_hpp
#define harris_hpp
#include <vector>
#include <opencv2/core/core.hpp>
namespace harris {
struct InterestPoint {
float corner_value;
cv::Point point;
};
cv::Mat get_interest_points(const cv::Mat &image, unsigned int kernel_size, float k);
std::vector<harris::InterestPoint> suppres... | [
"collenjones@gmail.com"
] | collenjones@gmail.com |
a34820305b543dd0b1a9a6df536cd5df5d122633 | e9ade5ea33cf3382f8ab3ad980e7f6d8cb76faf8 | /solved/coins.cpp | 3fa25729647c1dc9614c01ca76c4c1428fe13c89 | [] | no_license | Creamy1137689/kyopro | 75bc3f92edb7bff2cbf27dc79d384b422a0a4702 | dcacbf27defe840ea7998e06a5f3fb78718e7d53 | refs/heads/master | 2023-05-10T19:28:56.447493 | 2021-06-03T12:54:11 | 2021-06-03T12:54:11 | 266,143,691 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,009 | cpp | #include <iostream>
#include <iomanip>
#include <utility>
#include <cmath>
#include <random>
#include <vector>
#include <tuple>
#include <map>
#include <set>
#include <queue>
#include <stack>
#include <string>
#include <algorithm>
using namespace std;
#define rep(i,n) for(int i = 0; i<n; ++i)
#define R... | [
"exception031noexist@gmail.com"
] | exception031noexist@gmail.com |
95c12c7a778bc31ac2e9f1e02517ce260247c523 | 52fea6f8611737f202ae7012b413199e28e57fa4 | /src/rpcprotocol.cpp | 77441a53cf5b4311304f5fa29cb308d1960768ee | [
"MIT"
] | permissive | orestdrag/mynovacoin | dceb9f13d9777fac0a4eafa52290a8be36496bb2 | 1749132193870c4147211e421adb17bc0327d10b | refs/heads/master | 2021-01-24T07:57:05.102009 | 2018-03-12T13:17:24 | 2018-03-12T13:17:24 | 122,965,981 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,848 | cpp | // Copyright (c) 2010 Satoshi Nakamoto
// Copyright (c) 2009-2013 The Bitcoin developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "rpcprotocol.h"
#include "util.h"
#include <stdint.h>
#include <boost/algor... | [
"orestdrag@gmail.com"
] | orestdrag@gmail.com |
10e65953d9d8c232cdfa1ca8ae186d6d088584be | a2a60013a33c6b2097b6ec2285be4d1c771a0200 | /farmfunny/farmfunny/Config.h | 6383aac9e15c9269239ee76bc401e9e46a838b5c | [] | no_license | trungptvnu/farmfunny | 88944fecdf58df06d9ecb65574879029202479ff | 32c09bb167628afa1e51d3c60ea3fde793b45898 | refs/heads/master | 2020-05-25T05:10:05.213435 | 2017-03-17T10:43:17 | 2017-03-17T10:43:17 | 84,909,838 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,457 | h | #pragma once
class Config
{
public:
static const int NUM_OF_DAY_NOT_GO_OUT = 2;
static const int MAX_HAPPY_INDEX = 10;
static const int TIME_LEFT_CHICKEN = 15;
static const int TIME_LEFT_CAT = 20;
static const int TIME_LEFT_DOG = 25;
static const int TIME_LEFT_PIG = 22;
static const int MAX_WEIGHT_CHICKEN = 2;... | [
"trungptvnu@gmail.com"
] | trungptvnu@gmail.com |
42cb08cfb402df1d243946888bcaadaa5d62be2a | 26ab01c731a26b2a1748acf148d2f3f6937b6df4 | /c++/t.cpp | 068602c562af5c83c9c46dae6aecfe1f33be0cac | [] | no_license | prakhs123/standalone-programs | 881ae3e800b8dccc7921121fa7e264cbe71e590e | 1088196779dc4747069aec9bbfa2ee5f35cf0204 | refs/heads/master | 2020-11-27T16:46:22.055231 | 2019-12-22T08:04:55 | 2019-12-22T08:04:55 | 229,533,661 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 374 | cpp | #include <iostream>
#include <queue>
#include <cstdio>
#include <cstdlib>
using namespace std;
void encode (char symb[], string code[], int n, string msge, string& bitcode)
{
int l = msge.size();
bitcode = "";
for (int i = 0; i < l; i++) {
for (int j = 0; j < n; j++)
if (symb[j] == msge.at(i))
break;
bit... | [
"prakhs123@gmail.com"
] | prakhs123@gmail.com |
c3cc22997235ee30e2b83ff3502dbe6536b98ab2 | cfd33821398cede8c2aadd847d59b89d72d7e0a6 | /NotWorkingStuff/Deprecated/ModernOpt/src/mopt_home.cpp | 0132a20a4e1b20aa3b092e718665147877673195 | [] | no_license | miranda-ng/deprecated | 1c922e502d7ec35371a454131b9e5fa019e241fd | 137526f743d2e8237845b7faea992989a7e8fbd7 | refs/heads/master | 2023-01-28T20:57:12.499530 | 2023-01-13T23:32:54 | 2023-01-13T23:32:54 | 71,989,840 | 3 | 3 | null | 2017-08-22T18:52:34 | 2016-10-26T09:53:01 | C++ | WINDOWS-1252 | C++ | false | false | 2,210 | cpp | /*
Miranda NG: the free IM client for Microsoft* Windows*
Copyright (ñ) 2012-17 Miranda NG project (https://miranda-ng.org),
Copyright (c) 2000-07 Miranda ICQ/IM project,
Copyright (c) 2007 Artem Shpynov
all portions of this codebase are copyrighted to the people
listed in contributors.txt.
This program is free sof... | [
"ghazan@miranda.im"
] | ghazan@miranda.im |
b233e767e5005e7cc18708d9b1c9d96b731d43f5 | cd105554f94ac781bb18c08c9dbde2671e023e16 | /aep 2bim.cpp | 5fb71d71eb357ab8c10dcdc84ef6d2ae200b834b | [] | no_license | MatheusMarques184/AEP-SISTEMA-DE-AUTOATENDIMENTO-BIBLIOTECA-C | 44e22c5bb35ae6a54279a2011b61979f4be60b4d | 6a1e34578388a9d3d719a3a6d3bc27338b636a29 | refs/heads/main | 2023-05-30T04:39:28.569600 | 2021-06-18T02:13:53 | 2021-06-18T02:13:53 | null | 0 | 0 | null | null | null | null | ISO-8859-1 | C++ | false | false | 22,033 | cpp | #include <stdlib.h>
#include <stdio.h>
#include <conio.c>
#include <locale.h>
#include <string.h>
#include <ctype.h>
#include <time.h>
char parada;
bool valido, valido_login;
char login[20],senha_login[10];
char user[40]="user",senha_user[10]="123456";
char user_adm[40]="adm",senha_adm[10]="123456";
char ... | [
"noreply@github.com"
] | MatheusMarques184.noreply@github.com |
69d504c9c81bfc5b52a7586a5ddfd28189797a35 | 73266ea6be2de149a4700798b221bd4c79525604 | /ft_containers/tests/containers/list/std.ops/reverse.pass.cpp | 1c3198b8572b5b18df56b8e50c328e2f35f2ed61 | [] | no_license | Caceresenzo/42 | de90b0262b573d4056102ad04ed0f6fbef169858 | df1e14c019994202da0abbe221455f1a6ee291e4 | refs/heads/master | 2023-08-15T06:14:08.625075 | 2023-08-13T17:19:00 | 2023-08-13T17:19:00 | 220,007,175 | 92 | 36 | null | null | null | null | UTF-8 | C++ | false | false | 1,223 | cpp | /* ************************************************************************** */
/* */
/* ::: :::::::: */
/* reverse.pass.cpp :+: :+: :+: ... | [
"caceresenzo1502@gmail.com"
] | caceresenzo1502@gmail.com |
4ea5bb602de008181a6771082c02454c75ff74e1 | 78a2545501c4e3f92fd8d0d8fe0f44264f7f4c46 | /DS2X/UISkillTrainerStore.h | 08cff543c7f6372d7e7333de17ed6f847044bd2d | [
"MIT"
] | permissive | FreeLikeGNU/DS2DLL | 6616220101e51029e5b3b65a3d3efb647dc7f074 | 7288002def8104cbd4f78edc586e6d988048d1d0 | refs/heads/master | 2021-10-20T21:03:27.350888 | 2019-03-01T21:10:31 | 2019-03-01T21:10:31 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 969 | h | #pragma once
class UISkillTrainerStore {
public:
DefineSingleton(UISkillTrainerStore, 0x474008);
DefineMethod(BuyNextUpgrade, 0x4cf7d2, void, NO_PARAMS, NO_ARGS);
DefineMethod(ConfirmNextUpgrade, 0x4cfa19, void, NO_PARAMS, NO_ARGS);
DefineMethod(HideSelectedDescription, 0x4cf1c6, void, NO_PARAMS, NO_ARGS);
Def... | [
"sabrina.bjurman@gmail.com"
] | sabrina.bjurman@gmail.com |
86149495d9fd1a3e87626da4df417a33a8dc656d | df030c811cf6e1f8993097a5b3de49bbf3bccc34 | /Vulkan/image.cpp | 7bd3e94d68d6d36b8e2271eaec61d6f9c3795900 | [] | no_license | benwong01f611/vulkan-project | 99849b57f501480beead017b3943e0c51134b2c1 | 88fd19c088db7fcfa450d42e5be714de3f144de4 | refs/heads/master | 2023-03-13T04:37:32.287424 | 2021-03-07T08:49:20 | 2021-03-07T08:49:20 | 312,736,955 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 17,886 | cpp | #include "image.h"
// Include stb library for loading images
#define STB_IMAGE_IMPLEMENTATION
#include <stb_image.h>
Engine::Image::Image(Device& deviceRef, SwapChain& swapChainRef, Model& modelRef, Memory& memoryRef, CommandBuffer& commandBufferRef) : device(deviceRef), swapChain(swapChainRef), logicalDevice(device.g... | [
"apk1234567890@yahoo.com"
] | apk1234567890@yahoo.com |
4525598eb32defcfcf3abebd7481e9d7d7e9f909 | 4f6ae62cfda0bdae750bb801952a81a2ad734121 | /Sources/glmdiarea.h | 40c53304a728a328b552a8f2285942a3042c41c3 | [
"MIT"
] | permissive | weiwei22844/stlviewer | 57b603dfccc6787f2fa013b038367306520a8f41 | d1dcfbd48b0d4550b762880675fb5c30ba258a06 | refs/heads/master | 2021-01-16T17:09:45.370525 | 2015-02-19T13:08:52 | 2015-02-19T13:08:52 | 38,474,190 | 1 | 0 | null | 2015-07-03T05:39:02 | 2015-07-03T05:39:02 | null | UTF-8 | C++ | false | false | 1,375 | h | // Copyright (c) 2009 Olivier Crave
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish,... | [
"cravesoft@gmail.com"
] | cravesoft@gmail.com |
97568f652b48c870cfadcaf139fe2c921df4361e | a1c6c5e8622e882d3ec99f2144659bcaa8e2dcca | /数据结构算法/LeetCode/101.对称二叉树.cpp | 6635ff0a4f2c73753fad23488bb0bc4a6433b55a | [
"Apache-2.0"
] | permissive | SuperDan1/Summary-of-study-notes | 575bd660211f3b18ae98f7a92fafda429fdb11f5 | 1a987ab01c914ee58bd8da531ff104f419d29618 | refs/heads/master | 2020-08-26T14:51:20.995043 | 2020-04-04T06:03:41 | 2020-04-04T06:03:41 | 217,045,196 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,422 | cpp | /*
* @lc app=leetcode.cn id=101 lang=cpp
*
* [101] 对称二叉树
*
* https://leetcode-cn.com/problems/symmetric-tree/description/
*
* algorithms
* Easy (49.20%)
* Likes: 610
* Dislikes: 0
* Total Accepted: 94K
* Total Submissions: 187.9K
* Testcase Example: '[1,2,2,3,4,4,3]'
*
* 给定一个二叉树,检查它是否是镜像对称的。
*
... | [
"futingyang123@163.com"
] | futingyang123@163.com |
885a1f86cf5f88784b8793db8b1e69579e0e64de | 046ba057e246556546bd1a2a35882d148a7084da | /zusaetzlicher_code/test_programme/pruefungsvorbereitung/const_ptr_test.cpp | 8978998c5464451eaa9c10a3e6722053f1c5f66a | [
"WTFPL"
] | permissive | jWeb94/kit_wissenschaftliches_programmieren_fuer_ingenieure | d2609b9a47a118a8b6292c397e56f7aa9b8c0b0e | b7a6b1b6be62263a7b7955e0fd60e2bd55adac09 | refs/heads/master | 2020-04-30T14:04:49.509610 | 2019-10-14T15:57:43 | 2019-10-14T15:57:43 | 176,878,584 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 342 | cpp | #include<iostream>
using namespace std;
int main(){
int i = 20;
int j = 40;
int * const i_ptr_const = &i;
const int * i_const_ptr = &i;
const int * const i_const_const = &i; // Kein anderer Wert und keine andere Adresse!
//i_ptr_const = &j;
i_const_ptr = &j;
* i_ptr_const = 42;
//* i_const_ptr ... | [
"weber@fzi.de"
] | weber@fzi.de |
adecf49b60360751b7f56ac65554c1d842a2bf61 | 6b2a8dd202fdce77c971c412717e305e1caaac51 | /solutions_2453486_1/C++/arif18/A.cpp | 0675ee2cee2953f1467fe37ab7a540c00a82268b | [] | no_license | alexandraback/datacollection | 0bc67a9ace00abbc843f4912562f3a064992e0e9 | 076a7bc7693f3abf07bfdbdac838cb4ef65ccfcf | refs/heads/master | 2021-01-24T18:27:24.417992 | 2017-05-23T09:23:38 | 2017-05-23T09:23:38 | 84,313,442 | 2 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 1,641 | cpp | #include<stdio.h>
#include<algorithm>
using namespace std;
char s[5][5];
bool c(char k){
if(s[0][0]==k){
if(s[0][0]==k && s[0][1]==k && s[0][2]==k && s[0][3]==k) return true;
if(s[0][0]==k && s[1][0]==k && s[2][0]==k && s[3][0]==k) return true;
if(s[0][0]==k && s[1][1]==k && s[2][2]==k && s[3... | [
"eewestman@gmail.com"
] | eewestman@gmail.com |
97dedc2f2df7e0150bf5572ec5462de75309a05b | 00d59fc683ae26dbda511bab355836b9e2e6b43d | /vjudge/ZOJ/3792/2582082_AC_20ms_344kB.cpp | 73ea7cd9b233e4d6e45bc8d4ce1ec74d539ac0d5 | [] | no_license | howardchina/ACM-ICPC-solved-problem | 01f8744c12b765ffc0ea23600fab79c58a5f6e0e | 63805f390c754c4561d43c4902939eff26ad7cbd | refs/heads/master | 2020-04-01T20:22:33.562335 | 2018-12-11T09:09:03 | 2018-12-11T09:09:03 | 153,601,172 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,070 | cpp | #include <iostream>
#include <cstdio>
#include <cstring>
using namespace std;
const int MAXN=66, MAXE=2222, INF=1000000007;
struct Edge{
int from, to, next, cap;
Edge(){}
Edge(int f, int t, int n, int c):from(f), to(t), next(n), cap(c){}
}edge[MAXE*2];
int src, snk, tot, head[MAXN], dep[MAXN], q[MAXN];
void... | [
"978632333@qq.com"
] | 978632333@qq.com |
c2196c9799ceb77c50ea92d381fce9868862b25d | a3bfa4100f288efd114853351ca2da972048b9c1 | /app/libs/gstreamermm-android-universal-1.10.0/x86/include/gstreamermm-1.0/gstreamermm/private/ghostpad_p.h | afc89dbde053045c7af2477cf0e2882c5f15469b | [] | no_license | OleksiiShevchenk0/gstreamerMMDemonstrator | f9dd50f49e8a9b0b52bd22f1a10d37d6267adf17 | 2d6674ed6247a7a3fcc3b7dfaadde7db628ca450 | refs/heads/main | 2023-08-16T02:14:46.425497 | 2021-10-26T12:46:17 | 2021-10-26T12:46:17 | 419,675,770 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,065 | h | // Generated by gmmproc 2.50.1 -- DO NOT MODIFY!
#ifndef _GSTREAMERMM_GHOSTPAD_P_H
#define _GSTREAMERMM_GHOSTPAD_P_H
#include <glibmm/class.h>
namespace Gst
{
class GhostPad_Class : public Glib::Class
{
public:
#ifndef DOXYGEN_SHOULD_SKIP_THIS
using CppObjectType = GhostPad;
using BaseObjectType = GstGhostPad;
... | [
"oshevchenko@logitech.com"
] | oshevchenko@logitech.com |
3527c07494e883f4e403bacff02eb44b7ba5c580 | 42e9de4dd119deca18f9b8bedfc06a50af1c42d1 | /BooErEngine/src/BooErEngine/Rendering/ParticleMgr.h | 7e30a106b8b4c8abf79a60208b47c0396d0097e6 | [
"Apache-2.0"
] | permissive | Concarster/BooErEngine | 388c79a9156e309fe9a54698463f4a842bd741a0 | b2f390cbd5f7ec498307383d540f1381a7e634a6 | refs/heads/master | 2020-05-01T19:02:29.104797 | 2019-03-29T01:07:54 | 2019-03-29T01:07:54 | 177,637,823 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 151 | h | #pragma once
#include "Def.h"
namespace boo
{
class BOO_API ParticleMgr
{
public:
ParticleMgr();
~ParticleMgr();
};
}
| [
"concarster01@gmail.com"
] | concarster01@gmail.com |
10de26eefb7a779552858eec466f442d4fdb4136 | 5289b5a61a5c17a4371204214724cf3b8c49b2cf | /common/network/Unix/UdpSocket.hpp | 6f9051fb4276bfe81cbc7e80e136e67f6ca3c452 | [] | no_license | ishigo974/rtype | 7e4daf50ca16f46d67c79c293dbd35d3a7641810 | f45397e4240365e83f64479ccd1efcb98898303a | refs/heads/master | 2021-01-10T10:23:51.626559 | 2015-12-27T22:23:33 | 2015-12-27T22:23:33 | 51,431,731 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,215 | hpp | //
// Created by Denis Le Borgne on 14/12/2015.
//
#ifndef RTYPE_SERVER_UDPSOCKET_HPP
#define RTYPE_SERVER_UDPSOCKET_HPP
# include <string>
# include "IUdpSocket.hpp"
# include "BaseSocket.hpp"
class UdpSocket : public IUdpSocket, public BaseSocket
{
public:
UdpSocket(short int port);
virtual ~UdpSocket();
... | [
"denis.le-borgne@epitech.eu"
] | denis.le-borgne@epitech.eu |
1a5e04fa8d2f6bbe800d65e5783b1558e6833a15 | a1b2a01e34261cba5d22d7202b661db5a21d3a57 | /third/muduo/base/ThreadLocalSingleton.h | 889cca771dd7710abddb89c20ba01bcff09198a8 | [] | no_license | no5ix/realtinet | b74a2d6b199397eca9325144262cb5a9000802c6 | f940677ee7a563291b0071d31cdd952ab8b9566d | refs/heads/master | 2021-06-08T03:09:50.576387 | 2019-03-20T17:45:17 | 2019-03-20T17:45:17 | 148,203,741 | 62 | 28 | null | null | null | null | UTF-8 | C++ | false | false | 1,492 | h | // Use of this source code is governed by a BSD-style license
// that can be found in the License file.
//
// Author: Shuo Chen (chenshuo at chenshuo dot com)
#ifndef MUDUO_BASE_THREADLOCALSINGLETON_H
#define MUDUO_BASE_THREADLOCALSINGLETON_H
#include <muduo/base/noncopyable.h>
#include <assert.h>
#include <pthread.... | [
"1145263208@qq.com"
] | 1145263208@qq.com |
a9f762dc6953fb808edb39187cef94a5e22aac5a | 84ee5a088a9f83886f78f22fbe06c2530a89197a | /src/helpers/mathutil.h | 943e663aad84907e23b2b5d47fa6ef50e2720e39 | [] | no_license | metno/kvqc2d | 873e8358d2433bc04d491f96d8161c4d01ea4ba9 | dbed620f3453956b7b36b2d13a356878854bdcdd | refs/heads/master | 2021-09-23T01:05:00.594316 | 2021-09-14T06:00:08 | 2021-09-14T06:00:08 | 41,738,058 | 1 | 1 | null | 2020-05-05T06:27:39 | 2015-09-01T12:47:10 | C++ | UTF-8 | C++ | false | false | 3,084 | h | /* -*- c++ -*-
Kvalobs - Free Quality Control Software for Meteorological Observations
Copyright (C) 2011 met.no
Contact information:
Norwegian Meteorological Institute
Postboks 43 Blindern
N-0313 OSLO
NORWAY
email: kvalobs-dev@met.no
This file is part of KVALOBS
KVALOBS is free software; you ca... | [
"alexanderb@met.no"
] | alexanderb@met.no |
9b956b65cdd60a0a18400cba2f5361b9f9d1f5f1 | 43e764edb96eb644c0c4c19deb04f50835e75617 | /LeetCode_Problems/dd.cpp | eb167f755c0298eb5008f80417269acadea3cc4c | [] | no_license | NakulChauhan1/Data-Structure | b7800ece3f20d73af6bae8bd5ce398c44f358092 | f466defa0828b786634bdd51ba9bb2225aab1ea6 | refs/heads/master | 2021-08-15T02:12:18.932818 | 2021-08-13T09:48:56 | 2021-08-13T09:48:56 | 249,900,437 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 271 | cpp | #include <bits/stdc++.h>
using namespace std;
int main()
{
vector<bool> arr(32,0);
bool y = 2;
int x = 10;
cout <<sizeof(x)<<endl;
cout <<sizeof(y)<<endl<<y<<endl;
/*for (int x : vect)
cout << x << " "; */
return 0;
} | [
"48352040+NakulChauhan1@users.noreply.github.com"
] | 48352040+NakulChauhan1@users.noreply.github.com |
13d13b20d2d1a8706806154beab17b27bc0e05ac | 720debcaeb968377cfc4fe7bd0dc8a3dee1d368a | /treewidgetwithmenu.h | 502d621f07ed218b3d0d5611d5a74cdcd8cc7de2 | [] | no_license | ZwerG-MaX/SharedGUI | d60a655537f59c22e2ac54c92b741fa0e9cc11b2 | 00a5cc0c620d548b6b23859dd4a3a8044cb61a17 | refs/heads/master | 2020-03-22T17:58:33.855632 | 2017-08-03T09:37:05 | 2017-08-03T09:37:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,270 | h | #ifndef TREEWIDGETWITHMENU_H
#define TREEWIDGETWITHMENU_H
#include <QTreeWidget>
#include <QWidgetAction>
#include <QMenu>
#include <QPushButton>
//TableWidgetWithMenu and TreeWidgetWithMenu are practically the same,
//despite base class, but I decided not to create common base for them, because
//both TableWidgetWit... | [
"avsimonenko@esc-center.ru"
] | avsimonenko@esc-center.ru |
616e06f52bcb45d1004b87583e977ae7c127b722 | 9f97c42310f47505eda2b5d6be28294dee7f0f15 | /src/qt/transactiontablemodel.h | f057f1c870186dfa3033481033e10179e8f6cf76 | [
"MIT"
] | permissive | Madurajaya/cicoin | b7bc3cd65ef665e8c23d6787bb732d211b46e4f3 | b48b11574ae38ae063670a755b9d50ef6960e1e8 | refs/heads/master | 2022-04-13T21:04:57.846103 | 2020-04-01T05:30:32 | 2020-04-01T05:30:32 | 296,742,986 | 1 | 0 | MIT | 2020-09-18T22:37:12 | 2020-09-18T22:37:12 | null | UTF-8 | C++ | false | false | 4,424 | h | // Copyright (c) 2011-2018 The Cicoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef BITCOIN_QT_TRANSACTIONTABLEMODEL_H
#define BITCOIN_QT_TRANSACTIONTABLEMODEL_H
#include <qt/cicoinunits.h>
#include <... | [
"cicxcoin2@gmail.com"
] | cicxcoin2@gmail.com |
f1dd99f4e9c714d55e53ad1493da484a20029543 | 1e782fca7cf8165dc2f74fc1aced791bef15e51b | /src/networking.h | 1830c11dbdf4f01bf123e50a19c6a672a56b165b | [
"MIT"
] | permissive | shavmark/refactored-invention | ab962104ab4911e9adc62296b30f3ddfe3406a57 | 06d8f936c486cdabc5b05af481c76a4698fae19a | refs/heads/master | 2020-05-21T23:39:02.230083 | 2016-11-22T18:04:10 | 2016-11-22T18:04:10 | 55,353,419 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,474 | h | #pragma once
//how to broad cast https://forum.openframeworks.cc/t/fixed-ofxosc-broadcast-to-255-255-255-255-in-of-0-84-under-windows/21974
//https://github.com/microcosm/KinectV2-OSC Address: /bodies/{bodyId}/joints/{jointId}
//Values: -float : positionX
//- float : positionY
//- float : positionZ
//- string : trac... | [
"mark@shavlik.us"
] | mark@shavlik.us |
3085765247259bcc2232cbeb4cecf4a4220683e5 | 8314a14530776924b8573cf4b8192ed2cd1d7cca | /csgoExternal/csgoExternal.cpp | 9f72a6cad459014c3aa161bb82a7fe508bcb6153 | [
"MIT"
] | permissive | Gonzera/csgoExternal | 313550b2b1bd0689086bb7af73167edda5018d1a | fc60cb4c10206693bf528b775c2399a1254294c2 | refs/heads/master | 2022-12-28T21:14:27.206309 | 2020-08-31T13:00:31 | 2020-08-31T13:00:31 | 259,603,434 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,530 | cpp | #include "includes.h"
#include "memory.h"
#include "Offsets.h"
/*struct OffsetsStruc
{
std::vector<DWORD> ammo = { 0x374, 0x14, 0x0 };
}Offsets;*/
struct variables
{
DWORD localPlayer;
DWORD moduleBase;
}var;
void triggerBot()
{
DWORD crosshairId;
int attackFlag;
int team... | [
"noreply@github.com"
] | Gonzera.noreply@github.com |
a77e3572cc8d73b34a433b3c4ad270d55f000ae7 | 6b2a8dd202fdce77c971c412717e305e1caaac51 | /solutions_2464487_1/C++/michal27/A-large.cpp | 5c361eff85c501ff8eedff71d533ace4aa00ec30 | [] | no_license | alexandraback/datacollection | 0bc67a9ace00abbc843f4912562f3a064992e0e9 | 076a7bc7693f3abf07bfdbdac838cb4ef65ccfcf | refs/heads/master | 2021-01-24T18:27:24.417992 | 2017-05-23T09:23:38 | 2017-05-23T09:23:38 | 84,313,442 | 2 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 660 | cpp | #include <cstdio>
#include <iostream>
#include <string>
#include <algorithm>
#include <vector>
#include <cmath>
#include <queue>
#include <set>
#include <map>
#include <stack>
using namespace std;
#define For(i,n) for(int i=0; i<(n); i++)
#define mp(a,b) make_pair((a),(b))
typedef long long ll;
int main() {
int t... | [
"eewestman@gmail.com"
] | eewestman@gmail.com |
12abce3a05c175e4abf1e755cff7bbd72f0ad9c3 | 9deb6da09aa093c50c98edab4cd2f665c1aec6f3 | /offer_22/main.cpp | be88f9de11eff272f1adc71811b90ca1a2b2478c | [
"MIT"
] | permissive | gjgj821/leecode | 566ef9d8238ab6d88083f3265fcd13c28df20406 | 547d1a1dda2a1a75c0f26a0d7a19ab81c067c33b | refs/heads/master | 2020-12-25T15:29:01.634124 | 2016-09-09T10:02:05 | 2016-09-09T10:02:05 | 67,197,792 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 797 | cpp | #include <iostream>
#include <vector>
#include <queue>
using namespace std;
struct TreeNode {
int val;
struct TreeNode *left;
struct TreeNode *right;
TreeNode(int x) :
val(x), left(NULL), right(NULL) {
}
};
//从上往下打印出二叉树的每个节点,同层节点从左至右打印。
class Solution {
public:
vector<int> PrintFromTopT... | [
"gaojie@limei.com"
] | gaojie@limei.com |
0a1b2e2e590c317c84554baddbd9f1c5bed0e48d | 271333e888eda948831ad9f129c09a60b9b810d1 | /Microsoft.WindowsAzure.Storage/tests/cloud_storage_account_test.cpp | 6942b2acd408df0347a209d9d0489e0d79294569 | [
"Apache-2.0"
] | permissive | ZeeGithub/azure-storage-cpp | aa04c6bbd8d55b2af88a05c5ea956a83d1844acd | 37e44a643b3a5df34e74ea0b4702f50bdc07cd74 | refs/heads/master | 2021-01-23T00:20:03.638008 | 2013-12-20T02:36:08 | 2013-12-20T02:36:08 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 16,562 | cpp | // -----------------------------------------------------------------------------------------
// <copyright file="cloud_storage_account_test.cpp" company="Microsoft">
// Copyright 2013 Microsoft Corporation
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except... | [
"sozler@microsoft.com"
] | sozler@microsoft.com |
1ffbf8e52035a25c07f9230e5a970333bdd7776d | a199f81893b41e67416379e7005a107abf190e93 | /src/super-smack.cc | 2e95fbd8e7a31bdbbc8e3be2b06ee81dc080c604 | [] | no_license | GCSAdmin/super-smack-1.3 | 0ebc0e5bb7e923dd0e8d3481a71bb956f54ed61a | 22ba6eb9d1924f3511f1049207f0e8251735287d | refs/heads/master | 2020-12-24T14:09:37.324731 | 2012-07-03T11:03:01 | 2012-07-03T11:03:01 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,084 | cc | /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later versi... | [
"vinchen13@gmail.com"
] | vinchen13@gmail.com |
3b8b7be6f7f34a2a93f07a56fd4b7c8677f4befb | 57574cc7192ea8564bd630dbc2a1f1c4806e4e69 | /Poker/Servidor/OpIgualarApuesta.h | 26aba6fd3c8c976d74eb5e09e80211a68d5f6a6c | [] | no_license | natlehmann/taller-2010-2c-poker | 3c6821faacccd5afa526b36026b2b153a2e471f9 | d07384873b3705d1cd37448a65b04b4105060f19 | refs/heads/master | 2016-09-05T23:43:54.272182 | 2010-11-17T11:48:00 | 2010-11-17T11:48:00 | 32,321,142 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 340 | h | #ifndef _OP_IGUALARAPUESTA_H_
#define _OP_IGUALARAPUESTA_H_
#include "Operacion.h"
using namespace std;
class OpIgualarApuesta : public Operacion
{
protected:
virtual bool ejecutarAccion(Socket* socket);
public:
OpIgualarApuesta(int idCliente);
virtual ~OpIgualarApuesta(void);
};
#endif //_OP_I... | [
"natlehmann@gmail.com@a9434d28-8610-e991-b0d0-89a272e3a296"
] | natlehmann@gmail.com@a9434d28-8610-e991-b0d0-89a272e3a296 |
fd09d4c7739775f61b8778b1b1273b092d877b83 | df223c971dfbec8ad69b53fe8ba65dc41d30cb0f | /MapleLibirary/STM32F1/cores/maple/MYSerial.h | 120fe8aa9289b6703485c9cfa66abfbd6f78d586 | [] | no_license | jaygreen123/EF2M45duino_development | 9026734857cff49758a2755bde616f48f49f6757 | 82d2161943533cf53941f42de3ce4b22df9401b9 | refs/heads/master | 2021-05-25T23:47:54.029461 | 2020-04-08T09:17:15 | 2020-04-08T09:17:15 | 253,969,216 | 0 | 0 | null | null | null | null | WINDOWS-1252 | C++ | false | false | 12,492 | h | /*
* MYSerial.h
*
* Created on: 2020Äê2ÔÂ2ÈÕ
* Author: Administrator
*/
#ifndef CORES_MAPLE_MYSERIAL_H_
#define CORES_MAPLE_MYSERIAL_H_
#include "boards.h"
#include "Print.h"
typedef uint8_t size_m;
class MYSerial //: public Print
{
public:
MYSerial();
void begin(uint32_t baud);
size_m write(char ch)... | [
"1250733867@qq.com"
] | 1250733867@qq.com |
c8045b8474719772c68d7dd6fa10aed085cb5dfd | 7a0f3cedf8066eac7ccb65b64e84fb05c4066c79 | /src/simulation.hpp | 7f6650ba5ab852ec15af89897041be061213bd32 | [] | no_license | liamxu1/PBD | 5696cfaf8cec96e437a27c44104207a4c9511394 | c452ade1019ef77d826e35b8f23e0f032b587bc0 | refs/heads/master | 2023-08-07T20:38:39.557983 | 2021-09-05T01:45:36 | 2021-09-05T01:45:36 | 388,642,003 | 4 | 0 | null | 2021-08-23T07:38:13 | 2021-07-23T01:15:18 | C++ | UTF-8 | C++ | false | false | 1,882 | hpp | //
// Created by Jack Purvis
//
#ifndef POSITIONBASEDDYNAMICS_SIMULATION_HPP
#define POSITIONBASEDDYNAMICS_SIMULATION_HPP
#include <GL/glew.h>
#include <mesh.hpp>
#include <scene.hpp>
#include <constraint.hpp>
const float SLEEPING_THRESHOLD = 1e-5;
class Simulation {
float COLLISION_THRESHOLD = 0.1f;
public:
... | [
"liamxqy@163.com"
] | liamxqy@163.com |
b441e31ec9383d653905216109c04ae1bf5c0f4a | f66995a28376f70b1cbafaaeec3731c76ef5b1e3 | /Source/CreteCPP/Private/MainMenuGameMode.cpp | 598f719a74272dca753eff8df295fd54a74d2d78 | [] | no_license | JElbourne/UE4_AWS_GameLift_Integration | fc5ddeaf23d0a14531d3946093014c40463fb3c0 | 6d288f5169236bdfafc058c3fb77a2f2ecdb0e40 | refs/heads/master | 2023-01-30T19:07:38.631432 | 2020-12-14T21:16:03 | 2020-12-14T21:16:03 | 321,475,118 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 223 | cpp | // Fill out your copyright notice in the Description page of Project Settings.
#include "MainMenuGameMode.h"
#include "MainMenuHUD.h"
AMainMenuGameMode::AMainMenuGameMode()
{
HUDClass = AMainMenuHUD::StaticClass();
}
| [
"jayelbourne@gmail.com"
] | jayelbourne@gmail.com |
66162442e60f87f7d77877a89afcbb7f7f261033 | eacef26df34084261cf488348081ae6f9b664d97 | /fourSum.cpp | 5e0a85b938f4d324c8e1c12320f762741d4bb3c5 | [] | no_license | foursking1/leetcode | 24252e02cd9952bd7a6ce78ffed2b0608d624df2 | 1e24631500e647709a8894d5b5bb3b523a651966 | refs/heads/master | 2021-01-01T15:51:37.751516 | 2015-02-25T03:32:41 | 2015-02-25T03:32:41 | 30,954,743 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,546 | cpp | #include <iostream>
#include <vector>
#include <Algorithm>
#include <map>
#include <unordered_map>
using namespace std;
class Solution {
public:
vector<vector<int> > fourSum(vector<int> &num, int target) {
vector<vector<int> > vvi;
int n = num.size();
if( n < 4) return vvi;
sort(num.begin(), num.... | [
"foursking@gmail.com"
] | foursking@gmail.com |
1ce93f7258f42e86a15e31a819dc288c244dc083 | f1d4116ad2fde1b06d28ad052064db38073e612c | /01_開発環境/shooting_c++/renderer.h | 8ec387c11f708542892eb9923ad52dd00c203308 | [] | no_license | ayanokudo/HGS_2021_3_26 | 457cb1477840e792830f5641698e2cab9e9bdc6c | 99d029ac6755a486c22d38077a80b692001986ed | refs/heads/main | 2023-03-27T23:04:50.135455 | 2021-03-27T00:04:42 | 2021-03-27T00:04:42 | 351,449,310 | 0 | 0 | null | null | null | null | SHIFT_JIS | C++ | false | false | 1,567 | h | //====================================================================
//
// 描画処理 (renderer.h)
// Author : 後藤慎之助
//
//====================================================================
#ifndef _RENDERER_H_
#define _RENDERER_H_
//================================================
// インクルードファイル
//=======================... | [
"ayanokudo1211@gmail.com"
] | ayanokudo1211@gmail.com |
412b61c33215255f16c46d79b2e3978c835da558 | 7ad2aac66dc08c3e9f7dfdbe18f3df87d73712eb | /Assign12/Assign12/SortableArray.h | f38c9f58ed29a9413448378a64107fe19637a372 | [] | no_license | AndOrangutan/COMSC-210 | 93f7c19462e736ff65322eeca9af579cd6192221 | 31b52abf1794c00ff5cdb9107bcf703ca8de3df4 | refs/heads/master | 2022-03-23T22:03:30.294127 | 2019-12-13T03:03:43 | 2019-12-13T03:03:43 | 205,643,289 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,007 | h | //Programmer: Von Mueller
//Programmer's ID: 1735441
// Recent changes
// added sort
// optimized a few sections of code
// removed built in size since i wasn't keeping track of it properly and it really isn't needed.
#ifndef SORTABLEARRAY_H
#define SORTABLEARRAY_H
#include <cstdlib>
template<typename T>
class... | [
"vonjonmueller@gmail.com"
] | vonjonmueller@gmail.com |
5617ca8dfe7cc1fc910ca7339b2a1b791ccdab51 | f43b03caeb3c2b18a3d3e24be2d5dbda8228db3f | /main.cpp | f5aba3dff190154f0eba427792714eee084ce974 | [] | no_license | whiteAlchimik/cod | f0afbc4a620b5cb227d534b3686c940c9df68a7c | 2f4f02a37ee14c3c4f34ad624c9228f9ad4ee12f | refs/heads/master | 2021-05-31T12:51:26.864779 | 2015-09-17T21:49:05 | 2015-09-17T21:49:05 | null | 0 | 0 | null | null | null | null | WINDOWS-1251 | C++ | false | false | 2,354 | cpp | #include <iostream>
#include <Windows.h>
#include <SetupAPI.h>
#include <stdio.h>
#include <tchar.h>
#include <cfgmgr32.h>
#pragma comment (lib, "Setupapi.lib")
using namespace std;
**/
учусь пользоваться Git
**/
int main()
{
HDEVINFO DeviceInfoSet;
_SP_DEVINFO_DATA DeviceInfoData;
DWORD DeviceIndex, dwProperty... | [
"77_wolf_99@mail.ru"
] | 77_wolf_99@mail.ru |
11832327c039877d1fe7a5f1a2cf84e036f4d8e8 | 1fa0a06a11e8895e1b2f04694d4577cebe841a89 | /Fitting_TurnOn.cc | bbe0fc2a3d9ad8dda0f2b84362029d81a38263e5 | [] | no_license | Saptaparna/LowPtSUSYAnalysis | 79b373712846041e111aff7674f6f4b2b558afca | ed3e407d35d4b5b913f198c982cd0b05ef9d2df6 | refs/heads/master | 2016-09-06T16:32:22.653161 | 2015-09-22T17:47:44 | 2015-09-22T17:47:44 | 19,583,109 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,662 | cc | #include <TH1F.h>
#include <TH2F.h>
#include <TH3F.h>
#include <TROOT.h>
#include <TFile.h>
#include <TTree.h>
#include <TSystem.h>
#include <TChain.h>
#include <TLorentzVector.h>
#include <TLegend.h>
#include <iostream>
#include <stdlib.h>
#include <stdio.h>
#include <TF1.h>
#include <TCanvas.h>
#include <TFrame.h>
... | [
"saptaparna@gmail.com"
] | saptaparna@gmail.com |
ca128aaef882602533dcb5093b774a1cb08e1f90 | 696f112b5bf10f09066f8916d410795475ff90d5 | /potd/potd-q20/main.cpp | aac569b7523a5d3fe338ed2866a12c3187e9061f | [
"MIT"
] | permissive | taoyuc3/CS225 | fc243be1c866f357bb462549249be69a201d1944 | e3a8add28059c63a663ad512885ddf8df86eebd9 | refs/heads/master | 2022-06-21T09:34:08.011111 | 2020-05-14T01:46:26 | 2020-05-14T01:46:26 | 236,390,397 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 474 | cpp | #include <iostream>
#include <vector>
using namespace std;
#include "isValid.cpp"
int main() {
vector<string> tests =
{
"()",
")()",
"()[]{}!",
"([cs225)]", //false
"([])", //true
"({}[cs225{})]" //false
// add your own tests here!
};
co... | [
"taoyuc3@illinois.edu"
] | taoyuc3@illinois.edu |
0c3e345ed7bcc9e9d9f96e80063989c9f37e790f | 75f1dbc625d37096f090ea7c8db59622a60c2083 | /source/openglexample/plugin.cpp | de36a0f92ea881fd7cafe5ab87ebbdd110fd200e | [
"MIT"
] | permissive | Daniel-Amadeus/PBR | 553e222d89e375d82b3764640fd9368682fe5d68 | 653441f70331de571f92cb15e9baf9bacfee951f | refs/heads/master | 2020-03-30T17:50:00.460432 | 2015-08-09T16:43:53 | 2015-08-09T16:43:53 | 37,625,062 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 296 | cpp | #include <gloperate/plugin/plugin_api.h>
#include "OpenGLExample.h"
#include <glexamples-version.h>
GLOPERATE_PLUGIN_LIBRARY
GLOPERATE_PLUGIN(OpenGLExample
, "OpenGLExample"
, "An OpenGL Example"
, GLEXAMPLES_AUTHOR_ORGANIZATION
, "v1.0.0" )
GLOPERATE_PLUGIN_LIBRARY_END
| [
"willy.scheibel@hpi.de"
] | willy.scheibel@hpi.de |
8496fdbfa44d5113facc0054c3cc2f2d68d2ba9f | a8953f8e9dd7cf2397a9e4031106cd8479761cb3 | /Customer.h | e5a0803e768639911427668ac1b1d3e47183055d | [] | no_license | IrsaKhan/shoppingmall | 21568169b3807f2c79e05e957831c6315a9b0935 | fb51008b23229a9c9275cbf75cb162a2d53f30b2 | refs/heads/master | 2021-12-02T17:58:22.247378 | 2014-01-07T14:06:54 | 2014-01-07T14:06:54 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 744 | h | #ifndef CUSTOMER_H_INCLUDED
#define CUSTOMER_H_INCLUDED
#include "ShoppingCard.h"
#include <string>
using namespace std;
class Customer {
string c_name;
int c_storeid;
ShoppingCard* shop_card;
bool isCustomerEnteredtoMall;
public:
Customer(string);
Customer(string, int);
//~Customer();
//setter func... | [
"meldabilgili@gmail.com"
] | meldabilgili@gmail.com |
619675c6b3db5342b827fbef40146859afb3672c | 416a81798662b73f7cba5cc8bdc62806d01944fe | /Actions/Edit.h | a20e4a60fa27af2cf4935175131955720aae7e91 | [] | no_license | aabdosobhy/GatesSimulation | b2b3bd8b8dd49c35004bb5b16afc488055921fdd | 1f0f4ddb4a1a99471c5fb889515be11d772a0d02 | refs/heads/main | 2023-03-27T07:28:10.810401 | 2021-03-22T02:59:51 | 2021-03-22T02:59:51 | 350,170,234 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 435 | h | #pragma once
#include "Action.h"
#include "..\Components\Connection.h"
class Edit :
public Action
{
int x1, y1, x2, y2;
int Cx, Cy;
int id_done;
bool can_draw;
public:
Edit(ApplicationManager *pApp);
virtual ~Edit();
virtual void ReadActionParameters();
void select_connection();
//Execute act... | [
"noreply@github.com"
] | aabdosobhy.noreply@github.com |
dd098949e621726b83ea2c77215a77ba18031e3c | 62a78a9e4a4bde8e8f39837d2b1da6d52da2afe5 | /tareas/20180904-Concurrencia/vazquez_silva_edgar/catkin_ws/src/turtles/src/turtles_threads.cpp | b78a38184b2435f0b3122197522b1ef9dcecff66 | [] | no_license | cgershen/prog | 5762b2742f0951985db5976c071021b2eb8cf5b3 | d391798567c5770606d38618e377c9310a907cec | refs/heads/master | 2020-05-21T22:47:05.270705 | 2018-10-19T02:23:31 | 2018-10-19T02:23:31 | 65,225,344 | 4 | 12 | null | 2018-08-16T16:31:52 | 2016-08-08T17:38:08 | JavaScript | UTF-8 | C++ | false | false | 6,567 | cpp | #include "turtles.hpp"
#include <boost/thread/thread.hpp>
int main(int argc, char** argv)
{
ros::init(argc, argv, "turtles_threads");
ros::NodeHandle n;
ros::Rate loop(60.0);
ros::Subscriber sub_goal_pos = n.subscribe("/turtlesim1/turtle1/pose", 10, goalPoseCallback);
ros::Subscriber sub_pos_1 = n.subscrib... | [
"edgarvazquez1403@gmail.com"
] | edgarvazquez1403@gmail.com |
c2741355525d5aef1677a3cdb9438a854c0154d7 | c8e72b3a096cd10b95901e7a54bb77ce61ae81f1 | /convertStrToInt.cpp | ca30c83baaded1774f9b5b939b72d36ef46977c5 | [] | no_license | Raydians/InterviewPractice | dac4384a261612237b20eaac21377019ca1c54b3 | e685505682c79e6ca75ad8390a4306d400c6574d | refs/heads/master | 2020-05-18T01:10:16.947138 | 2014-06-12T22:22:30 | 2014-06-12T22:22:30 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 949 | cpp | /*
* convertStrToInt.cpp
*
* Created on: Jun 12, 2014
* Author: jlin
*/
#include <iostream>
#include <cmath>
using namespace std;
int convertStrToInt(char* str, int size) {
int sum = 0;
for (int i = 0; i < size; i++) {
sum = sum*10 + (str[i] - '0');
}
return sum;
}
char* convertIntToStr(int i) {
st... | [
"jlin@jasons-mbp.lan"
] | jlin@jasons-mbp.lan |
6317d7e6ba1627af1c9fb963cba77c1f15c558a7 | 3e57cec125d798fde201dac23fe727d1ff252279 | /src/SecondController/SecondController.h | 3e528e5b08fde848534a6530cfaa80e2c3ca69bf | [] | no_license | ghop1073/SecondC-PRoject | 4951f47da1f47bf5822761122f346645396e5eb3 | 946cd903f6aad8307234dc82c3afd2e37c009ab7 | refs/heads/master | 2021-01-10T11:24:52.274288 | 2016-02-29T18:12:13 | 2016-02-29T18:12:13 | 52,812,455 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 389 | h | /*
* SecondController.h
*
* Created on: Jan 19, 2016
* Author: mhop1073
*/
#ifndef SECONDCONTROLLER_SECONDCONTROLLER_H_
#define SECONDCONTROLLER_SECONDCONTROLLER_H_
class SecondController
{
private :
int classCount;
public:
SecondController();
void setClassCount(int classCount);
int getClassCount();
v... | [
"gagehopkins1@gmail.com"
] | gagehopkins1@gmail.com |
95c386f80c4976fdb7eaebb9abb30aef4694d016 | 041ff4509e725ecbb86adf03e5df7bb49288a97f | /Homework_03/Homework_03.cpp | 57c843c0e692c979f0a95a46993c2ab87bdbb5b2 | [] | no_license | kulikov050686/Homework_03 | a0a60455943e5b079c3dbc795883ddeb147f7f55 | e5f214735f539c662b62a5bddaaf7bc784704c5e | refs/heads/master | 2021-05-21T21:36:38.934331 | 2020-04-03T18:39:18 | 2020-04-03T18:39:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 13,389 | cpp | #include <iostream>
#include <random>
void Task1()
{
system("cls");
setlocale(LC_ALL, "rus");
std::string ranger;
std::string planet;
std::string star;
int money;
std::cout << "Вводите название планеты: ";
std::cin >> planet;
std::cout << "Вводите название звездной системы: ";
... | [
"kulikov050686@yandex.ru"
] | kulikov050686@yandex.ru |
0a44635cf6fa41b8524b4f954cba85cf130451cc | 7f69e98afe43db75c3d33f7e99dbba702a37a0a7 | /src/plugins/thirdParty/LLVM/tools/clang/lib/CodeGen/MicrosoftCXXABI.cpp | ce832dd1ecb0c8aa5da190f0a2850ae9066efa16 | [
"Apache-2.0"
] | permissive | hsorby/opencor | ce1125ba6a6cd86a811d13d4b54fb12a53a3cc7c | 4ce3332fed67069bd093a6215aeaf81be81c9933 | refs/heads/master | 2021-01-19T07:23:07.743445 | 2015-11-08T13:17:29 | 2015-11-08T13:17:29 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 170,388 | cpp | //===--- MicrosoftCXXABI.cpp - Emit LLVM Code from ASTs for a Module ------===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===-------------------------------------------------------... | [
"agarny@hellix.com"
] | agarny@hellix.com |
cca27658da84a16b748396ce0b5cabba69e3cf0d | d57c77b0309d6652453c6ae990cfb7e3f86e40aa | /XivAlexander/App_Feature_AnimationLockLatencyHandler.cpp | f13958222c617e2b9833449e8e1fc2aaa263491a | [
"Apache-2.0"
] | permissive | Vectorforce1/XivAlexander | b8ae02065faa7ff8e715624b8eeb8c6c87e1eb3a | 19e61c31dcbb6dacc37ecd13f2dcee4a80bb57cc | refs/heads/main | 2023-05-05T23:28:38.076027 | 2021-06-01T09:00:07 | 2021-06-01T09:00:07 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 15,362 | cpp | #include "pch.h"
#include "App_Feature_AnimationLockLatencyHandler.h"
#include "App_Network_SocketHook.h"
#include "App_Network_Structures.h"
class App::Feature::AnimationLockLatencyHandler::Internals {
public:
// Server responses have been usually taking between 50ms and 100ms on below-1ms
// latency to server, so... | [
"soreepeong@gmail.com"
] | soreepeong@gmail.com |
59a9fb05acb98e5f3e5a5049f412fb501ebd926b | cdc8d0ee87dba4a6d1151c6b87bf24efd716a6e3 | /BinomialCoeff.cpp | 9d57ff0672d658bf1765aae403dabf0c6e8a792d | [] | no_license | Lucky9128/DataStructures | 0eafc274778ef57579f86fdc1b47a8f0834ef349 | f9ff76e08e8d668a17d33eeb376c1ff491cdf5c0 | refs/heads/master | 2022-12-03T19:41:28.128410 | 2020-08-11T11:21:20 | 2020-08-11T11:21:20 | 277,152,410 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,262 | cpp | #include<iostream>
#include<string>
#include<vector>
#include<time.h>
using namespace std;
long cnt=0;
int Coff(int n, int k)
{
cnt++;
if(k==0 || k==n)
return 1;
else
{
return Coff(n-1,k-1)+Coff(n-1,k);
}
}
int DynaCoff(int n, int k)
{
if(k > n/2)
{
k = n - k;... | [
"agrawallucky58@gmail.com"
] | agrawallucky58@gmail.com |
27f79d12233388e3db744db4525c86f2a197d94f | 19521e33ca495c04ce17e804ba6fef877266d037 | /src/httpserver.cpp | 61fef014ca959dff27f2f53b1bb3d38f5898b224 | [
"MIT"
] | permissive | mirzaei-ce/core-moselbit | 3f441f5960a5c858e1fe389a60c2f5f1d11eff3d | 7e8e723109f22b0fddfa227692b9492f48d12d7c | refs/heads/master | 2021-08-14T18:06:06.700435 | 2017-11-16T11:44:03 | 2017-11-16T11:44:03 | 110,964,689 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 20,936 | cpp | // Copyright (c) 2015 The Bitcoin Core developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#include "httpserver.h"
#include "chainparamsbase.h"
#include "compat.h"
#include "util.h"
#include "netbase.h"
#include "rpcprot... | [
"mirzaei@ce.sharif.edu"
] | mirzaei@ce.sharif.edu |
1fc20c27896b30060dee04b2454c925182422c14 | 3d193be5bcbc0823c91fdb2504beef631d6da709 | /cc/trees/layer_tree_host_unittest_occlusion.cc | eed7a0b263311a1317ed87b08d2c5cffd96320fc | [
"BSD-3-Clause"
] | permissive | a402539/highweb-webcl-html5spec | 7a4285a729fdf98b5eea7c19a288d26d4759d7cc | 644216ea0c2db67af15471b42753d76e35082759 | refs/heads/master | 2020-03-22T14:01:34.091922 | 2016-04-26T05:06:00 | 2016-05-03T12:58:17 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 11,784 | cc | // Copyright 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "cc/trees/layer_tree_host.h"
#include "cc/layers/layer.h"
#include "cc/layers/picture_layer.h"
#include "cc/test/fake_content_layer_client.h"
#i... | [
"kimdh@infrawareglobal.com"
] | kimdh@infrawareglobal.com |
ff9435c296c8315777d6ae740f55bbe5b22ff191 | cc74c964d2e6b6b8032018f5ab1959736ff0dc0c | /sv1394_dll/private/dev/Src/ITS/common/rtl.cpp | 1ef84f226d7d5257487fca6433fb67768c8b2d1a | [] | no_license | jeremyjia/DhCam | bd5b1afd523d03aa152a66151f0a23182f57fbb4 | 1258971bbbcfd5dc1519231f8804ad4e8980ae64 | refs/heads/master | 2020-05-31T17:54:06.304567 | 2019-06-18T12:09:34 | 2019-06-18T12:09:34 | 190,419,740 | 0 | 2 | null | null | null | null | GB18030 | C++ | false | false | 21,483 | cpp | //File: rtl.cpp
#include "CAMOBJ.h"
#define DEFINEGUID(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8) \
EXTERN_C const GUID name \
= { l, w1, w2, { b1, b2, b3, b4, b5, b6, b7, b8 } }
DEFINEGUID(GUID_1394CMDR, 0x4007067, 0x789b, 0x40aa, 0x8c, 0x80, 0xe8, 0x5e, 0x21, 0x2f, 0x13, 0xca);
... | [
"919846792@qq.com"
] | 919846792@qq.com |
46eb5cdb3cd7b71a76a96ce7720bd3a90692c622 | 43dad12dcecb0819ac1c064b4f4ce277a60b43de | /bench/SYR2K/kernels/clike/DmatDmatMult.cpp | 26315632b7f4958f2ae9fb5cfccb57735b25f60f | [] | no_license | BoostGSoC14/boost.ublas | 2b754e5115d033903d8b2218f5082163505287d1 | 3201e3db270bc8ef2c871e8d0e30293b1a555b4b | refs/heads/master | 2021-01-02T04:49:18.958302 | 2014-08-08T19:33:12 | 2014-08-08T19:33:12 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,681 | cpp | /*
dense matrix and dense matrix multiplication kernel
*/
namespace clike {
double dmatdmatmult(size_t N, size_t iterations = 1) {
value_type** a = new value_type*[N];
value_type** b = new value_type*[N];
value_type** c = new value_type*[N];
for(size_t i = 0; i < N; ++i){
a[i] = new... | [
"mal00768@gmail.com"
] | mal00768@gmail.com |
ef0ddd36ae0384cdaec1e3588ef83ecc3e613994 | 8583b5bfc594b994f51d24d012e92ae66bf2e5ea | /src/BabylonCpp/include/babylon/particles/emittertypes/mesh_particle_emitter.h | 51d696f884ea126972bf834926da28c94b8f5962 | [
"LicenseRef-scancode-free-unknown",
"Apache-2.0"
] | permissive | samdauwe/BabylonCpp | 84b8e51b59f04a847681a97fa6fe0a5c554e9e1f | 3dad13a666299cbcf2e2db5b24575c19743e1000 | refs/heads/master | 2022-01-09T02:49:55.057544 | 2022-01-02T19:27:12 | 2022-01-02T19:27:12 | 77,682,359 | 309 | 41 | Apache-2.0 | 2020-11-06T12:16:17 | 2016-12-30T11:29:05 | C++ | UTF-8 | C++ | false | false | 4,098 | h | #ifndef BABYLON_PARTICLES_EMITTER_TYPES_MESH_PARTICLE_EMITTER_H
#define BABYLON_PARTICLES_EMITTER_TYPES_MESH_PARTICLE_EMITTER_H
#include <babylon/babylon_api.h>
#include <babylon/babylon_common.h>
#include <babylon/babylon_fwd.h>
#include <babylon/maths/vector3.h>
#include <babylon/particles/emittertypes/iparticle_emi... | [
"sam.dauwe@gmail.com"
] | sam.dauwe@gmail.com |
590141b97a00aeff65bdd082de2fada5bbcda4fb | 82091fc56c850906f3a36e8cb20fbb69c9b50e96 | /ugt/Graph.h | c96ae7e692e3debf643c4fd42ce2ff236deac83b | [
"MIT"
] | permissive | inbei/libutl | 97a57b865b4ab2331d66545fa2bb48ddf928ac2b | e55c2af091ba1101a1d0608db2830e279ec95d16 | refs/heads/master | 2023-07-22T15:35:51.113701 | 2021-08-26T09:28:22 | 2021-08-26T09:28:22 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,292 | h | #pragma once
////////////////////////////////////////////////////////////////////////////////////////////////////
#include <libutl/TCollection.h>
#include <libutl/RBtree.h>
#include <libutl/Vertex.h>
////////////////////////////////////////////////////////////////////////////////////////////////////
UTL_NS_BEGIN;
... | [
"prof.hate@gmail.com"
] | prof.hate@gmail.com |
69617b5510923652eccbe2678a34796b8bdc2960 | 1d9df1156e49f768ed2633641075f4c307d24ad2 | /third_party/WebKit/Source/core/style/StyleFetchedImage.cpp | 530d497ca01b40b5bceecc710c03249db1670502 | [
"LGPL-2.0-or-later",
"GPL-1.0-or-later",
"MIT",
"Apache-2.0",
"LicenseRef-scancode-warranty-disclaimer",
"LGPL-2.1-only",
"GPL-2.0-only",
"LGPL-2.0-only",
"BSD-2-Clause",
"LicenseRef-scancode-other-copyleft",
"BSD-3-Clause"
] | permissive | GSIL-Monitor/platform.framework.web.chromium-efl | 8056d94301c67a8524f6106482087fd683c889ce | e156100b0c5cfc84c19de612dbdb0987cddf8867 | refs/heads/master | 2022-10-26T00:23:44.061873 | 2018-10-30T03:41:51 | 2018-10-30T03:41:51 | 161,171,104 | 0 | 1 | BSD-3-Clause | 2022-10-20T23:50:20 | 2018-12-10T12:24:06 | C++ | UTF-8 | C++ | false | false | 4,747 | cpp | /*
* Copyright (C) 2000 Lars Knoll (knoll@kde.org)
* (C) 2000 Antti Koivisto (koivisto@kde.org)
* (C) 2000 Dirk Mueller (mueller@kde.org)
* Copyright (C) 2003, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or
* modify it ... | [
"RetZero@desktop"
] | RetZero@desktop |
f2caa6c32f2e19d819a0a3b833569d46ed8b762d | 83bacfbdb7ad17cbc2fc897b3460de1a6726a3b1 | /v8_7_5/test/cctest/test-threads.cc | 679c7e4d855801148dd200116e7bdbe07483d753 | [
"Apache-2.0",
"bzip2-1.0.6",
"BSD-3-Clause",
"SunPro"
] | permissive | cool2528/miniblink49 | d909e39012f2c5d8ab658dc2a8b314ad0050d8ea | 7f646289d8074f098cf1244adc87b95e34ab87a8 | refs/heads/master | 2020-06-05T03:18:43.211372 | 2019-06-01T08:57:37 | 2019-06-01T08:59:56 | 192,294,645 | 2 | 0 | Apache-2.0 | 2019-06-17T07:16:28 | 2019-06-17T07:16:27 | null | UTF-8 | C++ | false | false | 3,382 | cc | // Copyright 2008 the V8 project authors. 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 ... | [
"22249030@qq.com"
] | 22249030@qq.com |
a6ffb91f6d7879c5bc19461820e4cba751e2a5d8 | 776b9b297d2d18090076b64a57263813960b441c | /src/TravelingCam.cpp | cd79987a8797a59f837ee10baadb0a4a85cf936e | [] | no_license | roymacdonald/flatCity | 286b25a932fb304c1325f03b8cd901409cc9ad27 | dc73b18d58d85b86786cec59ff4ca90735475455 | refs/heads/master | 2021-01-19T03:16:56.776464 | 2018-05-15T12:20:25 | 2018-05-15T12:20:25 | 45,062,417 | 8 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,709 | cpp | //
// TravelingCam.cpp
// floatingPointImageExample
//
// Created by Roy Macdonald on 10-06-15.
//
//
#include "TravelingCam.h"
#include "pathSaveLoad.h"
#define DEFAULT_PATH "defaultCamPath"
//------------------------------------------------
void TravelingCam::setup(ofVec3f meshOffset){
parameters.setName("Tra... | [
"macdonald.roy@gmail.com"
] | macdonald.roy@gmail.com |
c906c9289f0f6f4105e235f4dad8d1ee2a8bbb75 | 5a625516d2314ab206f77daeae88f16cdff405ce | /core/xge/net/DatagramSocket.h | b4c76ec5e6b525063d39a97f188ee29e4f7f9ef8 | [
"WTFPL"
] | permissive | MCMrARM/xge | a800176c7c88fa7b46da5cde5d47ded3cc88948a | 80ca629ae92726c1b5dde5b89281c5da38839757 | refs/heads/master | 2021-01-19T16:36:05.828480 | 2017-03-06T21:59:46 | 2017-03-06T21:59:46 | 62,307,126 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 893 | h | #pragma once
#include <string>
#include "NetAddress.h"
namespace xge {
struct Datagram {
sockaddr_in addr;
char data[65507];
long long int dataSize;
operator bool() {
return (dataSize > 0);
}
};
class DatagramSocket {
private:
#ifdef _WINDOWS
S... | [
"mcmrarm@gmail.com"
] | mcmrarm@gmail.com |
aecbf95f8ba4aa6d1da68c773eb4e53021c686f8 | 3f44cb39bedadd315e8adad341b417205cb9c098 | /src/explorer/ExplorerManagerData.cpp | 2ccb558814080a7e341d2b76edfa3b70a5bccc17 | [
"LicenseRef-scancode-cecill-b-en"
] | permissive | etrange02/Fux | dc10e6246a7cd8a4f420cb2c6ceb4d24317958fd | 2f49bcd8ec82eb521092c9162e01c8b0d00222ab | refs/heads/master | 2020-12-24T07:42:13.122844 | 2017-06-18T09:20:02 | 2017-06-18T09:20:02 | 10,109,121 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,768 | cpp | /***************************************************************
* Name: ExplorerManagerData.cpp
* Purpose: Code for Fu(X) 2.0
* Author: David Lecoconnier (david.lecoconnier@free.fr)
* Created: 2014-11-19
* Copyright: David Lecoconnier (http://www.getfux.fr)
* License:
*******************************... | [
"david.lecoconnier@free.fr"
] | david.lecoconnier@free.fr |
228bd249e4d51815d79c32a111d6cfb5f7f4dfd5 | e001f3ca7770f6d9ffd100901a6dbb57d7c588cc | /14_15장/rangebasefor.cpp | 0c6155977255e0c9d0b58e152fa9f3c83865d60b | [] | no_license | frog97/freelec_modern_c-_programming | ad6160fdb7bbe59f01d0e0a2df216a585891f9c1 | 4028e58611398d2500e8dad813b0c08cfeae6cdc | refs/heads/main | 2023-04-04T19:21:51.594010 | 2021-04-08T14:06:34 | 2021-04-08T14:06:34 | 355,926,484 | 0 | 0 | null | null | null | null | UHC | C++ | false | false | 506 | cpp | #include <iostream>
#include <vector>
using namespace std;
int main()
{
int numArray[] = { 2, 4, 6, 8, 10 };
for (int i : numArray) // 배열 반복
{
cout << i << endl;
}
vector<int> numVector;
numVector.push_back(1);
numVector.push_back(3);
numVector.push_bac... | [
"noreply@github.com"
] | frog97.noreply@github.com |
93fd3573a0df37c1839cc3cbd5ffef8e83127d7e | c75ad52c59042bdf30064636d0aa9cb11161448f | /S3DR/lib/src/model/model.hpp | f5d8bc72e4b97caac7b3a245cc871142808970e8 | [
"MIT"
] | permissive | tdenis8/S3DR | 56b6a195fe077330181db9b4d5cec2d8d239a19f | fb8f4c0c98b5571abb12a51e03229978115b099b | refs/heads/master | 2020-05-18T15:32:41.851950 | 2015-01-16T19:16:53 | 2015-01-24T11:56:00 | 18,430,166 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,210 | hpp | #ifndef _MODEL_HPP_
#define _MODEL_HPP_
#include "utility/subject.hpp"
#include <memory>
#include <vector>
#include <string>
// Forward declarations
class SceneObject;
enum class ModelEvents : unsigned int
{
NEW_SCENE_OBJECT,
REMOVE_SCENE_OBJECT,
RESET_MODEL
};
class SceneObjectInfo : public EventInfo
... | [
"tomislav.denis@gmail.com"
] | tomislav.denis@gmail.com |
17da3f1de8e8c8a560fd45b53d31679e7119b95d | 99a4e34c67702306718e835e7a695a51801fb1ec | /tensorflow/core/ir/importexport/tests/roundtrip/roundtrip.cc | 630de47b8cb3b637bb9563a944276c5f09e755a3 | [
"MIT",
"Apache-2.0",
"BSD-2-Clause"
] | permissive | anishpunaroor/tensorflow | 910f76061ce0eda2dc09b5121a63b3069315149d | 1e66408e0190dc16f3405fb69c3237a09be3c5ca | refs/heads/master | 2023-07-18T06:55:34.012167 | 2021-09-03T17:56:15 | 2021-09-03T18:01:53 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,082 | cc | /* Copyright 2021 The TensorFlow Authors. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or a... | [
"gardener@tensorflow.org"
] | gardener@tensorflow.org |
b89259f4164e8f94d194ab204b0f83fc58977da9 | 0aa0427f3efc613489840ce6ae622e0352b07ee1 | /src/score/torsion.h | 0ebdf1d9605700bbbe17168a9db4dfc32c6a9b7e | [] | no_license | cattigers/SAINT2 | 39173b0dca0705ebeb90c3853d8a337b66889069 | 884d5b22d238540b84ef1966178e90d98dc61ae7 | refs/heads/master | 2020-06-07T09:13:05.587305 | 2017-06-20T13:46:10 | 2017-06-20T13:46:10 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,352 | h | #ifndef TORSION_H_INCLUDED
#define TORSION_H_INCLUDED
#include <string>
#include <iostream>
#include <cstdlib> // PG added this
class Peptide;
class Torsion_impl;
// size of each torsion bin (degrees)
#define TORSION_SIZE 3
#define TORSION_BINS (360 / TORSION_SIZE)
/**
* @brief Torsion angle potential.
*
* The ... | [
"oliveira@blackcap2.stats.ox.ac.uk"
] | oliveira@blackcap2.stats.ox.ac.uk |
40242642d342080bcf8325b29afb827fbc70a2c1 | c1acd615000b817633c1d5f4b459a03cc0341da4 | /src/modules/graphic/ssggraph/CarSoundData.cpp | 8f287938c7a39d037e0cf888cf725c27af8cf56f | [] | no_license | advancedgamesprogramming/advancedgamesprogramming.github.io | 7e24c37e7c900663196a3d64d513415ef62a5417 | ae0dc5dc480aa3e7a3aff5a3c3f8a4e4a27a8f2c | refs/heads/master | 2021-01-24T18:37:25.964748 | 2017-06-22T11:59:23 | 2017-06-22T11:59:23 | 84,451,786 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 13,368 | cpp |
/**************************************************************************/
/*
Advanced Games Engineering (CGP600) Module
www.solent.ac.uk
2016/17
Aim of module:
1. Extend and develop an open source game
2. Add additional platforms/API
o Vulkan Graphics API
o DirectX 12
3. Cross platform
o Win... | [
"b.kenwright@napier.ac.uk"
] | b.kenwright@napier.ac.uk |
d42c34712e0afd74a977318ce5f5b204d1f51654 | ba234b622fcb48dd3e7ba54f59de2c8fe9698c7c | /Player.cpp | ca3ab0ded17083a8ae8a1e48fb0d1f184cfc6d1b | [] | no_license | HyoungHoKim/input_subject | 081e410dfc024fdb400977ad39d960e5f43507df | c5d9f75cc45f183c2d8643f6f01ae2e876257c10 | refs/heads/master | 2023-06-02T16:44:26.435143 | 2021-06-23T09:34:55 | 2021-06-23T09:34:55 | 377,827,996 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,030 | cpp | #include "Player.hpp"
Player::Player()
{
this->dir = STOP;
this->x = 0;
this->y = 0;
this->num_tail = 0;
dash = false;
}
void Player::set_x(int _x)
{
this->x = _x;
}
void Player::set_y(int _y)
{
this->y = _y;
}
void Player::set_num_tail(int _num_tail)
{
this->num_tail = _num_tail;
}
void Player::set_dir(Di... | [
"hyoukim@hyoukimui-MacBookPro.local"
] | hyoukim@hyoukimui-MacBookPro.local |
d921e6b55bae0c9c6c71561fe3bc1dc7e93694b7 | 52fea6f8611737f202ae7012b413199e28e57fa4 | /src/qt/editaddressdialog.cpp | dec1e3c3578e36937bed8c4736f09f4edc31864f | [
"MIT"
] | permissive | orestdrag/mynovacoin | dceb9f13d9777fac0a4eafa52290a8be36496bb2 | 1749132193870c4147211e421adb17bc0327d10b | refs/heads/master | 2021-01-24T07:57:05.102009 | 2018-03-12T13:17:24 | 2018-03-12T13:17:24 | 122,965,981 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,248 | cpp | #include "editaddressdialog.h"
#include "ui_editaddressdialog.h"
#include "addresstablemodel.h"
#include "guiutil.h"
#include <QDataWidgetMapper>
#include <QMessageBox>
EditAddressDialog::EditAddressDialog(Mode mode, QWidget *parent) :
QDialog(parent),
ui(new Ui::EditAddressDialog), mapper(0), mode(mode), mod... | [
"orestdrag@gmail.com"
] | orestdrag@gmail.com |
f5f4f46be7ec83197917f1674c0bfb19646bc7d8 | a336a962fb30d9069c6b05de329f8e91dfd327a5 | /muduo/base/ThreadPool.cc | 1bc2a54dd1c9c51c1594426712d6ece28d246f19 | [] | no_license | lkkey80/telnetServ | 03891c7a3e7bd0132c0c3728d0bb3cf361f49359 | 214a66b49eecc71d0f0408de6e2bbe9d115f683f | refs/heads/master | 2021-06-14T03:56:34.660830 | 2017-04-01T11:35:45 | 2017-04-01T11:35:45 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,054 | cc | // Use of this source code is governed by a BSD-style license
// that can be found in the License file.
//
// Author: Shuo Chen (chenshuo at chenshuo dot com)
#include "muduo/base/ThreadPool.h"
#include "muduo/base/Exception.h"
#include <boost/bind.hpp>
#include <assert.h>
#include <stdio.h>
using namespace muduo;
... | [
"bao_z_h@163.com"
] | bao_z_h@163.com |
c91dcac661942bb544e304a5fec327762f92460d | ca03529a51c686298f6a398a2a1da21ad817c298 | /16/16.cpp | a2988a1e79f610471e90c36a4ddef83a8ac34ce9 | [] | no_license | whyando/advent-of-code-2020 | 8af465a212bf78c2c8667c8344e69fdfe4765b20 | 65cc3178c70d7ae75719fc37aa958908f7a5b1a0 | refs/heads/main | 2023-02-03T05:42:55.367974 | 2020-12-24T11:02:05 | 2020-12-24T11:02:05 | 318,898,078 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,081 | cpp | #include <bits/stdc++.h>
using namespace std;
int N = 20;
struct Target {
string name;
int a1;
int b1;
int a2;
int b2;
};
vector<int> ans;
void f(const int i, const vector<int> &p, const vector<bool> &used, const vector<vector<bool>> &A) {
if(i == N) {
cout << "!!!" << endl;
... | [
"justinauger@gmail.com"
] | justinauger@gmail.com |
e42bb6fa0a9a1393520d65205340e878adf08d73 | 56ce6e8a87aecfc05a445fea899a1985d8679c04 | /Mediator_Test.cpp | 18a7a7c1342b647eb8930e6b6ebf01776cd493fa | [] | no_license | frankyzf/designpattern | 8ee38cce2d37f22eab795e40a8cd589ca92e1d73 | e3d0c28dfd52c4c290cc7500b4752ad9495a10f3 | refs/heads/master | 2021-01-10T11:44:36.539970 | 2017-08-30T04:00:08 | 2017-08-30T04:00:08 | 45,679,778 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 287 | cpp | //
// Created by feng on 12/25/15.
//
#include "Mediator.h"
int main(){
auto pm = new design::Mediator();
auto p1 = new design::ColledgeA();
auto p2 = new design::ColledgeB();
pm->Register("1", p1);
pm->Register("2", p2);
p1->Send("2", "mymsg");
return 1;
} | [
"frankyzf@gmail.com"
] | frankyzf@gmail.com |
50ea7e1b80e6b8348989c7cab3a6f30a5e5a0145 | ae84eb302cf28c065a7bdaa22c090b3a4f49d87b | /ServerKafka.cpp | d24fbaaae55ddde8d40a97c8c3dcdff7af102246 | [] | no_license | sunyea/kafka_cplus | 1b4c2fed78a86eb8bc8da7ddc582cc3096dae2d0 | 3428f9f1f775eb56956796d38e5556630d6b5b55 | refs/heads/master | 2020-03-27T01:00:31.012359 | 2018-08-27T06:18:06 | 2018-08-27T06:18:06 | 145,674,270 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,926 | cpp | //
// Created by liaop on 18-8-21.
//
#include <cstring>
#include "ServerKafka.h"
#include "json/cJSON.h"
ServerKafka::ServerKafka(string &hosts):Kafka(hosts) {
//
}
void ServerKafka::command(string &message, string &out_msg) {
//解析获取到的信息
cJSON *get_root, *action, *sessionid, *data;
get_root = cJSON_... | [
"7192506@qq.com"
] | 7192506@qq.com |
76aaf7992d750be7a4f8ecd121b9f655bd9e10b0 | 269a04c19a7ab053460a053c965ba5a7f1ee00e8 | /Enemy.h | 995b7c9fc72d99376065220cc564ef04e10013e3 | [] | no_license | abhishekpapanna/Qt-Game | a884f974eb896b2d90540e1ca49092f016d4e585 | 967bef7c9dbbe0f0e860679e3f1981d548d82636 | refs/heads/master | 2022-11-03T00:01:07.526019 | 2020-06-18T14:02:45 | 2020-06-18T14:02:45 | 273,117,909 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 303 | h | #ifndef ENEMY_H
#define ENEMY_H
#include <QGraphicsRectItem>
#include <QObject>
#include <QGraphicsItem>
class Enemy : public QObject, public QGraphicsRectItem{
Q_OBJECT
public:
Enemy(QGraphicsItem * parent=0);
public slots:
void move();
signals:
void gameend();
};
#endif // ENEMY_H
| [
"me@abhishek.cloud"
] | me@abhishek.cloud |
a19fa4cf2d8996613f426a4d2dcc84c89946f45b | ecbb256d79f324c6098becf14968394423009bc9 | /Runtime/MP1/World/CMetroidPrimeEssence.cpp | 36df76642b17e3e32c13b6339c71972fa413a3b3 | [
"MIT"
] | permissive | lioncash/metaforce | b166da36484ef3593455608c50f8f956c0821f4e | 6ff7e06c152d2f8600c1b0cc7c8d1a6995767d45 | refs/heads/main | 2023-05-13T01:57:06.717779 | 2021-06-05T05:31:10 | 2021-06-05T05:31:10 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 25,196 | cpp | #include "Runtime/MP1/World/CMetroidPrimeEssence.hpp"
#include "Runtime/CSimplePool.hpp"
#include "Runtime/CStateManager.hpp"
#include "Runtime/Collision/CCollisionActor.hpp"
#include "Runtime/Collision/CCollisionActorManager.hpp"
#include "Runtime/Collision/CGameCollision.hpp"
#include "Runtime/GameGlobalObjects.hpp"... | [
"antidote.crk@gmail.com"
] | antidote.crk@gmail.com |
9842eaa617aeb8ae0d9d0fafabd61e828f90756e | b237478786671f5cb99979c87042470ca7fe63d7 | /REM/Content/Water/Source/Runtime/Private/WaterBodyActor.cpp | 312a2b4528fa6707c190da5927858e1a49b2bc51 | [] | no_license | Dondo429/Project-Rem | 1c3666a3a4a74cb9973d91e5c2bb05be103c1118 | 3d8128b7ca262ed485e7755f4d1dcccd7f8960c1 | refs/heads/main | 2023-04-15T02:21:01.086590 | 2021-04-23T21:03:31 | 2021-04-23T21:03:31 | 336,398,758 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 50,884 | cpp | // Copyright Epic Games, Inc. All Rights Reserved.
#include "WaterBodyActor.h"
#include "UObject/UObjectIterator.h"
#include "EngineUtils.h"
#include "Landscape.h"
#include "Materials/MaterialInstanceDynamic.h"
#include "NavCollision.h"
#include "AI/NavigationSystemBase.h"
#include "AI/NavigationSystemHelpers.h"
#inc... | [
"78124495+Willie111111@users.noreply.github.com"
] | 78124495+Willie111111@users.noreply.github.com |
bd049359db3f3fd695a6fbc6a65025c3d9f8fdd3 | a943ecc0f1ea5367a315a9b7760f12b67c4fb21b | /rollerOpt_COBYLA_NEW/runLogs/Optimization8/2500/alphat | 0a3afc2e10e03c2a613c34fa8bafb09e272e8d4c | [] | no_license | Owbr3335/3M_Roller | d86e59fc8a8e174c793bffb63abdf118e57ad153 | 5136a1b84a674199acab2d11b111b61bef83e3bf | refs/heads/master | 2020-04-24T06:09:31.546146 | 2019-04-26T21:43:50 | 2019-04-26T21:43:50 | 171,755,246 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 119,697 | /*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: dev
\\/ M anipulation |
\*-----... | [
"owbr3335@colorado.edu"
] | owbr3335@colorado.edu | |
413eb5a1a077e3c5c3c2f1f107adf72b2d94c3c8 | 09fc720035785e014460dff88b5fb1115ba0e1da | /Game Source/menu.cpp | 0a5a0de02d0afa2b4d55c082c0be33586fde7296 | [] | no_license | rellena/GERMS2.01 | d0e59532009ce68e00a373bebf9276bda242ea63 | 0ddfccf5f412e68a60a7858e2bb1aa5a3440d436 | refs/heads/master | 2021-01-10T20:10:00.532551 | 2014-04-09T21:17:16 | 2014-04-09T21:17:16 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,437 | cpp | //menu.cpp
//class with global function to draw menu
//Author: Hao Vo
#include "gameinclude.h"
extern Point mouseP;
extern bool wasclicked_LB, ingame;
extern int screenheight, screenwidth;
extern player mainPlayer;
bool inMainMenu = true, inExitMenu, inLoadMenu, inOptionMenu, inGameMenu, startNewGame;
menu::menu()... | [
"vlhuynh99@gmail.com"
] | vlhuynh99@gmail.com |
961ca818ba9477e432caea2cd712fc031cfda6aa | 213d01663d6c5cdb8bd1f8330ab78c9e3b5acc39 | /openfstwin-1.2.6-src/openfst-1.2/src/include/fst/extensions/far/sttable.h | 9602c05853693103d0d20f1db6ca8d27ae4c4917 | [
"Apache-2.0"
] | permissive | Marouxet/CourseEDX-Microsoft-SpeechRecognition | dbc5295266319f3755d0078738198fa2e3d82e96 | 381775c7fbc0b0743215b5d939d24a2ed941caa3 | refs/heads/master | 2023-02-27T01:33:46.395624 | 2021-02-10T22:19:14 | 2021-02-10T22:19:14 | 335,151,591 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,271 | h | // sttable.h
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
/... | [
"marianoarouxet@gmail.com"
] | marianoarouxet@gmail.com |
6b3f94d6deab15acc321f5f6e15ad4cba2fa0581 | 16c832d440145ebac48dc12ccc0feea2602174c3 | /HEADERFILES/SetOmega.hh | 176e507909780b874693bc0b8a80d4d2426e8882 | [] | no_license | elmspace/Graphene_Grand_Canonical_Optimized | a8cf679e1355515f33a57fabc0906b403fbf8560 | 56b691cf7e2d772dae9b6749d450903d513c4aa5 | refs/heads/master | 2020-12-12T04:20:57.822707 | 2016-06-29T03:13:10 | 2016-06-29T03:13:10 | 39,398,355 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,023 | hh | void omega(std::vector<double_array> &w, double_array &chiMatrix){
int i,j,k;
int ii,jj,kk;
double junk;
double eps =0.001;
std::vector<double_array> phi_w;
for(int n=0; n<ChainType; n++){
phi_w.push_back(double_array(Nx,Ny,Nz));
}
//++++++++++++++++++++++++++++++++++++++++++++++++++++++
... | [
"ash.dehghan@gmail.com"
] | ash.dehghan@gmail.com |
67dcdf278f1694f7ddcb9e65fec044a5b85bba47 | 5d75749ca150cb226c3a6785e63bc17c5b0031c3 | /fishtank/lib/script/debug-support.hpp | 72b6ef71a61d78c69d6257cfc0ec99558de88f5b | [] | no_license | dtbinh/fishtank | 1695152aae3cdcc75213acfe265613404d1bcb07 | fd3ed6b192f03c3a287481964dc6dfa5fae37e02 | refs/heads/master | 2021-01-17T05:57:27.585169 | 2011-08-16T09:50:22 | 2011-08-16T09:50:22 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 228 | hpp | #ifndef __INCLUDED_LIB_SCRIPT_DEBUG_SUPPORT_HPP__
#define __INCLUDED_LIB_SCRIPT_DEBUG_SUPPORT_HPP__
#include <luabind/scope.hpp>
void debug_register_with_lua(lua_State* L);
#endif // __INCLUDED_LIB_SCRIPT_DEBUG_SUPPORT_HPP__
| [
"Giel@bb1b31de-baa9-489e-af1c-03370f2903b8"
] | Giel@bb1b31de-baa9-489e-af1c-03370f2903b8 |
bb8660476d7dba7a23cbaf6b4e1f16e506be2c76 | e014d07eed707287a3511ee26830b391802bc7bc | /UTILS/logging.cpp | cf0730cb1d61ae454289d4b26e3565d2e7fa1629 | [] | no_license | Lorekin/PHACK-Recode-v2 | 729600cc2a64b3b4a30f0cf4e4f9bfe4d69dacac | 65ea0584a16672c11735f206d7121048e3df468e | refs/heads/master | 2020-09-03T03:56:33.005465 | 2019-06-15T10:45:19 | 2019-06-15T10:45:19 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 649 | cpp | #include "../MISC/includes.h"
namespace UTILS
{
void Log(float message)
{
Log(std::to_string(message));
}
void Log(std::string message)
{
CreateDirectory("C:\\trashhack Logs", NULL);
char file_path[MAX_PATH];
sprintf(file_path, "C:\\trashhack Logs\\%s.log", __DATE__);
std::fstream file;
static bo... | [
"34896898+PIZYY@users.noreply.github.com"
] | 34896898+PIZYY@users.noreply.github.com |
13dc3165264887321274601afac7cbb0c84e17d4 | 16b4d1402286d8553442f9f033ef1e4460881c52 | /2 курс/3 семестр/ООП 1/1.cpp | 555a03d740e8986880abf4fd113938d1fa5f5a4f | [] | no_license | IlyaDzh/SevSU | 4725df428e5ff4506e317904e93fbaf559ec2580 | 305afe1809278d4f8a57fd90fd9b2535dd7447c1 | refs/heads/master | 2021-08-10T05:48:00.342476 | 2021-06-24T13:02:11 | 2021-06-24T13:02:11 | 193,796,303 | 0 | 2 | null | null | null | null | WINDOWS-1251 | C++ | false | false | 5,074 | cpp | #include <fstream>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <time.h>
#include <iomanip>
#include <conio.h>
#include <iostream>
using namespace std;
struct elem
{
int number;
string name;
elem *next, *prev;
};
class product
{
private:
elem * head, *tail;
public:
product() : hea... | [
"ilay00@mail.ru"
] | ilay00@mail.ru |
c3149879fdc2d5bda1e3f45b5789151513c25cbd | 9f53efd271528e61615299b951e267da54090a7f | /src/layer/LogSoftmax.hpp | 350570002efab09f67fde091d222fb49cf165a13 | [
"Apache-2.0"
] | permissive | kenk42292/mochi | b2b65cfe40998faac384353c39be93e9372d5298 | 79e65bc669812b37b5a38975fcada23b95206ac5 | refs/heads/master | 2020-12-24T06:37:43.760509 | 2017-01-18T11:10:08 | 2017-01-18T11:10:08 | 63,491,157 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 278 | hpp | /*
* LogSoftmax.h
*
* Created on: Dec 18, 2016
* Author: ken
*/
#ifndef LAYER_LOGSOFTMAX_HPP_
#define LAYER_LOGSOFTMAX_HPP_
#include "Layer.hpp"
class LogSoftmax: public Layer {
public:
LogSoftmax();
virtual ~LogSoftmax();
};
#endif /* LAYER_LOGSOFTMAX_HPP_ */
| [
"kenk42292@gmail.com"
] | kenk42292@gmail.com |
e39d59461ab70069c35670bac952aeb207bcf431 | 8f4e0bff5a6cb1e72a76a789cd5ae6dea6992a0d | /SwappingPairsMakeSumEqual.cpp | 6364eb47365fb1a69a386796a8939de8060392dc | [] | no_license | anandaditya444/GEEKSFOEGEEKS | 8c58ee0c2f12c80318a5575259918b464f3846d3 | be2d5cec4d16e927fa143197b528c5266a0cdd6c | refs/heads/master | 2020-05-09T18:07:14.304593 | 2019-08-25T16:03:28 | 2019-08-25T16:03:28 | 181,328,043 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 668 | cpp | #include <bits/stdc++.h>
using namespace std;
#define int long long int
int32_t main()
{
int t,n,m;
cin>>t;
while(t--)
{
cin>>n>>m;
int a[n+1],b[m+1];
int sum1 = 0,sum2 = 0;
for(int i=1;i<=n;i++)
{
cin>>a[i];
sum1 += a[i];
}
for(int i=1;i<=m;i++)
{
cin>>b[i];
sum2 += b[i];
}
int fl... | [
"anandaditya444@gmail.com"
] | anandaditya444@gmail.com |
ae060e54041873e76cbdef3b9ce1d7946d98f317 | 2ae0b8d95d439ccfd55ea7933ad4a2994ad0f6c5 | /src/plugins/intel_cpu/src/transformations/snippets/x64/op/brgemm_copy_b.cpp | a1e46db97adad198b1125e37a031a07e931673e9 | [
"Apache-2.0"
] | permissive | openvinotoolkit/openvino | 38ea745a247887a4e14580dbc9fc68005e2149f9 | e4bed7a31c9f00d8afbfcabee3f64f55496ae56a | refs/heads/master | 2023-08-18T03:47:44.572979 | 2023-08-17T21:24:59 | 2023-08-17T21:24:59 | 153,097,643 | 3,953 | 1,492 | Apache-2.0 | 2023-09-14T21:42:24 | 2018-10-15T10:54:40 | C++ | UTF-8 | C++ | false | false | 5,452 | cpp | // Copyright (C) 2018-2022 Intel Corporation
// SPDX-License-Identifier: Apache-2.0
//
#include "snippets/itt.hpp"
#include "snippets/utils.hpp"
#include "snippets/op/buffer.hpp"
#include "brgemm_copy_b.hpp"
#include "utils/general_utils.h"
using namespace ov;
intel_cpu::BrgemmCopyB::BrgemmCopyB(const Output<Node>... | [
"noreply@github.com"
] | openvinotoolkit.noreply@github.com |
47c7eb58e62c173856558078b432a81cd090a47b | 6f6987664fe73047f2d10b1b2098741f381c1615 | /modules/Eigen/src/classification.cpp | 78382f7ac69675048b4ee890ad2b87ba78d4e2bd | [] | no_license | peter-frentrup/pMath | 3f4d8b6dfa0ca3d775a3f536df53fc3dfe6ff46d | 8605468cbe547633551e8a77e051fe762bbcd0d9 | refs/heads/master | 2023-08-20T07:31:09.494321 | 2023-08-13T13:35:42 | 2023-08-13T13:35:42 | 221,002,018 | 10 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,865 | cpp | #include "classification.h"
using namespace pmath;
using namespace pmath4eigen;
extern pmath_symbol_t p4e_System_Complex;
extern pmath_symbol_t p4e_System_List;
bool MatrixKind::get_matrix_dimensions(
const Expr &matrix,
size_t &rows,
size_t &cols
) {
if(matrix.is_packed_array()) {
... | [
"peter_frentrup@gmx.de"
] | peter_frentrup@gmx.de |
7acf4e4191b980af5953c75579d2696648b9b7d5 | 3b38c2431fcc4284a84684072ad15abc7f178387 | /flyingObject.h | c37496211d0278759f1767d0cede9a9577541d2a | [] | no_license | critterwilson/asteroids | 9bb1516d6989e0bf82bf5a582f98301b12fbf7f9 | 507a716db9504ca2f78877bcddb54a8e9cde954e | refs/heads/master | 2020-04-02T19:01:55.100607 | 2018-10-25T18:44:30 | 2018-10-25T18:44:30 | 154,720,324 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,300 | h | #ifndef flyingObject_h
#define flyingObject_h
#include <stdio.h>
#include "velocity.h"
#include "point.h"
using namespace std;
class FlyingObject
{
public:
/*********************************************
* Constructor: FlyingObject
* Description: Makes any flying object alive
**********************... | [
"wil15090@byui.edu"
] | wil15090@byui.edu |
f8cb5e8ebd11045d95af8c9d66820a41c9270d8e | 2900f4780da15b01010598156336118d0c3aca61 | /UVA/694 - The Collatz Sequence.cpp | 980f30a8725ba6b7a4f6ec862f458548610ece3f | [] | no_license | nurislam03/Online_Judge-Competitive_Programming | 4940d3febe1d5815843029cea046cff158ce8bb4 | dc581ad9c1864bcd69968c628de48e6667b4fe2f | refs/heads/master | 2022-09-02T12:03:54.232402 | 2022-08-28T09:47:02 | 2022-08-28T09:47:02 | 118,945,957 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 749 | cpp | #include<iostream>
#include<cstdio>
#include<cstring>
#include<cmath>
#include<algorithm>
using namespace std;
int main()
{
long long A,L,tC = 0;
while(scanf("%lld %lld",&A,&L) == 2)
{
if(A < 0 && L < 0) break;
printf("Case %lld: A = %lld, limit = %lld, number of terms = ",++tC,A,L);
... | [
"nurislam0333@gmail.com"
] | nurislam0333@gmail.com |
a26844572d67b84bc2e245e0a56b41fd01b9a903 | c6060cc96a6ebc798309bb43f7c4ceac906b5316 | /Vim/ms/SynonymTree.cc | a1ad3d951d42cd356792d487d627a3627522f301 | [] | no_license | brycesandlund/CompetitiveProgramming | f05de33922a5bf01740e93c0266d72a49d6c8469 | 9d82a269c926c47c149bfff1ec8c90b8f80f5da1 | refs/heads/master | 2020-08-05T12:03:09.071620 | 2018-10-04T15:57:18 | 2018-10-04T15:57:18 | 23,522,788 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 927 | cc | #include <iostream>
#include <vector>
#define M 1000000007
using namespace std;
typedef long long ll;
typedef vector<ll> vi;
ll powmod(ll a, ll b) {
if (b == 0) return 1;
if (b == 1) return a % M;
ll t = powmod(a, b/2);
t = (t*t)%M;
if (b % 2) t = (t*a)%M;
return t >= 0 ? t : t + M;
}
int m... | [
"bcsandlund@gmail.com"
] | bcsandlund@gmail.com |
997b7aa2e55f02a8de2b23b64015f51874e27498 | 730974db261236864c1c43de21fa49908e715db4 | /xdf_demo/xdf_demo.cpp | 39ba0e856e7f421e51ebfa2c1b4fb705326c2e9c | [] | no_license | dev-utils/http-server-demo | c3d15f047eb21574ecb7f6d71ccc197723486d74 | ae96f577ca28a72303e687c927f77854e3741aa3 | refs/heads/master | 2021-05-16T19:15:33.524891 | 2020-03-27T03:56:12 | 2020-03-27T03:56:12 | 250,435,255 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,174 | cpp | #include "mongoose.h"
#include <string>
static const char *s_http_port = "8001";
static struct mg_serve_http_opts s_http_server_opts;
static void ev_handler(struct mg_connection *nc, int ev, void *p) {
if (ev == MG_EV_HTTP_REQUEST) {
http_message *mg = (struct http_message *) p;
std::string req_uri = "";
if ((... | [
"yanghuatao@xdf.cn"
] | yanghuatao@xdf.cn |
42e0ad3139539e7297becfbc5e05c03917bf5998 | 0f880066572b87d5d965c88320d34d355445e5e1 | /VECTAR10.cpp | 0643181e2edca59519e8f4804aea827ae15a8289 | [] | no_license | Ironman0505/spoj | 1ecf96b5af1875211fa2ff5bda56f3f5192178e6 | d00c13f2230835345634d72e720623889ce5e343 | refs/heads/master | 2022-01-28T03:19:47.775711 | 2018-10-23T10:09:46 | 2018-10-23T10:09:46 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 511 | cpp | #include <iostream>
#include <vector>
#include <string>
#include <cmath>
using namespace std;
#define SIZE 1000001
int main(){
int n;
vector<int> ans(SIZE,0);
ans[1] = 1;
ans[2] = 2;
ans[3] = 2;
int nextpow = 4,pow = 1;
for (int i = 4; i < SIZE; ++i)
{
if(i==nextpow)
{
pow = nex... | [
"prateekchandan5545@gmail.com"
] | prateekchandan5545@gmail.com |
f82ba259c03533cd81d95c26a3c1a1f401254234 | 1c6e807118536b7be5e592c81bb6b5892954f16d | /pinocchioQB.cpp | a0564c69902148c84a68e51490a6cd3825e58398 | [
"MIT"
] | permissive | Meraj/PinocchioSql | 11ecafe308f5db72c5b4ff069bf03f3f63d4532b | 208d5f8527c3e35973cdd216a253613a79675dd0 | refs/heads/main | 2023-04-03T05:34:19.892787 | 2021-04-14T18:19:35 | 2021-04-14T18:19:35 | 338,370,716 | 5 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 19,521 | cpp | //
// Created by meraj on 2/12/21.
//
#include "pinocchioQB.h"
#include <iostream>
#include <pqxx/pqxx>
/**
* pinocchioQB constructor
*/
pinocchioQB::pinocchioQB(std::string connect) {
try {
this->db = new pqxx::connection(connect);
if (!this->db->is_open()) {
std::cout << "CAN NOT... | [
"Meraj.sheikhhaa@gmail.com"
] | Meraj.sheikhhaa@gmail.com |
79f1feca958e08bd3f4eecf52745099a37ce389d | e1b9cfdad870ea3556b7ed49ebaef3b80f8e308b | /include/mw/models/tx/Transaction.h | 4a1d22c7d753aceb9016162b7136ff813063d09b | [
"MIT"
] | permissive | Librechain/libmw-ltc | 353821d343af5c8c7c199687c3f60f54f4d82278 | 21e5b96024e09bb8a69c040704d5e4f2b8616813 | refs/heads/master | 2023-01-04T22:15:20.249574 | 2020-11-06T13:04:10 | 2020-11-06T13:04:10 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,740 | h | #pragma once
// Copyright (c) 2018-2019 David Burkett
// Distributed under the MIT software license, see the accompanying
// file LICENSE or http://www.opensource.org/licenses/mit-license.php.
#include <mw/common/Macros.h>
#include <mw/crypto/Crypto.h>
#include <mw/models/crypto/Hash.h>
#include <mw/models/crypto/Big... | [
"davidburkett38@gmail.com"
] | davidburkett38@gmail.com |
5ada56e6a6667c0c05cdcafed4e4313cd202f017 | a472af6f116a0c2bf4bce858a57a92a905f712d3 | /arnaldi/estem/eth.ino | 5491b8fe90e1af1b1ca9bb363de1aff492ad1c7b | [] | no_license | sxtoE/estem | 53b4bbb096d1311f1a4b02b9cb11d98d692c0b0c | 4b3730ab098a5a99d4cc40d45156604d69c0ddfc | refs/heads/master | 2020-03-20T01:24:12.971458 | 2018-11-23T19:30:12 | 2018-11-23T19:30:12 | 137,074,801 | 1 | 2 | null | 2018-06-12T13:36:12 | 2018-06-12T13:20:50 | null | UTF-8 | C++ | false | false | 2,299 | ino | /*
* Conexión hardware:
* Arduino mega | Ethernet shield
* pin 50 | so
* pin 51 | st
* pin 52 | sck
* pin 53 | cs
*
*
*/
#include "eth.h"
void eth_inicializarEthernetShield() {
Ethernet.begin(mac,myIP);
//Ethernet.begin(mac);
Serial.println("Estacion Meteorologica");
Serial.println("-=-=-=-=-... | [
"lharnaldi@gmail.com"
] | lharnaldi@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.