subtitle | author | createdAt | updatedAt | copyright | description | license |
---|---|---|---|---|---|---|
Java is a programming language developed by Oracle (formerly by Sun Microsystems). |
Frédéric Delorme |
2020-09-23 |
2025-04-01 |
2025 |
A comprehensive guide to navigating the tools and command-line utilities in the Java ecosystem. |
MIT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* The <code>InputHandler</code> is implementing the <code>KeyListener</code> to | |
* be the keyboard manager. It is mapping some <code>keyEvent</code> code to | |
* possible <code>ACTIONS</code>. | |
* <ul> | |
* <li>the <code>keyMapping</code> are the map containing the mapping between | |
* some KeyCode to <code>ACTIONS</code> values,</li> | |
* <li>the internal <code>keys</code> map contains all keys status as boolean | |
* values,</li> | |
* <li>the <code>actions</code> contains all Action events produced.</li> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Project -=-=( DemoGame )=-=- | |
* | |
* This project aims at demobstrate basics for simple game. | |
* | |
* @author Frédéric Delorme <[email protected]> | |
* @since 2019 | |
*/ | |
import java.awt.Color; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/target/ | |
/.classpath | |
/.project | |
/.vscode | |
/.idea | |
/dependency-reduced-pom.xml | |
/bin/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Enable component-scanning and auto-configuration with @SpringBootApplication Annotation | |
// It combines @Configuration + @ComponentScan + @EnableAutoConfiguration | |
@SpringBootApplication | |
public class FooApplication { | |
public static void main(String[] args) { | |
// Bootstrap the application | |
SpringApplication.run(FooApplication.class, args); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<project xmlns="http://maven.apache.org/POM/4.0.0" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>org.gilmour.native</groupId> | |
<artifactId>jinput-2</artifactId> | |
<version>1.0-SNAPSHOT</version> |
This page describes MDB (Message Driven Bean) configuration with Wildfly (> version 8 implementing Java EE 7/8) and Websphere MQ messaging broker.
Websphere MQ provides a resource adapter which is able to interact with latest and even legacy Websphere MQ versions. (See this link for WMQ v8.0 Resource Adapter compatibility details)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"working_dir": "$file_path", | |
"shell_cmd":"mvn clean install", | |
"variants": [ | |
{ | |
"name": "mvn clean install", | |
"shell_cmd": "mvn clean install" | |
}, | |
{ | |
"name": "mvn full build", |
For your Ruby, you'll must install this gems:
sudo gem install passenger
sudo passenger-install-apache2-module
At this moment, you'll asked to install some Apache2's deps (three deps):
sudo apt-get install apache2-prefork-dev
NewerOlder