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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
7f89b3fcb65bc173e543671fa9bde639650dce28 | ccf9b152ef277495ad927b51e8c22c675e9f883b | /Interview_Practice/Linked Lists/removeKFromList.cpp | 1dc6c0ce8d21ce7d0e9590c4e39de0ac89416509 | [] | no_license | Andruxa0125/CodeFights | 62025d2e1ff80fc3413d1268c08ebbf395f74aac | c17caaeeebffca262c2a6a9d0b2f28503947a810 | refs/heads/master | 2021-09-10T21:36:39.091010 | 2018-04-02T17:52:25 | 2018-04-02T17:52:25 | 125,555,998 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 654 | cpp | // Definition for singly-linked list:
// template<typename T>
// struct ListNode {
// ListNode(const T &v) : value(v), next(nullptr) {}
// T value;
// ListNode *next;
// };
//
ListNode<int> * removeKFromList(ListNode<int> * l, int k)
{
ListNode<int>* start = l;
ListNode<int>* prev = new ListNode<int>();
... | [
"andruxa0125@gmail.com"
] | andruxa0125@gmail.com |
3f4bfa289bc4b5ef8b579d261e2cc7c62b7a7edf | 985cd2acd4e33cfe3a7a3f7a8244fd300165b924 | /iterative_preorder.cpp | cc6c5f625e860ab7c21eaf9919e5f86aeddb07cc | [] | no_license | pkroy328/prashant_code_library | 2f25b7d75b6cd2f9d5646f15cc6784a1e2b7eb81 | c9c3244bbc386b75036079cc4c92df12ae3402b1 | refs/heads/main | 2023-06-04T21:52:16.842166 | 2021-06-27T18:50:08 | 2021-06-27T18:50:08 | 380,814,617 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,725 | cpp | /*
The traversal operation is a frequently used operation on a binary tree. This operation is used to visit each node in the tree exactly once
A full traversal on a binary tree gives a linear ordering of data in the tree . This is the iterative preorder tree traversal algorithms
*/
#include <bits/stdc++.h>
usin... | [
"noreply@github.com"
] | pkroy328.noreply@github.com |
728c2fb264c157b0065a532265f7d046dfe257ce | a02c2866eea844057ea6750d44ecedac8ef53dca | /ClassExamples/IoT-AR/NodeMCU_Board/ButtonLED/ButtonLED.ino | c861d7e3f73238804e5fba6d229a8bdee23438e8 | [] | no_license | sarwansingh/IoT | a076f7b6a5fcd6557a59c88712fa3cf032178a9e | 290970ea6d5d1c17a5fcffcd804d9d2065273a53 | refs/heads/master | 2023-07-18T16:44:23.650685 | 2021-09-24T09:04:36 | 2021-09-24T09:04:36 | 125,970,428 | 1 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 810 | ino |
// constants won't change. They're used here to set pin numbers:
const int buttonPin = 16; // the number of the pushbutton pin
const int ledPin = 2; // the number of the LED pin
// variables will change:
int buttonState = 0; // variable for reading the pushbutton status
void setup() {
//... | [
"sarwan_singh@yahoo.com"
] | sarwan_singh@yahoo.com |
da8bda37f4028d8803ce565df028d9ec6e5b8c41 | 176eb09d1895c3e18dc27dc5bac53c1ff2fa9245 | /leach/leach.ino | 067d1ef2e58b5b3c32c5ae2ea46c988b29eb1b02 | [] | no_license | giripranay/Embeddedsystems | bc558037d28571d0ec737b8540731ca1500860d0 | af161ddac2d3cdc0042f3a904bc7e0b19599cec0 | refs/heads/master | 2020-07-30T23:01:50.456227 | 2019-09-23T15:49:22 | 2019-09-23T15:49:22 | 210,389,515 | 0 | 0 | null | 2019-10-22T02:24:12 | 2019-09-23T15:27:47 | C++ | UTF-8 | C++ | false | false | 2,809 | ino | #include <ESP8266WiFi.h>
#include <WiFiUdp.h>
#define MASTER // Comment this define to compile sketch on slave device
const int8_t ledPin = LED_BUILTIN;
const char* const ssid = "green"; // Your network SSID (name)
const char* const pass = "12345678"; // Your network password
const uint16_t localPort = 54321; // Lo... | [
"giripranay.k@dvara.com"
] | giripranay.k@dvara.com |
48d56141115acf7df1a9ca41e3c616140aab453f | 262d93a5a33237268c90788ff141c4504e7f18d3 | /src/functions/div.cpp | 6c27fad24785c0b3056b1984068e4227726e5afa | [] | no_license | chadac/cppgp | 41240b634181252e525e19332a61aa9931daa37d | 24d797d762d3c3b04280970ef83a3518f162069d | refs/heads/master | 2021-06-01T03:25:51.157478 | 2016-04-04T22:12:59 | 2016-04-04T22:12:59 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 402 | cpp | #include "div.h"
gpf_div = new FunctionDiv();
FunctionDiv::FunctionDiv() : Function(2, GPTYPE_REAL) {}
int FunctionDiv::get_arg_type(int index) {
return GPTYPE_REAL;
}
GPValue FunctionDiv::evaluate(GPValue* args) {
double arg1 = *((double*)(args[0]->value));
double arg2 = *((double*)(args[1]->value));
doubl... | [
"chad-crawford@utulsa.edu"
] | chad-crawford@utulsa.edu |
87ad8882e20fa6a698d0eb09f83b95d88fb46b30 | da3459735ac22f4dcee124a25d5527bad909fca5 | /src/qt/rpcconsole.cpp | eb3b37e981b544aeadb8a14f80c38878597b3d19 | [
"MIT"
] | permissive | bitfawkes/sannacoin | 0cb15ac6fa3738c797844606b0b3f7d1d0d4d990 | 94ae22141a183d5ae1442e8589fc55b18136ebb3 | refs/heads/master | 2021-01-13T05:25:52.997635 | 2017-02-09T13:47:08 | 2017-02-09T13:47:08 | 81,370,249 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,287 | cpp | #include "rpcconsole.h"
#include "ui_rpcconsole.h"
#include "clientmodel.h"
#include "bitcoinrpc.h"
#include "guiutil.h"
#include <QTime>
#include <QTimer>
#include <QThread>
#include <QTextEdit>
#include <QKeyEvent>
#include <QUrl>
#include <QScrollBar>
#include <boost/tokenizer.hpp>
#include <openssl/crypto.h>
//... | [
"bitfawkes@gmail.com"
] | bitfawkes@gmail.com |
b736caaf70e4776819b343281a4b9e18b25af284 | 8fabbfa6ca7763588554073c406f50a2a19a710d | /HelloDave.cpp | 0ab1fb40a1cb450937ba856bc76793b57159d843 | [] | no_license | SamiSousa/EC327 | c8e85d7634fd79d894ac0100af76d9a9d445e705 | 423151f98aedcac67e46aaf3ef0277b4f1aa4949 | refs/heads/master | 2016-08-12T13:26:05.806027 | 2015-10-01T05:38:08 | 2015-10-01T05:38:08 | 43,347,103 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 250 | cpp | #include <iostream>
#include <cstdlib>
using namespace std;
int main()
{
//testing Dev-C++
//press F9 to compile and run in one go
cout << "Hello Dave" << endl;
//this for seeing result
system("PAUSE");
return 0;
}
| [
"dr.wisper@gmail.com"
] | dr.wisper@gmail.com |
fa77b9a5ded5b70b26211eb1ccb699d3b9cc1052 | e6652252222ce9e4ff0664e539bf450bc9799c50 | /d0706/7.6/source/厦门一中黎学丞/ah.cpp | e1a9f4909b5819351ad674fcdd03a1b8e91c57ed | [] | no_license | cjsoft/inasdfz | db0cea1cf19cf6b753353eda38d62f1b783b8f76 | 3690e76404b9189e4dd52de3770d59716c81a4df | refs/heads/master | 2021-01-17T23:13:51.000569 | 2016-07-12T07:21:19 | 2016-07-12T07:21:19 | 62,596,117 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,664 | cpp | #include<iostream>
#include<cstdio>
#include<cstdlib>
#include<algorithm>
#include<cstring>
#define ll long long
using namespace std;
int i,j,k,m,n,s,t;
int read()
{
int x=0;char ch=getchar();
while (ch<'0'||ch>'9') ch=getchar();
while (ch>='0'&&ch<='9') {x=x*10+ch-'0';ch=getchar();}
return x;
}
int ... | [
"egwcyh@qq.com"
] | egwcyh@qq.com |
35a28677b2574911084d32ca974c7d7019cd68a1 | 00d4aca628e46fc06c597c19ba0d919a580815eb | /core/Processor/ProcessBase.cxx | be2ce1c4971a5aac0dc53c3600d60bdfe0a3fb7b | [] | no_license | yeonjaej/LArCV | a9f1d706c12f1e183378e38268e2a4ee3b9060d9 | c92117bffea0c8ec89cff305e3def5385497e805 | refs/heads/master | 2020-03-25T00:58:25.318085 | 2016-08-24T20:15:19 | 2016-08-24T20:15:19 | 143,215,231 | 0 | 0 | null | 2018-08-01T22:37:08 | 2018-08-01T22:37:08 | null | UTF-8 | C++ | false | false | 881 | cxx | #ifndef PROCESSBASE_CXX
#define PROCESSBASE_CXX
#include "ProcessBase.h"
namespace larcv {
ProcessBase::ProcessBase(const std::string name)
: larcv_base ( name )
, _proc_time ( 0. )
, _proc_count ( 0 )
, _id ( kINVALID_SIZE )
, _profile ( false )
, _fout ( nullptr )
{}... | [
"kazuhiro@nevis.columbia.edu"
] | kazuhiro@nevis.columbia.edu |
373c2840a0fc79187797b27ae66990064b109dd6 | 1ee90596d52554cb4ef51883c79093897f5279a0 | /Sisteme/[C++] Global Chat fara bug/src/binary/userinterface/PythonChat.cpp | 8f15460057b754dc5dd726adc87c97e73be0d179 | [] | no_license | Reizonr1/metin2-adv | bf7ecb26352b13641cd69b982a48a6b20061979a | 5c2c096015ef3971a2f1121b54e33358d973c694 | refs/heads/master | 2022-04-05T20:50:38.176241 | 2020-03-03T18:20:58 | 2020-03-03T18:20:58 | 233,462,795 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 3,292 | cpp | // search this
void CPythonChat::UpdateViewMode(DWORD dwID)
// after
pChatLine->Instance.Update();
// add this
#ifdef ENABLE_GLOBAL_CHAT
if(pChatLine->ImageInstance)
pChatLine->ImageInstance->SetPosition(pChatSet->m_ix, pChatSet->m_iy + iHeight + 2);
#endif
// search this
void CPythonChat::UpdateEditMode(DW... | [
"59807064+Reizonr1@users.noreply.github.com"
] | 59807064+Reizonr1@users.noreply.github.com |
34fa439c3ed8ed751371c9577f6771545bbc99d3 | 93b83850891b8445ebab39d81da8fd1abdcd9358 | /tablemodel.h | 24b575892fb61c6be09c90c30fdb4a906d7a2f1a | [] | no_license | stevexu/casher-app | a00d00afba268ccf5ff794c7eff9fbc2c5fc61dc | f0ff2ed8102eb8968bd88363f7f763ad1dbb798a | refs/heads/master | 2021-01-18T16:22:52.983233 | 2009-10-29T16:40:04 | 2009-10-29T16:40:04 | 354,257 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,217 | h | #ifndef DEPTABLEMODEL_H
#define DEPTABLEMODEL_H
#include <QAbstractTableModel>
#include <qlist.h>
#include <qvector>
class QStringList;
typedef QVector<QString> TableRow;
typedef QList<TableRow> TableRecords;
typedef TableRow TableHeader;
class TableModel : public QAbstractTableModel
{
Q_OBJECT
public:
TableMode... | [
"xy@.(none)"
] | xy@.(none) |
7208812ace4f7a2d45f417a66cdee2da1204ddbb | 14cc4da540a1bec830aaa5d1f822785195ce632c | /ip2016/image.h | 69e836d60fa135e23ece2b6ccc38002a285c6f02 | [] | no_license | Dannnno/RealTimeHatching | 0cc94d105c9d79ef0c7dc1cc42f1abcd9ee933b7 | 699cbb80daf971e7388848b17fad0190d07f3a80 | refs/heads/master | 2016-09-12T20:24:00.132760 | 2016-05-11T22:30:46 | 2016-05-11T22:30:46 | 56,352,838 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,302 | h | class Image;
#ifndef IMAGE_H
#define IMAGE_H
#include <fstream>
#include "common.h"
using namespace std;
/*
* definitions for channel values. for example,
* image->getPixel(0,0,GREEN);
* gets the green value at pixel 0,0 in image.
*/
#define RED 0
#define GREEN 1
#define BLUE 2
/*
* struct to contain an en... | [
"samuel.l.warren@gmail.com"
] | samuel.l.warren@gmail.com |
80dd3909f27f40b83729bab1b975f2c3e655358c | c863dc53ac78d3634eb9ef164ae4cb5d93726a04 | /openFrameworks/game/Bush.h | 8fb0cd7dcc6d2ff2b6b3c398279b2c21847bfa91 | [] | no_license | atbaird/CSE5390_GraphicsLibraryStuff | 543dfe694846e8d9c3595a295a41f4e1fbea3caa | a9bc68ed61f1193e8e850cb3eb84838fd0b8b53b | refs/heads/master | 2020-12-30T10:10:49.131407 | 2014-06-30T17:54:29 | 2014-06-30T17:54:29 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 290 | h | #include "Animation.h"
#ifndef BUSH_H
#define BUSH_H
class Bush {
public:
Bush();
~Bush();
void setLocation(float, float);
void draw();
void setScale(float, float);
float getYSize();
float getXSize();
float getX();
float getY();
private:
Animation anim;
float x, y;
};
#endif | [
"atbaird@smu.edu"
] | atbaird@smu.edu |
3fb74d584e2e162f0fb26b540dfc2ebe390cef65 | cecfc49fb9254498c3b885ae947cd0d9339f2f9a | /pro.cpp | bdf1b7b505b2bd70d31d559f7e06b188441fcb24 | [
"Unlicense"
] | permissive | t3nsor/SPOJ | f6e4755fe08654c9a166e5aaf16f6dcbb6fc5099 | 03145e8bf2cefb3e49a0cd0da5ec908e924d4728 | refs/heads/master | 2023-04-28T19:04:32.529674 | 2023-04-17T23:49:49 | 2023-04-17T23:49:49 | 24,963,181 | 279 | 130 | Unlicense | 2020-10-30T00:33:57 | 2014-10-08T22:07:33 | C++ | UTF-8 | C++ | false | false | 419 | cpp | // 2009-05-05
#include <iostream>
#include <set>
using namespace std;
int main()
{
int N,n,x;
scanf("%d",&N);
long long res=0;
multiset<int> S;
while (N--)
{
scanf("%d",&n);
while (n--)
{
scanf("%d",&x);
S.insert(x);
}
multiset<int>::iterator begin=S.begin();
multiset<int>::iterator end=S.end();... | [
"bbi5291@gmail.com"
] | bbi5291@gmail.com |
4e4592cbe92f46f7a8fb6f9980b624b599219b83 | 50a52a038a9ba758dc0b413b182ee402c8cd8b93 | /vn-spoj/baove/main.cpp | 8ebe235fe5ad89b86a22c799999d82909329a207 | [] | no_license | tranvansang/online-judge | 233572fc74b8e96e27376e21558cb0122f5419ba | 368983a461ee71225d8e41d27d21accf45245566 | refs/heads/master | 2022-07-06T07:25:38.194765 | 2022-06-22T01:23:11 | 2022-06-22T01:23:11 | 91,287,489 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,046 | cpp | #include <bits/stdc++.h>
using namespace std;
#define PII pair<int,int>
#define VI vector<int>
#define For(i,a,b) for(auto i = (a); i < (b); i++)
#define rep(i,n) For(i,0,(n))
#define fi first
#define se second
#define mp make_pair
#define pb push_back
#define all(a) (a).begin(), (a).end()
#define trav(it,x) for(auto i... | [
"me@transa.ng"
] | me@transa.ng |
f85d2007389739f77e74a542550486b8035fda8c | 9d6f8dfe3f74390e35d43f2f6d072a71d2237828 | /grid_path.cpp | c35bb72a667424cbc94340aceb875bbddfd7c826 | [] | no_license | wanghw1003/EBAStar | 35bbe1d98c124b72c513d87cb840490ff711f015 | 814075cd25c2ac4c25f9d59b0d40c3d335abc60e | refs/heads/master | 2023-07-17T14:12:55.912465 | 2021-08-30T11:15:14 | 2021-08-30T11:15:14 | 401,306,381 | 6 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 3,863 | cpp | /*********************************************************************
*
* Software License Agreement (BSD License)
*
* Copyright (c) 2008, 2013, Willow Garage, Inc.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the ... | [
"210271138@qq.com"
] | 210271138@qq.com |
89fb4e6fe00e5a5ebc6c51a5df1a5b1c08d61ebe | 09d881298342dbb1be3f83e5f314e2d5946969b9 | /cc3k/character.h | ce0972ed5903d25373296ffe77f0471d5da0d73f | [] | no_license | BryanSun-24/cc3k | cf88eb930d675c33f4fa3c2dbe22ac34557e0288 | cc0e67e0ffb7ac4de9fc00d283eaa321f913755b | refs/heads/master | 2022-12-04T02:49:43.804765 | 2020-08-16T03:28:55 | 2020-08-16T03:28:55 | 285,062,167 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 587 | h | #ifndef CHARACTER_H
#define CHARACTER_H
#include <string>
#include "state.h"
class Character: public State {
int health;
int attack;
int defense;
int gold;
bool Alive;
std::string race;
public:
Character(int x, int y, int health, int attack, int defense, int gold, std::string race);
... | [
"bryant.kai1227@gmail.com"
] | bryant.kai1227@gmail.com |
9f0c3f208f91128db39318228a838f3b0f09c77e | dd39c678bfb14fc437a0469f95c37183bdbb19a4 | /src/src/vocation.h | 6874f2b0060fed16415e916adb1630148c84edfe | [] | no_license | LeandroPerrotta/DarghosTFS04_v4 | ea14d06066f5fc1480ccc8007019bbd6b33bd58f | 173d9ec26011b17dd4102b3539de65ab3ea15017 | refs/heads/master | 2023-06-17T03:24:02.913872 | 2021-07-17T21:10:19 | 2021-07-17T21:10:19 | 387,035,938 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,252 | h | ////////////////////////////////////////////////////////////////////////
// OpenTibia - an opensource roleplaying game
////////////////////////////////////////////////////////////////////////
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License ... | [
"leandro_perrotta@hotmail.com"
] | leandro_perrotta@hotmail.com |
38acf433c29df03feb7eeabe81a2044663c3ed70 | 290b4c7ca63a975b38e55018cc38bd2766e14639 | /ORC_app/jni-build/jni/include/external/eigen_archive/eigen-eigen-4c94692de3e5/Eigen/src/Core/ProductEvaluators.h | d9fd888cfd801291b8ea9af6cccbaa1a87c89b62 | [
"MIT",
"Minpack",
"MPL-2.0",
"LGPL-2.1-only",
"GPL-3.0-only",
"BSD-3-Clause",
"LGPL-2.0-or-later",
"LGPL-2.1-or-later"
] | permissive | luoabd/EMNIST-ORC | 1233c373abcc3ed237c2ec86491b29c0b9223894 | 8c2d633a9b4d5214e908550812f6a2489ba9eb72 | refs/heads/master | 2022-12-27T14:03:55.046933 | 2020-01-16T15:20:04 | 2020-01-16T15:20:04 | 234,325,497 | 0 | 1 | MIT | 2022-12-11T13:32:42 | 2020-01-16T13:25:23 | C++ | UTF-8 | C++ | false | false | 46,234 | h | // This file is part of Eigen, a lightweight C++ template library
// for linear algebra.
//
// Copyright (C) 2006-2008 Benoit Jacob <jacob.benoit.1@gmail.com>
// Copyright (C) 2008-2010 Gael Guennebaud <gael.guennebaud@inria.fr>
// Copyright (C) 2011 Jitse Niesen <jitse@maths.leeds.ac.uk>
//
// This Source Code Form is... | [
"abdellah.lahnaoui@gmail.com"
] | abdellah.lahnaoui@gmail.com |
6dd924f8ba9d5a4799ae262172e744a4f11861f3 | 35be95e5e4ef306a1203a173bed12599f62db7b6 | /SlimDXc_Jun2010(VC++2008)/source/direct2d/RadialGradientBrushProperties.cpp | 0f10650a2fba0d82ceb731e87438d688c1740db5 | [
"MIT"
] | permissive | Orz5566/RandomTest | dd0ec2eb7a0db3993409c2a647658a175a3b4027 | 2884f99d29dda603c646d464a60d7bce3346b74d | refs/heads/master | 2021-09-06T01:10:29.460192 | 2018-02-01T06:56:53 | 2018-02-01T06:56:53 | 118,869,777 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,313 | cpp | /*
* Copyright (c) 2007-2012 SlimDX Group
*
* 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, publis... | [
"32087037+Orz5566@users.noreply.github.com"
] | 32087037+Orz5566@users.noreply.github.com |
fa1cfa689e6819698c70c315799e7a5ff5d017f4 | 08b7ded786a247113dca43938f253b2568a935d3 | /gui/widget/notification_info_widget.h | ff633ad98993e9c62efdc0c789d9e83b96b5ffa7 | [] | no_license | QtWorks/SmartHome | 8be750595f2b94a8306439adba6a76983b9d8125 | f83cc5516cc2fe9933d7b50266be41e6aad00afa | refs/heads/master | 2021-01-24T02:47:48.703728 | 2017-11-17T15:01:12 | 2017-11-17T15:01:12 | 122,862,654 | 1 | 1 | null | 2018-02-25T18:16:22 | 2018-02-25T18:16:22 | null | UTF-8 | C++ | false | false | 772 | h | #ifndef NOTIFICATION_INFO_WIDGET_H
#define NOTIFICATION_INFO_WIDGET_H
#include "scalable_widget.h"
#include <QTimer>
class NotificationInfoWidget : public ScalableWidget
{
Q_OBJECT
QPixmap m_icon;
QString m_date_time;
QString m_information;
int m_border_roudness{10};
QTimer* m_blink_timer;
... | [
"rskrobo1@etf.unsa.ba"
] | rskrobo1@etf.unsa.ba |
c7dee16e5425a029d2ac10b403d1369c19193875 | 0af9965de7527f4ca341833a5831dacd3fb8373f | /LeetCode/range-sum-query-immutable.cpp | 296d8efce91b7909bfab1d9e042fb131c9f94faa | [] | no_license | pcw109550/problem-solving | e69c6b1896cedf40ec50d24c061541035ba30dfc | 333d850a5261b49f32350b6a723c731156b24b8a | refs/heads/master | 2022-09-18T08:25:16.940647 | 2022-09-12T10:29:55 | 2022-09-12T10:29:55 | 237,185,788 | 11 | 1 | null | 2022-09-12T10:18:49 | 2020-01-30T10:05:42 | C++ | UTF-8 | C++ | false | false | 931 | cpp | // 303. Range Sum Query - Immutable
#include <iostream>
#include <vector>
class NumArray {
public:
std::vector<int> D;
NumArray(std::vector<int>& nums) {
std::ios_base::sync_with_stdio(false);
std::cin.tie(NULL);
std::cout.tie(NULL);
// O(N)
... | [
"pcw109550@gmail.com"
] | pcw109550@gmail.com |
1639fba156624763923f997702a4555793619058 | a8e5517df264ca12e84c377270574a3cc378f0c1 | /LAVIDA/1183/solution.cpp | fb49bba0cf5e2cb051f01ed3674bf1c09c56a67a | [] | no_license | wowoto9772/Hungry-Algorithm | cb94edc0d8a4a3518dd1996feafada9774767ff0 | 4be3d0e2f07d01e55653c277870d93b73ec917de | refs/heads/master | 2021-05-04T23:28:12.443915 | 2019-08-11T08:11:39 | 2019-08-11T08:11:39 | 64,544,872 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 858 | cpp | #include <stdio.h>
#include <limits.h>
#include <algorithm>
#define ll long long
using namespace std;
int I[5003];
ll A(ll a){ return a < -a ? -a : a; }
ll mm(ll a, ll b){ return a < b ? a : b; }
int main()
{
int n;
while (scanf("%d", &n) == 1){
for (int i = 1; i <= n; i++)scanf("%d", &I[i]);
sort(I + 1, I ... | [
"csjaj9772@gmail.com"
] | csjaj9772@gmail.com |
6a79f41f4b124d1db10416ebcec8d0c5ba2f032a | 04b1803adb6653ecb7cb827c4f4aa616afacf629 | /chrome/browser/extensions/chrome_kiosk_delegate.cc | 1ddbeaa91644e9b6c430bf7dfea7c6008aa073f6 | [
"BSD-3-Clause"
] | permissive | Samsung/Castanets | 240d9338e097b75b3f669604315b06f7cf129d64 | 4896f732fc747dfdcfcbac3d442f2d2d42df264a | refs/heads/castanets_76_dev | 2023-08-31T09:01:04.744346 | 2021-07-30T04:56:25 | 2021-08-11T05:45:21 | 125,484,161 | 58 | 49 | BSD-3-Clause | 2022-10-16T19:31:26 | 2018-03-16T08:07:37 | null | UTF-8 | C++ | false | false | 473 | cc | // Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/extensions/chrome_kiosk_delegate.h"
namespace extensions {
ChromeKioskDelegate::ChromeKioskDelegate() {}
ChromeKioskDelegate::... | [
"sunny.nam@samsung.com"
] | sunny.nam@samsung.com |
81a9177dc8bfc7319280eb81b48041f970414c2d | edda021b328841d86973f09e7b7278f7629d0380 | /IM/IM_TV/imm_baseline/im_benchmarking-master/sidm029_im_benchmark/Codes/TIM_test/src/tim.cpp | 568e6d28fac3d34929709f0bf1fe53483b4f85a4 | [] | no_license | wenyixue/GCOMB | b5ad36dd9e55131169c1ef10a18f2323c4732001 | ee2ed06b8db8fa66bab52f6c7026b3cc4bd0a289 | refs/heads/master | 2023-05-13T23:54:57.123031 | 2021-05-18T03:20:36 | 2021-05-18T03:20:36 | 368,171,392 | 0 | 0 | null | 2021-05-17T12:07:58 | 2021-05-17T12:07:57 | null | UTF-8 | C++ | false | false | 3,917 | cpp | //#define HEAD_TRACE
#define HEAD_INFO
#define HEAD_INFO
//#define HEAD_TRACE
#include "sfmt/SFMT.h"
#include "head.h"
#include "memoryusage.h"
#include "graph.h"
#include <string>
void run(TimGraph & m, string dataset, string outdir, int k, double epsilon, string model ){
ofstream seedFile, outputFile, st... | [
"sahilm1992@gmail.com"
] | sahilm1992@gmail.com |
15aaef364c6c3e40fcb202b95a10b7d953dc7e07 | 2d361696ad060b82065ee116685aa4bb93d0b701 | /src/util/test/test_thread_pool_old.cpp | f12decefa401a73d906ecb9ad76e8011857a247b | [
"LicenseRef-scancode-public-domain"
] | permissive | AaronNGray/GenomeWorkbench | 5151714257ce73bdfb57aec47ea3c02f941602e0 | 7156b83ec589e0de8f7b0a85699d2a657f3e1c47 | refs/heads/master | 2022-11-16T12:45:40.377330 | 2020-07-10T00:54:19 | 2020-07-10T00:54:19 | 278,501,064 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 5,199 | cpp | /* $Id: test_thread_pool_old.cpp 605875 2020-04-16 11:24:47Z ivanov $
* ===========================================================================
*
* PUBLIC DOMAIN NOTICE
* National Center for Biotechnology Information
*
* This software/database is a "United States Governmen... | [
"aaronngray@gmail.com"
] | aaronngray@gmail.com |
bbcb465f4ce93caf1d1773f2b6c39b4bd78714de | 3579de0a3ef53456ebd2d7692c8a085ba67117a9 | /google/cloud/storage/internal/grpc_resumable_upload_session_url.cc | 5cf720d4d0e0528d24627f91d4992916ea29aa6a | [
"LicenseRef-scancode-unknown-license-reference",
"Apache-2.0"
] | permissive | NorthDragonRider/google-cloud-cpp | 82fceed039e19ed4d131843139333a82e08a64a6 | f9d9b2498d30f83a84f206e71c3dcb721ee00d3f | refs/heads/master | 2023-01-12T05:31:34.036803 | 2020-11-03T20:20:03 | 2020-11-03T20:20:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,663 | cc | // Copyright 2020 Google LLC
//
// 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 w... | [
"noreply@github.com"
] | NorthDragonRider.noreply@github.com |
30f3e2d3f3bac3314f7a89799e0b4ea345902acb | 5a19e6dfde1ddd1ffa98c341e4f5b412d710c42c | /mve/mistl/mistl/include/mistl/Quality.h | d39db93a4331adf895030333753339579ab735c0 | [
"LicenseRef-scancode-unknown-license-reference",
"BSD-3-Clause"
] | permissive | jtpils/MVE_3D_SemanticSegmentation | dfb10f361f39995d5b36be90194bf639b2a19eb8 | 77fcaecd7f4b8e8ab7695b67596fd4e0858cc995 | refs/heads/master | 2020-08-29T07:19:33.845907 | 2019-10-08T14:27:24 | 2019-10-08T14:27:24 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,840 | h |
//
// INTEL CORPORATION PROPRIETARY INFORMATION
//
// This software is supplied under the terms of a license agreement or
// nondisclosure agreement with Intel Corporation and may not be copied
// or disclosed except in accordance with the terms of that agreement.
// Copyright (C) 20... | [
"syed.qutub@intel.com"
] | syed.qutub@intel.com |
b1097ce0ce9b4ff70b37baf4d2a76425e145ed79 | 76261aae39cfc15a2b3444665ebcb23a657db361 | /Production/Source/Ripley/DNAArray.h | 58236b8572497cb63b938838c697add9f02739b9 | [] | no_license | rocketeerbkw/DNA | d208c72690ccfae261beb531fb52d1c2647783e3 | de5993d6d0f8dd735085ebca4c86f4363c498615 | refs/heads/master | 2021-01-21T13:29:52.930616 | 2015-10-01T17:05:40 | 2015-10-01T17:05:40 | 43,528,993 | 1 | 0 | null | 2015-10-02T00:43:08 | 2015-10-02T00:43:08 | null | UTF-8 | C++ | false | false | 1,277 | h | //
// DNAArray.h
//
#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000
/*********************************************************************************
class CDNAIntArray
Author: Mark Howitt
Created: 10/03/2004
Purpose: New Int Array class with minimum functionality
... | [
"VP-DEV-DNA-1\\NevesM31"
] | VP-DEV-DNA-1\NevesM31 |
d69ab602fa7ed52671584b5120e073cf75c06d36 | 3358e2982603a8fc0db41b1a10ecf227fab13303 | /3rd/n3/code/extlibs/bullet/fw/include/win32/FWWin32Input.h | b0d6076b3947670ee9819879a1ea59a6f2be980a | [] | no_license | JerryZhou/opensc | 118a1dc0595490c0f218d9a2e4325002be7fe254 | 28e685feaa302f174fbb2c0f6a60f597f497fdd9 | refs/heads/master | 2020-06-08T04:09:55.527373 | 2013-09-22T03:28:44 | 2013-09-22T03:28:44 | 11,479,319 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,911 | h | /* SCE CONFIDENTIAL
* $PSLibId$
* Copyright (C) 2006 Sony Computer Entertainment Inc.
* All Rights Reserved.
*/
//-----------------------------------------------------------------------------
// Sample Framework
//
// Win32 Input
//
// $File: //nextgendev/Framework_080/include/win... | [
"JerryZhou@outlook.com"
] | JerryZhou@outlook.com |
c6956d0c9ca2bff1fea7c523303d4ded57219f9b | 27c2e5277bac7ba627f461d52e6c59dd23731e86 | /sugar/engine/su_sg_scenegraph.h | d00f6e7aadec45b7710d0b5a17a06931328abe8d | [] | no_license | magicfoo/atonce | 4c70fbc753fbc9bc1e32b14317ddf4bc61cafd66 | 7561af1c477e107ee9cdd1bcb82a8f7b753bc6ab | refs/heads/master | 2022-12-23T10:10:42.602545 | 2020-09-23T20:18:42 | 2020-09-23T20:18:42 | 298,083,714 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,854 | h | /*LIC-HDR********************************************************************
**
** Copyright (C) 2005-2011 AtOnce Technologies
**
** This file is part of the Sugar core-system framework.
**
** This file and the associated product may be used and distributed
** under the terms of a current License as defined by AtOnce ... | [
"ggainant@roblox.com"
] | ggainant@roblox.com |
d20eabc867c77ad8b9215fa00a544b4624cc5ec5 | 83195bb76eb33ed93ab36c3782295e4a2df6f005 | /Source/AtomicWebView/WebKeyboardWindows.cpp | 8ff812b7e75d87d3601aed27e33cb0564927d1ee | [
"MIT",
"BSD-3-Clause",
"Zlib",
"LicenseRef-scancode-openssl",
"LicenseRef-scancode-khronos",
"BSL-1.0",
"Apache-2.0",
"LicenseRef-scancode-public-domain",
"BSD-2-Clause",
"NTP"
] | permissive | MrRefactoring/AtomicGameEngine | ff227c054d3758bc1fbd5e502c382d7de81b0d47 | 9cd1bf1d4ae7503794cc3b84b980e4da17ad30bb | refs/heads/master | 2020-12-09T07:24:48.735251 | 2020-01-11T14:03:29 | 2020-01-11T14:03:29 | 233,235,105 | 0 | 0 | NOASSERTION | 2020-01-11T13:21:19 | 2020-01-11T13:21:18 | null | UTF-8 | C++ | false | false | 4,452 | cpp | //
// Copyright (c) 2014-2016, THUNDERBEAST GAMES LLC All rights reserved
//
// 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
//... | [
"josh@galaxyfarfaraway.com"
] | josh@galaxyfarfaraway.com |
4c48b64b11fc148c0139c9b50c957bec8da1ae3a | 44564fafb4624d7c3d3f96d243eb7702f80f5c1e | /tests/YGNodeChildTest.cpp | cce9f33b5150f497ad04dc6988feea97f32d037a | [
"LicenseRef-scancode-proprietary-license",
"MIT"
] | permissive | Finger-Ink/yoga | 14cb62d8cd5216eb58fa4d1432d0f2bcc16abdfc | 0daf361c60fef66c75992a06db6a86c227d2407c | refs/heads/master | 2023-03-17T01:14:10.426201 | 2022-12-12T11:58:35 | 2022-12-12T11:58:35 | 203,693,690 | 0 | 0 | MIT | 2022-12-05T20:32:09 | 2019-08-22T01:47:17 | C++ | UTF-8 | C++ | false | false | 1,093 | cpp | /*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
#include <gtest/gtest.h>
#include <yoga/Yoga.h>
TEST(YogaTest, reset_layout_when_child_removed) {
const YGNodeRef root = YGNodeN... | [
"facebook-github-bot@users.noreply.github.com"
] | facebook-github-bot@users.noreply.github.com |
b1a533bf84b3bd6d3be145b6e07867e28e7aac56 | 3f8c632fe1b97d85a754b6ed031d154ef5dbfa2f | /llvm_profile_reader.h | 13e44a97facae625b245cea86e731a54d93199f2 | [] | no_license | grajer/autofdo | 9464338dc1cc085950c562724a1c1a2da360e38a | 5ec7b699dfe2ebc58d608afff8c668ab358a2da9 | refs/heads/master | 2023-06-04T10:41:33.973535 | 2021-06-21T22:46:43 | 2021-06-21T22:46:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,238 | h | // Read symbol_map from the llvm sample profile.
#ifndef AUTOFDO_LLVM_PROFILE_READER_H_
#define AUTOFDO_LLVM_PROFILE_READER_H_
#include "base_profile_reader.h"
#include "source_info.h"
#include "third_party/abseil/absl/container/node_hash_set.h"
#include "llvm/ProfileData/SampleProf.h"
namespace llvm {
class StringR... | [
"wmi@google.com"
] | wmi@google.com |
04ebc2070e7ac69bd5099eee9cd8a6911eb4c179 | 22fa5261c962bdfb7bb0ae0a03d8ea984bcb71d5 | /nov/1/859C.cpp | ae436f40bdcf5939f676b69a18faa2aaa8628f37 | [] | no_license | Ashish-uzumaki/cp | 21f03ddf6971cde10278af296734907a3a4d5996 | 2798de8429f934393b927f8beea3ac37d7a2a0aa | refs/heads/master | 2020-04-11T17:40:56.645606 | 2018-12-27T04:04:27 | 2018-12-27T04:04:27 | 161,970,092 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 890 | cpp | #include<bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace __gnu_pbds;
using namespace std;
template <typename T>
using ordered_set = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>;
#define lli long long int
#define pb(x) push_back(... | [
"1998ashishsingh@gmail.com"
] | 1998ashishsingh@gmail.com |
fbdb362116e4288d3946e034ecb4698574ad8d07 | 1a9002206db75270137e8dc896113d49ae3f8cf9 | /GeeksForGeeks/Check if Linked List is Palindrome(Using vectors).cpp | 10df3297e796de02b8ffc3f3fbb9df2742db1115 | [] | no_license | manthankhorwal/Competitive-programming | 8d2baaeb1ef049175f309756f5f30bb4015b7e41 | 95aa35b3dfe487249de13c04c275be7440590bd2 | refs/heads/master | 2020-05-27T17:23:50.666813 | 2019-06-14T17:30:52 | 2019-06-14T17:30:52 | 188,718,937 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 396 | cpp | #include<bits/stdc++.h>
bool isPalindrome(Node *head)
{
Node* temp=head;
vector<int> v;
while(temp!=NULL)
{
v.push_back(temp->data);
temp=temp->next;
}
Node *temp1=head;
while(temp1!=NULL)
{
if(temp1->data!=v.back())
{
return false;
}
... | [
"manthankhorwal502@gmail.com"
] | manthankhorwal502@gmail.com |
653ec4328714b9a4e5c1cd43c4cf834720804a12 | 194840d144b77f3b662db6e3663c820db0807a46 | /ProductLuaIdeCAPI/main.cpp | 8877ad4c30da183f40e8d0e3579e4346f42ba8ef | [] | no_license | ToTPeople/my_own_tools | 7cac7d84854b58d92f2ef4a538aea4ec06f5992c | d2509e7b399e076234162b8d757910627beec4b6 | refs/heads/master | 2020-03-24T03:46:05.723395 | 2018-07-26T12:15:49 | 2018-07-26T12:15:49 | 142,432,314 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 377 | cpp | #include <stdio.h>
#include <string>
#include <stdlib.h>
#include "product_lua_ide_api.h"
int main(int argc, char **argv)
{
// if (argc != 3) {
// printf("----- please input ./a.out need_to_trans_dir out_dir ----\n");
// return 0;
// }
return parser_dir("./need_trans", "./after_trans");
//... | [
"lfs1@meitu.com"
] | lfs1@meitu.com |
b7b55d384ff29a74b978cd57436cc8f961a3e946 | 400fd356eb75d95ab35e8dcce2f5b03b3d272e83 | /Smjy/src/server/process/test.cpp | bb8ef94cad7ae81a5454282307bab51c9e3c685c | [] | no_license | shandaming/Martial_arts | 4eba4c3856d0fbbcddc460790b4a06ba79a9c3ed | 896f10a7c457a9f166e7991e54943d46b6a953b5 | refs/heads/master | 2022-11-11T08:05:21.439745 | 2022-10-22T05:55:23 | 2022-10-22T05:55:23 | 116,259,077 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,258 | cpp | #include <algorithm>
#include <vector>
#include <tuple>
#include <utility>
#include <tuple>
template<typename F, typename T, typename... Args>
void for_each(F&& f, T&& t, Args&&... args)
{
f(t);
for_each(f, args...);
}
template<typename F, typename T>
void for_each(F&& f, T&& t)
{
f(t);
}
struct child
{
explicit... | [
"shandaming@hotmail.com"
] | shandaming@hotmail.com |
8d3a2d224576cdcc0b763e02c7c1239612d0f9ad | f6876d46645bcb235f93a4263254a35657083990 | /LED_SOUND/v0.1/v0.1.ino | 2ab31a9f28d5d7d2d91df26e2b013ba729a076c9 | [] | no_license | ckhurana/arduino-codes | 8f950cf11ba3420de6b61a6e379f59b18beed45d | ede6b8ecda9ff52035ca1fb8e16499f4e2b061be | refs/heads/master | 2020-03-25T22:07:08.986158 | 2018-09-10T00:10:37 | 2018-09-10T00:10:37 | 144,206,573 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,390 | ino | #include <FastLED.h>
#define NUM_LEDS 16
// Data pin that led data will be written out over
#define DATA_PIN 6
#define SOUND_PIN A0
CRGB leds[NUM_LEDS];
int soundVal = 0;
void setup() {
Serial.begin(9600);
// sanity check delay - allows reprogramming if accidently blowing power w/leds
pinMode(SOUND_PIN, IN... | [
"khuranachirag95@gmail.com"
] | khuranachirag95@gmail.com |
aea875abef8aef583be65916a7490b525717446e | 30874a1295d700427f7775d89a74ff5c4836dbe9 | /libraries/ChLCD_MCP230xx/MCP230xxLCD.h | 7a021eacee68dac5c9d0547354615285c0256fdc | [] | no_license | una1veritas/Arduino-public | f9b445bffe493e1c5b72f6587946b3fa3c5335ac | 381cbd5193961534b910f1cfeb3a83bc273889a0 | refs/heads/master | 2021-01-19T15:20:21.300335 | 2020-10-15T12:08:24 | 2020-10-15T12:08:24 | 100,960,464 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,338 | h | /*
* MCP2300xLCD.h
*
* Created on: 2012/04/18
* Author: sin
*/
#ifndef MCP2300xLCD_H_
#define MCP2300xLCD_H_
#if ARDUINO >= 100
#include "Arduino.h"
#else
#include "WPrograms.h"
#endif
//#include "Print.h"
#include "IOExpander.h"
#include "MCP230xx.h"
#include "CharacterLCD.h"
// f... | [
"una.veritas@me.com"
] | una.veritas@me.com |
540e39b740d4d64be046bee523848379304e7ff7 | 9eb2eb4de471b6c522ecb6e11bd1d10ee3bf1c29 | /src/gigablast/Spider.h | 3459c12c54bea3b550d1c481f5ac80ae2ab15245 | [
"Apache-2.0"
] | permissive | fossabot/kblast | 6df5a5c6d4ae708a6813963f0dac990d94710a91 | 37b89fd6ba5ce429be5a69e2c6160da8a6aa21e6 | refs/heads/main | 2023-07-25T04:06:20.527449 | 2021-09-08T04:15:07 | 2021-09-08T04:15:07 | 404,208,031 | 1 | 0 | Apache-2.0 | 2021-09-08T04:15:02 | 2021-09-08T04:15:01 | null | UTF-8 | C++ | false | false | 52,973 | h | // SPDX-License-Identifier: Apache-2.0
//
// Copyright 2000-2014 Matt Wells
// Copyright 2004-2013 Gigablast, Inc.
// Copyright 2013 Web Research Properties, LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obta... | [
"masanori.ogino@gmail.com"
] | masanori.ogino@gmail.com |
074969dd07cb25669ac1b95fc37176a4c08ecfc9 | a0f0efaaaf69d6ccdc2a91596db29f04025f122c | /install/pnp_msgs/include/pnp_msgs/PNPConditionRequest.h | 45da55705fb3a2fce47329a8174d417aa26b0b27 | [] | no_license | chiuhandsome/ros_ws_test-git | 75da2723154c0dadbcec8d7b3b1f3f8b49aa5cd6 | 619909130c23927ccc902faa3ff6d04ae0f0fba9 | refs/heads/master | 2022-12-24T05:45:43.845717 | 2020-09-22T10:12:54 | 2020-09-22T10:12:54 | 297,582,735 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,093 | h | // Generated by gencpp from file pnp_msgs/PNPConditionRequest.msg
// DO NOT EDIT!
#ifndef PNP_MSGS_MESSAGE_PNPCONDITIONREQUEST_H
#define PNP_MSGS_MESSAGE_PNPCONDITIONREQUEST_H
#include <string>
#include <vector>
#include <map>
#include <ros/types.h>
#include <ros/serialization.h>
#include <ros/builtin_message_trai... | [
"chiuhandsome1966@gmail.com"
] | chiuhandsome1966@gmail.com |
9843333381e8b78b55bf780d8ecf94aace2e9ccc | cc0b7d50a3c6e6b329aab5b0aa0a349580bddbdd | /constant/impp23/polyMesh/boundary | 9463e5b708c4903bdb076b802d0a0a2dc0dc1ffa | [] | no_license | AndrewLindsay/OpenFoamFieldJoint | 32eede3593516b550358673a01b7b442f69eb706 | 7940373dcc021225f2a7ff88e850a1dd51c62e36 | refs/heads/master | 2020-09-25T16:59:18.478368 | 2019-12-05T08:16:14 | 2019-12-05T08:16:14 | 226,048,923 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,122 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v1906 |
... | [
"andrew.lindsay@westnet.com.au"
] | andrew.lindsay@westnet.com.au | |
a65f1a5bfb772a4a4b3da4486e77663f3749efff | 406c354fac53f5bad5eda5fcf2d4dedbaa67340a | /Source/ColorPickerTest419/NativeWidgetHostColorPicker.h | bf6dc7752d261b9e9a000fdc71b26c3a6e7c92e9 | [] | no_license | HSeo/ColorPickerTest419 | 920b518d170211deac83552f44e31578e86ce007 | af6ade6032d56cdeb59102e7f4cae579fef2ab3d | refs/heads/master | 2020-04-20T04:39:43.535925 | 2019-03-02T07:29:55 | 2019-03-02T07:29:55 | 168,634,448 | 3 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 546 | h | #pragma once
#include "CoreMinimal.h"
#include "Components/NativeWidgetHost.h"
#include "NativeWidgetHostColorPicker.generated.h"
class SColorPicker;
UCLASS()
class COLORPICKERTEST419_API UNativeWidgetHostColorPicker : public UNativeWidgetHost {
GENERATED_BODY()
public:
UNativeWidgetHostColorPicker(const FObjec... | [
"seo@sciement.com"
] | seo@sciement.com |
f39b3eb935a5defcde6d8572a443ab49ced81265 | b8376621d63394958a7e9535fc7741ac8b5c3bdc | /lib/lib_mech/src/server/AqServer/AqCentral/AqCentral.cpp | ec94ec3bde6681a7cede8fa66875041b16852c61 | [] | no_license | 15831944/job_mobile | 4f1b9dad21cb7866a35a86d2d86e79b080fb8102 | ebdf33d006025a682e9f2dbb670b23d5e3acb285 | refs/heads/master | 2021-12-02T10:58:20.932641 | 2013-01-09T05:20:33 | 2013-01-09T05:20:33 | null | 0 | 0 | null | null | null | null | UHC | C++ | false | false | 1,776 | cpp | // AqCentral.cpp : DLL 응용 프로그램을 위해 내보낸 함수를 정의합니다.
//
#include "stdafx.h"
#include "AqCentral.h"
#include <boost/bind.hpp>
#include "csv_loader.h"
#include "../AqCommon/jXmlSaveManager.h"
Aq_NetDLL* g_pjConsoleDLL=0;
void _OnPacketSize_UsageInfo(tcstr szPlugIn,uint64 packet_size,tname1024_t info)
{
g_jAqCommon.OnP... | [
"whdnrfo@gmail.com"
] | whdnrfo@gmail.com |
1c0abe3d770f5f4f87770204d64740edc628c4df | 4fe6b129a2f415b22f1c8752169b56daf8551e23 | /Aligner/TiltCalibrationPage3.cpp | 6045d5e91e2c73d2e0b61452fece8d6b1d71566e | [] | no_license | Kingarne/Aligner308MK3 | 1821d6ce9a8cd6d3e6def31bb43cd0c37b43fe1e | 04adc7e1ca1e97e2b4165c626dd73f095ad77c93 | refs/heads/master | 2023-08-31T05:48:52.441714 | 2023-08-21T13:14:32 | 2023-08-21T13:14:32 | 207,835,311 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,221 | cpp | // $Id: TiltCalibrationPage3.cpp,v 1.3 2014-07-15 13:22:33 riar Exp $
//
// Copyright (C) Shill Reglerteknik AB 2002
#include "stdafx.h"
#include "TiltCalibrationPage3.h"
#include "CalibrationSheet.h"
IMPLEMENT_DYNAMIC(TiltCalibrationPage3, CPropertyPage)
TiltCalibrationPage3::TiltCalibrationPage3( void ) : CPropert... | [
"riar@now.se"
] | riar@now.se |
c5d6b437b939d10b8a7d314d0a600e0ba112a0b1 | c955730b68bd4ba2d9255183cfef092bd1ef2524 | /CPP/chocoland.cpp | 3d37c55fa71d75fad26834c5d97b202e00ecf4cd | [] | no_license | Manvi07/Competitive-programming | b6e95c2e8bc9673d9e23e784c460d50ed3754ab1 | 7b59d89988667b115500482691b3ae89c397d753 | refs/heads/master | 2020-05-19T06:12:07.019076 | 2020-05-08T09:22:16 | 2020-05-08T09:22:16 | 184,867,764 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 280 | cpp | #include <bits/stdc++.h>
using namespace std;
int main()
{
int t;
cin>>t;
while(t--)
{
int n,k,s;
cin>>n>>k>>s;
int d=s-s/7;int b=0;
if(k*s>n*d)b=-1;
else
{
while(1){
b++;
if(b*n>=k*s)
break;}
}
cout<<b<<endl;
}
}
| [
"b17092@students.iitmandi.ac.in"
] | b17092@students.iitmandi.ac.in |
1737c71e235f2108e03e5c40eab1eceadfae0f20 | d4c0b7fd40ddd8be34cb092cb7fd173f381dba65 | /ZeroBiasStudies/Utilities/PlottingTools/interface/PlottingTools.h | 8323253147a587bcd5cf8897adee88676fa687aa | [] | no_license | ForwardGroupBrazil/ForwardAnalysis | 8dceaacb1707c0769296f3c7b2e37c15a4a30ff7 | 5572335f19d1e0d385f73945e55e42fb4ed49761 | refs/heads/master | 2021-01-16T01:02:02.286181 | 2013-09-12T20:54:02 | 2013-09-12T20:54:02 | 12,787,581 | 1 | 4 | null | null | null | null | UTF-8 | C++ | false | false | 3,199 | h | #ifndef UtilitiesPlottingTools_PlottingTools_h
#define UtilitiesPlottingTools_PlottingTools_h
class TFile;
class TDirectory;
#include "TH1F.h"
#include <vector>
#include <string>
#include <map>
#include <exception>
class DefaultNorm{
public:
/*DefaultNorm() {}
double GetNormFactor(const TH1F* hist) {... | [
""
] | |
25963bc5f5842ffdd2909a8a32d50d5bb882cd46 | da510e8caaa2791a1f7f11eb207f10fbe620cb0d | /games/src/Ghost.cpp | 5ff9679f58b377fe995a3c16866dc54bdbc4d660 | [] | no_license | LeBenki/arcade | d19d76a7d0b66d0f69994061b7f945c7d5acdd8e | 0360b8ec80bb1fd85793a83355b9c89a1e981ea5 | refs/heads/master | 2020-03-24T03:42:30.612168 | 2018-08-02T11:39:41 | 2018-08-02T11:39:41 | 142,429,800 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,571 | cpp | /*
** EPITECH PROJECT, 2018
** Ghost.cpp
** File description:
** Ghost entity class file
*/
#include "Ghost.hpp"
arc::Ghost::Ghost(const arc::pos_t &pos,
const unsigned int level, const unsigned int id)
: arc::APacmanEntity("Ghost" + std::to_string(id % 4 + 1))
{
_pos = {(float)(pos.x + 0.5), (float)(pos.y + 0.5)};... | [
"lucas.benkemoun@epitech.Eu"
] | lucas.benkemoun@epitech.Eu |
b7808a2833e69a7500da4523732a15eb3d10600f | a6b7e6ff776bf577c7f63926edf3b236ec2ec917 | /Protótipos_ESP8266_IDE-Arduino/ANDRE_SINAL/ANDRE_SINAL.ino | b042dff4f36b1f0f12e5f35faa626446cf30eb6d | [
"MIT"
] | permissive | francenylson/Robotica_ESP8266 | a4f51cd0b2c322f8d52380f210cd7ee9f250ba25 | 882568b2656d319144aa19b3f34a0caf3c132b22 | refs/heads/master | 2022-12-05T11:14:10.715099 | 2020-08-28T15:36:43 | 2020-08-28T15:36:43 | 291,081,432 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,690 | ino | #define led_1 D0 //verde direito
#define led_2 D1 //amarelo direito
#define led_3 D2 //vermelho direito
#define led_4 D3 //azul
#define led_5 D4 //azul
#define led_6 D5 //azul
#define led_7 D6 //azul
#define led_8 D7 //azul
#define led_9 D8
void setup()
{
pinMode(led_1, OUTPUT);
pinMode(led_2, OUTPUT);
pinMode(l... | [
"francenylson@gmail.com"
] | francenylson@gmail.com |
4affec17d1d45ea635b2b85555fd49a59c51f24a | 376b40b62f996ecc6665de0e0bc9735bf6a18268 | /src/core/buffer/AsyncFrameBuffer.h | c028562f96f434be4b1b6046c0298e12884d7c6f | [
"MIT"
] | permissive | PearCoding/PearRay | f687863b3bc722240997fb0b3d22e5032d91b7b8 | 95f065adb20fc6202dfa40140d0308fc605dc440 | refs/heads/master | 2022-05-02T01:01:28.462545 | 2022-04-13T09:52:16 | 2022-04-13T09:52:16 | 45,111,096 | 20 | 0 | MIT | 2020-06-22T11:32:21 | 2015-10-28T12:33:36 | C++ | UTF-8 | C++ | false | false | 2,414 | h | #pragma once
#include "FrameBuffer.h"
#include <vector>
namespace PR {
template <typename T>
class AsyncFrameBuffer {
PR_CLASS_NON_COPYABLE(AsyncFrameBuffer);
public:
inline AsyncFrameBuffer(Size1i channels, const Size2i& size,
const T& clear_value = T(), bool never_clear = false)
: mFrameBuffer(channels,... | [
"yazici@cg.uni-saarland.de"
] | yazici@cg.uni-saarland.de |
e86216202f0dcf0b5150326077e1bc5a2ea3657c | 3a1fa284cccc1ee84aea82d109362c7f749dcb0c | /engine/enginecode/include/independent/systems/systems/resourceManager.h | 09f0feaf64b7ea706eaec892c15dda3472300c86 | [] | no_license | DanBullin/Owl-Engine | 8007ebccaf31f4af9e73c9015f25c3be1fcfad80 | d67c2a0c76458c6566dfd69e9c8d81153a7ec12c | refs/heads/main | 2023-04-24T19:24:47.367794 | 2021-05-17T07:18:57 | 2021-05-17T07:18:57 | 367,107,845 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,060 | h | /*! \file resourceManager.h
*
* \brief A resource manager containing all the resources that are currently loaded. All resources are stored in a single map containing a key which is a unique string.
*
* \author Daniel Bullin
*
*/
#ifndef RESOURCEMANAGER_H
#define RESOURCEMANAGER_H
#include <json.hpp>
#include "independ... | [
"danbullin@gmail.com"
] | danbullin@gmail.com |
86b06258526acab138213f35e6eadd055b1e2769 | dccd1058e723b6617148824dc0243dbec4c9bd48 | /atcoder/arc036/b.cpp | 7d80832839e6ae2d5b8a82f4540dd8f4b5781436 | [] | no_license | imulan/procon | 488e49de3bcbab36c624290cf9e370abfc8735bf | 2a86f47614fe0c34e403ffb35108705522785092 | refs/heads/master | 2021-05-22T09:24:19.691191 | 2021-01-02T14:27:13 | 2021-01-02T14:27:13 | 46,834,567 | 7 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 836 | cpp | #include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define rep(i,n) for(i=0;i<n;++i)
#define each(itr,c) for(__typeof(c.begin()) itr=c.begin(); itr!=c.end(); ++itr)
#define mp make_pair
#define pb push_back
#define fi first
#define sc second
int main(int argc, char const *argv[]) {
int i;
int n;... | [
"k0223.teru@gmail.com"
] | k0223.teru@gmail.com |
cf96835845de5aeaf4cf803b74175b0ce93499fa | aaf052bb772a863f86512724373f51a2b6e39576 | /include/smp/components/samplers/theta_star_gaussian.hpp | b267b9483ac91e6dcf4bdc3bd6f06ed57ed893f1 | [
"BSD-2-Clause"
] | permissive | HsiaoRay/proxemics_anytimerrts | 0cec5c1736ebd1df38319e24bf22ab1dd55475e1 | 6d1c76e04ace18d53af91c3bfcfc9eddbb9fec60 | refs/heads/master | 2020-07-07T13:35:44.064098 | 2016-06-16T15:13:48 | 2016-06-16T15:13:48 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,667 | hpp | #ifndef _SMP_SAMPLER_GAUSS_HPP_
#define _SMP_SAMPLER_GAUSS_HPP_
#include <iostream>
#include <cstdlib>
#include <smp/components/samplers/theta_star_gaussian.h>
#include <smp/components/samplers/base.hpp>
#include "eigenmultivariatenormal.cpp"
template< class typeparams, int NUM_DIMENSIONS >
int smp::theta_star_g... | [
"charlyhuang@ira.e.ntu.edu.tw"
] | charlyhuang@ira.e.ntu.edu.tw |
d448f34cb86d5a1cd96b276e295b6f59924de2fc | e549cbc5938a9404d781d2b9762b0b08737f8312 | /Задача 6/Задача 6/Задача 6.cpp | 2d14736008654b6badbde108e90862726317b242 | [] | no_license | babikov02/Laborator-4 | 7b1cf4ae089a2a1c65a12c9edfe92d559db78497 | 67679bf1fa4b8e54875b3bb49713070d401f10f8 | refs/heads/master | 2022-12-31T15:35:15.361848 | 2020-10-18T12:12:06 | 2020-10-18T12:12:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,256 | cpp | // Задача 6.cpp : Этот файл содержит функцию "main". Здесь начинается и заканчивается выполнение программы.
//
#include <iostream>
using namespace std;
#include <cmath>
int main()
{
setlocale(LC_ALL, "rus");
float a, b, c;
cout << "Введите a: ";
cin >> a;
cout << "Введите b: ";
cin >> b;
co... | [
"noreply@github.com"
] | babikov02.noreply@github.com |
acca10ddff67ddc4be42297ec92c4dbcec7b7d31 | d57a25c0dd59b71801e7b9633dcb85029b12bb36 | /include/dll/generators/inmemory_data_generator.hpp | 5414ee048543d419bc32365d1aa81a94b201c644 | [
"MIT",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | xinsuinizhuan/dll | c391a81b53b790484d0b7abcad5c401af61605b1 | df1fcae4bdf14fbc73290214cc6dbf4578ac1efe | refs/heads/master | 2022-12-12T15:26:53.208901 | 2020-09-04T16:32:04 | 2020-09-04T16:32:04 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 29,721 | hpp | //=======================================================================
// Copyright (c) 2014-2020 Baptiste Wicht
// Distributed under the terms of the MIT License.
// (See accompanying file LICENSE or copy at
// http://opensource.org/licenses/MIT)
//==================================================================... | [
"baptiste.wicht@gmail.com"
] | baptiste.wicht@gmail.com |
4c032df9c5f81503760ae95bda4d60241eeff118 | 1064d896f7c1465a368db07ed4ce73f4172a6b2c | /C++/src/routine_superpixel_texture_and_color_majority.cpp | 82bbf8f08e1b3fc5d29edb49148af4e757d8d5cd | [] | no_license | kyle5/apple_detection | 264b73751f120ca0f8ecf970c7b844ecbe484a2e | 875e178eda12a210afd36ccf9560d4e397cd1e50 | refs/heads/master | 2021-01-20T15:39:11.534313 | 2015-02-22T04:38:12 | 2015-02-22T04:38:12 | 31,152,198 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 8,594 | cpp | #include "utility.h"
#include "include_in_all.h"
#include "superpixel_computation.h"
#include "visualization.h"
#include "ml_helper_methods.h"
#include "feature_computation.h"
#include "setup_correct_apple_paths.h"
#include "classify_images.h"
#include "setup_feature_sets.h"
#include "utility.h"
#include <iomanip>
#in... | [
"kyle@kyle-All-Series.(none)"
] | kyle@kyle-All-Series.(none) |
d30eb7835336c078b994c6947861a94b3fa5c410 | 6aeccfb60568a360d2d143e0271f0def40747d73 | /sandbox/boost/interfaces/extract.hpp | 4a3ce5ac936a78aa303d77001082113c7418afde | [] | 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 | 1,765 | hpp | // (C) Copyright Jonathan Turkanis 2004.
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt.)
// Disclaimer: Not a Boost library.
#ifndef BOOST_IDL_EXTRACT_HPP_INCLUDED
#define BOOST_IDL_EXTRACT_HPP_INCLUDED
#if defi... | [
"j@coderage.com"
] | j@coderage.com |
cb6821270b6df9f5231b97e5bb6c491ec05917f6 | dd80a584130ef1a0333429ba76c1cee0eb40df73 | /external/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.h | 9f2913252f11f98cf93ae9287fe5f25a9cdbbb7a | [
"MIT",
"NCSA",
"BSD-3-Clause",
"NTP",
"LicenseRef-scancode-unknown-license-reference"
] | permissive | karunmatharu/Android-4.4-Pay-by-Data | 466f4e169ede13c5835424c78e8c30ce58f885c1 | fcb778e92d4aad525ef7a995660580f948d40bc9 | refs/heads/master | 2021-03-24T13:33:01.721868 | 2017-02-18T17:48:49 | 2017-02-18T17:48:49 | 81,847,777 | 0 | 2 | MIT | 2020-03-09T00:02:12 | 2017-02-13T16:47:00 | null | UTF-8 | C++ | false | false | 2,066 | h | //===-- PPCMCTargetDesc.h - PowerPC Target Descriptions ---------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===-------------------------------------------------------... | [
"karun.matharu@gmail.com"
] | karun.matharu@gmail.com |
02680ec075b5e117fd54a7751662d18f658cc1c7 | 988e7ad6574222ca77e8620b9fbe15e1b0cc9a1a | /reverse-of-string.cpp | 0b91f66f5cc1dd35f0bca05cdf71353472e9e8e8 | [] | no_license | vaarigupta/C-_programs | 361df5af8ebb9eb36f79a24189e4ff0be3934bd6 | ae5d5c6f3b147b16c5dbdbc449de2c6fbb8a5dac | refs/heads/master | 2020-03-12T20:36:20.483047 | 2018-04-26T08:36:29 | 2018-04-26T08:36:29 | 130,809,479 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 253 | cpp | #include<iostream>
#include<cstring>
using namespace std;
void reverse(char a[])
{ int i=0;
int j =strlen(a) -1;
while(i<=j)
{
swap(a[i],a[j]);
i++;
j--;
}
}
int main()
{ char a[100];
cin.get(a,100);
reverse(a);
cout<<a;
return 0;
}
| [
"cutievaarigupta@gmail.com"
] | cutievaarigupta@gmail.com |
d9519972705fbebaf42f077a5dad57ac7dd8707c | ea43e29d2c81f156e324ed7a18d419fa8e311076 | /LCompiler/Function.hpp | 98e6b4e052600c6c55296adad5aa59f0fddfc194 | [
"MIT"
] | permissive | PedroFGP/LCompiler | 7ca7b50900d06a7a8519bc090895a1148cd0e664 | 4e61ce4ae4b0f8f5575d5d844efc97fa65f5bc2d | refs/heads/master | 2021-07-06T17:01:34.295851 | 2017-10-02T21:38:10 | 2017-10-02T21:38:10 | 105,586,440 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 121 | hpp | #include "Includes.hpp"
#pragma once
class Function
{
public:
RegisterType m_Type;
std::string m_Address;
}; | [
"noreply@github.com"
] | PedroFGP.noreply@github.com |
9aac9a88600abc61c4bcceb500b8a798de196ad5 | 451915543cefc4c588192895204c728dab2278b7 | /ProgrammingMethodsAndTechnics/container_Sort.cpp | 858059ca3b1d4c47da35b3fe43c7fed7324bfa74 | [] | no_license | Bumer19981/ProgrammingMethodsAndTechnics | a523d8838f36bcbf4269b09172219c44869cb073 | 85bf25e4399ecf06cd16d2c7f19beab4c9153c3f | refs/heads/master | 2021-04-02T04:04:19.361030 | 2020-05-30T17:56:03 | 2020-05-30T17:56:03 | 248,238,844 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,647 | cpp | #include <fstream>
#include "container_atd.h"
using namespace std;
namespace simple_langtypes {
//bool Compare(langtype* first, langtype* second);
void sort(Container& c) {
if (c.list.head == NULL)
{
throw std::invalid_argument("Error: list is empty!");
}
for (int i = 0; i < c.list.size - 1; i++) {
fo... | [
"bumer19981@gmail.com"
] | bumer19981@gmail.com |
de22b7071a63a301c8fd819b9184914c37367a37 | c4692fbdc122876043a060756aa9ef61e563fca1 | /proper/abi/include/locale_misc/collate-inl.h | c68b9b05c41cccf3e2fb4ea0916d0182d6b8e1d9 | [] | no_license | nahratzah/ilias_os | 837b8eabe3d638767d552206b5c2691a176069fa | a63c03a36e656cee1b897eb952a39bccc2616406 | refs/heads/master | 2021-01-23T13:43:55.103755 | 2015-06-11T07:37:01 | 2015-06-11T07:37:01 | 28,526,656 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,653 | h | #ifndef _LOCALE_MISC_COLLATE_INL_H_
#define _LOCALE_MISC_COLLATE_INL_H_
#include <locale_misc/collate.h>
_namespace_begin(std)
template<typename Char>
collate<Char>::collate(size_t refs)
: locale::facet(refs)
{}
template<typename Char>
collate<Char>::~collate() noexcept {}
template<typename Char>
auto collate<Cha... | [
"ariane@stack.nl"
] | ariane@stack.nl |
2e1947524297a95429c1a81937b6c253756bef76 | 48a73a0ba850ac2925118dd304baa8f7b2874582 | /C++/source/Framework/ObjectRelationalMapping/RelationshipInfoFromSchemaDifference.cpp | 4af631b6afd62673a1f66b385e6fdd8d05d10ecf | [
"Apache-2.0"
] | permissive | cxvisa/Wave | 5e66dfbe32c85405bc2761c509ba8507ff66f8fe | 1aca714933ff1df53d660f038c76ca3f2202bf4a | refs/heads/master | 2021-05-03T15:00:49.991391 | 2018-03-31T23:06:40 | 2018-03-31T23:06:40 | 56,774,204 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 7,063 | cpp | /**
*@file RelationshipInfoFromSchemaDifference.h
* Copyright (C) 2011 Brocade Communications Systems,Inc.
* All rights reserved.
* Description: This file declares the class that stores the info regarding a relation
* It will be used in the context of storing the added/removed relationships
* ... | [
"sagar@wave.sagar.cisco.com"
] | sagar@wave.sagar.cisco.com |
e381831028fd574d1c0d62069e8810ba4d330d17 | 0fc78bbf3e9656878924d0ac4b2beec5a4579d81 | /perpalin.cpp | 8c76d85b7ccc4ee2f25de4fbbc40e94776862524 | [] | no_license | adityalahiri/CPP-Code | b15e7139a49b78d87be849465294bff44a87cbe9 | 98defdeb37388ceb109a5e94b1ac75a0bdc7ec70 | refs/heads/master | 2021-10-09T12:02:50.874157 | 2018-12-27T10:51:19 | 2018-12-27T10:51:19 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 509 | cpp | #include <iostream>
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
int main(){
int num_tests = 0;
cin>>num_tests;
while(num_tests--){
ll N,P;
cin>>N>>P;
if((N==P && N==2) || P == 1 || P == 2){
cout<<"impossible"<<endl;
continue;
}
string s[P];
s[... | [
"arrayslayer@gmail.com"
] | arrayslayer@gmail.com |
2c44462a1140f06e18bf0a60f6494730d14d3c2c | 320aebafb7235465345a4e94aa598e4192663813 | /tradeapi/utf8/USTPFtdcMduserApi.h | 5fc01a883b74701202683e142e73bc9e49e7ebcc | [] | no_license | charmer1989/node-femas-api | 5108f7c9ea9ec1cf66ed074b77fb7ed677bacbd7 | 6584da6d94dc6c6094000264bee6a99fc65504e8 | refs/heads/master | 2020-07-27T09:53:40.349144 | 2016-09-23T07:11:17 | 2016-09-23T07:11:17 | 67,613,337 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,902 | h | /////////////////////////////////////////////////////////////////////////
///@system 风控前置系统
///@company 上海金融期货信息技术有限公司
///@file USTPFtdcMduserApi.h
///@brief 定义了客户端接口
///@history
///20130520 徐忠华 创建该文件
/////////////////////////////////////////////////////////////////////////
#if !defined(USTP_FTDCMDUSERAPI_H)
#define ... | [
"charmer01@sina.com"
] | charmer01@sina.com |
b62269ed8c719e6316288749234db36b395ce70e | 6e05fc9db48d795d0485ce8502b3cb9f0ac53074 | /spt_helper/src/spt_user_info.cpp | bb868568e39ff024d60a177fdb9e2f18257fa295 | [] | no_license | squirrel-project/squirrel_hri | df4a6e6ffb55c25187c7c4f5c334ac8e2c1a3546 | 719514c945bd06adde608cfc3afeec4ba3cb3869 | refs/heads/indigo_dev | 2021-09-08T21:27:48.355442 | 2018-03-12T10:30:13 | 2018-03-12T10:30:13 | 28,039,712 | 0 | 4 | null | 2018-03-12T10:30:14 | 2014-12-15T14:18:25 | C | UTF-8 | C++ | false | false | 4,407 | cpp | #include <ros/ros.h>
#include <visualization_msgs/Marker.h>
#include <tf/transform_listener.h>
#include <squirrel_person_tracker_msgs/SkeletonVector.h>
geometry_msgs::Point gtransformToGpoint(const geometry_msgs::TransformStamped& transform,
geometry_msgs::Point& tmpPoint)
{
t... | [
"pregier@cs.uni-bonn.de"
] | pregier@cs.uni-bonn.de |
7602f0262c2e8af1dc6e5fbd4beedc47f54ee83c | 21b99ea7396881e8a56f41b53e5672e689c805a7 | /omnetpp-5.2.1/include/omnetpp/cscheduler.h | 1f700bb08652b6ea3085a20f84dbaed9ecfc6a63 | [] | no_license | mohammedalasmar/omnetpp-data-transport-model-ndp | 7bf8863091345c0c7ce5b5e80052dc739baa8700 | cbede62fc2b375e8e0012421a4d60f70f1866d69 | refs/heads/master | 2023-06-27T06:17:57.433908 | 2020-10-09T11:30:02 | 2020-10-09T11:30:02 | 194,747,934 | 2 | 2 | null | 2021-08-02T17:03:56 | 2019-07-01T21:54:32 | HTML | UTF-8 | C++ | false | false | 7,692 | h | //=========================================================================
// CSCHEDULER.H - part of
// OMNeT++/OMNEST
// Discrete System Simulation in C++
//
//=========================================================================
/*-----------------------------------------------------... | [
"mohammedzsalasmar@gmail.com"
] | mohammedzsalasmar@gmail.com |
b5952f4126ae3959822968d187aae5fa4f573542 | 40aa541c6529115e964d50ec4fe6f7cf774bc0cb | /opt_algs.1.0/oa_hillclimb.h | cca2d76d9dcf6d367305bcfd95f5e41230d7cc99 | [
"BSD-3-Clause"
] | permissive | ghornby/opt_algs | 663edcc2f32d7a195f394108c883948d48dd614c | b68aefceda7c6ab50976e87551cc6986b5616321 | refs/heads/master | 2020-05-18T19:33:01.257390 | 2017-04-05T18:57:17 | 2017-04-05T18:57:17 | 20,343,075 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,041 | h | /***
This file is part of the OptAlgs C++ library originally developed
by Gregory Hornby.
This code is released under the BSD-3 license:
http://opensource.org/licenses/BSD-3-Clause
See the file "license.txt" in the root directory for full details.
***/
/*
author: Gregory S. Hornby
file: oa_hillclimb.h
Descr... | [
"ghornby@gmail.com"
] | ghornby@gmail.com |
b0f9da022642503c09c3942f0110255898253dfd | 1a20961af3b03b46c109b09812143a7ef95c6caa | /ZGame/DX11/DirectXTex/ScreenGrab/ScreenGrab12.h | f20c42191774ee2c60f1bf686f41b38e63d8f6bd | [
"MIT"
] | permissive | JetAr/ZNginx | eff4ae2457b7b28115787d6af7a3098c121e8368 | 698b40085585d4190cf983f61b803ad23468cdef | refs/heads/master | 2021-07-16T13:29:57.438175 | 2017-10-23T02:05:43 | 2017-10-23T02:05:43 | 26,522,265 | 3 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,845 | h | //--------------------------------------------------------------------------------------
// File: ScreenGrab12.h
//
// Function for capturing a 2D texture and saving it to a file (aka a 'screenshot'
// when used on a Direct3D 12 Render Target).
//
// Note these functions are useful as a light-weight runtime screen gra... | [
"126.org@gmail.com"
] | 126.org@gmail.com |
e3d9c3f1e076ae554af9d032aa9628c1aa5df376 | 0f40e36dc65b58cc3c04022cf215c77ae31965a8 | /src/apps/vis/writer/vis_writer_factory.cpp | f17a2d9662492c70428061ca51440dccfd7d2525 | [
"MIT",
"BSD-3-Clause"
] | permissive | venkatarajasekhar/shawn-1 | 08e6cd4cf9f39a8962c1514aa17b294565e849f8 | d36c90dd88f8460e89731c873bb71fb97da85e82 | refs/heads/master | 2020-06-26T18:19:01.247491 | 2010-10-26T17:40:48 | 2010-10-26T17:40:48 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,323 | cpp | /************************************************************************
** This file is part of the network simulator Shawn. **
** Copyright (C) 2004-2007 by the SwarmNet (www.swarmnet.de) project **
** Shawn is free software; you can redistribute it and/or modify it **
** under the terms ... | [
"csinger08@users.sourceforge.net"
] | csinger08@users.sourceforge.net |
98efd4f0d622df241b771c7a6d3ec86923f8d5cc | e51d009c6c6a1633c2c11ea4e89f289ea294ec7e | /xr2-dsgn/sources/xray/physics/sources/geometry.h | b87b5dc0b929c6fe532929e5251760a5b90d7e52 | [] | no_license | avmal0-Cor/xr2-dsgn | a0c726a4d54a2ac8147a36549bc79620fead0090 | 14e9203ee26be7a3cb5ca5da7056ecb53c558c72 | refs/heads/master | 2023-07-03T02:05:00.566892 | 2021-08-06T03:10:53 | 2021-08-06T03:10:53 | 389,939,196 | 3 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 1,697 | h | ////////////////////////////////////////////////////////////////////////////
// Created : 30.01.2008
// Author : Konstantin Slipchenko
// Description : geometry: collision geometry to integration cycle interface
////////////////////////////////////////////////////////////////////////////
#ifndef XRAY_PHYSICS_GEOMETRY... | [
"youalexandrov@icloud.com"
] | youalexandrov@icloud.com |
224e33f06ee86e3c2566ca1191cf2820190c4e62 | 39a14ada3b83a1c873fb9eab216ce136fe63acb2 | /TETRIS_VS_Server/TETRIS_VS_Server/RoomManager.h | 2433545cbad58e1fb548263379c27d581776c6ea | [] | no_license | shield1203/TETRIS_VS_Server | d725c58da040278fee512d0d1832bea904691e5b | 02821837db4bfdffb2debdd644cbf4f606a4f249 | refs/heads/master | 2021-01-02T02:27:36.255157 | 2020-03-05T17:45:04 | 2020-03-05T17:45:04 | 239,449,317 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 522 | h | #pragma once
class GameUser;
class PacketManager;
enum ROOM_MANAGER { FULL_USER_COUNT = 2 };
struct GameRoom
{
int roomNum = 0;
list<PacketManager*>gameUserList;
};
class RoomManager
{
private:
static RoomManager* Inst;
RoomManager();
public:
list<GameRoom*>m_roomList;
public:
static RoomManager* getInstance()... | [
"57628185+shield1203@users.noreply.github.com"
] | 57628185+shield1203@users.noreply.github.com |
cce76a425374a67e655a29adb6fe02cc28bab0a2 | afe353957386de4859f782d29743d1536c5660c5 | /OpenGL_4_Application_VS2015/Camera.hpp | 0475847f179ecd65e67d48e8eb18d126fa4a5f88 | [] | no_license | BlagaCristi/GraphicalProcessingSystemsProject | df0722819f4e40acea150bbdfefd5e2768e638ee | f4380fb0c4168023b28e416625d4426ce02396ba | refs/heads/master | 2023-03-05T01:28:49.308577 | 2021-01-30T19:13:08 | 2021-01-30T19:13:08 | 334,490,492 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 862 | hpp | //
// Camera.hpp
//
// Created by CGIS on 28/10/2016.
// Copyright © 2016 CGIS. All rights reserved.
//
#ifndef Camera_hpp
#define Camera_hpp
#include <stdio.h>
#include "glm/glm.hpp"
#include "glm/gtx/transform.hpp"
namespace gps {
enum MOVE_DIRECTION {MOVE_FORWARD, MOVE_BACKWARD, MOVE_RIGHT, MOVE_LEFT}... | [
"blaga.cristi23@gmail.com"
] | blaga.cristi23@gmail.com |
527066550fcc10c61464f38660542c8052c3c0ae | 1d351697bcf282cd30044db8c35eb10036bca483 | /Sound/ScriptMgr.h | 8d14371b2cbacc90c901f1b9e984f2b149e03e50 | [] | no_license | Hyski/ParadiseCracked | 489c007d39a7f7f7a0331a7282d8ba4f083918c0 | b3815cc146c038a8454c97e9f48d462c8ddc50ca | refs/heads/master | 2021-04-04T13:21:18.347302 | 2020-03-19T09:25:44 | 2020-03-19T09:25:44 | 248,460,973 | 0 | 1 | null | null | null | null | WINDOWS-1251 | C++ | false | false | 631 | h | #if !defined(__SCRIPT_MANAGER_INCLUDED__)
#define __SCRIPT_MANAGER_INCLUDED__
#include <map>
class cc_DirectMusic;
class cc_SndScript;
class cc_SegmentMgr;
class cc_ScriptMgr
{
static const char *m_LogFile;
typedef std::map<std::string,cc_SndScript *> scripts_t;
scripts_t m_Scripts;
DECLARE_LOG_MEMBER(m_log);
... | [
"43969955+Hyski@users.noreply.github.com"
] | 43969955+Hyski@users.noreply.github.com |
b85c598b93e86eab1aed35bfbcad0e64e41fc4fd | 1e58f86db88d590ce63110c885c52305d67f8136 | /Common/application.h | 135c6ff621210a865d79a44129e62e0f359c1abb | [] | no_license | urielyan/F270 | 32a9b87780b6b0bbbd8e072ca4305cd38dc975c1 | c3d1eceead895ded12166eeb6748df111f46ef2d | refs/heads/master | 2021-01-10T02:06:40.335370 | 2016-03-02T03:23:02 | 2016-03-02T03:23:02 | 52,927,128 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 999 | h | #ifndef APPLICATION_H
#define APPLICATION_H
#include <QApplication>
#include <QTimer>
#include "eventaction.h"
class Application : public QApplication
{
Q_OBJECT
public:
explicit Application(int & argc, char ** argv);
bool notify(QObject *receiver, QEvent *e);
void actionEventNotify(EVENT_OBJECT *pE... | [
"urielyan@sina.com"
] | urielyan@sina.com |
00027acf9ab6f5987171deeec9ca0d7328220c6e | ec5a3af4822403e5adbfb44dfba9ece0c8998ed6 | /src/Vulkan/VulkanPipeline.cpp | 5e90094384230427fd69843572f5b47e86b295a6 | [] | no_license | WeyrSDev/VirtualVistaVulkan | 99ff448a39f4d06fe49f2b0d9aa5543c8d79cbd6 | 6a979510da45b3e55b47674d74078ffdb42565f0 | refs/heads/master | 2021-05-05T19:14:38.918264 | 2017-06-15T22:52:09 | 2017-06-15T22:52:09 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,561 | cpp |
#include "VulkanPipeline.h"
namespace vv
{
///////////////////////////////////////////////////////////////////////////////////////////// Public
VulkanPipeline::VulkanPipeline()
{
}
VulkanPipeline::~VulkanPipeline()
{
}
void VulkanPipeline::create(VulkanDevice *device, Shader *shader, VkPipelineLayout pipe... | [
"romanylarionov@gmail.com"
] | romanylarionov@gmail.com |
2cc76ada63d066c138b7a4202bf08d90b6980398 | 140d78334109e02590f04769ec154180b2eaf78d | /aws-cpp-sdk-marketplace-entitlement/include/aws/marketplace-entitlement/model/Entitlement.h | cb1cbd41f3eecf0ef1a6221433aa447189bb6eda | [
"Apache-2.0",
"MIT",
"JSON"
] | permissive | coderTong/aws-sdk-cpp | da140feb7e5495366a8d2a6a02cf8b28ba820ff6 | 5cd0c0a03b667c5a0bd17394924abe73d4b3754a | refs/heads/master | 2021-07-08T07:04:40.181622 | 2017-08-22T21:50:00 | 2017-08-22T21:50:00 | 101,145,374 | 0 | 1 | Apache-2.0 | 2021-05-04T21:06:36 | 2017-08-23T06:24:37 | C++ | UTF-8 | C++ | false | false | 12,794 | h | /*
* Copyright 2010-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" fil... | [
"henso@amazon.com"
] | henso@amazon.com |
ae46a06e17c1a9187514d036bfc4bac1e9491e79 | 2f10f807d3307b83293a521da600c02623cdda82 | /deps/boost/win/debug/include/boost/mpl/set/aux_/include_preprocessed.hpp | e7e455895e5e9a9d32b208739377283b0ab8051f | [] | no_license | xpierrohk/dpt-rp1-cpp | 2ca4e377628363c3e9d41f88c8cbccc0fc2f1a1e | 643d053983fce3e6b099e2d3c9ab8387d0ea5a75 | refs/heads/master | 2021-05-23T08:19:48.823198 | 2019-07-26T17:35:28 | 2019-07-26T17:35:28 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 129 | hpp | version https://git-lfs.github.com/spec/v1
oid sha256:d014fe3aeb77d984dbcdb21c769c2d8c9c4f8ffc3265b98dac482537fda280f9
size 1189
| [
"YLiLarry@gmail.com"
] | YLiLarry@gmail.com |
412a88248a3dbc80ac3a655c4df69467f01d4d69 | 1d11ed2f1fdba2fd9472f6d762d8ab2369bd0fc8 | /Spaghetti/Spaghetti/src/Spaghetti/CCollision.h | ede2d93210813cfc98e0cdf00227dce11acae08c | [] | no_license | SamOatesUniversity/Year-3---Physics---Spaghetti | 339c8c9e72c04ecdcba17e5e76176608c21aeb12 | 0785a2cfcc87048b04f95fca5f81d108cf5c57d8 | refs/heads/master | 2021-03-12T20:36:06.364559 | 2013-06-06T09:21:30 | 2013-06-06T09:21:30 | 41,171,737 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 257 | h | #pragma once
#include <Ogre/Ogre.h>
class CSpaghettiRigidBody;
class CCollision {
public:
CSpaghettiRigidBody *bodyOne;
CSpaghettiRigidBody *bodyTwo;
Ogre::Vector3 collisionPoint;
Ogre::Vector3 collisionNormal;
float penetration;
};
| [
"sam@samoatesgames.com"
] | sam@samoatesgames.com |
750ba1e613b374e8fce1631ec5ab6f16090c2e9c | bb0c64f97a7350b48e0a1c7a6f54429a436c6e10 | /board.h | 71ae61c69c16351dbe3496c4401a98b66bec957f | [] | no_license | arladerus/cs246FinalProject | 1c32df001c46a56082b6c0925c3cb52fbb4feaec | 23e2e6ac2338227d822c8c8cdb9b5b5ee9a99f75 | refs/heads/master | 2021-01-18T10:36:50.335480 | 2013-07-21T04:07:55 | 2013-07-21T04:07:55 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 958 | h | #ifndef __BOARD_H__
#define __BOARD_H__
#include "cell.h"
#include "window.h"
#include<iostream>
class Board{
Cell ** gameBoard; //the board object that holds the game matrix
Xwindow * window; //the GUI
int xStartPos; //default starting location for the blocks
int yStartPos;
int column; //column of the mat... | [
"joeyjoeyze@hotmail.com"
] | joeyjoeyze@hotmail.com |
ffffac42c7fa4978d9cc8e3c3ceb3417e791107a | 2ba632d229790bfd58a0f0401b75266e3a7594eb | /CODES/code37.cpp | cbbe957168db1c74754441b961b46c8132517dc9 | [] | no_license | M0315G/C-plus-plus-Basics | b1e4ae3a824367d98c5e82635f62d5aafa7c7227 | bcc75d78d8f69c156df1a52299517b9ffc4cc5d0 | refs/heads/main | 2023-06-11T02:25:41.604185 | 2021-06-29T16:44:47 | 2021-06-29T16:44:47 | 333,783,501 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 590 | cpp | // Problem: T-primes
// Link: https://codeforces.com/contest/230/problem/B
#include <bits/stdc++.h>
using namespace std;
int main()
{
int n;
cin >> n;
while(n>0){
int a;
cin >> a;
int sqr = sqrt(a);
bool flag=false;
for(int i=2; i<a/2; ++i... | [
"noreply@github.com"
] | M0315G.noreply@github.com |
1155eb6019593a66d25280bca0f01b0eafb59f5c | 5b6708afab2d064a3040a715e200057a90f47317 | /src_lowlatency/components/store/kvstore_test.cc | 22f6f3fe5f0be7f6ea88aa70778151419d41f030 | [] | no_license | ldanilek/CalvinHDFS | 0f032bd4b5d8e13431cfe6402f6826525932fe1d | 22059285419519a92c4e6d6c7945ca3824440a3b | refs/heads/master | 2020-12-02T11:30:16.998527 | 2017-05-25T20:42:18 | 2017-05-25T20:42:18 | 96,644,617 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,397 | cc | // Author: Alexander Thomson <thomson@cs.yale.edu>
//
// TODO(agt): Move to btreestore_test.cc
// TODO(agt): Test Actions.
#include "components/store/kvstore.h"
#include "components/store/btreestore.h"
#include "components/store/leveldbstore.h"
#include <gflags/gflags.h>
#include <gtest/gtest.h>
#include <glog/loggin... | [
"kun.ren@yale.edu"
] | kun.ren@yale.edu |
7bc63bd72caca2f993780a10e12a197cee0663fd | f538e176b90909c0907cca87525567d596731b0c | /multiServer/client.cc | 6433b1999dbc602675d7a94f1c85cb06d91d1862 | [] | no_license | GzhuFlyer/Unix_demo | d9655117300ad614c9077b1679ced278b4c3ecf8 | f684773913bbe176a3e1a7d0bce41ab3b15f10b3 | refs/heads/master | 2023-02-01T11:40:43.200894 | 2020-12-21T16:55:55 | 2020-12-21T16:55:55 | 317,797,840 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,108 | cc | #include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <stdlib.h>
#include <stdio.h>
#include <errno.h>
#include <string.h>
#include <unistd.h>
#define ERR_EXIT(M) \
do \
{ \
perror(M); \
exit(EXIT_FAILURE); \
}while(0)
int main(void)
{
... | [
"gzhuflyer@foxmail.com"
] | gzhuflyer@foxmail.com |
6f10decb3fb7fdccc21a5afb410c1c402a63c10d | 6e98a5d1588baaff7870316210c8033631fd7d3c | /programs/create_genesis/genesis_mapper.hpp | 9b3c9794827c2152b9738bb0f26d11c3027d170b | [
"MIT",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | scorum/scorum | f2ca45a678e46638d1bd0ebe868bed0431a53492 | f660e3f8ead05f90e412f4d83f92e34ada13a61b | refs/heads/develop | 2022-08-16T19:09:03.918951 | 2022-06-09T08:45:52 | 2022-06-09T10:04:56 | 106,838,543 | 57 | 30 | NOASSERTION | 2023-08-31T15:33:27 | 2017-10-13T15:01:17 | C++ | UTF-8 | C++ | false | false | 1,292 | hpp | #pragma once
#include <map>
#include <string>
#include <scorum/chain/genesis/genesis_state.hpp>
#include <fc/static_variant.hpp>
namespace scorum {
namespace util {
using scorum::chain::genesis_state_type;
using account_type = genesis_state_type::account_type;
using steemit_bounty_account_type = genesis_state_type:... | [
"andrew.masilevich@scorum.com"
] | andrew.masilevich@scorum.com |
5dd2849e3bc77c03135eb50c025edc182ba92279 | 40295e5de2f76e184cbf3385d432f003ef45d611 | /ChartShow_new/moc_chartshow.cpp | b8bba5ea2e06e5ae702efe91d411dd183ca34d78 | [] | no_license | alive2202/pukh_chart_lnx | 1e67409b066dc71b633547dbd47e5de2a5b85127 | 992d5102f3c4674642275a4db8ac6738d67ccf6e | refs/heads/master | 2020-11-27T10:13:03.433931 | 2019-12-21T08:42:21 | 2019-12-21T08:42:21 | 229,398,114 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 5,191 | cpp | /****************************************************************************
** Meta object code from reading C++ file 'chartshow.h'
**
** Created: Wed Jan 9 16:23:39 2019
** by: The Qt Meta Object Compiler version 63 (Qt 4.8.3)
**
** WARNING! All changes made in this file will be lost!
**************************... | [
"pukhalexander@gmail.com"
] | pukhalexander@gmail.com |
7f6a11197bac3e7b61a0a73dbdebf7aa4706137e | ec259beef8c61f42d2e9eb8e851cacd36cf5e391 | /FinalProjectArchive/code/UserSettings.h | 8d87d59359e1ee50d21f7b2c9835ec7feb9bf71f | [] | no_license | AlexanderJHill/Software-Engineering | 4b19844b01f8b9213d6d884a808667d8ed9b2009 | 63ac151d57b60a752e9307cbc5a129861c1c2ff6 | refs/heads/master | 2021-01-01T16:45:27.099696 | 2015-05-09T20:41:26 | 2015-05-09T20:41:26 | 31,767,606 | 0 | 0 | null | 2015-04-27T14:59:25 | 2015-03-06T12:06:11 | C++ | UTF-8 | C++ | false | false | 1,226 | h | #ifndef _USERSETTINGS_H_
#define _USERSETTINGS_H_
//! \file usersettings.h
//! \brief contains the users global simulation parameters.
//! \brief contains the users global simulation parameters.
class UserSettings{
public:
UserSettings();
int getfisherNum(); /*!< Returns the number of Fishers to use i... | [
"ahill6984@gmail.com"
] | ahill6984@gmail.com |
9a3de840c4dbae563c3192d145700ff9cbffb07a | f8542f61530d7b8028e5a920c0b9a19036ba21c5 | /Euler_336/Euler_336.cpp | 4c02b77dd1b3161f8ab44ffcf5f0ed6da1311997 | [] | no_license | datahaven/Project-Euler | f73bcdbd4d15818754d4d6648fa89a6d9b4fb1b5 | 74fc175fc6c9f18ae9a84585d563212f16ec6958 | refs/heads/master | 2020-04-21T09:55:25.767633 | 2019-07-13T21:55:27 | 2019-07-13T21:55:27 | 4,118,662 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,137 | cpp | // Project Euler 336
// Adrian Dale
// 23/05/2011
//
// Answer: CAGBIHEFJDK
//
// My code cheats a little in that I ran a first pass to find out what the maximum
// maximix number is, then I run again counting solutions up to that number.
// Not clever or especially efficient, but runs in a couple of seconds.
// Not co... | [
"adrian@adriandale.com"
] | adrian@adriandale.com |
c486164c50cb55c7a4fda2ad991bc89e6abf1ea3 | 1c9b78abe2d53d4fc2e013bae5596e2449e395dd | /18_String_Process/18_String_Process.ino | 148270044c077721a1b1aa43d330c5902ca4bf42 | [] | no_license | Altium-Designer-Projects/ESP3212-WS2812 | 1b5ee2fa68de3a727eec8687f8c157e733e9b172 | e04e2206ed840932841aaabd6032c337f485d550 | refs/heads/master | 2022-11-13T01:04:09.726544 | 2020-06-27T11:53:13 | 2020-06-27T11:53:13 | 274,913,359 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,364 | ino | #include "WiFi.h"
#include "ESPAsyncWebServer.h"
#include "index.h"
#include <WebSocketsServer.h>
/*
Hello
I design developer tools for embedded electronic systems. You can buy my projects design files.
https://www.altiumdesignerprojects.com
*/
AsyncWebServer server(80);
WebSocketsServer webSocket = WebSo... | [
"noreply@github.com"
] | Altium-Designer-Projects.noreply@github.com |
54ad0d10779dfcbc8509a28b21650256e9850955 | eac0bb6459c9d8a2c725263e3352c80e8a102d48 | /src/s390/assembler-s390.h | b916884a544c0071031dedfa4594b3673756b6ad | [
"BSD-3-Clause",
"bzip2-1.0.6",
"SunPro"
] | permissive | Yafei5515/v8 | cf3b00daa7cf9a44e2c23477f13c8e33c4b946ac | f1e04dbc0ad5eb6e593735ba98a3bf353af177b8 | refs/heads/master | 2020-04-14T23:03:22.174990 | 2019-01-05T03:08:28 | 2019-01-05T03:49:20 | 164,188,391 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 58,326 | h | // Copyright (c) 1994-2006 Sun Microsystems 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 ... | [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
1032316f973bc8db22e17c2dca2bf131a635c36d | 18e4ea8a882ffd5add41ce001522d60e0ce556e8 | /hw6-1/simple_shape_main.cc | 121270ed5780549c64c164c17d217d016e37c1f0 | [] | no_license | 2018008613/CreativeSoftwareProgramming | b36c5f7d992c7b4b5d55dab632c15380191a0605 | fddee907bd08772fca0bd9da868474859c671505 | refs/heads/master | 2022-04-21T09:04:48.937091 | 2020-04-15T12:43:09 | 2020-04-15T12:43:09 | 255,913,012 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 492 | cc | #include <iostream>
#include <string>
#include "simple_shape.h"
using namespace std;
int main()
{
while (1)
{
string a;
Circle c;
Rectangle t;
cout << "shape?" << endl;
cin >> a;
if (a == "C")
{
c.cgets();
cout << "area: " << c.CircleArea() << ", perimeter: " << c.CirclePerimeter() << endl;
}
... | [
"picosw@hanyang.ac.kr"
] | picosw@hanyang.ac.kr |
28d1c00d0258837e3801155a33077549f1beff26 | 50b10c0019c0e1a641024c2f1cb1713f57294a4a | /series2_handout/hyp_sys_1d/src/ancse/runge_kutta.cpp | 7411835c5db4185a51395321f04ef70d5109ee33 | [
"MIT"
] | permissive | BeatHubmann/19H-AdvNCSE | 37e2a65f3d2fb90a1685cfb64b1816943d608223 | 3979f768da933de82bd6ab29bbf31ea9fc31e501 | refs/heads/master | 2020-07-29T11:10:09.216346 | 2019-12-08T22:49:42 | 2019-12-08T22:49:42 | 209,775,272 | 1 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 2,020 | cpp | #include <ancse/runge_kutta.hpp>
#include <ancse/includes.hpp>
#include <ancse/config.hpp>
#include <fmt/format.h>
#define REGISTER_FVM_RUNGE_KUTTA(token, RKType) \
if (rk_key == token) { \
return std::make_shared<RKType>( ... | [
"BeatHubmann@users.noreply.github.com"
] | BeatHubmann@users.noreply.github.com |
064aa3ba8f940a41b6dfd3385812727306567a2c | c11460ee58386012ef30fa4089c43d715e231a4c | /lib/tsan/rtl/relacy/schedulers/tsan_fixed_window_scheduler.h | 015b7917888a8ef25d86d2388bd4a8f391639866 | [
"NCSA",
"MIT"
] | permissive | dorooleg/compiler-rt | 5589396b2c74e5e5d7ec82ce9809d2d5f2cb63df | 13ea846316c3986099c6a536f1973d75838ad675 | refs/heads/schedulers | 2022-01-25T14:17:39.004550 | 2019-07-08T19:37:14 | 2019-07-08T19:37:14 | 128,505,427 | 0 | 0 | NOASSERTION | 2019-07-08T19:37:56 | 2018-04-07T07:13:42 | C | UTF-8 | C++ | false | false | 858 | h | #ifndef TSAN_FIXED_WINDOW_SCHEDULER_H
#define TSAN_FIXED_WINDOW_SCHEDULER_H
#include "rtl/relacy/tsan_scheduler.h"
#include "rtl/relacy/tsan_shared_vector.h"
#include "rtl/relacy/tsan_threads_box.h"
namespace __tsan {
namespace __relacy {
class FixedWindowScheduler : public Scheduler {
public:
FixedWindowSchedu... | [
"dorooleg@yandex.ru"
] | dorooleg@yandex.ru |
0705f9f98dee1239960481b1586f85783e301c54 | 0b68534e02bbcce3b93be85e2b8974a6b224f0cc | /chtho/net/http/HTTPContext.cpp | 75a4da904dd26a809aae83e5382ceaca830d496f | [
"MIT"
] | permissive | WineChord/chtho | f2b9ffe1b05faf4276d03cf7864dd3987e71ef38 | f43c56a1c2faf83e5f48361ca1b06366ce061aab | refs/heads/main | 2023-04-10T18:50:38.818174 | 2021-04-25T17:21:22 | 2021-04-25T17:21:22 | 340,803,506 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,264 | cpp | // Copyright (c) 2021 Qizhou Guo
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT
#include "HTTPContext.h"
#include "net/Buffer.h"
namespace chtho
{
namespace net
{
/* request structure
GET /hello.txt HTTP/1.1
User-Agent: curl/7.16.3 libcurl/7.16.3 OpenSSL/0.9.7l zlib/1.2... | [
"guoqizhou123123@qq.com"
] | guoqizhou123123@qq.com |
31bf6e308cd11ffef511d6c96f843a8e29ec01d5 | 2fd0fae47b85ce8661edaf2ea4fab2377a69eaf8 | /OOPaufgabenblatt2a6.cpp | ddee6c5bc0d645caa2c245270a29197f10748cd1 | [] | no_license | Seakuh/OOP | 1277bb32a7bb5db09a2e6992ac27fa63efc9e6b0 | aa9fe6e88b92126223a4b0c713bbf34d883e93ea | refs/heads/master | 2020-12-13T04:06:35.957386 | 2020-01-16T11:49:19 | 2020-01-16T11:49:19 | 234,308,392 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 794 | cpp | #include <iostream>
#include "letzteaufg copy.h"
int main()
{
double k = 50;
double j = 0.5;
Arraylist<double> neu = Arraylist<double>(k);
Arraylist<double> vergleich = Arraylist<double>(7);
Arraylist<double> zuweisen = Arraylist<double>(7);
Arraylist<double> zuweisen1 = Arraylist<double>(7);
... | [
"eteranimal@protonmail.com"
] | eteranimal@protonmail.com |
657371e198c8432a210112097386edb68d064c07 | f9e2744ff3e630d3416843b243e6451ad2030263 | /src/qt/sendcoinsdialog.cpp | bcf7b3e5e15b826ff466a11d8af759e85caa2cea | [
"MIT"
] | permissive | bincoinus/Bincoin | 0623e166b288ff7279fe0fa85efd2db66e949a63 | 6bc3afc8bb03f7eb3c6618ba2303c04b6795619d | refs/heads/master | 2020-06-11T23:37:03.614478 | 2016-12-05T10:15:24 | 2016-12-05T10:15:24 | 75,612,846 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 17,900 | cpp | #include "sendcoinsdialog.h"
#include "ui_sendcoinsdialog.h"
#include "init.h"
#include "walletmodel.h"
#include "addresstablemodel.h"
#include "addressbookpage.h"
#include "bitcoinunits.h"
#include "addressbookpage.h"
#include "optionsmodel.h"
#include "sendcoinsentry.h"
#include "guiutil.h"
#include "askpassphrased... | [
"team@bincoin.us"
] | team@bincoin.us |
4b8b9a1d08b8e250ce3e81db85c2d097dfa65e4a | 2d34422361367d6fb28167c713f689ee7084d5c0 | /libraries/reducedElasticForceModel/reducedLinearStVKForceModel.cpp | 5b4f42a0a69fca70c6cc5b70dddd20aa643f3a9a | [] | no_license | kengwit/VegaFEM-v3.0 | 5c307de1f2a2f57c2cc7d111c1da989fe07202f4 | 6eb4822f8d301d502d449d28bcfb5b9dbb916f08 | refs/heads/master | 2021-12-10T15:03:14.828219 | 2016-08-24T12:04:03 | 2016-08-24T12:04:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,311 | cpp | /*************************************************************************
* *
* Vega FEM Simulation Library Version 3.0 *
* *
* "elasticForceMode... | [
"jslee02@gmail.com"
] | jslee02@gmail.com |
cc92a8aab28153ad880885f9b8bd35adb2e2eff2 | c47b47e5768549da37b768ea270abe62db43a390 | /Lab6/avltree.h | 84b45115ae1c6a22fa51fbcdb7888c262e32cb0a | [] | no_license | tiennm99/CTDL-GT | 69ec46eb74618e08acb5e92aa222360b073974c5 | 9da63ab2407446f8334aff7ed8c75cafe80c6c96 | refs/heads/master | 2021-10-10T13:53:50.056119 | 2019-01-11T13:27:28 | 2019-01-11T13:27:28 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,175 | h | #ifndef AVLTREE_H
#define AVLTREE_H
#include <stack>
#include "avlnode.h"
template <class T>
class AVLTree
{
private:
AVLNode<T> *root = nullptr;
AVLNode<T> *rotateLeft(AVLNode<T> *node);
AVLNode<T> *rotateRight(AVLNode<T> *node);
int getHeight(AVLNode<T> *node);
void rebalance(AVLNode<T> *node);
... | [
"minhtienit99@gmail.com"
] | minhtienit99@gmail.com |
6509eb236878baa1f04db93bb63e98630f11813d | f6d498cab468a60e8b03489e2b3fd40588862955 | /Figurinhas da Copa.cpp | adc74f457fb9ca013868efececbb10abbfcb0a03 | [
"MIT"
] | permissive | VictorCastao/NEPS_Academy-Resolvidos | f66b61f08e76e9e016dfaea39d625567cb9cdbd8 | 71800aaf24770fde368e62b223bdf2b8099817eb | refs/heads/main | 2022-12-22T09:41:41.418522 | 2020-10-05T16:04:38 | 2020-10-05T16:04:38 | 301,462,926 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 452 | cpp | #include <iostream>
#include <set>
using namespace std;
int main(){
set <int> figurinhas;
int espacos, carimbadas, compradas, temp, i;
cin >> espacos >> carimbadas >> compradas;
for(i=0; i<carimbadas; i++){
cin >> temp;
figurinhas.insert(temp);
}
for(i=0; i<compradas; i++){
cin >> temp;
if(figurinha... | [
"noreply@github.com"
] | VictorCastao.noreply@github.com |
0e704dec214cf8eb6cb5a3d2d9197763a2f2e327 | cb2fe0a9a10a7418bc683df6eedb238c657f4c8a | /Basics of C++/tutorial_11_do_while.cpp | 9c5434620b885770f5311a26932f22777c10a84f | [] | no_license | withoutwaxaryan/programming-basics | bf33c32545e89deba13c6ab33a1568e69f40c693 | 93c0c57bf36acd1190f65ec3f2b6d316d59eaaf0 | refs/heads/master | 2023-03-07T04:58:37.451151 | 2021-02-20T12:26:14 | 2021-02-20T12:26:14 | 181,515,433 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 147 | cpp | #include<iostream>
using namespace std;
int main()
{
int x =1;
do
{
cout<<"yo"<<endl;
} while (x<1);
return 0;
} | [
"aryangupta973@gmail.com"
] | aryangupta973@gmail.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.