Skip to content

Instantly share code, notes, and snippets.

View djberg96's full-sized avatar

Daniel Berger djberg96

View GitHub Profile
- Space Empires 4x version 3.0.7
- Place/Replace Trait Place Marker - place cell in next column - makeCell - (0) GPID updated from 478 to 3129
- Place/Replace Trait Place Marker - place cell in next column - makeCell - (0) GPID updated from 478 to 3130
- Place/Replace Trait Place Marker - place cell in next column - makeCell - (0) GPID updated from 478 to 3131
- Place/Replace Trait Place Marker - place cell in next column - makeCell - (0) GPID updated from 478 to 3132
- Place/Replace Trait Place Marker - place cell in next column - makeCell - (0) GPID updated from 478 to 3133
- Place/Replace Trait Place Marker - place cell in next column - makeCell - (0) GPID updated from 478 to 3134
- Place/Replace Trait Place Marker - place cell in next column - makeCell - (0) GPID updated from 478 to 3135
- Place/Replace Trait Place Marker - place cell in next column - makeCell - (0) GPID updated from 478 to 3136
- Place/Replace Trait Place Marker - place cell in next column - makeCell - (0) GPID updated from 478 to 3137
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary for Vassal Engine 3.7.6-SNAPSHOT:
[INFO] 
[INFO] Vassal Engine ...................................... SUCCESS [  0.385 s]
[INFO] vassal-agent ....................................... SUCCESS [  1.324 s]
[INFO] vassal-deprecation ................................. SUCCESS [  0.189 s]
[INFO] vassal-app ......................................... SUCCESS [02:29 min]
[INFO] vassal-doc ......................................... SUCCESS [  0.251 s]
[INFO] release-prepare .................................... SUCCESS [  7.551 s]

Hit this on make release-macos.

Darwin Kernel Version 22.6.0: Wed Oct 4 21:25:26 PDT 2023; root:xnu-8796.141.3.701.17~4/RELEASE_X86_64 x86_64

openjdk version "14.0.2" 2020-07-14 OpenJDK Runtime Environment (build 14.0.2+12-46) OpenJDK 64-Bit Server VM (build 14.0.2+12-46, mixed mode, sharing)

GPL Ghostscript 10.01.2: **** Could not open temporary file tmp/gs_XXXXXX
require 'thread'
require 'thwait'
a = []
Dir["font-z*.rb"].each do |file|
next if file == __FILE__
next if file =~ /pixel/
font = File.basename(file, '.rb')
puts font
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
# You will need Ruby on a Windows machine. Plus the ffi library.
require 'ffi'
class File::Temp
extend FFI::Library
ffi_lib :kernel32
attach_function :GetTempFileNameA, %i[string string uint buffer_out], :uint
attach_function :GetTempFileNameW, %i[buffer_in buffer_in uint buffer_out], :uint
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
# user.rb
class User < ApplicationRecord
has_many :groups_users, :class_name => 'GroupsUsers'
has_many :groups, :through => :groups_users
end
# group.rb
class Group < ApplicationRecord
has_many :groups_users, :class_name => 'GroupsUsers'
#has_many :users, :through => :groups_users