Skip to content

Instantly share code, notes, and snippets.

View JamesJose7's full-sized avatar

Jose Eduardo Eguiguren JamesJose7

View GitHub Profile

Privacy Policy

JepSoft built the Save it for Later app as an Ad Supported app. This SERVICE is provided by JepSoft at no cost and is intended for use as is.

This page is used to inform visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service.

If you choose to use my Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that I collect is used for providing and improving the Service. I will not use or share your information with anyone except as described in this Privacy Policy.

The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which is accessible at Save it for Later unless otherwise defined in this Privacy Policy.

@JamesJose7
JamesJose7 / PacketDivider.java
Created June 27, 2018 01:01
Packet divider and rebuilder
import java.util.ArrayList;
import java.util.List;
public class PacketDivider {
public static void main(String[] args) {
byte[] mtu = new byte[2];
String message = "Hello world";
System.out.println(message);
@JamesJose7
JamesJose7 / server.php
Created May 10, 2018 22:04
Inscripcion de Evento - PHP | Ingeniería Web UTPL
<?php
extract($_POST);
$costo_base = 100;
$costo_curso = 80;
$costo_taller =10;
$descuento_docente = 0.1;
$descuento_estudiante = 0.20;