Skip to content

Instantly share code, notes, and snippets.

View DreamerDeLy's full-sized avatar
🔵
///

Dreamer DreamerDeLy

🔵
///
View GitHub Profile
@DreamerDeLy
DreamerDeLy / SetTime.ino
Created February 18, 2019 16:35
Configuring RTC time from Serial Port
void setTime() {
// January 21, 2014 at 3am you would call:
// rtc.adjust(DateTime(2014, 1, 21, 3, 0, 0));
DateTime now = rtc.now();
int newYear;
int newMonth;
int newDay;
int newHour;
int newMinute;
@DreamerDeLy
DreamerDeLy / _task_8.cs
Last active March 21, 2020 11:30
Task 8 [C#]
using System;
namespace Task_8
{
class Program
{
// Array size
const int r = 10;
const int c = 10;
@DreamerDeLy
DreamerDeLy / _task_8.cpp
Last active March 21, 2020 11:07
Task 8 [C++]
#include <iostream>
#include <cstdlib>
#include <string>
#include <Windows.h>
using namespace std;
// Array size
const int r = 10;
const int c = 10;