Skip to content

Instantly share code, notes, and snippets.

View lukec11's full-sized avatar
⌨️
Several people are typing

Luke Carapezza lukec11

⌨️
Several people are typing
View GitHub Profile
@lukec11
lukec11 / timer.py
Created June 5, 2020 07:02
obs-timer-linux
from datetime import datetime, timedelta
import time
import os
setHour = int(input('Hour: '))
setMin = int(input('Minute: '))
setTime = datetime(
year = datetime.today().year,
month = datetime.today().month,
/**
* @author Harshith Iyer (@harbar20)
* @author Luke Carapezza (@lukec11)
* @ver 0.1
*/
import java.util.Arrays;
import java.util.Random;
class MaxSequenceSum {

Keybase proof

I hereby claim:

  • I am lukec11 on github.
  • I am lukec1 (https://keybase.io/lukec1) on keybase.
  • I have a public key ASCYPgJJc9gveENd1X3bjgHtWvsrxunvGIoFQq0BMzuWvgo

To claim this, I am signing this object:

@lukec11
lukec11 / mcstatus.py
Last active May 18, 2019 18:27
Checks the status of a Minecraft Server, used as a command in Slack
import os
from flask import abort, Flask, jsonify, request
from mcstatus import MinecraftServer
import slack
def online():
server = MinecraftServer.lookup("--SERVER IP HERE--")