They're basically representations of the following letters in braille:
Braille symbol | meaning |
---|---|
⠹ | ? |
⠼ | # |
⠶ | 7 |
⠧ | v |
public class Main | |
{ | |
static int fromdBmtoNDots(int dbm) { | |
int dots = 0; | |
if(dbm >= -90 ) dots++; | |
if(dbm >= -80) dots++; | |
if(dbm >= -70) dots++; | |
if(dbm >= -67) dots++; | |
if(dbm >= -30) dots++; | |
return dots; |
# ZSH Theme, edited from fishy theme, | |
# but restoring the best bits of git_prompt! | |
# prerequisite plugins: | |
# git-prompt | |
_plugin_installed() { | |
echo "$plugins" | grep -o "\b${1}\b" >/dev/null | |
} | |
_plugin_installed git-prompt || omz plugin enable git-prompt |
#!/usr/bin/env sh | |
# Source your data from https://www.metoffice.gov.uk/services/data/datapoint/uk-hourly-site-specific-observations | |
jq -r '.SiteRep.DV.Location.Period[]|(.value as $date|.Rep[]|[$date, (.|to_entries|map(.value))])|flatten|@csv' |
<?xml version="1.0" encoding="UTF-8"?> | |
<project name="My JRebel Custom Targets" basedir="." default="all" xmlns:if="ant:if"> | |
<!-- override this if your hybris install is somewhere else --> | |
<property name='jrebel.hybris' value='${basedir}/hybris'/> | |
<property name='jrebel.hybris.localproperties' value="${jrebel.hybris}/config/local.properties"/> | |
<target name='jrebel' description='Adds jRebel agent to local.properties' depends="jrebel.env"> | |
<condition property="jrebel.agentpath.ok"> | |
<resourceexists> | |
<file file="${jrebel.agentpath}"/> |
log4j.logger.org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping=INFO | |
log4j.logger.org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping=INFO | |
# Or just (to cover more bases): | |
log4j.logger.org.springframework.web.servlet.mvc=INFO |
First, you'll need to spin up a Google Compute Engine instance using your favourite Linux Distro. I like CentOS 7 :)
Make sure:
Also you'll have to change the port that the minecraft server runs on, because the GCE is only open on https or http.