Coder Social home page Coder Social logo

cejug / yougi Goto Github PK

View Code? Open in Web Editor NEW

This project forked from manoelcalixto/yougi

5.0 5.0 2.0 17.21 MB

JUG Management is an application conceived to manage online user groups of any kind and domain.

Home Page: http://www.cejug.org

License: GNU Lesser General Public License v2.1

Java 98.83% CSS 0.28% JavaScript 0.59% Scala 0.30%

yougi's Introduction

YOUGI

Yougi is an application conceived to manage online user groups of any kind and domain. This is licensed under GNU Lesser General Public License (LGPL v2). Please, read the license, available on the file LICENSE.txt, before you use or change this application.

Contact

       Project Leader: Hildeberto Mendonca
        Personal Blog: http://www.hildeberto.com
            Member of: CEJUG (Ceara Java User Group) http://www.cejug.org
        Email Address: me at hildeberto.com

      Project Website: http://www.yougi.org
 Existing Deployments: http://www.cejug.org/
                       http://www.yougi.net
              Twitter: https://twitter.com/youginet (Follow @youginet)

Technologies In Use

JDK 7: We are using the latest Java language features available, thus the Java Development Kit version 7 or superior is required.

Wildfly 8.0.0 : We deploy Yougi on Wildfly because it supports the latest JavaEE features.

JPA 2.0: Java Persistence API implements the persistence layer.

Hibernate: Implementation built-in on Wildfly

EJB 3.1: Enterprise JavaBeans implements the business and service layer.

JSF 2.1: JavaServer Faces

Bootstrap: Bootstrap is a rich visual css/js components library.

iText 5.1: Library to generate PDF files.

JUnit 4.11: Unit test framework.

Arquillian 1.1.4.Final: Integration test framework.


Copyright (C) 2011-2013, Hildeberto Mendonca

yougi's People

Contributors

htmfilho avatar danielsoro avatar felipewmartins avatar helio-frota avatar efraimgentil avatar emanuelmm avatar alexandrobs avatar gessyca avatar georgemayko avatar joewong avatar paulojribp avatar manoelcalixto avatar aslakknutsen avatar

Stargazers

Rafael Alves avatar Fabricio Cabral avatar Josenaldo de Oliveira Matos Filho avatar Diogo Souza avatar Cesar Augusto Nogueira avatar

Watchers

 avatar  avatar Paulo Renato Macêdo avatar James Cloos avatar  avatar

Forkers

cesarnog bgjocaj

yougi's Issues

Importar mensagens do Java.net no banco de dados do Yougi

Contribuição do Hélio para extrair dados do Java.net.

public class Teste {

private static final String FIXED = "https://java.net/projects/cejug/lists/discussao/archive/";
private static final String MSG = "/message/";
private static final String X = "The mailing list [email protected] does not have any messages in its archive.";

public static void main(String[] args) throws Exception {

    String[] yrs = {"2001","2002","2003","2004","2005","2006","2007","2008","2009","2010","2011","2012"};
    String[] ms = {"-01","-02","-03","-04","-05","-06","-07","-08","-09","-10","-11","-12"};

    for (String y : yrs) {
        for (String m : ms) {
            int count = 0;
            URL url;
            do {

                System.out.println(FIXED + y + m + MSG + count);

                Thread.sleep(2000);

                url = new URL(FIXED + y + m + MSG + count);
                count++;
            } while (isOk(url));
        }
    }
}

private static boolean isOk(URL url) throws Exception {
    URLConnection uc = url.openConnection();
    BufferedReader in = new BufferedReader(new InputStreamReader(uc.getInputStream()));
    String l;
    while ((l = in.readLine()) != null) {
        if (l.indexOf(X) > 0) {
            return false;
        }
        System.out.println(l);
    }
    in.close();
    return true;
}

}

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.