Skip to content

Instantly share code, notes, and snippets.

View afroraydude's full-sized avatar
🎯
Making a linux distro

afro afroraydude

🎯
Making a linux distro
View GitHub Profile
1502dcbedca425f54cbb81484c8b4426a10cc119

Keybase proof

I hereby claim:

  • I am afroraydude on github.
  • I am afroraydude (https://keybase.io/afroraydude) on keybase.
  • I have a public key ASBM5DXF1mbk6--sk4tfgJW00pbtzzW7o5aU3nnyM8H87go

To claim this, I am signing this object:

Keybase proof

I hereby claim:

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

To claim this, I am signing this object:

<div id="editor">
</div>

Interview with John D of MAXX Potential

  1. Introduction -
    • Name of the IT Professional Interviewed
      • 4John D
    • Their Job Title
      • COO Chief Operating officer and Master Technologist
    • Company/Organization
@afroraydude
afroraydude / simplemsg
Created June 28, 2016 02:51
Simple Message for discordsharp
if (e.MessageText.StartsWith("!msg"))
{
string reciever = e.MessageText.Substring(5);
Console.WriteLine(reciever);
client.SendMessageToUser("Hey - afroraydude", e.Channel.Parent.GetMemberByUsername(reciever, true));
}
import javax.swing.*;
public class CoreControl {
public static void main(String[] a) {
JFrame window = new JFrame();
window.setSize(840,560);
window.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
window.getContentPane().add(new Grid());
window.setVisible(true);
package com.afroraydude.extrastuff.common;
import java.util.Random;
import net.minecraft.block.Block;
import net.minecraft.util.MathHelper;
import net.minecraft.world.World;
import net.minecraft.world.gen.feature.WorldGenerator;
public class WorldGenNetherMinable extends WorldGenerator