This file contains hidden or 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
| // java Program to create a simple JWindow | |
| import java.awt.event.*; | |
| import java.awt.*; | |
| import javax.swing.*; | |
| class solveit extends JFrame implements ActionListener { | |
| // frame |
This file contains hidden or 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
| // RUSH 42 | |
| // Only allowed Write function | |
| #include <unistd.h> | |
| int rush(int x, int y) | |
| { | |
| int _width_x; | |
| int _height_y; |
This file contains hidden or 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
| #!/bin/sh | |
| # This script is called from the Dockerfile ENTRYPOINT and stored in the | |
| # root of the resulting workspace container for reference. If /home has | |
| # anything in it then use the permissions and ownership information from | |
| # the first directory found within it for creating a new user on the | |
| # system looking into the .config/ws/config.yml file within that | |
| # directory for the user and group name and such. In this way, the ws | |
| # workspace container managmenet utility can pass information to docker | |
| # during "run" time for the container keeping the workspace containers |
This file contains hidden or 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
| /* | |
| * Copyright 2020-2021 the original author or authors. | |
| * | |
| * Licensed under the Apache License, Version 2.0 (the "License"); | |
| * you may not use this file except in compliance with the License. | |
| * You may obtain a copy of the License at | |
| * | |
| * https://www.apache.org/licenses/LICENSE-2.0 | |
| * | |
| * Unless required by applicable law or agreed to in writing, software |