Giter Site home page Giter Site logo

anonymouth's People

Contributors

awemcdonald avatar barrowclift avatar psal avatar travis-crow avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

anonymouth's Issues

Attempting to `javac ThePresident.java`

Having an issue to try and run the GUI from the command line is this possible without Eclipse?

$ ~/Repos/anonymouth/ >  javac src/edu/drexel/psal/anonymouth/gooie/ThePresident.java
src/edu/drexel/psal/anonymouth/gooie/ThePresident.java:3: error: cannot find symbol
import edu.drexel.psal.ANONConstants;
                      ^
  symbol:   class ANONConstants
  location: package edu.drexel.psal
src/edu/drexel/psal/anonymouth/gooie/ThePresident.java:4: error: package edu.drexel.psal.anonymouth.helpers does not exist
import edu.drexel.psal.anonymouth.helpers.ImageLoader;
                                         ^
src/edu/drexel/psal/anonymouth/gooie/ThePresident.java:5: error: package edu.drexel.psal.anonymouth.utils does not exist
import edu.drexel.psal.anonymouth.utils.About;
                                       ^
src/edu/drexel/psal/anonymouth/gooie/ThePresident.java:6: error: package edu.drexel.psal.jstylo.generics does not exist
import edu.drexel.psal.jstylo.generics.Logger;
                                      ^
src/edu/drexel/psal/anonymouth/gooie/ThePresident.java:40: error: cannot find symbol
    protected static StartWindow startWindow;
                     ^
  symbol:   class StartWindow
  location: class ThePresident
src/edu/drexel/psal/anonymouth/gooie/ThePresident.java:41: error: cannot find symbol
    public GUIMain main;
           ^
  symbol:   class GUIMain
  location: class ThePresident
src/edu/drexel/psal/anonymouth/gooie/ThePresident.java:52: error: cannot find symbol
    public static SplashScreen splash;
                  ^
  symbol:   class SplashScreen
  location: class ThePresident
src/edu/drexel/psal/anonymouth/gooie/ThePresident.java:47: error: cannot find symbol
    public static int max_Features_To_Consider = PropertiesUtil.defaultFeatures;
                                                 ^
  symbol:   variable PropertiesUtil
  location: class ThePresident
src/edu/drexel/psal/anonymouth/gooie/ThePresident.java:48: error: cannot find symbol
    public static int num_Tagging_Threads = PropertiesUtil.defaultThreads;
                                            ^
  symbol:   variable PropertiesUtil
  location: class ThePresident
src/edu/drexel/psal/anonymouth/gooie/ThePresident.java:49: error: cannot find symbol
    public static boolean should_Keep_Auto_Saved_Anonymized_Docs = PropertiesUtil.defaultVersionAutoSave;
                                                                   ^
  symbol:   variable PropertiesUtil
  location: class ThePresident
src/edu/drexel/psal/anonymouth/gooie/ThePresident.java:50: error: cannot find symbol
    public static boolean autosave_Latest_Version = PropertiesUtil.defaultAutoSave;
                                                    ^
  symbol:   variable PropertiesUtil
  location: class ThePresident
src/edu/drexel/psal/anonymouth/gooie/ThePresident.java:74: error: cannot find symbol
        splash = new SplashScreen();
                     ^
  symbol:   class SplashScreen
  location: class ThePresident
src/edu/drexel/psal/anonymouth/gooie/ThePresident.java:77: error: cannot find symbol
        logo = ImageLoader.getImage(ANONYMOUTH_LOGO_LARGE);
               ^
  symbol:   variable ImageLoader
  location: class ThePresident
src/edu/drexel/psal/anonymouth/gooie/ThePresident.java:78: error: cannot find symbol
        aboutLogo = ImageLoader.getImageIcon(ANONYMOUTH_LOGO);
                    ^
  symbol:   variable ImageLoader
  location: class ThePresident
src/edu/drexel/psal/anonymouth/gooie/ThePresident.java:79: error: cannot find symbol
        dialogLogo = ImageLoader.getImageIcon(ANONYMOUTH_LOGO_SMALL);
                     ^
  symbol:   variable ImageLoader
  location: class ThePresident
src/edu/drexel/psal/anonymouth/gooie/ThePresident.java:80: error: cannot find symbol
        dialogIcon = ImageLoader.getIcon(ANONYMOUTH_LOGO_SMALL);
                     ^
  symbol:   variable ImageLoader
  location: class ThePresident
