--- This guide is now available on libgdx.com. Check it out here. If you have any questions, join us on Discord! ---
- To switch to libGDX's LWJGL 3 backend, open your root
build.gradle
file and replace the LWJGL backend dependency:
package net.runelite.cache | |
import io.netty.buffer.ByteBuf | |
import io.netty.buffer.Unpooled | |
import net.runelite.cache.fs.Container | |
import net.runelite.cache.fs.Store | |
import net.runelite.cache.fs.flat.FlatStorage | |
import net.runelite.cache.fs.jagex.DataFileWriteResult | |
import net.runelite.cache.fs.jagex.DiskStorage | |
import net.runelite.cache.fs.jagex.IndexEntry |
#!/usr/bin/env bash | |
# run this on the remote terminal machine, as auser with sudo powers, probably through a remote ssh shell | |
# this will overwrite all the settings it touches | |
# the name of the user to run these commands as | |
TARGET_USER=jane | |
# we need an inlocked desktop session. we can either start a new autologin one or unlock an existing one |
# updates etc | |
sudo apt update | |
sudo apt upgrade -y | |
# install pre-reqs | |
sudo apt install tasksel -y | |
# get the file | |
wget https://dl.google.com/linux/direct/chrome-remote-desktop_current_amd64.deb | |
sudo dpkg --install chrome-remote-desktop_current_amd64.deb | |
sudo apt install --assume-yes --fix-broken | |
sudo tasksel install ubuntu-desktop |
I try to push for quite a long time for first class support for WebAssembly in Kotlin because I really believe that frontend development is a domain where Kotlin can be as strong as in mobile, and because this is something that would also help to increase even more the adoption on server-side.
I truly appreciate all the work already done by Kotlin/JS and Kotlin/Native teams. The dead code elimination tool and the initial WebAssembly support in Kotlin/Native are important steps in the right direction. But I believe that Kotlin needs now to make frontend a real priority to take it to the next level.
The first point I would like to raise is that what Kotlin needs IMO is a consistent strategy about web frontend wich includes both Javascript and WebAssembly related efforts. I can u
### | |
# Proxmox or other server kernel params cheap tune and secure. | |
# Try it if you have heavy load on server - network or memory / disk. | |
# No harm assumed but keep your eyes open. | |
# | |
# @updated: 2020-02-06 - more params used, adjust some params values, more comments on params | |
# | |
### NETWORK ### |
// START WIN7 | |
// MARGINS class for WIN7 Frame | |
public class MARGINS extends Structure implements Structure.ByReference { | |
public int cxLeftWidth; | |
public int cxRightWidth; | |
public int cyTopHeight; | |
public int cyBottomHeight; | |
@Override |
import java.awt.Graphics2D; | |
import java.awt.image.BufferedImage; | |
import java.io.BufferedOutputStream; | |
import java.io.File; | |
import java.io.FileOutputStream; | |
import java.io.IOException; | |
import java.text.SimpleDateFormat; | |
import java.util.Date; | |
import java.util.concurrent.ExecutorService; | |
import java.util.concurrent.Executors; |