blob_id stringlengths 40 40 | directory_id stringlengths 40 40 | path stringlengths 4 201 | content_id stringlengths 40 40 | detected_licenses listlengths 0 85 | license_type stringclasses 2
values | repo_name stringlengths 7 100 | snapshot_id stringlengths 40 40 | revision_id stringlengths 40 40 | branch_name stringclasses 260
values | visit_date timestamp[us] | revision_date timestamp[us] | committer_date timestamp[us] | github_id int64 11.4k 681M ⌀ | star_events_count int64 0 209k | fork_events_count int64 0 110k | gha_license_id stringclasses 17
values | gha_event_created_at timestamp[us] | gha_created_at timestamp[us] | gha_language stringclasses 80
values | src_encoding stringclasses 28
values | language stringclasses 1
value | is_vendor bool 1
class | is_generated bool 2
classes | length_bytes int64 8 9.86M | extension stringclasses 52
values | content stringlengths 8 9.86M | authors listlengths 1 1 | author stringlengths 0 119 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
ff3142c25d639131bbf2f8315abd61463de52cf4 | 6b96a11195094a0023a059ba7d5df95ce58c56f1 | /1343B.cpp | 4e1b57bec1c010266a0b3f31a65bcfa83d442fa9 | [] | no_license | ldfdev/CodeForces-Div2-Problems | d932b09ee14a430fd0054d5b295f6016553be2b7 | d18824a4330a4593099d249496ae22f3f69d5f44 | refs/heads/master | 2021-08-11T03:29:18.772870 | 2021-07-25T07:21:09 | 2021-07-29T20:09:43 | 72,371,376 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 586 | cpp | #include <bits/stdc++.h>
int main()
{
int tests;
scanf("%d", &tests);
while(tests--) {
long n;
scanf("%ld", &n);
if ((n % 4) != 0) {
printf("NO\n");
}
else {
printf("YES\n");
long k = (n / 2);
for (long i = 1; i < k; ... | [
"ldf.develop@gmail.com"
] | ldf.develop@gmail.com |
758fb374ac125db43caaf894ab2318abb7187ce3 | 050ebbbc7d5f89d340fd9f2aa534eac42d9babb7 | /grupa2/kasiamalek/p2/wic.cpp | 900a0c8e37a219783797fcb4e6c46ca1e7431a9c | [] | no_license | anagorko/zpk2015 | 83461a25831fa4358366ec15ab915a0d9b6acdf5 | 0553ec55d2617f7bea588d650b94828b5f434915 | refs/heads/master | 2020-04-05T23:47:55.299547 | 2016-09-14T11:01:46 | 2016-09-14T11:01:46 | 52,429,626 | 0 | 13 | null | 2016-03-22T09:35:25 | 2016-02-24T09:19:07 | C++ | UTF-8 | C++ | false | false | 249 | cpp | #include <iostream>
using namespace std;
int main()
{
int n,a=0,b=0;
cin>>n;
int p[n-1];
for(int i=0;i<=n-1;i++)
{
cin>>p[i];
}
for(int i=0;i<=n-1;i++)
{
if(p[i]>a)
{
a=p[i];
}
}
for(int i=0;i<=n-1;i++)
{
if(p[i]>b&&p[i]<a)
{
b=p[i];
}
}
cout<<b;
}
| [
"kasia.malek.11235@gmail.com"
] | kasia.malek.11235@gmail.com |
aed12a7250e3914931f57bb21ca8314df8d1fbe9 | 9a3b9d80afd88e1fa9a24303877d6e130ce22702 | /src/Providers/UNIXProviders/SoftwareIdentityComponent/UNIX_SoftwareIdentityComponent_DARWIN.hxx | 139375cddf0c4c4877c7e6456c5955d6fbf08ff5 | [
"MIT"
] | permissive | brunolauze/openpegasus-providers | 3244b76d075bc66a77e4ed135893437a66dd769f | f24c56acab2c4c210a8d165bb499cd1b3a12f222 | refs/heads/master | 2020-04-17T04:27:14.970917 | 2015-01-04T22:08:09 | 2015-01-04T22:08:09 | 19,707,296 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,836 | hxx | //%LICENSE////////////////////////////////////////////////////////////////
//
// Licensed to The Open Group (TOG) under one or more contributor license
// agreements. Refer to the OpenPegasusNOTICE.txt file distributed with
// this work for additional information regarding copyright ownership.
// Each contributor lice... | [
"brunolauze@msn.com"
] | brunolauze@msn.com |
937b2828f3ee7dca78e92ac65528f5b52919c942 | 8a94973e9be468da05ab8d1393156e9775dc67aa | /C++/CPP_Programs_from_Book/Chap26/MaxTemplate/main.cpp | c0a70d6b650c2dfdd6184d994f3e0d4b28160851 | [] | no_license | poohpaintii/book-source-codes | 5935f4a17513833ade3d9447ae7a614ebc65e4f2 | da02c982d4003741dc5f1e5985df85147f42a42e | refs/heads/master | 2020-05-01T09:14:20.163807 | 2018-12-24T04:20:18 | 2018-12-24T04:20:18 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 759 | cpp | // MaxTemplate - create a template max() function
// that returns the greater of two types
#include <cstdio>
#include <cstdlib>
#include <iostream>
using namespace std;
template <class T> T maximum(T t1, T t2)
{
return (t1 > t2) ? t1 : t2;
}
int main(int argc, char* pArgs[])
{
// find the maxim... | [
"koson.trachu@gmail.com"
] | koson.trachu@gmail.com |
80b6fe7e9ea137a99e0cd88aec91037b3441378e | 8f2d8fc24d8401dae3841dacf48a08937308274d | /cardGame/src/Hand.cpp | 76ea69523b3d10ba106a86918b611250092fb148 | [] | no_license | safir-medjeber/cpp_project | 1a8d624b739ba40a0bb6538345c7fb575e7103fb | 32ac44ff3e6595159cb12350790e51c600724688 | refs/heads/master | 2021-01-10T03:53:20.910620 | 2015-01-22T20:33:06 | 2015-01-22T20:33:06 | 47,075,316 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,080 | cpp | #include "Hand.hpp"
void Hand::add(Card& card){
hand.push_back(&card);
}
void Hand::add(const CardContainer& cards){
for(int i = 0; i < cards.getSize(); i++)
add(cards.getElement(i));
}
CardContainer Hand::remove(Movement& movement){
list<Card*>::iterator it = hand.begin();
int k = 0;
int n = movement.... | [
"gedik@informatique.univ-paris-diderot.fr"
] | gedik@informatique.univ-paris-diderot.fr |
cf783bec50705a39d61d788ad79b024936292b55 | a7ce3479c9e085345197c21c54e83c37f734edd5 | /src/unitsearch.h | 3ea36d55a370ca95d4f3fa6cbe810f4d0d8276c8 | [
"MIT"
] | permissive | SCMapsAndMods/teippi | 01408821956c692f23c8facca5fd510a9e70b2e2 | 4946e2126846e9cb210694102953bbe06fe2e8ca | refs/heads/master | 2021-01-20T23:17:46.311381 | 2015-08-30T23:43:55 | 2015-08-30T23:43:55 | 41,648,591 | 1 | 0 | null | 2015-08-31T01:00:29 | 2015-08-31T01:00:29 | null | UTF-8 | C++ | false | false | 6,281 | h | #ifndef UNIT_SEARCH_H
#define UNIT_SEARCH_H
#include "types.h"
#include "unit.h"
#include "unitsearch_cache.h"
#pragma pack(push)
#pragma pack(1)
struct UnitPositions
{
Unit *unit;
uint16_t pos;
uint16_t type;
};
struct CollisionArea
{
Rect16 area;
Unit *self;
};
#pragma pack(pop)
class LeftSor... | [
"ittevien@gmail.com"
] | ittevien@gmail.com |
5db27e3b7143715de337561f1cdf316b9bc195ec | 05f28950d2afb858e9a475b31bbaef08ac20ffc3 | /miniPr/commands/removevideocommand.cpp | 17979565a6a0d65fbaf6f72d721cad98001ac4f9 | [] | no_license | Waffle-Liu/MiniPremiere | 970d9b4616d73bec52ce854d77b2892d718792e3 | 4490a7286d5f7649826fecda214c35c70d8adffb | refs/heads/master | 2021-07-06T07:30:16.211878 | 2019-02-22T15:48:42 | 2019-02-22T15:48:42 | 140,908,988 | 6 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 361 | cpp | #include "../commands/removevideocommand.h"
RemoveVideoCommand::RemoveVideoCommand(std::shared_ptr<PrViewModel> vm):viewmodel(vm)
{
}
RemoveVideoCommand::~RemoveVideoCommand()
{}
void RemoveVideoCommand::exec()
{
int index = std::static_pointer_cast<IntParameters, Parameters>(Command::params)->getvalue();
viewm... | [
"794227369@qq.com"
] | 794227369@qq.com |
baaca08f3208f85b42707e1b260a0be697d83161 | 187f6bb6b568e8bb42bafab8f81133d4ad5f383b | /Siv3D/src/Siv3D/Effect/CEffect.hpp | 7aaace1721697ba92392c480f578c287751fc648 | [
"MIT"
] | permissive | Reputeless/OpenSiv3D | f2938ea8f5c8de2e6e3b200046943f3e5398a2a1 | 7d02aa0f4824d1ecbd50ea1c00737cc932332b0a | refs/heads/main | 2023-07-29T06:57:44.541422 | 2023-07-13T03:41:37 | 2023-07-13T03:41:37 | 306,929,779 | 0 | 0 | MIT | 2021-09-02T10:37:00 | 2020-10-24T16:55:13 | C++ | UTF-8 | C++ | false | false | 1,500 | hpp | //-----------------------------------------------
//
// This file is part of the Siv3D Engine.
//
// Copyright (c) 2008-2023 Ryo Suzuki
// Copyright (c) 2016-2023 OpenSiv3D Project
//
// Licensed under the MIT License.
//
//-----------------------------------------------
# pragma once
# include <Siv3D/Common.hpp>
# i... | [
"reputeless+github@gmail.com"
] | reputeless+github@gmail.com |
86f1fcf9e7a9f26b0337b7b92f805051f0d83106 | 76bc179e1787144d45b7df23cf35b77a274f0bdb | /sqlite/DatabaseIF.h | a9818711770c4c5cf9ec23d855ba17e0d15310c5 | [] | no_license | rajeshanjara/BLibrary | 4df8ba0e9ad568c796f44250530b645fd025f153 | beca0b08c7a6483ba2bdcbc3d8bdcfcc08dccf81 | refs/heads/master | 2021-01-22T03:39:55.618644 | 2017-06-25T18:19:48 | 2017-06-25T18:19:48 | 92,390,957 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 406 | h | #pragma once
#include "DatabaseImpl.h"
namespace DataBase
{
class DatabaseIF
{
public:
DatabaseIF(void);
~DatabaseIF(void);
bool Connect( const char* pszDBName_i );
bool Execute( const char* pszQuery_i );
RecordSet getRecordSet()
{
return m_pDatabaseImpl->getRecordSet();
... | [
"noreply@github.com"
] | noreply@github.com |
cd8a76adaf53efba2761a80431e4d24c0862d97e | bf435acee8074688e4360d35344cc291b53bb30d | /src/turtle_tf2_listener.cpp | 5bf5e4d93437eeaa7fe8c77d45aeebf543dc838b | [] | no_license | RenFukatsu/learning_tf2 | a6656ef57694965c149bb15b94777acd940cd467 | 2ddf5b13675b5b3c84218027e357d3f9d1e82f27 | refs/heads/master | 2021-01-01T11:20:18.322430 | 2020-02-09T08:05:20 | 2020-02-09T08:05:20 | 239,256,691 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,553 | cpp | #include "learning_tf2/turtle_tf2_listener.h"
TurtleTf2Listener::TurtleTf2Listener() : tf_listener(tf_buffer)
{
turtle_vel = nh.advertise<geometry_msgs::Twist>("turtle2/cmd_vel", 1);
spawn_turtle();
}
void TurtleTf2Listener::spawn_turtle()
{
ros::service::waitForService("spawn");
ros::ServiceClient sp... | [
"fukatsuren88@gmail.com"
] | fukatsuren88@gmail.com |
6474cfa2b421bb8396177c01b6e3a4d40e81e5ce | 5d5f287c826116f6eb9082ee1594f99ed59c0d48 | /Arduino/sketch_may16a/sketch_may16a.ino | 69a34aae527bc8149d748220e8e7a38eff9618f0 | [] | no_license | AliHuseynzadeh/arduino-all-projects | 8a632980447a53a29a2546b270702bcbef6c32f1 | dfb8e1d65a08f895b15f36adea26fc1efd92c676 | refs/heads/master | 2023-06-17T03:23:19.224104 | 2021-06-27T13:59:52 | 2021-06-27T13:59:52 | 380,754,302 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,388 | ino | #include<Arduino.h>
#include <SoftwareSerial.h>
#include <Wire.h>
#define RELE1 25
#define RELE2 26
#define LED 17
unsigned long lastTime = 0;
unsigned long a = 60000;
//int remainder = 0;
char Received_SMS; //Here we store the full received SMS (with phone sending number and date/time) as char
short RELE... | [
"alihuseynzade2001@gmail.com"
] | alihuseynzade2001@gmail.com |
1ed851d252847bf5a1f0170390766a3e4ad88f6d | 8f2e8a3320f8ab79a106ff7cf9c88eaa59f59257 | /使用C++和Qt完成读文件,写MySQL/interface/smgsrv/iastoragemgr.h | 3c4ada0602ecc220f04c73a59b0d88c1a44b0026 | [] | no_license | KqSMea8/My_C_Project | 1aa9b4793d3ecce6d7ea233b98786b1207a8e1f0 | cb7555737b91707a4785d7392b26e600c4ae742d | refs/heads/master | 2020-05-31T14:46:34.104077 | 2019-06-05T06:10:57 | 2019-06-05T06:10:57 | null | 0 | 0 | null | null | null | null | GB18030 | C++ | false | false | 4,418 | h | //iastoragemgr.h
#ifndef _IASTORAGEMGR_SMG8000_PENGSHIKANG_20140122_H_
#define _IASTORAGEMGR_SMG8000_PENGSHIKANG_20140122_H_
#define ASTORAGEMANAGER_CLASSID "cAStorageMgr"
#define ASTORAGEMANAGER_INTFID "iAStorageMgr"
#include "../icsunknown.h" // for IICSUnknown
#include "smgda... | [
"623497281@qq.com"
] | 623497281@qq.com |
0fd811d3d7d90f0d5b06325a64d4e6869af942c7 | afd32ad1735c8bebac60799e5051f998a8bd2b6f | /vehicle/OVMS.V3/components/vehicle_renaultzoe/src/vehicle_renaultzoe.cpp | d0b7e72d826a1b2c8109c0c7c0e7359938c460da | [] | no_license | wolfijenne/Open-Vehicle-Monitoring-System-3 | f239204daaf2561c63afd4fc337d4984505ee40e | a35bafa07fcafb4c0461e7e0926298f850833f29 | refs/heads/master | 2021-05-06T07:48:49.859358 | 2018-01-19T11:07:08 | 2018-01-19T11:07:08 | 113,968,058 | 2 | 2 | null | 2017-12-12T09:08:40 | 2017-12-12T09:08:40 | null | UTF-8 | C++ | false | false | 26,031 | cpp | /*
; Project: Open Vehicle Monitor System
; Date: 14th March 2017
;
; Changes:
; 1.0 Initial release
;
; (C) 2011 Michael Stegen / Stegen Electronics
; (C) 2011-2017 Mark Webb-Johnson
; (C) 2011 Sonny Chen @ EPRO/DX
;
; Permission is hereby granted, free of charge, to ... | [
"wolfi@spider.li"
] | wolfi@spider.li |
3dd064981488c47ff74544b7374a14215e5f42c8 | bc07a35422b679764a4718a36fce5b7924d58ade | /src/vector_utility.h | 76e531bc910d7b3e16d65964668a6b006d095138 | [] | no_license | jgrowl/carcassonne | 809c3db4a5251d5cca801c884d936f7bb1c6b6a0 | 86487b4c5c849dcc9d146e8ba838bffdb701d70b | refs/heads/master | 2020-05-17T20:45:09.077114 | 2009-09-12T17:53:53 | 2009-09-12T17:53:53 | 285,524 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 612 | h | #ifndef CARCASSONNE_VECTOR_UTILITY_H_
#define CARCASSONNE_VECTOR_UTILITY_H_
#include <algorithm> // For random_shuffle()
#include <ctime> // To seed system clock for use in random_shuffle()
namespace carcassonne
{
namespace utility
{
template <typename T>
void shuffle(std::vector<T>& vector_to_shuffle)
{
// Seed ... | [
"j.growl1983@gmail.com"
] | j.growl1983@gmail.com |
cccc485ca97e81ef7c6836512a73dacdd5430c0a | eeb014a48d22e38bb4f866838c06f64ac2b4f4c6 | /BITMagic/bitdeifference.cpp | 36d1eec8bcae6fe23bd084435deb4829562bd0ac | [] | no_license | oumkale/Geeks-For-Geeks-Work | 8cb2b7948fe1afc4dfa18d6d30f9ca1fc83db9cf | 96893a593b8e1dc03e0d8d3d23c279cd7968e1e6 | refs/heads/master | 2021-03-02T18:24:41.660387 | 2020-03-08T21:55:02 | 2020-03-08T21:55:02 | 245,893,402 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 311 | cpp | #include<bits/stdc++.h>
using namespace std;
int main()
{
int t;
cin>>t;
while(t--)
{
long long int p,k,n,count=0,u=0,m,flag=1;
cin>>n>>m;
int x = n ^ m;
while(x)
{
if(x%2!=0)
count++;
x=x>>1;
}
cout << count << endl;
}
}
| [
"noreply@github.com"
] | noreply@github.com |
cf059d9fc8fdf83ddcb131d9a062812c2200744b | 1bdb9b8baf341e71bde5c471d293e082c3def401 | /GameTemplate/Game/graphics/SkinModel.h | 665f1917949c636b9789f318e17cb35d24c9077a | [] | no_license | TakuyaI/GameSeisaku | 6f8fc5915eeba5f84ea3e4c4808f9761712fff99 | e82f46324ad23e54e4225670d3afcd07fe6a8fa8 | refs/heads/master | 2020-06-27T12:37:03.837654 | 2019-09-26T07:25:14 | 2019-09-26T07:25:14 | 199,956,212 | 0 | 0 | null | null | null | null | SHIFT_JIS | C++ | false | false | 3,615 | h | #pragma once
#include "Skeleton.h"
/*!
*@brief FBXの上方向。
*/
enum EnFbxUpAxis {
enFbxUpAxisY, //Y-up
enFbxUpAxisZ, //Z-up
};
//ディレクションライト。
struct SDirectionLight {
CVector4 direction;
CVector4 color;
};
/*!
*@brief スキンモデルクラス。
*/
class SkinModel
{
public:
//メッシュが見つかったときのコールバック関数。
using OnFindMesh = std::functio... | [
"kbc18b04@stu.kawahara.ac.jp"
] | kbc18b04@stu.kawahara.ac.jp |
51540c54eb6cbde6fcdb6c89c26270405aeb9f58 | a24f858775c7c335d1b47c5332fda28154d7a4a7 | /libs/string/src/string.cpp | d4cf81c429631ec7ae8459a1ab715739c95ba53f | [] | no_license | shanerbo/YAS | afbf1e9ea0baea3858faa438f2e9b959578d70b1 | a8d8f6b8ceb32c3c554bbaef31a9cdfeb4de2f2f | refs/heads/main | 2023-03-28T19:55:53.413295 | 2021-03-31T06:10:32 | 2021-03-31T06:10:32 | 352,233,426 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,921 | cpp | //
// Created by shanerbo on 3/27/21.
//
#include "string.hpp"
#include <cstdlib>
#include <cstring>
#include <iostream>
namespace YAS {
string::string() noexcept : size_{0}, content_(nullptr) {}
string::string(const char *str) noexcept
: size_(strlen(str)), content_(new char[size_ + 1]) {
strcpy(content_, str)... | [
"shanerbo@gmail.com"
] | shanerbo@gmail.com |
94c01c0227ef4e0648208bf3767a90c6c5ac50f9 | 87d45c021a4420df79ba1ee7e92509a663e670d3 | /client/Logic/EffectMng.cpp | e72f4b2e4da24c7bbef481ea89519aa2bdaa43e8 | [] | no_license | meneleos/gth | eaf5efc8ac736ec0ea69e131890e86399417d64e | f973a11fd9aa9b1e8d5a03606cdbcda48c6ec0d3 | refs/heads/master | 2021-01-10T07:30:28.372356 | 2012-05-21T13:46:37 | 2012-05-21T13:46:37 | 53,994,918 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 11,950 | cpp |
#include "../global_def.h"
#include <assert.h>
CEffectMng::CEffectMng()
{
m_currEntity = 0;
m_frameFlag = 0;
m_visibleDist = 10000.0f;
m_linked = NULL;
}
CEffectMng::~CEffectMng()
{
}
void CEffectMng::Initialize( float visibleDist )
{
int i;
m_frameFlag = 0;
m_cur... | [
"gthgame@gmail.com"
] | gthgame@gmail.com |
03e78692c32368dafd57494c0b1587643b192b78 | 01bd7ed3537042a4f88ed93eddf47c19036db46a | /SouShen/Classes/View/Scene/CMenuScene.h | 9fd6e5bd0c1e67de343b139ac03ba47f6d3298b1 | [] | no_license | Michael-Z/SouShen | f80b8df144e8171c344a6f16e5981642776f0ed4 | 8e83996e3951a0aa8e289b3c0865bc613bc6894b | refs/heads/master | 2021-01-25T12:23:50.593240 | 2013-09-24T00:53:05 | 2013-09-24T00:53:05 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 319 | h | #ifndef _CMENUSCENE_H_
#define _CMENUSCENE_H_
#include "CBaseScene.h"
namespace View
{
//for test SCENE_MENU
class CMenuScene : public CBaseScene
{
public:
virtual void runThisScene();
virtual void InitScene();
void ShowOtherScene();
void OnTextmenu_Click(CCObject *pSender);
};
}
#endif | [
"pope@pope.taomee-ex.com"
] | pope@pope.taomee-ex.com |
cad19aca27a4e137e7a4fafd576cf8638edd1046 | 292ef6e6d84bd1d5dd00a4c8e160583cd32ca32b | /cpp/src/ChickenEgg.cpp | 47eef53e61e38481938d19e9c5d3efd22927f060 | [] | no_license | WillsenS/EngisFarm | 12312a07b4f7bb67775a88d1e814fd5a7b0c8882 | a11d1d6ffe364625e9c67256b36bcc22d3913e95 | refs/heads/master | 2021-10-28T17:46:50.289656 | 2019-04-24T10:38:37 | 2019-04-24T10:38:37 | 175,786,058 | 0 | 2 | null | 2019-04-04T18:43:25 | 2019-03-15T09:09:01 | C++ | UTF-8 | C++ | false | false | 196 | cpp | #include "ChickenEgg.h"
ChickenEgg::ChickenEgg() {
this->productValue = 3;
this->expireValue = 10;
}
ChickenEgg::~ChickenEgg() {
this->productValue = 0;
this->expireValue = 0;
}
| [
"ghazwan.sihamudin@gmail.com"
] | ghazwan.sihamudin@gmail.com |
c490e53f1d0b91914f2668133571e913b615c46a | 76f7778a1b730e81aab8ce3fdb83e1720b910c48 | /one/quantum.hpp | 06a9dd2bd55d491070e2dd529f09fc364031ff36 | [
"BSD-3-Clause"
] | permissive | RobertZ2011/qcposts | 8b82d9197ad122176a2840654ef68117ce71f84a | 090636a41ae00f875d501e90463d57066ab5e317 | refs/heads/master | 2020-03-11T21:55:53.290629 | 2018-04-21T23:37:12 | 2018-04-21T23:37:12 | 130,278,149 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 226 | hpp | #ifndef QUANTUM
#define QUANTUM
#include "general.hpp"
class State {
private:
Vector state;
int NQUBITS;
public:
State(int NQUBITS, const Vector& state);
~State(void);
void showOutcomes(void);
};
#endif
| [
"robert@zieba.site"
] | robert@zieba.site |
e57b041edea35baa9e675fc8aa39ccb8abfbee14 | 06fb6bea30e44d89ded0e8f499b9247a12312fd0 | /Urok_4_Modul4/Urok_4_Modul4/Urok_4_Modul_4.cpp | 868fbbfc63190ade4541b030250d3fe8517e6d5e | [] | no_license | ArmanTapayev/Urok-4_Modul-4 | 09e92879965484ccf2cf970a9de1dd4b3bf1689a | 5eeb37f5677c0857085466d72c5c453982ac99ec | refs/heads/master | 2021-05-05T16:37:39.469296 | 2018-01-13T17:37:29 | 2018-01-13T17:37:29 | 117,325,439 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,717 | cpp | #include <stdio.h>
#include <iostream>
#include <locale.h>
#include <math.h>
using namespace std;
void main()
{
system("color 1A");
setlocale(LC_ALL, "Rus");
int number = 0;
int i, j;
cout << "\nТЕМА. Циклы, использование отладчика\n";
cout << "\nЗадание содержит 7 задач.\n";
start:
cout << "\nВведите номе... | [
"arman.tapayev@gmail.com"
] | arman.tapayev@gmail.com |
b0535bc4b61cea264217f01c452139f5620bc93c | 6ba19ea22e5f960aa8366a466f98af16ec159e17 | /server/http.cpp | 1dc746304f49d237be50fff54f5f9e3cf38b48f6 | [] | no_license | it-is-antonio/mini-project | 1ca3fb748afee57b01408402e9a1fe6bdf192727 | 631a850e582942fc334c25a5cd12ce3ac3cc7180 | refs/heads/master | 2021-09-21T05:03:09.225881 | 2018-08-21T06:51:03 | 2018-08-21T06:51:03 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,990 | cpp | /*!
* \project
* mini-project
* \file
* http.cpp
* \brief
* Implemtation an HTTP server handle a HTTP request then
* return the reseponse respectively based on HTTP/1.1
*
*/
#include <string>
#include <string.h>
#include <vector>
#include "tcp_server.h"
#inc... | [
"dovietanh.95@gmail.com"
] | dovietanh.95@gmail.com |
9071fc97bb6809ddef3f31f4a92fcf914f45df89 | e60112ee47d6887f00512e01d2c919495d578335 | /h5dataspacecloser.cpp | 58e72b75e82a93506eacf214895901bcd13eb46a | [
"MIT"
] | permissive | usgs-coupled/iriclib-test | 85ef24ef493d6caf8973405fffe1d2f387606a00 | f89e03024788d3ae8d8b751007fe38f341b9196f | refs/heads/develop_v4 | 2023-08-14T19:20:20.815199 | 2021-09-14T21:22:35 | 2021-09-14T21:22:35 | 406,461,481 | 0 | 1 | MIT | 2021-09-14T21:22:00 | 2021-09-14T17:25:28 | C++ | UTF-8 | C++ | false | false | 462 | cpp | #include "h5dataspacecloser.h"
#include "internal/iric_logger.h"
using namespace iRICLib;
H5DataSpaceCloser::H5DataSpaceCloser(hid_t dataSpaceId) :
m_dataSpaceId {dataSpaceId}
{}
H5DataSpaceCloser::~H5DataSpaceCloser()
{
_IRIC_LOGGER_TRACE_CALL_START("H5Sclose");
herr_t status = H5Sclose(m_dataSpaceId);
_IRIC_L... | [
"kskinoue@gmail.com"
] | kskinoue@gmail.com |
576e09814fa51ebd417d3dfab6ad17a6bc26cb29 | 2c62385f15b1f8e6072138d5175d7a70dd236b98 | /blaze/math/traits/TSVecRealExprTrait.h | 01e9a051c40462ff3b389751c1b60082c048dad3 | [
"BSD-3-Clause"
] | permissive | lyxm/blaze | 665e4c6f6e1a717973d2d98e148c720030843266 | 10dbaa368790316b5e044cfe9b92f5534f60a2dc | refs/heads/master | 2021-01-12T20:31:45.197297 | 2015-10-15T21:39:17 | 2015-10-15T21:39:17 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,771 | h | //=================================================================================================
/*!
// \file blaze/math/traits/TSVecRealExprTrait.h
// \brief Header file for the TSVecRealExprTrait class template
//
// Copyright (C) 2013 Klaus Iglberger - All Rights Reserved
//
// This file is part of the Blaze ... | [
"klaus.iglberger@gmail.com"
] | klaus.iglberger@gmail.com |
92f68c60ff1e0f08fbeab16ce318568a4fdf769e | 84f2b24c65a4c6109dbaceaaab8da7078951cd8d | /Hashing/FindMissingInSecondArray.cpp | 870a97d6e9e4c932080bc0d7193db24d97ea38b6 | [] | no_license | devedu-AI/Competitive-Coding-for-Interviews | 4e6c2fb5784ef994625685d1578e617eb94b62fd | 5ac81e3fc221dc8d6c3f4b12d7c57a5ae989427c | refs/heads/master | 2023-06-28T01:55:33.072689 | 2021-07-11T17:42:12 | 2021-07-11T17:42:12 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,030 | cpp | // { Driver Code Starts
#include <bits/stdc++.h>
using namespace std;
// } Driver Code Ends
class Solution{
public:
vector<long long> findMissing(long long A[], long long B[], int N, int M)
{
// Your code goes here
vector<long long> v;
set<long long>s;
for(int i = 0 ; i < M ; i++)
... | [
"52482148+spaceman-dev@users.noreply.github.com"
] | 52482148+spaceman-dev@users.noreply.github.com |
45ec3acdca04254b85c3dcfa1ca61589a80501f3 | 71f2e8724b9cf41df0a5ee452656ff1b8ea68fbd | /src/Ast/ImportStmt.h | 4f207849a5ed4e0752d92184b1776c5219638960 | [
"MIT"
] | permissive | sunverwerth/strela | 4af6033fc372e5bce97176cee75c1a9004ac10d3 | e2aa305bd695deaec3bc0f1e32394af033ee0fdf | refs/heads/master | 2021-03-30T20:34:01.421419 | 2020-08-25T19:04:57 | 2020-08-25T19:04:57 | 124,811,865 | 20 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,233 | h | // Copyright (c) 2018 Stephan Unverwerth
// This code is licensed under MIT license (See LICENSE for details)
#ifndef Strela_Ast_AstImportStmt_h
#define Strela_Ast_AstImportStmt_h
#include "Node.h"
#include <string>
#include <vector>
namespace Strela {
class ModDecl;
class ImportStmt: public Node {
... | [
"s.unverwerth@gmx.de"
] | s.unverwerth@gmx.de |
9e753a047ead77784f41525b8d5df3ca67f9549b | 0a1be59f55b359866370c2815671af22bd96ff51 | /dependencies/skse64/src/skse64/CommonLibSSE/include/RE/BGSLightingTemplate.h | 75f44c15f494dfe65300a4e4bb9aaf61c375a998 | [
"MIT",
"LicenseRef-scancode-warranty-disclaimer"
] | permissive | joelday/papyrus-debug-server | ba18b18d313a414daefdf0d3472b60a12ca21385 | f5c3878cd485ba68aaadf39bb830ca88bf53bfff | refs/heads/master | 2023-01-12T14:34:52.919190 | 2019-12-06T18:41:39 | 2019-12-06T18:41:39 | 189,772,905 | 15 | 10 | MIT | 2022-12-27T11:31:04 | 2019-06-01T20:02:31 | C++ | UTF-8 | C++ | false | false | 1,798 | h | #pragma once
#include "skse64/GameRTTI.h" // RTTI_BGSLightingTemplate
#include "RE/Color.h" // Color
#include "RE/DirectionalAmbientLightingColor.h" // DirectionalAmbientLightingColor
#include "RE/FormTypes.h" // FormType
#include "RE/TESForm.h" // TESForm
namespace RE
{
class BGSLightingTemplate : public TES... | [
"joelday@gmail.com"
] | joelday@gmail.com |
fe6ee11c62de852272c44ff41f7a02724a9919f1 | 7f11317085d407d10b0e55c4b31bc81333a07eaa | /Codeforces/1220/A.cpp | 0cac1b252bc5e57d5318084a62bced01cca6f609 | [] | no_license | ericbrandwein/competencias | 14116a1bc76e70a55ebebdc946679cd92cb8a3db | bf22b874646586ae7de573991fa932a2fa90e2c9 | refs/heads/master | 2023-05-03T09:51:26.100257 | 2021-05-30T16:18:08 | 2021-05-30T16:18:08 | 371,562,451 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,032 | cpp | //#pragma GCC optimize("Ofast")
//#pragma GCC optimize("unroll-loops,no-stack-protector")
//#pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native")
#include <bits/stdc++.h>
#define IOS ios::sync_with_stdio(false);cin.tie(0);cout.tie(0)
#define endl '\n'
#define elif else if
#define ll long long i... | [
"brandweineric@gmail.com"
] | brandweineric@gmail.com |
6d5d0402b7bc53a34de5e53b0db0152b55e16eac | 4eb1561d1c47bfce5bbdfd10f979c3d386f15e33 | /hipacc_kernels/point/sub_saturate_s16_u8_u8.hpp | 9260cc543fe9d0863512a47d4769758470873429 | [
"MIT"
] | permissive | HipaccVX/HipaccVX | aa33cbc5b95457cb0cdd479ac02c8b43f75272c9 | 0d469748df11c95f916b5a70f0006878f8550e3c | refs/heads/master | 2023-03-27T08:55:50.315291 | 2021-03-31T09:18:32 | 2021-03-31T09:18:32 | 353,156,373 | 3 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 617 | hpp | class Sub_Saturate_s16_u8_u8 : public Kernel<short> {
private:
Accessor<unsigned char> &input1;
Accessor<unsigned char> &input2;
public:
Sub_Saturate_s16_u8_u8(IterationSpace<short> &iter, Accessor<unsigned char> &input1, Accessor<unsigned char> &input2)
: Kernel(iter), input1(input1), input2(inp... | [
"bur0k-git@bur0k.de"
] | bur0k-git@bur0k.de |
d49e5f2e721d3ba7a85c7fa06ca18cdc62129fc4 | aad625e6da08beca00437d37751fd24c77089f71 | /GariKro GUI/driver2.h | 03b307ccddcd2d9bec95a06ac0d399a4b99ec99e | [] | no_license | ahsannaqvii/Car-Rental-System-OOP | 7085c67aa7d3b960ab0c4efc2e5af99e507f5c07 | 62753d2dbfce4e1ac27156db4e4702b583011e18 | refs/heads/master | 2022-10-04T00:15:52.569406 | 2020-06-12T20:04:21 | 2020-06-12T20:04:21 | 255,639,293 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 320 | h | #ifndef DRIVER2_H
#define DRIVER2_H
#include <QDialog>
namespace Ui {
class Driver2;
}
class Driver2 : public QDialog
{
Q_OBJECT
public:
explicit Driver2(QWidget *parent = nullptr);
~Driver2();
public slots:
void on_pushButton_Login_clicked();
private:
Ui::Driver2 *ui;
};
#endif // DRIVER2_H
| [
"syedahsan13@hotmail.com"
] | syedahsan13@hotmail.com |
43e1660b457ec9c077823d16d39be38f31613692 | 7d298127f6c9f638420d80f01bbc3635f632b602 | /tests/3rdparty/testngpp/include/testngpp/runner/TestCaseSandbox.h | 10a37ee6e99c986dc4745a6c8cafbda6f9e18b0f | [
"Apache-2.0",
"LGPL-3.0-only",
"GPL-3.0-or-later"
] | permissive | sinojelly/mockcpp | 1bbdbee7623fa51972e1f94815ffa93ef770e112 | 7b7eb8b8a7837813d91ee1ae9354f352605fc270 | refs/heads/master | 2023-09-03T04:04:32.174336 | 2022-11-08T07:15:41 | 2022-11-08T07:15:41 | 33,052,375 | 69 | 42 | Apache-2.0 | 2023-08-25T08:25:18 | 2015-03-28T22:17:23 | C++ | UTF-8 | C++ | false | false | 1,030 | h |
#ifndef __TESTNGPP_TESTCASE_SANDBOX_H
#define __TESTNGPP_TESTCASE_SANDBOX_H
#include <testngpp/testngpp.h>
#include <testngpp/internal/Error.h>
#include <testngpp/runner/SandboxTypedef.h>
#include <testngpp/runner/EOFError.h>
TESTNGPP_NS_START
struct TestCaseInfoReader;
struct EnvironmentCleaner;
struct TestCase;... | [
"darwin.yuan@9e0d7ab1-db4c-0410-84d4-f5e70a360cb6"
] | darwin.yuan@9e0d7ab1-db4c-0410-84d4-f5e70a360cb6 |
c6942446e2f135b040d53b19e5e4b00da04c9c61 | ad273708d98b1f73b3855cc4317bca2e56456d15 | /aws-cpp-sdk-networkmanager/include/aws/networkmanager/model/LinkAssociation.h | e84233a38fa8cbcb3351ef3df4fc7f8f1a672dac | [
"MIT",
"Apache-2.0",
"JSON"
] | permissive | novaquark/aws-sdk-cpp | b390f2e29f86f629f9efcf41c4990169b91f4f47 | a0969508545bec9ae2864c9e1e2bb9aff109f90c | refs/heads/master | 2022-08-28T18:28:12.742810 | 2020-05-27T15:46:18 | 2020-05-27T15:46:18 | 267,351,721 | 1 | 0 | Apache-2.0 | 2020-05-27T15:08:16 | 2020-05-27T15:08:15 | null | UTF-8 | C++ | false | false | 6,893 | 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... | [
"aws-sdk-cpp-automation@github.com"
] | aws-sdk-cpp-automation@github.com |
87f242837301d22effbd8bdbaa443277746a98f2 | 10c2ec47c85c53d4618611ced929cc20881b2369 | /质数探测.cpp | b40791c1c21cff8585fea8da830e5d488e327135 | [] | no_license | butwedo/OI-code | 51c9d763120b6f977387734ca2cf54d037d915ed | 5727a35137108cf9224af7671994e7e2f41d3610 | refs/heads/master | 2021-06-24T11:40:46.973128 | 2017-09-11T06:37:55 | 2017-09-11T06:37:55 | 103,098,919 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 935 | cpp | #include<iostream>
using namespace std;
#define in long long
in pri[]={2,3,5,7,13,17,19,23,29,31};
in cas=10;
in mul(in a,in b,in c)
{
a%=c;
b%=c;
in ans=0;
while(b)
{
if(b&1)ans=(ans+a)%c;
a=(a+a)%c;
b>>=1;
}
return ans;
}
in doul(in a,in b,in c)
{
a%=c;
in ans=1;
while(b)
{
... | [
"noreply@github.com"
] | noreply@github.com |
985f6e1fe49677134aa4dc85a1981837ee28a43f | 8f50c262f89d3dc4f15f2f67eb76e686b8f808f5 | /Reconstruction/MissingETPerformance/MissingETPerformance/Zboson.h | 0e623d71321ae52f05f8faf82a6df36ed2f5dc65 | [
"Apache-2.0"
] | permissive | strigazi/athena | 2d099e6aab4a94ab8b636ae681736da4e13ac5c9 | 354f92551294f7be678aebcd7b9d67d2c4448176 | refs/heads/master | 2022-12-09T02:05:30.632208 | 2020-09-03T14:03:18 | 2020-09-03T14:03:18 | 292,587,480 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,410 | h | /*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
*/
#ifndef Z_BOSON_H
#define Z_BOSON_H
#include <TLorentzVector.h>
#include <TVector2.h>
#include <math.h>
class Zboson {
private:
TLorentzVector m_Z;
TLorentzVector m_daughter1;
TLorentzVector m_daughter2;
public:
Zboson() {;}
... | [
"graemes.cern@gmail.com"
] | graemes.cern@gmail.com |
d65611eb56fc56c947e393835976004e056e651b | be52651d9276e6c9079e99a2f04c74220bcb242a | /TT03/stable.cpp | c4032b8c87d0f8ad40990847236e6da56080a36a | [] | no_license | Baileyswu/NEXT | 9097f7e99d2c80faf285a20fb48a05d437aed49e | 3a4d885b2b4dbe04214fbb261d671377889e8e46 | refs/heads/master | 2023-03-22T10:54:22.645951 | 2021-03-21T12:16:57 | 2021-03-21T12:16:57 | 277,059,853 | 6 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,476 | cpp | #include<bits/stdc++.h>
using namespace std;
#define LL long long
const int N = 26;
unordered_set<int> dependOn[N];
unordered_set<int> base[N];
string ans;
bool used[N];
void dfs(int id) {
ans += id + 'A';
used[id] = false;
for(auto b : base[id]) {
dependOn[b].erase(id);
if(used[b] && depend... | [
"wulidan0530@live.com"
] | wulidan0530@live.com |
420a5615f47a9ae770a2906474da93729db53319 | 7f6a7dd571d990e5bc95e0a3af7a06458e2b519b | /calendar-project.cpp | bbb154981a9eaebc7f55dee6b97db6f22962d379 | [] | no_license | erikfenriz/calendar | f6aa99c20df380ebc58d8e39ce5781c7b9ca86fe | 75af927fc723f5d42f910390f8579c084768c418 | refs/heads/master | 2020-04-04T12:23:41.111931 | 2018-11-16T21:20:23 | 2018-11-16T21:20:23 | 155,924,906 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,025 | cpp | #include <iostream>
#include <iomanip>
using namespace std;
int getMonth();
int getYear();
bool isLeapYear(int year);
int monthCount(int month, int year);
int yearCount(int year);
int getOffset(int month, int year);
int getDaysInMonth(int month, int year);
void displayYear(int year);
void displayMonth(int ... | [
"noreply@github.com"
] | noreply@github.com |
72e47402e87b5bdfd92f7f5b780d203a125ac6c6 | a18cbc6fe42a35d227e858ee44568999c3593e81 | /Projet/jour5/test/Element/BriqueTest.cpp | a1b1a2f4d16b7dbe6a3db5c97969336e230f6f4f | [] | no_license | jpsanche/casse_briques | 2881916ce204868a3e5cc7b57030fb27d5cc091f | 36f4612bda7cdfa907aee4e6f8defb53d86ce87e | refs/heads/master | 2021-01-12T10:44:50.134416 | 2016-03-14T08:26:28 | 2016-03-14T08:26:28 | 72,665,441 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,399 | cpp |
#include <Element/BriqueTest.h>
#include <Element/Brique.h>
#include <Interface/Obstacle.h>
using namespace cassebrique;
// Registers the fixture into the 'registry'
CPPUNIT_TEST_SUITE_REGISTRATION( BriqueTest );
void
BriqueTest::setUp()
{
}
void
BriqueTest::tearDown()
{
}
void BriqueTest::testConstructor()
{... | [
"tristan.colombo@gmail.com"
] | tristan.colombo@gmail.com |
fe7b87b299631e6bea82dfb51f10785f014450ac | fe2836176ca940977734312801f647c12e32a297 | /AtCoder/Beginner/071/b.cpp | 72d9a0b14ab708379a58e2e2e892cfa011e6d236 | [] | no_license | henrybear327/Sandbox | ef26d96bc5cbcdc1ce04bf507e19212ca3ceb064 | d77627dd713035ab89c755a515da95ecb1b1121b | refs/heads/master | 2022-12-25T16:11:03.363028 | 2022-12-10T21:08:41 | 2022-12-10T21:08:41 | 53,817,848 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 378 | cpp | #include <bits/stdc++.h>
using namespace std;
int main()
{
char inp[111111];
scanf("%s", inp);
int cnt[26] = {0};
int len = strlen(inp);
for(int i = 0; i < len; i++)
cnt[inp[i] - 'a']++;
int pos = -1;
for(int i = 0; i < 26; i++)
if(cnt[i] == 0) {
pos = i;
break;
}
if(pos == -1)
printf("N... | [
"henrybear327@gmail.com"
] | henrybear327@gmail.com |
3fadfb33f8c4d9b6642279781b58fb79641bf950 | 83bcb9a98fbc24532470978b8b2c9337a8682b49 | /leetcode/neetcode/141.cpp | 8744d31da9b4547f71919358d0d33f0dfbe2d292 | [] | no_license | khanhtc1202/cp | 91c4f64704786c78f156bc14fe6c1fc57dedd4d3 | 98e9fe5c8090483b6509213e823c8411324b0cf6 | refs/heads/master | 2023-08-17T05:42:27.383376 | 2023-08-16T13:35:42 | 2023-08-16T13:35:42 | 131,381,241 | 0 | 0 | null | 2023-07-06T21:31:49 | 2018-04-28T06:43:25 | C++ | UTF-8 | C++ | false | false | 528 | cpp | #include <bits/stdc++.h>
using namespace std;
struct ListNode {
int val;
ListNode *next;
ListNode(int x) : val(x), next(NULL) {}
};
class Solution {
public:
bool hasCycle(ListNode* head) {
if (!head)
return false;
ListNode *slow = head;
ListNode *fast = head->next;... | [
"khanhtc1202@gmail.com"
] | khanhtc1202@gmail.com |
72e529303178723e883ae6a9a02d5315f2ed152e | a341ba115d70e2e4bf483129098f729d263636ec | /spoj/julka.cpp | 584740f35687f409085679d01fc34a274d30c2f9 | [] | no_license | mrfinch/competitive_programming | e2d29258ade2e9bf5cf52f9dbda22085f7942b37 | ee6ba76792bd06a9b6bf58f72f0fbac5c6ee9ee2 | refs/heads/master | 2021-01-16T20:42:21.697361 | 2020-03-31T09:10:20 | 2020-03-31T09:10:20 | 23,836,977 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,541 | cpp | #include <iostream>
#include <vector>
#include <string>
using namespace std;
int main(){
int t=10;
while(t){
string n,m;
cin >> n;
cin >> m;
int x=max(n.size(),m.size());
vector<int> a1(n.size(),0);
vector<int> a2(m.size(),0);
vector<int> sum(x,0);
... | [
"saurabhpatel7717@gmail.com"
] | saurabhpatel7717@gmail.com |
fd288028aa8f3608b58787baa8e37eb81399e783 | 521685507e5b26ec9be38b39a249bdc1ee638138 | /Servers/ServerManager/vtkSMHardwareSelector.cxx | 304856da13c275f4264ed95155f832113e7e900f | [
"LicenseRef-scancode-paraview-1.2"
] | permissive | matthb2/ParaView-beforekitwareswtichedtogit | 6ad4662a1ad8c3d35d2c41df209fc4d78b7ba298 | 392519e17af37f66f6465722930b3705c1c5ca6c | refs/heads/master | 2020-04-05T05:11:15.181579 | 2009-05-26T20:50:10 | 2009-05-26T20:50:10 | 211,087 | 1 | 2 | null | null | null | null | UTF-8 | C++ | false | false | 3,159 | cxx | /*=========================================================================
Program: ParaView
Module: $RCSfile$
Copyright (c) Kitware, Inc.
All rights reserved.
See Copyright.txt or http://www.paraview.org/HTML/Copyright.html for details.
This software is distributed WITHOUT ANY WARRANTY; without... | [
"utkarsh.ayachit@kitware.com"
] | utkarsh.ayachit@kitware.com |
4225fff31e909d677ff1018d14a3e9b595561cea | 3f8b4fe055658d0e8c89f56567c09542afd17aba | /BufferManager/Attribute.h | 5fec4a63db4be93d120d4b49b872620e518ae731 | [] | no_license | erikmuttersbach/moderndbs-tum-ss14 | d81c0d111e5e987e9704817a3ae41ad2ed9732e8 | 477f8d41b1176c42274f4388d9f9b0ea68dd4f19 | refs/heads/master | 2021-01-15T14:43:15.136660 | 2014-05-05T13:21:55 | 2014-05-05T13:21:55 | 19,244,928 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 681 | h | //
// Attributes.h
// BufferManager
//
// Created by Erik Muttersbach on 05/05/14.
//
//
#ifndef __BufferManager__Attribute__
#define __BufferManager__Attribute__
#include <boost/serialization/access.hpp>
#include <string>
typedef enum {
string,
uint32,
int32
} AttributeType;
class Attribute {
publi... | [
"erik@muttersbach.net"
] | erik@muttersbach.net |
dc05b286fda3a362e0310a7fc321954e32822a1e | da63ee5f3f9614466f810291e604093387cc8e7b | /editor.h | 1e6e12e90cab1f9aeb765744e50b175a855fb22e | [] | no_license | reat2020/ksamain | 99278b433194204facbef36cc6508fcceafcf017 | 61c946329292afe9d5c267c453713bdfdcd00db4 | refs/heads/master | 2020-12-10T11:05:40.229199 | 2020-01-13T16:02:30 | 2020-01-13T16:02:30 | 233,576,916 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 327 | h | #ifndef EDITOR_H
#define EDITOR_H
#include <QWidget>
namespace Ui {
class editor;
}
class editor : public QWidget
{
Q_OBJECT
signals:
void del();
public:
explicit editor(QWidget *parent = 0);
~editor();
private slots:
void on_pushButton_clicked();
private:
Ui::editor *ui;
};
#endif // ED... | [
"dir@rea-t.ru"
] | dir@rea-t.ru |
3e8d13491a07a59a813c9a6a6833c18c11c07285 | 21272fef02f4447d992c6a03b855fcb6674e03ac | /src/networklayer/FilterRuleTable.cc | 2be695685d3ba7ff9710133719772e55368bc190 | [] | no_license | BUAA-QianCheng/AgentQuartet | 53dd57d85a4cbef98a1bd72d90496cb0856d8574 | 06c94d33db9f26a3de8a715070ee7b0d03aaff2c | refs/heads/main | 2023-04-10T01:49:54.520280 | 2021-04-16T02:10:45 | 2021-04-16T02:10:45 | 358,445,926 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,321 | cc | //
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it wil... | [
"noreply@github.com"
] | noreply@github.com |
f35e51c5f954525139bf8a55d28e2063d65dfb75 | 15f0514701a78e12750f68ba09d68095172493ee | /C++/466.cpp | 582a85d1d652aee944cfc697357c019fcd91bfcc | [
"MIT"
] | permissive | strengthen/LeetCode | 5e38c8c9d3e8f27109b9124ae17ef8a4139a1518 | 3ffa6dcbeb787a6128641402081a4ff70093bb61 | refs/heads/master | 2022-12-04T21:35:17.872212 | 2022-11-30T06:23:24 | 2022-11-30T06:23:24 | 155,958,163 | 936 | 365 | MIT | 2021-11-15T04:02:45 | 2018-11-03T06:47:38 | null | UTF-8 | C++ | false | false | 2,625 | cpp | __________________________________________________________________________________________________
sample 4 ms submission
class Solution {
public:
int getMaxRepetitions(string s1, int n1, string s2, int n2) {
int m = s1.size(), n = s2.size();
vector<int> f(n, 0);
auto next = f;
for (... | [
"strengthen@users.noreply.github.com"
] | strengthen@users.noreply.github.com |
554b36941256fd64592e2689fd8665226be12d68 | 85e098156370fdb3d513f20edfa8a514fe55175f | /higan/processor/v30mz/instructions-adjust.cpp | 043d99a8b4a19a7b33b867ece2e2f832ab499d94 | [] | no_license | jeapostrophe/higan | 65efcbf70bd43ccb48cd3f8dddb7264bbef1b132 | c6fc15f8d26080b9d08e7bc029532c2f59a902ba | refs/heads/master | 2021-01-09T20:42:11.304359 | 2016-09-14T11:55:53 | 2016-09-14T11:55:53 | 62,882,832 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,037 | cpp | //27 daa
//2f das
auto V30MZ::opDecimalAdjust(bool negate) {
wait(9);
uint8 al = r.al;
if(r.f.h || ((al & 0x0f) > 0x09)) {
r.al += negate ? -0x06 : 0x06;
r.f.h = 1;
}
if(r.f.c || (al > 0x99)) {
r.al += negate ? -0x60 : 0x60;
r.f.c = 1;
}
r.f.s = r.al & 0x80;
r.f.z = r.al == 0;
r.f.p ... | [
"screwtape@froup.com"
] | screwtape@froup.com |
ea6ccc0f57e6d518c2d732b61c83222e35195182 | 3ff1fe3888e34cd3576d91319bf0f08ca955940f | /faceid/src/v20180301/model/PhoneVerificationCTCCResponse.cpp | c9dc7f1d96fc321e5f2ed9077799d5553141892f | [
"Apache-2.0"
] | permissive | TencentCloud/tencentcloud-sdk-cpp | 9f5df8220eaaf72f7eaee07b2ede94f89313651f | 42a76b812b81d1b52ec6a217fafc8faa135e06ca | refs/heads/master | 2023-08-30T03:22:45.269556 | 2023-08-30T00:45:39 | 2023-08-30T00:45:39 | 188,991,963 | 55 | 37 | Apache-2.0 | 2023-08-17T03:13:20 | 2019-05-28T08:56:08 | C++ | UTF-8 | C++ | false | false | 5,592 | cpp | /*
* Copyright (c) 2017-2019 THL A29 Limited, a Tencent company. 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
... | [
"tencentcloudapi@tencent.com"
] | tencentcloudapi@tencent.com |
dea5aae5cf19e4084b9872de52c0a9a136227643 | a2f6568b881d05d273e57027ea92c8d1127b957c | /FileSpliter/FileSpliterDlg.cpp | faa4ec279ad99b48043b97168d306339a2e7e8e7 | [] | no_license | hchen90/filesp-win32 | 38de054ac51ce8d62b5d7f5af50987c133e1d3fb | ec3dc663bff72ef545143d5c954bcb9be638e016 | refs/heads/master | 2021-04-06T04:30:00.786621 | 2018-03-11T09:00:02 | 2018-03-11T09:00:02 | 124,739,406 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 15,543 | cpp |
// FileSpliterDlg.cpp : implementation file
//
#include "stdafx.h"
#include "FileSpliter.h"
#include "FileSpliterDlg.h"
#include "afxdialogex.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
// CAboutDlg dialog used for App About
class CAboutDlg : public CDialogEx
{
public:
CAboutDlg();
// Dia... | [
"a.chenxiang.z@gmail.com"
] | a.chenxiang.z@gmail.com |
d6b88d952b3935406deec15c0327cc65a5696886 | e3a81c29ef80d2975b24f05bebcabe755ad082b0 | /test.cpp | 5cba99eb1536458789f0d99eb4ec320e5fbddaee | [] | no_license | DearDavies/learninggit | ef2018f7678ed09f0cc14fe821e26e3a80968f1d | 0bc0feea3853f0dfbac8ebfac38bc25b40344c05 | refs/heads/master | 2022-11-21T10:59:50.443439 | 2020-07-20T10:54:16 | 2020-07-20T10:54:16 | 281,056,726 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 97 | cpp | #include <iostream>
using namespace std;
int main() {
cout<<"Hello World!"<<endl;
return 0;
}
| [
"1196156209@qq.com"
] | 1196156209@qq.com |
95a7d20b1b80709d1dbfe145e31771913e842e15 | 4e4b253d61b2502ae9c18c4587df8a4dac2b072b | /Program14_Task1.cpp | 25ce521973248c61de49deca346011cba814d968 | [] | no_license | hardik20sharma/Classroom_Data_Structures_and_Algorithms | 8674964832044460c9ab59e56d306ca84d429b0e | 1635d7981e292684f71b38bed771c8282ae76863 | refs/heads/master | 2022-04-20T18:56:21.568000 | 2020-04-19T12:05:17 | 2020-04-19T12:05:17 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 632 | cpp | // WAP of sternin's matrix multiplication
#include<iostream>
using namespace std;
int main()
{
int matrix1[2][2], matrix[2][2];
int i,j, p1, p2, p3, p4 , p5, p6, p7;
cout<<"Enter matrix 1: \n";
for(i=0; i<2; i++)
for(j=0; j<2; j++)
cin>>matrix1[i][j];
cout<<"Enter matrix 2: \n";
for(i=0; ... | [
"noreply@github.com"
] | noreply@github.com |
b79a410942d57dcaea3d55c10941a8d86ed6802a | 1dbf007249acad6038d2aaa1751cbde7e7842c53 | /gaussdbforopengauss/include/huaweicloud/gaussdbforopengauss/v3/model/ListDatabasesRequest.h | 24a6e6f298adb62be815f7805c4d42922d80213b | [] | permissive | huaweicloud/huaweicloud-sdk-cpp-v3 | 24fc8d93c922598376bdb7d009e12378dff5dd20 | 71674f4afbb0cd5950f880ec516cfabcde71afe4 | refs/heads/master | 2023-08-04T19:37:47.187698 | 2023-08-03T08:25:43 | 2023-08-03T08:25:43 | 324,328,641 | 11 | 10 | Apache-2.0 | 2021-06-24T07:25:26 | 2020-12-25T09:11:43 | C++ | UTF-8 | C++ | false | false | 2,425 | h |
#ifndef HUAWEICLOUD_SDK_GAUSSDBFOROPENGAUSS_V3_MODEL_ListDatabasesRequest_H_
#define HUAWEICLOUD_SDK_GAUSSDBFOROPENGAUSS_V3_MODEL_ListDatabasesRequest_H_
#include <huaweicloud/gaussdbforopengauss/v3/GaussDBforopenGaussExport.h>
#include <huaweicloud/core/utils/ModelBase.h>
#include <huaweicloud/core/http/HttpRespons... | [
"hwcloudsdk@huawei.com"
] | hwcloudsdk@huawei.com |
6254748186d4fb975074d920bfc67948e94e24c4 | 3bc10dca7b8d7383ddc121e864f22f0006e34603 | /Editor/UICanvas.h | 7524049d93e558547d6ce39a3b3015e0400b666f | [] | no_license | cloudstlife/AnimEditor | 0578d2f6338b9ad18697230bec0300744ba190c4 | f5919b2e026d482f1ad75d05eb67d5b238fa3143 | refs/heads/master | 2016-09-06T00:51:32.147553 | 2015-07-14T02:54:24 | 2015-07-14T02:54:24 | 39,050,108 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 883 | h | #ifndef UICANVAS_H
#define UICANVAS_H
#include <QtGui/QWidget>
#include <QtGui/QScrollArea>
#include <QTimer>
class UICanvas : public QWidget
{
Q_OBJECT
public:
UICanvas( QWidget* parent = 0 );
~UICanvas();
void initialize();
// reimplemented QWidget
protected:
virtual void paintEvent( QPaintEvent* evt );
v... | [
"cloudstlife@163.com"
] | cloudstlife@163.com |
690b5d4ef12f1acff27319c5c4e5633f77bf8a61 | bd904178f3d33c82283ede7cb3a7cfb2021e8d1a | /cpp/(13) Target HR calculator/testHR.cpp | 41ce58bc8b4b8f5c6871d7a343f4cbd9225bfc2c | [] | no_license | juanemael/Programming | b3c2f191483690fb9d924d62fafcc4d2912a3d79 | 13f330812130bb9b5ce90abdbb03f2661fba121c | refs/heads/master | 2022-12-06T19:28:28.177131 | 2020-08-29T17:31:08 | 2020-08-29T17:31:08 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 458 | cpp | #include <stdio.h>
#include "HR.h"
int main (){
int umur;
char first [15], last [15];
//create an obj
printf("Enter your First Name: ");
scanf("%14s", first);
printf("Enter your Last Name: ");
scanf("%14s", last);
printf("Enter your Age: ");
scanf("%d", &umur);
HR age1;
age1.setValueAge (umur); //... | [
"foxtrot@users.noreply.github.com"
] | foxtrot@users.noreply.github.com |
7869df57aae54ee09bb0ab81a4d48a8081a3c4f0 | 6b880857af9bca993828be7f768d112efdfd509d | /crichtonSim/crichtonSim.cpp | 4848ddbb9dc283769c3ffa8feeb3b683c2e8f3c3 | [] | no_license | ana-GT/toolsLWA4 | c98c787d56fe169c21ac5180d01768f2514c26f9 | 39979d6d859cb490e2cbd28a1d9c1356b1058846 | refs/heads/master | 2016-09-05T14:04:40.068516 | 2014-09-13T13:29:13 | 2014-09-13T13:29:13 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 9,519 | cpp | /**
* @file crichtonSim
* @brief Simulate daemon c402 for arm /hand motors
*/
#include "crichtonSim.h"
#include <dart/dynamics/Skeleton.h>
/**
* @function crichtonSim
* @brief Constructor
*/
crichtonSim::crichtonSim() {
// Some default parameters
mq_la = Eigen::VectorXd::Zero(7); mdq_la = Eigen::VectorX... | [
"ahuaman3@gatech.edu"
] | ahuaman3@gatech.edu |
f6ccc2b39f4f8fa5e02c4a2cbb4da8e5847ec8c0 | 96bbb12bc9be1d3d470d249eb1a247dd803fc10d | /src/rpcprotocol.h | 7f7bc5eda40dc0e39760386da4c824bd0d21fed8 | [
"MIT"
] | permissive | nscoins/nscoincore | e558760fec0cdb6119cc0962a326d63063b9e65e | 6544d7c59361e0cc747ec89abfcf974212880b46 | refs/heads/master | 2021-05-21T01:11:15.962502 | 2020-04-05T01:00:44 | 2020-04-05T01:00:44 | 252,480,667 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 7,355 | h | // Copyright (c) 2010 Satoshi Nakamoto
// Copyright (c) 2009-2014 The Bitcoin developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef BITCOIN_RPCPROTOCOL_H
#define BITCOIN_RPCPROTOCOL_H
#include <boost/asio.hpp>
#inc... | [
"46255770+futurexcoin@users.noreply.github.com"
] | 46255770+futurexcoin@users.noreply.github.com |
ff8321f3c4970f0a1a4dfc8a115452aaa57dd7d0 | d98ff2f529e14275ad29755189b791e6a530c148 | /Unity Code/ObjectRecognition/Temp/il2cppOutput/il2cppOutput/Assembly-CSharp-firstpass.cpp | e38aaeb382dc91f8b2a63e227e699f5854d2ec7d | [] | no_license | misaeluniversity/objectDetectionMobile | aba03b25ca6e65ef2e791dc086c2c61467d24fd1 | b98c574b9dbc1012279d62ff196ca0d7a640f961 | refs/heads/master | 2021-05-18T07:23:00.076120 | 2020-04-06T21:54:14 | 2020-04-06T21:54:14 | 251,177,146 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 153,447 | cpp | #include "il2cpp-config.h"
#ifndef _MSC_VER
# include <alloca.h>
#else
# include <malloc.h>
#endif
#include <cstring>
#include <string.h>
#include <stdio.h>
#include <cmath>
#include <limits>
#include <assert.h>
#include <stdint.h>
#include "codegen/il2cpp-codegen.h"
#include "il2cpp-object-internals.h"
struct Vi... | [
"misaelu@users.noreply.github.com"
] | misaelu@users.noreply.github.com |
3009d9d3cbc2d36f7e35bfc7c63694b7964e8578 | 9e9003cad19a68de4209f91ecd931e0b6325234b | /Build/HW5_BackUpThisFolder_ButDontShipItWithYourGame/il2cppOutput/lumpedcpp/Lump_libil2cpp_metadata.cpp | d10ae5f4aed86cd69b02261adb78b415aa76a346 | [] | no_license | syc418/GolemBirdMagicForest | 0d4f902e82cc8938b5f05f295670cdb1a1cdd95b | 1b5e8543dd28b8a4353d7f3678608b17a7a893ae | refs/heads/main | 2023-03-15T10:41:29.860580 | 2021-03-26T04:27:34 | 2021-03-26T04:27:34 | 351,646,466 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,057 | cpp | #include "il2cpp-config.h"
#include "C:\Program Files\Unity\Hub\Editor\2020.1.17f1\Editor\Data\il2cpp\libil2cpp\metadata\ArrayMetadata.cpp"
#include "C:\Program Files\Unity\Hub\Editor\2020.1.17f1\Editor\Data\il2cpp\libil2cpp\metadata\FieldLayout.cpp"
#include "C:\Program Files\Unity\Hub\Editor\2020.1.17f1\Editor\Data\i... | [
"47166720+syc418@users.noreply.github.com"
] | 47166720+syc418@users.noreply.github.com |
14c5eb6ff0e1a8302541b1d6195c980ad800a3d5 | cca87b386b19c55fd0c10bb4b3355e2f1464aa5e | /src/network/gumbo/query/src/GumboQueryDocument.cpp | 9a04a32b6a1a2b707d339790295001d070cb5ec9 | [
"MIT"
] | permissive | zhanfeifei/LibQQt | 583024ccfa94597942936b7c284cbc930a9a8b0d | 995262e02b36111a5b0f5ce51f305c7e1110eb9e | refs/heads/master | 2020-03-17T13:46:00.520562 | 2018-04-30T04:19:35 | 2018-04-30T04:19:35 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,033 | cpp | /***************************************************************************
*
* $Id$
*
**************************************************************************/
/**
* @file $HeadURL$
* @author $Author$(hoping@baimashi.com)
* @date $Date$
* @version $Revision$
* @brief
*
**/
#include "GumboQueryDocument.... | [
"2407223896@qq.com"
] | 2407223896@qq.com |
200a7cebf14003018c8deb7a193d5096c0c6a3d6 | d58be819169ac2b219d07e8539cf5cfcf2ea787e | /17/exercise/ex_17_03_to_lower.cpp | a9a6bcfdfe46aafa150c45b0021ba3731a3f11b6 | [] | no_license | IronClimber/_Straustrup | 602b73cf520b99f03744be70179b7e51d4597613 | c3c14eefa089c749cc75335b6328d87bc9af4826 | refs/heads/master | 2021-06-10T22:44:25.617440 | 2021-05-25T08:55:14 | 2021-05-25T08:55:14 | 192,340,948 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 263 | cpp | #include <iostream>
void to_lower(char* s) {
while(*s) {
*s = tolower(*s);
++s;
}
}
int main() {
char str[]{"Hello, World!"};
std::cout << str << std::endl;
//Why not &str?
to_lower(str);
std::cout << str << std::endl;
return 0;
}
| [
"ironclimber@gmail.com"
] | ironclimber@gmail.com |
22d20ae6f8aba802cfadabcb5fbc9daa4a51fc96 | ff32a8c4140007d49f3f36c79541f7e8404b401d | /src/tests/test_diis.cc | 942cb0153902bb88db886ab870e7ff40bb196430 | [
"Apache-2.0"
] | permissive | mbarbry/xtp | f98960c0ea3f50ad8aa86ed86f1c98146ae395e8 | e79828209d11ec25bf1750ab75499ecf50f584ef | refs/heads/master | 2020-03-21T21:19:59.144762 | 2018-09-13T08:29:34 | 2018-09-13T08:29:34 | 139,058,329 | 0 | 0 | Apache-2.0 | 2018-08-03T10:05:10 | 2018-06-28T19:07:16 | C++ | UTF-8 | C++ | false | false | 11,046 | cc | /*
* Copyright 2009-2018 The VOTCA Development Team (http://www.votca.org)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to ... | [
"jenswehner@gmail.com"
] | jenswehner@gmail.com |
708a4c04b3356e611f81388629b4aced0b0e5399 | 5c4b0b0b051ae7ed53790303802635bf8fa9fcd3 | /src/Examiner/smtp.cpp | 76e54b21d3f779170cd144779d3ccff6d33f4fc4 | [] | no_license | yzghurovskyi/CourseWork | ff21e32df8f4802582ab712400fcbfee200f944f | 095813df9c583af3f6bcfff9757e84a6a786c4fe | refs/heads/master | 2021-06-18T17:27:56.439076 | 2017-06-09T23:50:34 | 2017-06-09T23:50:34 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 7,057 | cpp | #include "smtp.h"
Smtp::Smtp( const QString &user, const QString &pass, const QString &host, int port, int timeout )
{
socket = new QSslSocket(this);
connect(socket, SIGNAL(readyRead()), this, SLOT(readyRead()));
connect(socket, SIGNAL(connected()), this, SLOT(connected() ) );
connect(socket, SIGNAL(e... | [
"zgurovskiyyarik@gmail.com"
] | zgurovskiyyarik@gmail.com |
1aeb312a4e5092d5e0c98049af5c1b97d264bf28 | 4fe0ec907756e4cecbda8d8c5a7b1e7dbc60858d | /CodeForces/4test.cpp | c65adb4408e9724a93763c80c3c88b9261015d76 | [] | no_license | PrajjwalDatir/CP | 4d439af7c88f06d44619e75c8bf60d326967ddc6 | e23161118f3e3dc2e01ab85a5a39e1511fdf75ef | refs/heads/master | 2023-08-05T01:00:10.227030 | 2021-09-10T11:39:14 | 2021-09-10T11:39:14 | 302,845,085 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 326 | cpp | #include <iostream>
using namespace std;
int main(int argc, char const *argv[])
{
int x, y, z, t, xt = 0, yt = 0, zt = 0;
cin >> t;
while(--t + 1) {
cin >> x >> y >> z;
xt += x;
yt += y;
zt += z;
}
if (xt == yt && yt == zt && xt == 0){
cout << "YES\n";
}
else{
cout << "NO\n";
}
retur... | [
"prajjwaldatir0072000@gmail.com"
] | prajjwaldatir0072000@gmail.com |
fff3a20de3fc74d8ecbe44c9be3b85078ede59ac | 67ed24f7e68014e3dbe8970ca759301f670dc885 | /win10.19042/SysWOW64/dot3hc.dll.cpp | b13aa571fcbdbe7b4f4a8a7da57b7e2130923f43 | [] | no_license | nil-ref/dll-exports | d010bd77a00048e52875d2a739ea6a0576c82839 | 42ccc11589b2eb91b1aa82261455df8ee88fa40c | refs/heads/main | 2023-04-20T21:28:05.295797 | 2021-05-07T14:06:23 | 2021-05-07T14:06:23 | 401,055,938 | 1 | 0 | null | 2021-08-29T14:00:50 | 2021-08-29T14:00:49 | null | UTF-8 | C++ | false | false | 424 | cpp | #pragma comment(linker, "/export:DllCanUnloadNow=\"C:\\Windows\\SysWOW64\\dot3hc.DllCanUnloadNow\"")
#pragma comment(linker, "/export:DllGetClassObject=\"C:\\Windows\\SysWOW64\\dot3hc.DllGetClassObject\"")
#pragma comment(linker, "/export:DllRegisterServer=\"C:\\Windows\\SysWOW64\\dot3hc.DllRegisterServer\"")
#pragm... | [
"magnus@stubman.eu"
] | magnus@stubman.eu |
119597a85084be4cba21ff33dc3297ecda6610ab | 3c9238ec4aa8e12e7f255dc1a6f533170c669901 | /SIDIS/Lsample.h | 14d09cfc436221e1304b71ceb2e0c4fcd61710bc | [] | no_license | TianboLiu/On-going | 7ddf1b6ebfafd6f1ed8c50ad3a1c5053a7a396a1 | 40ca04ad4e10f4854cf40aee43bf63c2b1cd8f34 | refs/heads/master | 2020-04-16T02:09:48.870800 | 2016-10-24T04:21:07 | 2016-10-24T04:21:07 | 59,949,339 | 0 | 0 | null | 2016-06-06T00:25:51 | 2016-05-29T15:11:21 | Mathematica | UTF-8 | C++ | false | false | 17,094 | h | #ifndef _LSAMPLE_H_
#define _LSAMPLE_H_
#include <iostream>
#include <fstream>
#include <cmath>
#include "TRandom.h"
#include "TRandom3.h"
#include "TMath.h"
#include "TH1D.h"
#include "TString.h"
#include "TVectorD.h"
#include "TMatrixD.h"
#include "TMatrixDEigen.h"
#include "TTree.h"
#include "TFile.h"
#include "Lst... | [
"noreply@github.com"
] | noreply@github.com |
9bd93ff99ef90c7c511a1184b572defb3f55bd74 | e9e05851b281cb64fe6299447100f23855591975 | /Java/Java/hash.cpp | 8830d7b90f6a78e931dd1ced8081312f06a23dac | [] | no_license | MattWroclaw/Struktury_Danych_All_in_one | 2f6d0503c96ae83a9cc5c039b771827635089976 | 6e52c72ff76e703e54a0762f749a545b04313593 | refs/heads/master | 2022-04-23T02:20:44.949778 | 2020-04-18T14:45:27 | 2020-04-18T14:45:27 | 256,778,138 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 668 | cpp | hash.cpp
// Dan Bernstein, comp.lang.c
unsigned long H1(unsigned char *str) {
unsigned long hash = 5381;
int c;
while (c = *str++)
hash = ((hash << 5) + hash) + c; // hash * 33 + c
return hash;
}
int H2(char *s, int Rmax){
int tmp;
for(tmp=0; *s != '\0'; s++)
tmp = (64*tmp+(*s)) % Rmax;
return tmp;
... | [
"whiteelk@wp.pl"
] | whiteelk@wp.pl |
693fb320ad6b6acab5fc0ed1e9c52fd5c97ab332 | b71b8bd385c207dffda39d96c7bee5f2ccce946c | /testcases/CWE762_Mismatched_Memory_Management_Routines/s07/CWE762_Mismatched_Memory_Management_Routines__new_free_struct_06.cpp | af2dd5839cf842f6fd9f495c5f6c46830c44b673 | [] | no_license | Sporknugget/Juliet_prep | e9bda84a30bdc7938bafe338b4ab2e361449eda5 | 97d8922244d3d79b62496ede4636199837e8b971 | refs/heads/master | 2023-05-05T14:41:30.243718 | 2021-05-25T16:18:13 | 2021-05-25T16:18:13 | 369,334,230 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,335 | cpp | /* TEMPLATE GENERATED TESTCASE FILE
Filename: CWE762_Mismatched_Memory_Management_Routines__new_free_struct_06.cpp
Label Definition File: CWE762_Mismatched_Memory_Management_Routines__new_free.label.xml
Template File: sources-sinks-06.tmpl.cpp
*/
/*
* @description
* CWE: 762 Mismatched Memory Management Routines
* B... | [
"jaredzap@rams.colostate.edu"
] | jaredzap@rams.colostate.edu |
03126ba980d56bbc080fa66291bf4ffb6da2e59b | f5d87ed79a91f17cdf2aee7bea7c15f5b5258c05 | /cuts/iccm/arch/qpidpb/compiler/Context.h | 3a76f9f4b40bd7267c89e0f34db428660efc9b8c | [] | no_license | SEDS/CUTS | a4449214a894e2b47bdea42090fa6cfc56befac8 | 0ad462fadcd3adefd91735aef6d87952022db2b7 | refs/heads/master | 2020-04-06T06:57:35.710601 | 2016-08-16T19:37:34 | 2016-08-16T19:37:34 | 25,653,522 | 0 | 3 | null | null | null | null | UTF-8 | C++ | false | false | 1,999 | h | /* -*- c++ -*- */
// $Id$
// ============================================================================
//
// = LIBRARY
// IDL_TO_PICML_BE_DLL
//
// = FILENAME
// be_global.h
//
// = DESCRIPTION
// Header file for class containing compiler back end global data.
//
// = AUTHOR
// Jeff Parsons <parsons@cs.... | [
"dfeiock@iupui.edu"
] | dfeiock@iupui.edu |
832cb1144923970d85471e9a66a1d14216c161be | d5c70d5e4d6deb36ee7ce43a7d6396a0fe8a8411 | /FlowExtractor.cpp | 8d7883d28178fff46644b8480d41543889ef9144 | [] | no_license | dkrathi457/ImprovedDenseTrajectories | f37c25eb1315507f431c970418638937ace3567d | fe826a9c8114abc84850257a2241f4fbba2a886d | refs/heads/master | 2020-04-07T01:48:48.077854 | 2017-04-21T12:38:43 | 2017-04-21T12:38:43 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,081 | cpp | #include "FlowExtractor.h"
#include <iostream>
#include "assert.h"
using namespace cv;
using namespace cv::gpu;
FlowExtractor::FlowExtractor()
{
setDevice(0);
}
FlowExtractor::FlowExtractor(const std::vector<Size>& sizes)
{
FlowExtractor();
buildPyramidGpu(sizes);
}
void FlowExtractor::buildPyramidGpu(... | [
"tomrunia@gmail.com"
] | tomrunia@gmail.com |
6d638d9fe4860c52c4b4eaa5a7ffecd629ba17a3 | d20b7bff35c94c8815e2cf0100fe7188caf5d70a | /BTS.cpp | f5eead42f3b806739ae6c85e43b056fdeb00597c | [] | no_license | mhmdsbrkt/Algorithms-DataStructure | 9727899ee037d69709f025481158a063ff8745a2 | 1a030a372a0706af102eed878a78eca0341364c3 | refs/heads/master | 2021-01-10T06:29:09.224622 | 2016-11-23T21:41:56 | 2016-11-23T21:41:56 | 45,466,997 | 1 | 4 | null | 2020-10-03T20:41:20 | 2015-11-03T13:07:01 | C++ | UTF-8 | C++ | false | false | 5,423 | cpp | #include <iostream>
using namespace std;
class stack {
private:
int *arr;
int size;
int top;
public:
//Declare CONSTRICTOR Function with Parameter
stack(int cSize) {
size = cSize;
top = 0;
arr = new int(size);
}
// CONSTRICTOR Overloading to set default Value
... | [
"mh.s.barakat@gmail.com"
] | mh.s.barakat@gmail.com |
670ce24c74601b1dab42620d54582af69de4310e | cd474b178fee82660ccf5eefc23dce3c821a2650 | /source/ui/text.hpp | 3d35c7ccb29ced81af3dd83fa68b9ad6721d8439 | [
"MIT"
] | permissive | CamillePolice/Epitech-Bomberman | a01f5a86690ddfffa5ad65cd83fe77ba082353a4 | 8650071a6a21ba2e0606e4d8e38794de37bdf39f | refs/heads/master | 2020-06-03T22:16:11.172162 | 2016-06-10T06:44:32 | 2016-06-10T06:44:32 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 962 | hpp | /*
** text.hpp for UI in /home/escoba_j/class
**
** Made by Joffrey Escobar
** Login <escoba_j@epitech.net>
**
** Started on Thu May 19 03:26:51 2016 Joffrey Escobar
*/
#ifndef _TEXT_HPP_
# define _TEXT_HPP_
#include "IObject.hpp"
class text : public IObject
{
public:
text(const std::string& name);
text(cons... | [
"stephane.galibert@epitech.eu"
] | stephane.galibert@epitech.eu |
032526b575436b1d457226140108aed61af6bffe | 3b4deaf588cbace2b7d46c351bde7769eb7c29b1 | /Qt_Utility/misc.hh | 336490fe4b8601f1f90ef6ab8982189ca7a1c09d | [] | no_license | pirl-lpl/idaeim | 0be2027bb3edea2434a6e6b5ee15ce563210d24e | 1e5e8b17e74b6adbfc0f8faf52933eb230095c65 | refs/heads/master | 2020-07-01T09:42:31.121775 | 2019-08-13T17:49:41 | 2019-08-13T17:49:41 | 198,517,154 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 6,775 | hh | /* misc
Copyright (C) 2013-2014 Bradford Castalia, idaeim studio.
This file is part of the idaeim libraries.
The idaeim libraries are free software; you can redistribute them and/or
modify them under the terms of the GNU Lesser General Public License as
published by the Free Software Foundation, either version 3 of ... | [
"guymac@gmail.com"
] | guymac@gmail.com |
c25ab0559427d48b9e4a4b049e224139453de5ca | 9482e58c36e38ad26ad47bde98133c85e5b491f3 | /code/MyShape.h | c44cda16885a3a5a68598a3d5a584f55f16dfe59 | [] | no_license | TaigoFr/SFML_SURVIVAL_GAME | 0a68134c857fa3474e2be89b9d72df13a3ed854c | f2d9a63aaf8157c970c7e707d6267d1fdb9e3e1d | refs/heads/master | 2020-04-25T16:08:29.512185 | 2019-02-27T10:51:59 | 2019-02-27T10:51:59 | 172,900,036 | 2 | 0 | null | 2019-02-27T11:07:53 | 2019-02-27T11:07:52 | null | UTF-8 | C++ | false | false | 907 | h | #pragma once
#include <SFML/Graphics.hpp>
#include <string.h>
class MyShape : public sf::RectangleShape {
public:
MyShape() { size0 = sf::Vector2f(0,0); };
MyShape(sf::Texture &texture, float sx = 1., float sy = 1.);
MyShape(std::string file, float sx = 1., float sy = 1.);
MyShape(sf::Color color, float size_x, f... | [
"miguel_franca@outlook.com"
] | miguel_franca@outlook.com |
139a10e3b9641a7b7870a20d2f7071e4695d3672 | 783279f7d64424fd4535a819cc19be335a3ce196 | /Algorithms/Practice/VC/codeforces/608Div2/C.cpp | b73c2af69b8406b181d61ccddbc4b62ec2c4d533 | [] | no_license | rish-singhal/CompetitiveProgramming | 2bfa88e086c084c9d68624f176ee3cbcb20b8577 | 5ed290ea7e28b81e38679f8c0e99c9c3f80da231 | refs/heads/master | 2023-07-02T18:59:11.817298 | 2021-08-10T04:15:52 | 2021-08-10T04:15:52 | 248,025,974 | 2 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,017 | cpp | #include<bits/stdc++.h>
using namespace std;
typedef long long LL;
#define fi first
#define se second
#define pb push_back
#define forn(i,n) for(int i=0;i<(n);i++)
#define for1(i,n) for(int i=1;i<=n;i++)
#define forr(i,n) for(int i=n;i>=0;i--)
#define all(x) x.begin(), x.end()
const int MAXN = 1e5 +5;
void fio(){
io... | [
"zzxy334@gmail.com"
] | zzxy334@gmail.com |
1e4b06fc4df36f34529b636f256d84710eb76e05 | fcd4e9d9e1af9132afb1a5dc6b0d82a1be4467de | /version_1/status.h | 6a9f2b7e65f54c1bddb2270a621efac51eb619cf | [] | no_license | B5paper/HuaWei2021 | 0ccb63d9ced6e3417d542d8084a26bb7fdb3e8e6 | 3b3fbee087ba13e7b33e42619ce2f1c96cab72ea | refs/heads/main | 2023-04-11T07:26:03.831376 | 2021-04-15T15:13:26 | 2021-04-15T15:13:26 | 358,300,461 | 4 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,762 | h | #ifndef STATUS
#define STATUS
#include <vector>
#include "types.h"
using namespace std;
struct VMSingle
{
int type;
int vm_id;
int server_id;
int node; // 0 for node A, 1 for node B, 2 for both
VMSingle(int type, int vm_id, int server_id, int node)
: type(type), vm_id(vm_id), server_id(serv... | [
"wsdlhlc@163.com"
] | wsdlhlc@163.com |
307a2af086628cd854c6cfb87aab3c7fa1d75271 | 72a146dad10c3330548f175643822e6cc2e2ccba | /net/url_request/url_request_http_job_unittest.cc | aa1599aa6cce1b56b906753b84491447423c7fff | [
"BSD-3-Clause"
] | permissive | daotianya/browser-android-tabs | bb6772394c2138e2f3859a83ec6e0860d01a6161 | 44e83a97eb1c7775944a04144e161d99cbb7de5b | refs/heads/master | 2020-06-10T18:07:58.392087 | 2016-12-07T15:37:13 | 2016-12-07T15:37:13 | 75,914,703 | 1 | 0 | null | 2016-12-08T07:37:51 | 2016-12-08T07:37:51 | null | UTF-8 | C++ | false | false | 30,793 | cc | // Copyright (c) 2013 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 "net/url_request/url_request_http_job.h"
#include <stdint.h>
#include <cstddef>
#include <memory>
#include "base/compiler_specific.h"
#inc... | [
"serg.zhukovsky@gmail.com"
] | serg.zhukovsky@gmail.com |
fb15b4600fd1b1dfcbe6dd28db1ba9ae454bab15 | d5d213ee9f7bc742ad8adaa717b936253a4594ed | /Source/Engine/Urho2D/ParticleEffect2D.h | d522168b5d028db43afcfcd6d95a3ea8359399e2 | [
"LicenseRef-scancode-unknown-license-reference",
"MIT",
"Zlib",
"LicenseRef-scancode-khronos",
"Apache-2.0",
"BSD-2-Clause"
] | permissive | paradigmo/Urho3D | 4122c7b94a0025a9480587507099ed6a5be96b85 | 92ad14b2fe2724c6555c480ad19b00bb7a14fdb1 | refs/heads/master | 2021-01-18T09:03:57.665958 | 2014-06-25T19:47:55 | 2014-06-25T19:47:55 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 10,965 | h | //
// Copyright (c) 2008-2014 the Urho3D project.
//
// 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, m... | [
"asterjian@qq.com"
] | asterjian@qq.com |
ebc46fe0e8ab8c352ff89cdf0448e27316e4589d | 22d315e782d8378a5b200f1410f4bb79fa8e9339 | /Funcion_4.cpp | 88d4d95c9208a65055dab4577f8a8e15a67b6315 | [] | no_license | danivivi/Taller_3_Funciones | 03792fb9665ff1bfd1e062543eb40f37916d7e9d | fad93aa1a5fee680354bcf4b54b39098c428e058 | refs/heads/master | 2021-07-12T03:39:55.298075 | 2017-10-16T23:52:27 | 2017-10-16T23:52:27 | 105,400,623 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 492 | cpp | #include <stdio.h>
/*Comentario
Funcion que devuelve la parte fraccionaria de cualquier numero introducido
por el usuario.
Fecha:20-Septiembre-2017
Elaborado por: Viviana Rojas Ruiz*/
float parte_frac(float num);
int main()
{
float num;
printf("Ingrese un numero:\n");
scanf("%f",&num);
printf("La parte fraccio... | [
"danivivi1205@hotmail.com"
] | danivivi1205@hotmail.com |
23e2d908bdbb1ed395f3c9e3c04455715800bc4a | 77f8084b28fc0aa5a6f606f8f51218912e0b1aba | /lab3/Point.h | c68c9416f37ffcdfc120d68d19e5129960d12e5d | [] | no_license | aleks-papushin/LabsOOP | 887fe4de18472f26ebe1ec877125b61c7bc48bd4 | 433bf2798a664009721f40513b8a011f07423dad | refs/heads/master | 2020-03-15T21:45:57.320817 | 2018-05-06T19:02:45 | 2018-05-06T19:02:45 | 132,361,208 | 0 | 0 | null | null | null | null | WINDOWS-1251 | C++ | false | false | 758 | h | #pragma once
class Point
{
int m_x, m_y;
public:
Point(int x = 0, int y = 0);
~Point();
int GetX() const;
int GetY() const;
void operator=(Point & p);
Point & operator+=(Point & other); // вернуть по ссылке
void operator+=(int d);
Point operator+(const Point & p) const;
Point operator+(int d) const;
... | [
"aleks.papushin@gmail.com"
] | aleks.papushin@gmail.com |
baf318bee50e68aeb4d443ed16256bcd12b23b2e | b9fec31908e40cfc52400e13f847ac0f4e8c48bb | /matlab tests/DH/libs/vision/src/pnp/dls.cpp | c0ad9d3de537529de5c4288ddc39f241e7cd994c | [
"BSD-3-Clause"
] | permissive | DavidRicardoGarcia/measurement-of-angles | e7ff8e9f15a9e50bc57c0d45f5807fcf1fa0ec74 | ab16ca937262e05bf9f82dca5f425791cacfa459 | refs/heads/master | 2021-07-16T12:30:53.523173 | 2021-06-24T07:16:49 | 2021-06-24T07:16:49 | 122,414,543 | 2 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 82,965 | cpp | /* +---------------------------------------------------------------------------+
| Mobile Robot Programming Toolkit (MRPT) |
| http://www.mrpt.org/ |
| |
| Cop... | [
"davidnf.44@gmail.com"
] | davidnf.44@gmail.com |
eeb3586da7f868503f78544047d163559a3d4140 | db016fa9035811a8a984519d9c1e463f78a821d8 | /XPU_新生宿舍预约系统/orderFile.h | 97a5212ea7a6a91e1e77857da0a88f027f62cadb | [] | no_license | Hanpu1225/XPU_DormitoryOrder | f9de041e05c946548fd8cc2e92d328b44b42cd9e | 2f6902fd61d26ae375a1851c5a91f71283d09fd7 | refs/heads/master | 2023-07-06T04:55:58.786206 | 2021-08-12T10:31:56 | 2021-08-12T10:31:56 | 395,279,543 | 2 | 0 | null | null | null | null | GB18030 | C++ | false | false | 311 | h | #pragma once
#include<iostream>
using namespace std;
#include"title.h"
#include<fstream>
#include<map>
#include<string>
class OrderFile
{
public:
OrderFile();
void updateOrder();//更新预约记录
int m_Size;//读取预约记录的条数
map<int, map<string, string>>m_orderData;//条数 键值对
};
| [
"hanpu1225@163.com"
] | hanpu1225@163.com |
6fa9618be97b333530b18e97d3063c3005c861de | 91a882547e393d4c4946a6c2c99186b5f72122dd | /Source/XPSP1/NT/base/cluster/mgmt/cluscfg/server/cenumcluscfgmanagedresources.cpp | 8bc0186c255a72ffa13e9e3376a78f40532c5a50 | [] | no_license | IAmAnubhavSaini/cryptoAlgorithm-nt5src | 94f9b46f101b983954ac6e453d0cf8d02aa76fc7 | d9e1cdeec650b9d6d3ce63f9f0abe50dabfaf9e2 | refs/heads/master | 2023-09-02T10:14:14.795579 | 2021-11-20T13:47:06 | 2021-11-20T13:47:06 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 38,539 | cpp | //////////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2000-2001 Microsoft Corporation
//
// Module Name:
// CEnumClusCfgManagedResources.cpp
//
// Description:
// This file contains the definition of the CEnumClusCfgManagedResources
// class.
//
// Th... | [
"support@cryptoalgo.cf"
] | support@cryptoalgo.cf |
dc998b0d89086f338df9e3767f96d6e6c0d0cf4e | c147d003e5628612bc8f02745b48b8ffea067931 | /FakeClick/HID_multithread.cpp | 408d0b9a52f815db24c09f41adfc0c1994e79bf5 | [
"WTFPL"
] | permissive | ldm0/FakeClick | 9024e187c517455d0691b9960f0ad3089bfc004b | 8c36b7b31d23a44f1d3e7c428c370f1aa5928c45 | refs/heads/master | 2020-04-08T05:05:31.443015 | 2019-05-01T07:09:01 | 2019-05-01T07:09:01 | 159,044,831 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,005 | cpp | #include"HID_multithread.h"
#include<iostream>
using namespace FakeClick;
//C style function, so use ExitThread is just fine
//No class member is tolerated!
DWORD WINAPI FakeClick::main_thread(LPVOID input)
{
HID &instance = *(HID *)input;
//MSG message;
for (;;) {
// Get the mouse position
// For extreme per... | [
"ldm2993593805@163.com"
] | ldm2993593805@163.com |
dc7195d87ba46ac793d3c9470c6cf56a31b1afcc | 3a17418505f5c68564100f03caa789db2e214477 | /testCases/Cavity/Galbraith/semi-anal-comparison/cavity_stoich_ideal_CASE/0.047/MG | fe92aca3a9467cd4d32b050b4c72e06eafa57c86 | [] | no_license | BJankauskas/mapFoam | 2554798c7a4435c90e3f269e84c1c6e6109bb1e7 | 06200cf3a51da3e9a8d284d9df18f8634964dc1a | refs/heads/master | 2020-05-24T16:31:26.833077 | 2019-05-21T18:40:15 | 2019-05-21T18:40:15 | 187,356,603 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 1,137 | /*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 4.x |
... | [
"bernardas.jankauskas@gmail.com"
] | bernardas.jankauskas@gmail.com | |
6b91864cebde40186e632779f16d8457ff48b4c9 | fae0a2871c72599835747abcbfe93e18ba8df4df | /articles/endo2.re | dc2f5cae9f19796cfa4ea2e359c9675e7826b5d2 | [] | no_license | leeif/bookfest7 | 452276f525cb27e703cd188cacfc1ed04cb36758 | ae6ec64700456441d120739274d410e26da52fc5 | refs/heads/master | 2020-07-11T16:00:31.872660 | 2019-08-25T09:34:24 | 2019-08-25T09:34:24 | 199,352,199 | 1 | 0 | null | 2019-07-29T00:41:00 | 2019-07-29T00:41:00 | null | UTF-8 | C++ | false | false | 4,199 | re | = エンジニアが読む技術書ではない本
== はじめに
エンジニアにこそ読んで欲しい本をいくつかご紹介します。エンジニアが技術以外にも地道に担当領域を増やしていくことは非常に有効です。その中で礎となりそうな本を提示させて頂きます。
=== 理科系の作文技術
木下 是雄 著, 中公新書@<br>{}
まとまった文章の書き方をトレーニングする価値はとても高く、読み書きの基本になると考えています。
この本は構成の基本的なことや文章を書く上で何をすべきかが整理されており、比較的読みやすい内容になっています。レポートや論文が念頭にありますが、仕事でも同じように使えます。
=== 本を読む本
J・モーティマー・アドラー V・チャールズ・ド... | [
"entatsu.appli+github@gmail.com"
] | entatsu.appli+github@gmail.com |
eb27c10c85ffd76cc50959183343bb3c8d6c6ca5 | 03a3c0854af0a0b60024bb2fbd004c94cb7961fa | /videocollection/mpxmyvideoscollection/tsrc/mpxmvcolltest/mediatorevents/inc/VCXMediatorEventWatcher.h | 566dd98d97f2c92a4ac74c90c9c511efc9ebd0e5 | [] | no_license | SymbianSource/oss.FCL.sf.app.videoplayer | 9e131f5bcbc080ea58daa39bc67b74bc233c5675 | 9a98fb6eaa86d772baf3bf93db2ea3daf59b5e0c | refs/heads/master | 2021-01-17T18:01:52.673397 | 2010-11-04T09:16:56 | 2010-11-04T09:16:56 | 70,848,693 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,375 | h | /*
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/leg... | [
"none@none"
] | none@none |
7eda5794bfeb70540e2113513362005c8e3907b0 | d932716790743d0e2ae7db7218fa6d24f9bc85dc | /gpu/command_buffer/service/service_discardable_manager_unittest.cc | b09a3596119d09356aa3a6b2e00389457515fcad | [
"BSD-3-Clause"
] | permissive | vade/chromium | c43f0c92fdede38e8a9b858abd4fd7c2bb679d9c | 35c8a0b1c1a76210ae000a946a17d8979b7d81eb | refs/heads/Syphon | 2023-02-28T00:10:11.977720 | 2017-05-24T16:38:21 | 2017-05-24T16:38:21 | 80,049,719 | 19 | 3 | null | 2017-05-24T19:05:34 | 2017-01-25T19:31:53 | null | UTF-8 | C++ | false | false | 19,407 | cc | // Copyright (c) 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "gpu/command_buffer/service/service_discardable_manager.h"
#include "gpu/command_buffer/service/gles2_cmd_decoder_mock.h"
#include "gpu/comm... | [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
192f86546343000b0095b09e4575778159b1e68c | d1cf34b4d5280e33ebcf1cd788b470372fdd5a26 | /leetcode/weekly-309/2341.cpp | 6ee02a14b49a5e12737ff6c2124ccb06c0146531 | [] | no_license | watashi/AlgoSolution | 985916ac511892b7e87f38c9b364069f6b51a0ea | bbbebda189c7e74edb104615f9c493d279e4d186 | refs/heads/master | 2023-08-17T17:25:10.748003 | 2023-08-06T04:34:19 | 2023-08-06T04:34:19 | 2,525,282 | 97 | 32 | null | 2020-10-09T18:52:29 | 2011-10-06T10:40:07 | C++ | UTF-8 | C++ | false | false | 444 | cpp | class Solution {
public:
int longestNiceSubarray(vector<int>& nums) {
static constexpr int BITS = 30;
int start = 0, ret = 0;
vector<int> pos(BITS, -1);
for (int i = 0; i < (int)nums.size(); ++i) {
for (int j = 0; j < BITS; ++j) {
if (((nums[i] >> j) & 1) != 0) {
start = max(st... | [
"watashi@watashi.ws"
] | watashi@watashi.ws |
ac4da75e9f1352c93f023047d974addf1b832be1 | 67b1d96503680b9240e41f5ea9f149f38df7dab7 | /kfmanager/kfmanager/kf_msg_data_parse.cpp | eef4de92fe06c0f708de116c45527c6a4be1c95e | [] | no_license | xiaobinxu24/develop | 04e47e94031b70bca198a3d1d40223d78112598a | 144d7346cf2ed2212f43b8814c2dbb79015441d4 | refs/heads/master | 2021-01-17T17:51:42.110014 | 2016-06-27T13:33:17 | 2016-06-27T13:33:17 | 62,028,078 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 551 | cpp | //
// Created by v on 16-3-15.
// Author: jmdvirus@roamter.com
//
#include <string.h>
#include <rt_print.h>
#include <cstdlib>
#include "kf_msg_data_parse.h"
int recvMsgDataParse(char *recvData,KFControlMsg *ctlMsg)
{
if(!recvData || !ctlMsg ) return -1;
char version[64]={0};
char seq[128]={0};
... | [
"xiaobin_xu@roamter.com"
] | xiaobin_xu@roamter.com |
70578e0dabdf1f6074fbfdddddf6701ac8b60d49 | 2bdfec46f4725c9c7c0ad54935802d84076ff3e5 | /source/core/mining-manager/product-tokenizer/ProductTokenizer.cpp | bfcfe6dbdf5d89fea2ec2febb1bf5d155d46a85d | [
"Apache-2.0"
] | permissive | izenecloud/sf1r-ad-delivery | 66f73bc7764216a1faed3d8de0ab3a569b8d4900 | 998eadb243098446854615de9a96e58a24bd2f4f | refs/heads/master | 2021-01-19T14:09:42.842935 | 2014-09-23T10:41:15 | 2014-09-23T10:41:15 | 24,359,409 | 18 | 7 | null | null | null | null | UTF-8 | C++ | false | false | 4,735 | cpp | #include "ProductTokenizer.h"
using namespace sf1r;
using izenelib::util::UString;
namespace
{
enum CharType
{
CHAR_CHINESE, ///Chinese
CHAR_ALNUM, ///Alphebet and digitals
CHAR_INVALID ///Invalid characters
};
bool IsChinese(uint16_t val)
{
return UString::isThisChineseChar(val);
}
bool IsNonChine... | [
"jun.jiang@izenesoft.com"
] | jun.jiang@izenesoft.com |
425c875c76a2995fff7f6a80889b14145493734d | 7e77d30a5dec41b677f504af35b26896d0a5899f | /CardInformationExtracter.h | aa83d2e2ef4a039ef5c8558773522af1ad225473 | [] | no_license | georgistephanov/yReceiptsPCC | c34e971196c1c7ec5cf5cecbfcc883d74f119b9a | 8573ce12b201561599a78c34cb41b7bc97bbc45c | refs/heads/master | 2020-03-09T21:37:50.539665 | 2018-04-12T11:01:01 | 2018-04-12T11:01:01 | 128,981,917 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 693 | h | #pragma once
#ifndef CARD_INFORMATION_EXTRACTER_H
#define CARD_INFORMATION_EXTRACTER_H
class CardInformationExtracter {
public:
CardInformationExtracter(std::string);
const std::string extractCardType() const;
const std::string extractTrailingDigits() const;
const std::string extractExpiryDate() const;
private:
... | [
"georgistephanov@gmail.com"
] | georgistephanov@gmail.com |
1b6668332ad72bacf7968f6f916985ca31b10f9f | b269392cc4727b226e15b3f08e9efb41a7f4b048 | /CodeForces/CodeForces 1029E.cpp | 609f5ee734b67b4edfcf88f9639907d08e51d969 | [] | no_license | ThoseBygones/ACM_Code | edbc31b95077e75d3b17277d843cc24b6223cc0c | 2e8afd599b8065ae52b925653f6ea79c51a1818f | refs/heads/master | 2022-11-12T08:23:55.232349 | 2022-10-30T14:17:23 | 2022-10-30T14:17:23 | 91,112,483 | 1 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 2,100 | cpp | /*
********************************************************************************
* Author: ThoseBygones
* Version: V1.0
* Date: 2019-01-11
* Subject: ACM-ICPC
* Language: C/C++11
* OJ: CodeForces
* Algorithm:
********************************************************************************
* Algo-De... | [
"1273789365@qq.com"
] | 1273789365@qq.com |
dbafbbe24bf70cb390356d97b2566acaf38c2788 | b7f3edb5b7c62174bed808079c3b21fb9ea51d52 | /chrome/browser/ui/views/page_info/page_info_hover_button.cc | d7ebcb58b41c5cf85f496e038ce638f632f97c14 | [
"BSD-3-Clause"
] | permissive | otcshare/chromium-src | 26a7372773b53b236784c51677c566dc0ad839e4 | 64bee65c921db7e78e25d08f1e98da2668b57be5 | refs/heads/webml | 2023-03-21T03:20:15.377034 | 2020-11-16T01:40:14 | 2020-11-16T01:40:14 | 209,262,645 | 18 | 21 | BSD-3-Clause | 2023-03-23T06:20:07 | 2019-09-18T08:52:07 | null | UTF-8 | C++ | false | false | 6,516 | cc | // Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/ui/views/page_info/page_info_hover_button.h"
#include "base/strings/string_util.h"
#include "base/strings/utf_string_conversions... | [
"commit-bot@chromium.org"
] | commit-bot@chromium.org |
f8d4ba882dfe536534f28a4debde7535cd452cb5 | f7854894a694e1d8b9d1f7a3b8cdf03eab1267dd | /CppCli-WPF-App/Window.cpp | 426e082e5816a4db10bbc47781707fe765a1f252 | [] | no_license | krgujara/RemoteCodePublisher | 2f6b5374381e32bd345502dd6a2f36727113bc0b | 699dfd2c91e5c9c0486143561da331a48134f410 | refs/heads/master | 2021-05-04T20:50:12.401360 | 2018-02-01T13:28:48 | 2018-02-01T13:28:48 | 119,838,902 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 11,158 | cpp | ///////////////////////////////////////////////////////////////////////////
// Window.cpp - C++\CLI implementation of WPF Application //
// - Demo for CSE 687 Project #4 //
// ver 2.0 //
// Jim Fawcett, ... | [
"komalgujarathi@Komals-Air.fios-router.home"
] | komalgujarathi@Komals-Air.fios-router.home |
eda349029ca3049f61c432e05fdc2b9e1fdc9c58 | 8c90e0ffb2819653c566aa7894e73b2726fb3640 | /dokushu/chapter1/list1-2.cpp | 5bdc090834186379a923fc633cb014dcfdd8cef4 | [] | no_license | Tetta8/CPP_test | f842390ad60a0aeb259240910d12d1b273ce58ed | a4692aae32bbc6bfce2af61567a9fa0575e47fe0 | refs/heads/master | 2021-01-04T17:20:09.526885 | 2020-09-17T05:09:19 | 2020-09-17T05:09:19 | 240,681,912 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 241 | cpp | #include <iostream>
void hello_world(){
std::cout << "Hello, world" << std::endl;
}
void show_sum(int a, int b){
int c = a + b;
std::cout << c << std::endl;
}
int main(){
hello_world();
show_sum(1, 2);
} | [
"tester.ta8@gmail.com"
] | tester.ta8@gmail.com |
75261aaab7be6ce56943caf424f8cfa0430b3ed7 | 059af5d220bd922a13285066c35f4e734eb99003 | /FileStream.cpp | 082edf87a40639f8983d9d08452565344309e236 | [
"MIT"
] | permissive | gru2/GVal | 7c4eecad543801ca2da476e9cb62e5e265a81295 | 51044c2f3e011093b3a8bf46b447eefa0a5dce3b | refs/heads/master | 2020-09-16T09:03:38.588343 | 2020-08-27T07:46:22 | 2020-08-27T07:46:22 | 67,791,874 | 0 | 1 | null | null | null | null | UTF-8 | C++ | false | false | 1,729 | cpp | #include <FileStream.h>
FileStream::FileStream()
{
mode = READ_MODE;
file = 0;
position = 0;
fileSize = 0;
}
FileStream::FileStream(const std::string &fileName, FileStream::ModeType mode_)
{
mode = READ_MODE;
file = 0;
position = 0;
fileSize = 0;
open(fileName, mode_);
}
FileStream::~FileStream()
{
close()... | [
"Radovan.Obradovic@gmail.com"
] | Radovan.Obradovic@gmail.com |
221d8cd88916cfe7f6b33f1b3cc5d12dd95ad079 | d9f6f1bb216cc9ba148aa78ef9885c1e43fd52df | /services/media/audio/platform/generic/standard_output_base.h | fe3205a9a77901777c208781a7da46769c153f3f | [
"BSD-3-Clause"
] | permissive | blockspacer/mojo-1 | b15dbee5e245d21d4f6d885d7ede273dfe5c6771 | 4d2ed40dc2390ca98a6fea0580e840535878f11c | refs/heads/master | 2021-05-31T10:41:27.279861 | 2016-01-28T18:47:45 | 2016-01-28T18:47:45 | null | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 3,967 | h | // Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef SERVICES_MEDIA_AUDIO_PLATFORM_GENERIC_STANDARD_OUTPUT_BASE_H_
#define SERVICES_MEDIA_AUDIO_PLATFORM_GENERIC_STANDARD_OUTPUT_BASE_H_
#include "bas... | [
"johngro@google.com"
] | johngro@google.com |
aaf3b5a995b7eedbe6b592e53338189d5957de44 | d7063f5042b40da932748cfc3bef4e43fda4da93 | /io.cpp | 42c5a81b4b83b4d0fe7f5efb0fc263931c5dafae | [
"MIT"
] | permissive | easyeagel/core | 2a8dd71fda2bc6ed2be0e08e7e9c7823d00ea5a6 | 3c1c4e5e6337cc319e70ff38af3fa820de0c83dc | refs/heads/master | 2020-04-05T22:45:57.197299 | 2017-07-20T09:05:00 | 2017-07-20T09:05:00 | 29,125,269 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 4,712 | cpp | // Copyright [2014] <lgb (LiuGuangBao)>
//=====================================================================================
//
// Filename: baseIO.cpp
//
// Description: IO基础类型的实现
//
// Version: 1.0
// Created: 2013年12月13日 13时19分33秒
// Revision: none
// Compiler: gcc
//
// ... | [
"easyeagel@163.com"
] | easyeagel@163.com |
e947061e058a7a44f5bdcded119d766627c3229f | 775acebaa6559bb12365c930330a62365afb0d98 | /source/chilkat/include/CkBinData.h | 1b9b74aba7d303d79298b328f09123e02f01ced3 | [] | no_license | Al-ain-Developers/indesing_plugin | 3d22c32d3d547fa3a4b1fc469498de57643e9ee3 | 36a09796b390e28afea25456b5d61597b20de850 | refs/heads/main | 2023-08-14T13:34:47.867890 | 2021-10-05T07:57:35 | 2021-10-05T07:57:35 | 339,970,603 | 1 | 1 | null | 2021-10-05T07:57:36 | 2021-02-18T07:33:40 | C++ | UTF-8 | C++ | false | false | 10,642 | h | // CkBinData.h: interface for the CkBinData class.
//
//////////////////////////////////////////////////////////////////////
// This header is generated for Chilkat 9.5.0.86
#ifndef _CkBinData_H
#define _CkBinData_H
#include "chilkatDefs.h"
#include "CkString.h"
#include "CkMultiByteBase.h"
class CkByteData;
clas... | [
"75730278+Tarekhesham10@users.noreply.github.com"
] | 75730278+Tarekhesham10@users.noreply.github.com |
48cfe69f411a1979a34a6d477b5ee840b14c938d | 3af68b32aaa9b7522a1718b0fc50ef0cf4a704a9 | /cpp/C/A/A/E/ACAAE.h | cec748723cfb13c21ae900e395df05abf41d9e1e | [] | no_license | devsisters/2021-NDC-ICECREAM | 7cd09fa2794cbab1ab4702362a37f6ab62638d9b | ac6548f443a75b86d9e9151ff9c1b17c792b2afd | refs/heads/master | 2023-03-19T06:29:03.216461 | 2021-03-10T02:53:14 | 2021-03-10T02:53:14 | 341,872,233 | 0 | 0 | null | null | null | null | UTF-8 | C++ | false | false | 65 | h | #ifndef ACAAE_H
namespace ACAAE {
std::string run();
}
#endif | [
"nakhyun@devsisters.com"
] | nakhyun@devsisters.com |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.