This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.rsxml.handler.analysis; | |
import com.rsxml.*; | |
import com.rsxml.attr.*; | |
import com.rsxml.attr.Attribute; | |
import com.rsxml.util.TypeUtils; | |
import org.objectweb.asm.*; | |
import org.objectweb.asm.tree.*; | |
import java.util.function.*; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.rsxml.handler.analysis; | |
import com.rsxml.*; | |
import com.rsxml.attr.*; | |
import com.rsxml.attr.Attribute; | |
import org.objectweb.asm.*; | |
import org.objectweb.asm.tree.*; | |
import java.util.function.*; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.unicus.reflect; | |
import java.lang.reflect.InvocationTargetException; | |
import java.lang.reflect.Method; | |
import jdk.internal.org.objectweb.asm.Type; | |
/** | |
* @author Caleb Whiting | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package demo; | |
import com.javaface.javafx.JavafaceScene; | |
import com.javaface.javafx.style.metal.MetalLightStyle; | |
import javafx.application.Application; | |
import javafx.beans.property.SimpleStringProperty; | |
import javafx.fxml.FXML; | |
import javafx.scene.control.Button; | |
import javafx.scene.control.Label; | |
import javafx.scene.control.TableColumn; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* WindowHandle.cpp | |
* | |
* Author: Caleb Whiting | |
*/ | |
#include "jni/org_jscrape_internal_WindowHandle.h" | |
#include <iostream> | |
#include <vector> | |
#include <Windows.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package demo; | |
import com.sun.javafx.scene.*; | |
import javafx.application.*; | |
import javafx.event.Event; | |
import javafx.event.*; | |
import javafx.geometry.*; | |
import javafx.scene.*; | |
import javafx.scene.control.Button; | |
import javafx.scene.input.*; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
writeSplinesToImage(inputPane); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.jscrape; | |
import org.jscrape.internal.*; | |
import org.jscrape.mouse.*; | |
import org.jscrape.spline.*; | |
import org.jscrape.util.*; | |
import java.awt.geom.*; | |
public class Main { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package org.jscrape.internal; | |
public class Main { | |
public static void main(String[] args) { | |
NativeScreen.getMouseX(); | |
long start = System.currentTimeMillis(); | |
for (int i = 0; i < 1_000_000; i++) { | |
NativeScreen.getScreenWidth(); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <iostream> | |
#include <winsock2.h> | |
using namespace std; | |
#pragma comment(lib,"ws2_32.lib") | |
int main() { | |
cout << "Starting Application\n"; |