src/edu/drexel/psal/anonymouth/gooie/ThePresident.java:82: error: cannot find symbol
        if (ANONConstants.IS_MAC) {
            ^
  symbol:   variable ANONConstants
  location: class ThePresident
src/edu/drexel/psal/anonymouth/gooie/ThePresident.java:85: error: cannot find symbol
            Logger.logln(NAME+"We're on a Mac!");
            ^
  symbol:   variable Logger
  location: class ThePresident
src/edu/drexel/psal/anonymouth/gooie/ThePresident.java:97: error: cannot find symbol
                    if (PropertiesUtil.getWarnQuit() && !main.documentSaved) {
                        ^
  symbol: variable PropertiesUtil
src/edu/drexel/psal/anonymouth/gooie/ThePresident.java:109: error: cannot find symbol
                    } else if (PropertiesUtil.getAutoSave()) {
                               ^
  symbol: variable PropertiesUtil
src/edu/drexel/psal/anonymouth/gooie/ThePresident.java:110: error: cannot find symbol
                        main.menuDriver.save(GUIMain.inst);
                                             ^
  symbol: variable GUIMain
src/edu/drexel/psal/anonymouth/gooie/ThePresident.java:121: error: cannot find symbol
                            About.aboutAnonymouth,
                            ^
  symbol: variable About
src/edu/drexel/psal/anonymouth/gooie/ThePresident.java:137: error: cannot find symbol
        File log_dir = new File(ANONConstants.LOG_DIR); // create log directory if it doesn't exist.
                                ^
  symbol:   variable ANONConstants
  location: class ThePresident
src/edu/drexel/psal/anonymouth/gooie/ThePresident.java:139: error: cannot find symbol
            Logger.logln(NAME+"Creating directory for DocumentMagician to write to...");
            ^
  symbol:   variable Logger
  location: class ThePresident
src/edu/drexel/psal/anonymouth/gooie/ThePresident.java:144: error: cannot find symbol
        File dm_write_dir = new File(ANONConstants.DOC_MAGICIAN_WRITE_DIR);
                                     ^
  symbol:   variable ANONConstants
  location: class ThePresident
src/edu/drexel/psal/anonymouth/gooie/ThePresident.java:146: error: cannot find symbol
            Logger.logln(NAME+"Creating directory for DocumentMagician to write to...");
            ^
  symbol:   variable Logger
  location: class ThePresident
src/edu/drexel/psal/anonymouth/gooie/ThePresident.java:149: error: cannot find symbol
        File ser_dir = new File(ANONConstants.SER_DIR);
                                ^
  symbol:   variable ANONConstants
  location: class ThePresident
src/edu/drexel/psal/anonymouth/gooie/ThePresident.java:151: error: cannot find symbol
            Logger.logln(NAME+"Creating directory to save serialized objects to...");
            ^
  symbol:   variable Logger
  location: class ThePresident
src/edu/drexel/psal/anonymouth/gooie/ThePresident.java:155: error: cannot find symbol
        if (!ANONConstants.IS_USER_STUDY) {
             ^
  symbol:   variable ANONConstants
  location: class ThePresident
src/edu/drexel/psal/anonymouth/gooie/ThePresident.java:161: error: cannot find symbol
        main = new GUIMain();
                   ^
  symbol:   class GUIMain
  location: class ThePresident
src/edu/drexel/psal/anonymouth/gooie/ThePresident.java:162: error: cannot find symbol
        startWindow = new StartWindow(main);
                          ^
  symbol:   class StartWindow
  location: class ThePresident
Note: src/edu/drexel/psal/anonymouth/gooie/ThePresident.java uses or overrides a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
31 errors

Add compiled releases to GitHub

Love the project. Is there any reason why you couldn't offer pre-compiled files for people to use and test. Forcing them to compile would seem an unnecessary barrier to participation. Thanks!

/me goes off to install eclipse :)

hideSplashScreen() opacity issue

When running in eclipse in linux I get the below error :

Exception in thread "main" java.lang.UnsupportedOperationException: TRANSLUCENT translucency is not supported.
    at java.awt.Window.setOpacity(Window.java:3598)
    at java.awt.Frame.setOpacity(Frame.java:962)
    at edu.drexel.psal.anonymouth.gooie.SplashScreen.hideSplashScreen(SplashScreen.java:154)
    at edu.drexel.psal.anonymouth.gooie.ThePresident.<init>(ThePresident.java:164)
    at edu.drexel.psal.anonymouth.gooie.ThePresident.main(ThePresident.java:70)

I was able to rectify this by removing line 154 in SplashScreen.java

Maintenance

Is this project being maintained by anyone? It looks very interesting and increasingly useful in today's world.

Compile without Eclipse

I'd love to try this out, but Eclipse is a bit of a bulky install. Do you think there are any plans for an Ant build system?

Cheers.

Porting out of Java

Not sure if you're aware, but the Tails Live project is interested in a stylometry tool. The Java dependency is an issue for them, although I'm not sure there's anything to be done about this. But yet, thinking maybe you were considering a rewrite anyhow, so thought I'd put it out there :)

https://labs.riseup.net/code/issues/5726

Migrate this project to java 8 ,9 or 10

Is this a bug:
No
I need to migrate this project from java 7 to9 ,10 or at least 8 , since Java 7 is not compatible with JavaFx 8 , hence Is there a fast or easy solution for migrating the project to newer version of Java?

Program Errors On Proces

Every time I click the process button I get a popup "Something went very wrong error". Then the program proceeds to crash after pressing okay.
image

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.