Skip to content

Instantly share code, notes, and snippets.

View Nicky5's full-sized avatar
👮‍♂️
yes officer, this stalker right there (points at u)

Vandini Nicky5

👮‍♂️
yes officer, this stalker right there (points at u)
View GitHub Profile
@davejbax
davejbax / discord.js
Last active July 31, 2024 11:39
Higher Discord volume control
(function() {
// The following utility function are taken from EnhancedDiscord, developed by
// joe27g <https://github.com/joe27g>, and licensed under an MIT License.
// All credit goes to joe27g for the breadth of the work regarding accessing
// webpack modules at runtime.
//
// ---
// MIT License
//
@ydarias
ydarias / GmailClient.java
Created January 25, 2016 09:30
Java class to get mails from a Gmail account using JavaMail API (the MailWrapper is an internal Runnics class to make it easy the process)
package com.runnics.mailing;
import com.funius.core.PropertyLoader;
import org.joda.time.DateTime;
import javax.mail.*;
import javax.mail.search.AndTerm;
import javax.mail.search.ComparisonTerm;
import javax.mail.search.ReceivedDateTerm;
import javax.mail.search.SearchTerm;
@ogilviemt
ogilviemt / star_field_test.py
Created November 22, 2014 16:28
Animated star field background using pygame
import pygame
import random
screen = pygame.display.set_mode([1024, 768])
height = pygame.display.Info().current_h
width = pygame.display.Info().current_w
pygame.display.set_caption('Window Caption')
clock = pygame.time.Clock()
#create the locations of the stars for when we animate the background