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
module ActiveRecord | |
module QueryMethods | |
#keeping track of left joins sent | |
attr_accessor :left_joins_values | |
#photocopy of joins except for the variable that records left_joins separate from the joins | |
def left_joins(*args) | |
return self if args.compact.blank? |
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
//NOTE: use CJS plugin on chrome to append this additional js ... | |
//TODO: ability to have multiple files present, and the current one to be selected from dropdown | |
//TODO: memory to keep the list safe | |
//TODO: file picker to get new instead of manually typing the paths | |
window.auto_query_config = { | |
file_path: '/path/to/file.sql' | |
autoload_file: false | |
} |
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.company; | |
import technology.tabula.*; | |
import org.apache.commons.cli.CommandLine; | |
import org.apache.commons.cli.CommandLineParser; | |
import org.apache.commons.cli.DefaultParser; | |
import org.apache.commons.cli.ParseException; | |
import com.sun.net.httpserver.HttpExchange; |