Skip to content

Instantly share code, notes, and snippets.

@DanielChesters
DanielChesters / steam.log
Last active October 17, 2022 19:31
Steam - System Information
steam.sh[18651]: Running Steam on arch rolling 64-bit
steam.sh[18651]: STEAM_RUNTIME is enabled automatically
setup.sh[18725]: Steam runtime environment up-to-date!
steam.sh[18651]: Steam client's requirements are satisfied
[2022-10-17 21:18:12] Startup - updater built Oct 7 2022 22:29:18
[2022-10-17 21:18:12] Startup - Steam Client launched with: '/home/daniel/.local/share/Steam/ubuntu12_32/steam'
Installing breakpad exception handler for appid(steam)/version(1665183764)
[2022-10-17 21:18:12] Loading cached metrics from disk (/home/daniel/.local/share/Steam/package/steam_client_metrics.bin)
[2022-10-17 21:18:12] Using the following download hosts for Public, Realm steamglobal
[2022-10-17 21:18:12] 1. https://client-update.akamai.steamstatic.com, /, Realm 'steamglobal', weight was 1000, source = 'update_hosts_cached.vdf'
@DanielChesters
DanielChesters / DateFormat.java
Created January 21, 2013 18:46
Proposal for Easy Challenge #118
package fr.daniel.dateFormat;
import java.util.Calendar;
import java.util.HashMap;
import java.util.Map;
import java.util.Map.Entry;
public class DateFormat {
private static Map<String, String> linkJavaISO = new HashMap<>();
@DanielChesters
DanielChesters / MayaLongCount.java
Created January 20, 2013 22:04
Proposal for Intermediate Challenge #117 with Bonus 2. Unreliable for date before 1st January 1970.
package fr.daniel.maya;
import java.util.Calendar;
public class MayaLongCount {
public static String convertTo(int year, int month, int date) {
Calendar calendar = Calendar.getInstance();
calendar.set(year, month - 1, date);
long day = calendar.getTimeInMillis() / 86_400_000;
@DanielChesters
DanielChesters / Main.java
Created January 20, 2013 19:52
Proposal for Easy Challenge #117
package fr.daniel.easy117;
import java.io.File;
import java.io.IOException;
import java.io.RandomAccessFile;
import java.util.ArrayList;
import java.util.List;
public class Main {