Posts

Tampilan Baru Firefox

Image
What’s New NEW Significant new customization mode makes it easy to personalize your Web experience to access the features you use the most ( learn more ) NEW A new, easy to access menu sits in the right hand corner of Firefox and includes popular browser controls NEW Sleek new tabs provide an overall smoother look and fade into the background when not active NEW An interactive onboarding tour to guide users through the new Firefox changes NEW The ability to set up Firefox Sync by creating a Firefox account ( learn more ) NEW Gamepad API finalized and enabled ( learn more ) NEW HTTPS used for Yahoo Searches performed in en-US locale NEW Malay [ma] locale added CHANGED Clicking on a W3C Web Notification will switch to the originating tab DEVELOPER 'box-sizing' (dropping the -moz- prefix) implemented ( learn more ) DEVELOPER Console object available in Web Workers ( learn more ) DEVELOPER Promises enabled by default ( learn more ) DEVELOPER...

Java - Socket Programing (Client)

Image
Berikut Coding Dari Software Diatas dan tolong buat sendiri variable componen swingnya: Depend: 1. Jtabbed 2. masukButton 3. clientabble 4. viewtextarea 5. posttextfield 6. kirimbutton 7. jbutton1 /* * 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 chatappclient ; import java.io.IOException ; import java.io.ObjectInputStream ; import java.io.ObjectOutputStream ; import java.net.Socket ; import java.util.ArrayList ; import java.util.List ; import java.util.logging.Level ; import java.util.logging.Logger ; import javax.swing.table.DefaultTableModel ; /** * * @author Moch. Afif */ public class chatappclientform extends javax.swing . JFrame { private ObjectInputStream input; private ObjectOutputStream output; private Socket socket; private String server, username; private ...

Java - Socket Programming (Server)

Image
Coding Socket Programing Dibagi Menjadi 2 bagian Aplikasi ( Program) Yang pertama Server Ini Codingnya: /*  * 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 chatapp; import java.io.*; import java.net.*; import java.util.*; /**  *  * @author Moch. Afif  */ public class Chatapp {     private static int uniqueId;     private ArrayList<Chatapp.ClientThread> clients;     private int port;     private boolean keepGoing;     public Chatapp() {         this.port = 9999;         clients = new ArrayList<>();     }          public void start() {         keepGoing = true;         t...