Skip to content

Instantly share code, notes, and snippets.

@alireza19
alireza19 / alirezamosavi_solution.cs
Created January 15, 2021 00:29
Arcurve Summer 2021 Internship Coding Challenge
using System;
public class Program
{
public static void Main()
{
Program testProgram = new Program();
DateTime aDate = new DateTime(2010, 2, 14);
DateTime utcMonthStart = new DateTime();
DateTime utcNextMonthStart = new DateTime();

Keybase proof

I hereby claim:

  • I am alireza19 on github.
  • I am alireza19 (https://keybase.io/alireza19) on keybase.
  • I have a public key ASCIkQT3mXZkZEEom4eNRyfaGBsU1f0XK_LRXJT9DP06Uwo

To claim this, I am signing this object:

@alireza19
alireza19 / animated3Dplot.py
Created January 23, 2020 22:26 — forked from markjay4k/animated3Dplot.py
animated 3D example using PyQtGraph and OpenGL
# -*- coding: utf-8 -*-
"""
Animated 3D sinc function
"""
from pyqtgraph.Qt import QtCore, QtGui
import pyqtgraph.opengl as gl
import pyqtgraph as pg
import numpy as np
import sys