Standard escape codes are prefixed with Escape:
- Ctrl-Key:
^[ - Octal:
\033 - Unicode:
\u001b - Hexadecimal:
\x1B - Decimal:
27
| public class HelloJNI { | |
| static { | |
| System.loadLibrary("hello"); // load libhello.so | |
| } | |
| private native void sayHello(); | |
| public static void main(String[] args) { | |
| new HelloJNI().sayHello(); | |
| } |
| #Database Configuration | |
| spring.datasource.url=jdbc:mariadb://localhost:3306/billboard | |
| spring.datasource.username=root | |
| spring.datasource.password= | |
| spring.datasource.driver-class-name=org.mariadb.jdbc.Driver | |
| #Hibernate Configuration | |
| # Show or not log for each sql query | |
| spring.jpa.show-sql=true |
| {... | |
| "scripts": { | |
| "postinstall": "node patch.js", | |
| ... | |
| } | |
| } |
| # Author: Zameer Ansari | |
| # You should look at the following URL's in order to grasp a solid understanding | |
| # of Nginx configuration files in order to fully unleash the power of Nginx. | |
| # http://wiki.nginx.org/Pitfalls | |
| # http://wiki.nginx.org/QuickStart | |
| # http://wiki.nginx.org/Configuration | |
| # | |
| # Generally, you will want to move this file somewhere, and start with a clean | |
| # file but keep this around for reference. Or just disable in sites-enabled. | |
| # |
| deploy:live: | |
| image: 1drop/docker:git | |
| stage: deploy | |
| when: manual | |
| environment: | |
| name: production | |
| url: https://www.somecustomer.de | |
| before_script: | |
| - eval $(ssh-agent -s) | |
| - ssh-add <(echo "$SSH_PRIVATE_KEY") |
| /* jshint plusplus:false */ | |
| /* jshint quotmark:false */ | |
| compositor = (function(){ | |
| var VERTEX_SIZE = 2; | |
| var COLOR_SIZE = 4; | |
| var TEXTURE_SIZE = 1; | |
| var REGION_SIZE = 2; | |
| var ELEMENT_SIZE = VERTEX_SIZE + COLOR_SIZE + TEXTURE_SIZE + REGION_SIZE; | |
| var ELEMENT_OFFSET = ELEMENT_SIZE * Float32Array.BYTES_PER_ELEMENT; |
| package main | |
| import ( | |
| "fmt" | |
| "log" | |
| "net/http" | |
| "sync" | |
| ) | |
| type worker struct { |
| import java.util.logging.Logger; | |
| import javax.servlet.http.HttpServletRequest; | |
| import javax.ws.rs.GET; | |
| import javax.ws.rs.Path; | |
| import javax.ws.rs.Produces; | |
| import javax.ws.rs.QueryParam; | |
| import javax.ws.rs.core.Context; | |
| import javax.ws.rs.core.Response; |