HTML: First Page

To make this tutorial, I recommend you to use Visual Studio Code. HTML is a pretty simple language. It’s basically a string where you put your main structure. Normal pages on the web use language like HTML, CSS, Javascript, PHP,… Let’s start by making the main code of the page. <html> <head> </head> <body> </body> […]

Read more "HTML: First Page"

Java: How to Create a Label

A label is used to write text in an application, display title and interactive text. To make it, I will use the Swing method name “JLabel”. It’s easy to make and similar to a button. Start with the same syntax as a button: JLabel label = new JLabel(“My first JLabel!”); label.setBounds(0, 0, 200, 30); frame.add(label); You […]

Read more "Java: How to Create a Label"

Java: How to Create Button

If you don’t know how to make a frame, I refer you to my old blog on it. Use your already made method “main” in your “Main” class, this method is where you will stock all your information for your “Visual application” aspect. To make a button, we will use the Swift method “JButton”. Start […]

Read more "Java: How to Create Button"

Introduction

Hi, my name is Simon Brisebois and I am a programmer. I live in the region of Montreal in Canada and I dev on multiple projects. I often use different language like Java, Objective-C, C# and different internet language like html, javascript and php. I also create 3D model for different game like Gmod and Counter-Strike. I work on Mac for programmation and on my other Intel computer for 3D development.

Read more "Introduction"