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
using System; | |
using System.Collections.Generic; | |
using System.Reflection; | |
using UnityEngine.UIElements; | |
namespace UI | |
{ | |
public static class BindingExtensions | |
{ | |
public static void Bind(this VisualElement element, object data) |
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
Picked up _JAVA_OPTIONS: -Djava.net.preferIPv4Stack=true -Duser.country=DE -Duser.language=en -Dfile.encoding=ISO-8859-1 | |
objc[40895]: Class JavaLaunchHelper is implemented in both /Library/Java/JavaVirtualMachines/jdk1.8.0_144.jdk/Contents/Home/bin/java (0x1095aa4c0) and /Library/Java/JavaVirtualMachines/jdk1.8.0_144.jdk/Contents/Home/jre/lib/libinstrument.dylib (0x10adf54e0). One of the two will be used. Which one is undefined. | |
ERROR StatusLogger Log4j2 could not find a logging implementation. Please add log4j-core to the classpath. Using SimpleLogger to log to the console... | |
Jul 16, 2018 7:13:25 PM com.almworks.sqlite4java.Internal log | |
WARNING: [sqlite] cannot open DB[1]: com.almworks.sqlite4java.SQLiteException: [-91] cannot load library: com.almworks.sqlite4java.SQLiteException: [-91] sqlite4java cannot find native library | |
Jul 16, 2018 7:13:25 PM com.almworks.sqlite4java.Internal log | |
SEVERE: [sqlite] SQLiteQueue[]: error running job queue | |
com.almworks.sqlite4java.SQLiteException: [-91] cannot load library |
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
# Build Folders (you can keep bin if you'd like, to store dlls and pdbs) | |
[Bb]in/ | |
[Oo]bj/ | |
# mstest test results | |
TestResults | |
## Ignore Visual Studio temporary files, build results, and | |
## files generated by popular Visual Studio add-ons. |
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
# Initializer for cancan | |
# | |
# Extend Netzke::Base class in order to be able to include cancan helpers | |
class Netzke::Base | |
# cancan calls helper_method, which is present in any controller, but not in a netzke components | |
def self.helper_method(*args) | |
# Do nothing since we don't have a view layer in netzke components | |
end | |
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
GIT | |
remote: git://github.com/aaronjg/rsruby.git | |
revision: bb3fd2dbfee58aec6461a50fcc5f37d21b0c5d55 | |
specs: | |
rsruby (0.5.1.1d) | |
GEM | |
remote: http://rubygems.org/ | |
specs: | |
actionmailer (3.2.7) |
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
# The Login component | |
# Lets user type in their credentials, so they can authenticate themselves | |
class Sessions::Login < Netzke::Base | |
# Set the EXT JS class | |
js_base_class 'Ext.Window' | |
# Configure the component | |
# | |
# @return [Hash] |
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
// Extends Ext.data.TreeStore and adds paging to it | |
Ext.define('Ext.netzke.PagingTreeStore', { | |
extend: 'Ext.data.TreeStore', | |
alias: 'pagingtreestore', | |
currentPage: 1, | |
config:{ | |
totalCount: null, | |
pageSize: null | |
}, | |
// Load a specific Page |