Skip to content

Instantly share code, notes, and snippets.

View juaxix's full-sized avatar
xixgames

juaxix juaxix

xixgames
View GitHub Profile
@juaxix
juaxix / kdtree_with_example.cpp
Last active March 9, 2022 19:38
C++ KD Tree with Vector3 and a condition flag
#include <iostream>
#include <memory>
#include <math.h>
#include <algorithm>
#include <vector>
#include <string>
using namespace std;
void padTo(string &str, const size_t num, const char paddingChar = ' ')
{
@juaxix
juaxix / BackgroundRunnable.h
Last active November 15, 2021 09:58
Unreal Background Runnable thread
/**
* Class to run a background thread do parallel work with different Objects using an interface
*/
class FBackgroundRunnable : public FRunnable
{
public:
explicit FBackgroundRunnable(IMediator* InObject)
{
Object = InObject;
BackgroundThread = FRunnableThread::Create(this, TEXT("Background Thread"), 0, EThreadPriority::TPri_Highest, FPlatformAffinity::GetAsyncLoadingThreadMask());
@juaxix
juaxix / TicTacToe.java
Created June 27, 2020 20:45
JAVA TicTacToe
/// juaxix - TicTacToe
/// @see https://imgur.com/a/gBmaYD4
import javax.sound.sampled.AudioInputStream;
import javax.sound.sampled.AudioSystem;
import javax.sound.sampled.Clip;
import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.InputStream;
@juaxix
juaxix / Keybase.json
Created September 11, 2019 20:53
Keybasetest
### Keybase proof
I hereby claim:
* I am juaxix on github.
* I am juaxix (https://keybase.io/juaxix) on keybase.
* I have a public key ASCl5aLcWCrgmte5ZK51L4B9so6I3fMzBblx7CtKciofnAo
To claim this, I am signing this object:
@juaxix
juaxix / FakeMouseClick.cpp
Last active August 17, 2019 16:22
Fake a mouse click in X,Y of the screen with loop and delay
#include <iostream>
#include <windows.h>
#include <string>
// LeftClick function
void LeftClick()
{
INPUT Input = { 0 };
// left down
Input.type = INPUT_MOUSE;
@juaxix
juaxix / Snake.cpp
Last active January 8, 2019 08:56
ASCII_Snake.cpp
#include <iostream>
#include <conio.h>
#include <chrono>
#include <thread>
using namespace std;
//game state
bool gameOver = false;
//MAP BLOCKS
const int width = 20;
const int height = 20;
@juaxix
juaxix / BuilderFacets.hpp
Created January 1, 2019 21:08
Builder Coding Exercise
#include <string>
#include <ostream>
#include <vector>
using namespace std;
struct Field
{
string name;
string type;
@juaxix
juaxix / NetworkView.cs
Created October 16, 2018 14:46
Gamesparks - a network view approximation (w.i.p.)
using GameSparks.RT;
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class NetworkView : MonoBehaviour
{
public int viewID = 0;
public enum ViewSynchModes
@juaxix
juaxix / unfollow-not-follow-back.js
Created August 24, 2018 16:26
Unfollow not-following back accounts from your profile, using twitter web interface and chrome JS
//Step using a browser
//1) Login into your account. Go to your profile following, example https://twitter.com/xixgames/following
//2) Go all the way to bottom to get all the parts of the accounts you follow (the new API only allow get chunks)
// --> you can do that with a scrollTo jQuery script or just keep pressed the AvPage key of your keyboard.
//3) Open developer console and copy paste this code, and change confirm_unfollow to true if you want to execute the unfollow
//Get all follows data:
var follows = $(".FollowStatus");
//Remove data from accounts who are following back:
for(var i=0;i<follows.length;i++)
{
@juaxix
juaxix / Game.cs
Created August 12, 2018 23:17
OutOfSpace- LudumDare 42
using System;
using UnityEngine;
using System.Collections.Generic;
using System.Linq;
using DG.Tweening;
using UnityEngine.Events;
using Random = UnityEngine.Random;
public class Game : MonoBehaviour
{