Skip to content

Instantly share code, notes, and snippets.

View FinlayDaG33k's full-sized avatar

Aroop 'FinlayDaG33k' Roelofs FinlayDaG33k

View GitHub Profile

Keybase proof

I hereby claim:

  • I am finlaydag33k on github.
  • I am finlaydag33k (https://keybase.io/finlaydag33k) on keybase.
  • I have a public key whose fingerprint is 0D72 7476 584F C5E8 B48A A85A 407B 4B20 00DF 2FC8

To claim this, I am signing this object:

function offlinenotification() {
var url = "https://hubble.finlaydag33k.nl/api/?authkey=<?php echo $user_authkey;?>";
$.getJSON( url, {
format: "json"
})
.done(function( data ) {
console.log(data);
$.each( data.servers.servers, function( i, item ) {
console.log(i);
});
Run this command to install MG-GUI:
sudo apt-get update && wget https://minergate.com/download/ubuntu -O minergate-gui.deb && sudo dpkg -i minergate-gui.deb
then run minergate from the start menu
Feel free to send some of your earnings to me:
BTC (Don't attempt to send other coins to this address!): 17f77AYHsQbdsB1Q6BbqPahJ8ZrjFLYH2j
for BCN:
@FinlayDaG33k
FinlayDaG33k / index.html
Created March 26, 2017 18:47
MissAudi1999's Countdown fix
<!DOCTYPE html>
<html>
<head>
<title>Button</title>
<link rel="stylesheet" type="text/css" href="style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="main.js"></script>
</head>
<body>
<!--opdracht met input field number-->
<!DOCTYPE html>
<html>
<head>
<title>Button</title>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="http://bootswatch.com/united/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script type="text/javascript" src="script.js"></script>
</head>
<body>
<!DOCTYPE html>
<html>
<head>
<title>Button</title>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="http://bootswatch.com/united/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script type="text/javascript" src="script.js"></script>
</head>
<body>
<?php
//error displaying wen something wrong
ini_set('display_errors', true);
error_reporting(E_ALL);
session_start(); // start the session
//for the pages
$disallowed_paths = array('header', 'footer');
if(!empty($_GET['page'])){
package finlaydag33k.swing.gui;
import java.awt.EventQueue;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.stream.Stream;
import javax.swing.JFrame;
import javax.swing.JPanel;
@FinlayDaG33k
FinlayDaG33k / Deno-WoL.ts
Created June 4, 2021 09:57
Just a quick WoL sender for Deno I wrote a while ago (may be broken nowadays)
/**
* Author: Aroop Roelofs <me@finlaydag33k.nl>
* License: Do Whatever You Want With it
*/
import { Buffer } from "https://deno.land/std/io/mod.ts";
interface IWolOptions {
recipient?: IRecipient;
}