Skip to content

Instantly share code, notes, and snippets.

View gusthavosouza's full-sized avatar
🇮🇸
Working from 🇮🇸

Gustavo De Souza gusthavosouza

🇮🇸
Working from 🇮🇸
View GitHub Profile
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package web;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
<!-- Login filter -->
<filter>
<filter-name>FiltroLogin</filter-name>
<filter-class>util.FiltroLogin</filter-class>
</filter>
<filter-mapping>
<filter-name>FiltroLogin</filter-name>
import java.util.Scanner;
public class Fatorial {
static int num1, num2, resultado = 0;
static int calculaFatorial(int num1) {
if (num1 == 0) {
return 1;
}
package com.sighra.apps.datasul.bean;
import java.io.BufferedOutputStream;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
@gusthavosouza
gusthavosouza / setenv.sh
Created November 18, 2015 13:52 — forked from terrancesnyder/setenv.sh
./setenv.sh - example setenv.sh with defaults set for minimal time spent in garbage collection
#! /bin/sh
# ==================================================================
# ______ __ _____
# /_ __/___ ____ ___ _________ _/ /_ /__ /
# / / / __ \/ __ `__ \/ ___/ __ `/ __/ / /
# / / / /_/ / / / / / / /__/ /_/ / /_ / /
#/_/ \____/_/ /_/ /_/\___/\__,_/\__/ /_/
# Multi-instance Apache Tomcat installation with a focus
# on best-practices as defined by Apache, SpringSource, and MuleSoft
** Ativa monitoramento remoto
** Testes utilizar sem autenticação
** Produção não utilizar sem autenticação
java -Xmx6m -Dcom.sun.management.jmxremote
-Dcom.sun.management.jm\parxremote.port=9000
-Dcom.sun.management.jmxremote.local.only=false
-Dcom.sun.management.jmxremote.authenticate=false
-Dcom.sun.management.jmxremote.ssl=false
@gusthavosouza
gusthavosouza / Connectivity.java
Created April 4, 2016 14:11 — forked from emil2k/Connectivity.java
Android utility class for checking device's network connectivity and speed.
package com.emil.android.util;
import android.content.Context;
import android.net.ConnectivityManager;
import android.net.NetworkInfo;
import android.telephony.TelephonyManager;
/**
* Check device's network connectivity and speed
* @author emil http://stackoverflow.com/users/220710/emil
package uscs;
import java.io.*;
import java.net.*;
public class Atv01 {
@SuppressWarnings("deprecation")
public static void main(String args[]) {
try {
package uscs;
import java.io.*;
import java.net.*;
public class Atv02A {
@SuppressWarnings("deprecation")
public static void main(String args[]) {
String[] codigo = { "01", "02", "03", "04", "05", "06", "07", "08", "09", "10" };
String[] descr = { "Produto A", "Produto B", "Produto C", "Produto D", "Produto E", "Produto F", "Produto G",
<rich:tab header="Escolher Metricas" id="tabMetrica"
rendered="#{SistemaController.passo eq 2}">
<rich:dragIndicator id="ind2" acceptClass="accept"
rejectClass="reject" draggingClass="default">
Arraste o item para a area disponivel
</rich:dragIndicator>
<h:form>