Showing 497 open source projects for "doc-o-matic"

View related business solutions
  • Ship Agents Faster Icon
    Ship Agents Faster

    Transform your applications and workflows into powerful agentic systems at global scale.

    Gemini Enterprise Agent Platform lets you rapidly build, scale, govern and optimize production-ready agents grounded in your organization's data. The platform enables developers to build custom or pre-built agents for virtually any use case. New customers get $300 in free credits.
    Get Started Free
  • $300 Free Credits for Your Google Cloud Projects Icon
    $300 Free Credits for Your Google Cloud Projects

    Start building on Google Cloud with $300 in free credits. No commitment, no credit card required until you're ready to scale.

    Launch your next project with $300 in free Google Cloud credits—no strings attached. Test, build, and deploy without risk. Use your credits across the entire Google Cloud platform to find what works best for your needs. After your credits are used, continue with always-free tier services. Only pay when you're ready to scale. Sign up in minutes and start exploring.
    Start Free Trial
  • 1
    Projecto da disciplina de TQS, com o intuito de testar uma aplicação desenvolvida em Android.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 2

    processamentosalario

    Processamento de Salário

    Este é um pequeno programa destinado a processamento de salários baseado na realidade de Cabo Verde. Portanto, o programa retém os valores de IUR, INPS e Sindicato determinando o salário liquido.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 3

    Dependency Discovery Tool

    A tool for discovering external dependencies in Office files.

    The Dependency Discovery Tool searches through binary office files (.doc, .xls and .ppt) and tries to find any documents or files that are linked to the document. It is written in java, using the Apache POI libraries ( http://poi.apache.org ) This project was part of a summer scholarship from the School of Engineering and Computer Science at Victoria University, Wellington (http://ecs.vuw.ac.nz) in conjunction with Archives New Zealand ( http://archives.govt.nz ).
    Downloads: 0 This Week
    Last Update:
    See Project
  • 4
    Inseri-se três valores que serão atribuídos aos lados do triangulo. Este verifica suas medidas e retorna o tipo de triangulo conforme as proporções relativas de seus lados.
    Downloads: 0 This Week
    Last Update:
    See Project
  • Error to trace to log to deploy. One click. No SSH. Icon
    Error to trace to log to deploy. One click. No SSH.

    Catch the cause before the pager goes off.

    AppSignal links every error to the trace, the trace to the log, the log to the deploy that shipped it.
    Free 30 days.
  • 5
    Editor SVG

    Editor SVG

    Editor de arquivos SVG

    ** Requisitos de Software ** - Ter Java Runtime Environment 1.7 instalado Caso não tenha, ele pode ser encontrado abaixo: http://www.oracle.com/technetwork/java/javase/downloads/java-se-jre-7-download-432155.html ** Sobre o Editor SVG ** Esse software foi criado na linguagem Java e possibilita a edição de arquivos no formato SVG. Com um layout similar ao Dreamweaver, o Editor SVG permite que você desenhe livremente nos painéis, ou se preferir, pode codificar. Ele conta com recursos de auto completar e editoração convencional de texto.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 6

    hl7-fhir

    Open source FHIR reference implementation

    Reference implementation of HL7 FHIR based persistence. Scope of the project 1) Auto-generate O/R mapping based on FHIR XSD - JPA handling of FHIR primitive data type - JPA handling of FHIR complex data type - Auto-generate the complete O/R mapping for all the resources based on FHIR XSD 2) Implement generic FHIR services to support both RESTful and Message/Document based service integration
    Downloads: 0 This Week
    Last Update:
    See Project
  • 7
    mcDomus

    mcDomus

    Java Domotic Over Ethernet

    A evolved HMI written in JAVA for the control of buildings. Main features: - datalogger - 5 language support - web page access - HMI touchscreen - plugin for hw and sw - supported I/O: * up to 100 digital inputs (REED, volumetric, photocells, etc. ..) * up to 100 digital outputs (sirens, lights, boilers, valves) * up to 24 analog inputs (thermometers, gauges, rain gauges, etc. ..) * up to 12 analog outputs
    Downloads: 0 This Week
    Last Update:
    See Project
  • 8

    CONICET Social Network

    Navegar la información de investigadores de CONICET

    Aplicación que modela y permite navegar sobre la información pública acerca de investigadores del CONICET Proyecto para final de la materia Programación Orientada a Objetos en la Universidad Nacional del Centro, Argentina, 2013
    Downloads: 0 This Week
    Last Update:
    See Project
  • 9
    Calculadora com a função de encontrar as raizes de uma função qualquer utilizando o método de bissecção ou o método de Newton. E ainda capaz de calcular o intervalo inicial desses métodos uzando o método de Gauss. Utiliza a biblioteca exp4J.
    Downloads: 0 This Week
    Last Update:
    See Project
  • Enterprise-grade ITSM, for every business Icon
    Enterprise-grade ITSM, for every business

    Give your IT, operations, and business teams the ability to deliver exceptional services—without the complexity.

    Freshservice is an intuitive, AI-powered platform that helps IT, operations, and business teams deliver exceptional service without the usual complexity. Automate repetitive tasks, resolve issues faster, and provide seamless support across the organization. From managing incidents and assets to driving smarter decisions, Freshservice makes it easy to stay efficient and scale with confidence.
    Try it Free
  • 10
    Simulador de implementação do controle de acesso ao meio utilizado em redes IEEE 802.3. Foram desenvolvido os conceitos de acesso ao meio utilizando a técnica CSMA/CD (Carrier Sense Multiple Access with Colision Detection). O simulador possui dois transmissores que utilizam a tecnologia IEEE 802.3. Cada transmissor antes de enviar um quadro devera verificar, por um determinado intervalo de tempo, se o meio de transmissao esta ocupado. Caso o meio de transmissao estiver ocupado, deve-se implementar o algoritmo de backoff, isto e, esperar um tempo exponencial truncado.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 11
    X-O lite

    X-O lite

    Light XML to Java mapping based on SAX

    This project provides a lightweight framework to serialize/deserialize java objects into XML. The implementation is based on standard SAX but follows an original approach based on encapsulation paradigm of Object Oriented programming.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 12

    Simplest Text Encrypter

    A simple example of polyalphabetic cipher in Java.

    ...A polyalphabetic cipher is one of the simplest cipher one can make. This is a Java program to implement polyalphabetic cipher. [How the cipher encodes?] Input Data: helloaf Key: love l - 12th letter in Alphabet o - 15th letter in Alphabet v - 22nd letter in Alphabet e - 5th letter in Alphabet Now: h(l) e(o) l(v) l(e) o(l) a(o) f(v) Further: h(+12) e(+15) l(+22) l(+5) o(+12) a(+15) f(+22) where +(number) meaning shifting the character forward by the respective number of places. So the result comes out to be: tthqapb and the data is encrypted.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 13
    Projecto ilustrativo para o módulo "Teste e Qualidade de Software" do Mestrado em Organização de Sistemas de Informação da UJPCV
    Downloads: 0 This Week
    Last Update:
    See Project
  • 14

    TextProcessor

    A Java package to preprocess text datasets for posterior text analysis

    The TextProcessor Java package is a text processing toolkit, which provides some frequently used text processing functions such as stemming, removing stop-words, generating a term vocabulary, and calculating the term-doc frequency matrix. Basic topic mining models such as LDA and sparse NMF are also supported. The package can also generate feature files from a given text dataset with LDA and LIBSVM format for posterior procedures such as classification or clustering. The toolkit is also being extended for more advanced text analysis tasks based on natural language processing techniques.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 15
    O CSWM é um programa para criar slides para trocar automaticamente as wallpapers na distribuição Linux Mint. Distribuições testadas: Linux Mint 15 (MATE)
    Downloads: 0 This Week
    Last Update:
    See Project
  • 16
    JdonFramework

    JdonFramework

    a Domain Driven Design + CQRS + EventSource java framework

    ...GETTING STARTED ------------------ In the "example" directory there are several examples for web application. You can run runTest.bat in this directory to see how to play JdonFramework in Application. In the "doc" directory there are all documents about how to use. Source Project : https://github.com/banq/jdonframework
    Downloads: 0 This Week
    Last Update:
    See Project
  • 17
    ...+Dados de Entrada -numero de processos -burst time de cada processo (tempo de execução) -tempo de chegada de cada processo *prioridade (quando necessário) +Saída -tempo de espera de cada processo -tempo de espera médio de cada algoritmo -turnaround médio de cada algoritmo -mostrar qual algoritmo teve o melhor maior desempenho +Implementar os algoritmos -FIFO -STF preemptivo -PRIORIDADE preemptivo -RR(quantum definido pelo usuário)
    Downloads: 0 This Week
    Last Update:
    See Project
  • 18
    Programming Accessory Kit

    Programming Accessory Kit

    PAK is a collection of library code to handle the overhead of coding

    PAK is a collection of library code to handle the overhead of coding things like read-write locks, reflective multithreaded programming and simple file io. This is a java library collection, please see my API below...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 19
    SCoreQDis

    SCoreQDis

    Sistema de Correção de Questões Discursivas

    Sistema desenvolvido por Ricardo L. F. de Ávila durante o Programa de Pós-graduação do Departamento de Engenharia de Teleinformática (DETI) da Universidade Federal do Ceará (UFC), Brasil, sendo utilizado como base para os testes de validação e avaliação da metodologia proposta na dissertação de mestrado do autor.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 20

    GUDDI

    e-DSG Descoberta de Serviço Eletrônico Governamental

    GUDDI é uma solução livre desenvolvida com o Framework Demoiselle que implementa o conceito de e-DSG (Descoberta de Serviço Eletrônico Governamental) e segue os padrões do e-PING para auxiliar Entidades Públicas a divulgarem seus serviços.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 21

    TML - Text Mining Library for LSA & CMM

    TML is a Java Library for LSA and extracting Concept Maps from text

    TML has moved to http://www.villalon.cl/tml.html and the code to https://github.com/villalon/tml
    Downloads: 0 This Week
    Last Update:
    See Project
  • 22
    OraPlus

    OraPlus

    Simples gerenciador gráfico para o banco de dados Oracle

    Escrito em Java, esta simples ferramenta processa, analisa e retorna o resultado de consultas e comandos SQL. Possui suporte a: - Comandos SQL básicos: CREATE, DROP, ALTER, SELECT, INSERT, UPDATE, DELETE; - Instruções PL/SQL: CREATE PROCEDURE, EXECUTE; - Atalhos: Exibir todas as tabelas do usuário, todos as linhas de uma tabela e a descrição (DESC <TABLE>) das colunas de uma tabela.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 23

    Tic Tac Toe

    TicTacGame for tow players and aginst PC

    for two players, X and O, who take turns marking the spaces in a 3×3 grid. The player who succeeds in placing three respective marks in a horizontal, vertical, or diagonal row wins the game.
    Downloads: 2 This Week
    Last Update:
    See Project
  • 24
    Agenda Electrónica - Sistema de gestión para el seguimiento y reserva de horarios para cualquier tipo de trámite vía internet, telefónica o presencial.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 25
    Search-ODT

    Search-ODT

    Independent Study Course Project:Search .odt files by date and content

    ...The tool will search .odt files by date and content. OD-What? .odt files are a particular kind of file, many word-processor programs can save to .odt file format. Why .odt and not .doc or .txt? Search-ODT was developed at request as the subject of an independent study course. No other reason. Due to the modular structure of the project it is possible to adapt Search-ODT into a more general search tool. Why publish Search-ODT here? Search-ODT is posted here only as a portfolio example. This project was a team project, Conclusion As stated on the final poster our “objective was to design and implement an open source program that preforms an ad hoc search for .odt files by content and date. ...
    Downloads: 0 This Week
    Last Update:
    See Project
Auth0 Logo