/etc/systemd/system/xremap.service
file
Create [Unit]
Description=xremap service
After=default.target
[Service]
ExecStart=/usr/bin/xremap /home/komamitsu/xremap.yml
/etc/systemd/system/xremap.service
file[Unit]
Description=xremap service
After=default.target
[Service]
ExecStart=/usr/bin/xremap /home/komamitsu/xremap.yml
package org.komamitsu.unixdomainsockettest; | |
import java.net.StandardProtocolFamily; | |
import java.net.UnixDomainSocketAddress; | |
import java.nio.ByteBuffer; | |
import java.nio.channels.ServerSocketChannel; | |
import java.nio.channels.SocketChannel; | |
import java.nio.file.Path; | |
import java.nio.file.Paths; | |
import java.util.ArrayList; |
fun calcite() { | |
val schema = Frameworks.createRootSchema(true) | |
val config = Frameworks.newConfigBuilder() | |
.defaultSchema(schema) | |
.sqlValidatorConfig(SqlValidator.Config.DEFAULT) | |
.parserConfig( | |
SqlParser.config() | |
.withQuoting(Quoting.BRACKET) | |
.withCaseSensitive(true) |
Mar 07 13:53:46 komamitsu-laptop systemd[1]: Reached target Sleep.
Mar 07 13:53:46 komamitsu-laptop systemd[1]: Starting Record successful boot for GRUB...
Mar 07 13:53:46 komamitsu-laptop systemd[1]: Starting NVIDIA system suspend actions...
Mar 07 13:53:46 komamitsu-laptop suspend[2802]: nvidia-suspend.service
Mar 07 13:53:46 komamitsu-laptop logger[2802]: <13>Mar 7 13:53:46 suspend: nvidia-suspend.service
Mar 07 13:53:46 komamitsu-laptop systemd[1]: grub-common.service: Succeeded.
Mar 07 13:53:46 komamitsu-laptop systemd[1]: Finished Record successful boot for GRUB.
Mar 07 13:53:46 komamitsu-laptop systemd[1]: nvidia-suspend.service: Succeeded.
Mar 07 13:53:46 komamitsu-laptop systemd[1]: Finished NVIDIA system suspend actions.
Muhenkan
key a left Control keyHiragana Katakana
key an Escape keyCapslock
key a Zenkaku Hankaku key#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | |
; #Warn ; Enable warnings to assist with detecting common errors. | |
SendMode Input ; Recommended for new scripts due to its superior speed and reliability. | |
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. | |
; ^M | |
^M::Enter | |
; ^H | |
^H::BackSpace |
import java.util.*; | |
class JsonParser { | |
private Object parsePrimitive(StringTokenizer tokenizer, String token) { | |
if (token.startsWith("\"")) { | |
if (token.endsWith("\"")) { | |
return token.subSequence(1, token.length() - 1); | |
} | |
StringBuilder builder = new StringBuilder(token); |
function wrap_jth { | |
grep 'daemon prio=' $1 | ruby -rcsv -ne 'puts CSV.parse($_,{:col_sep => "\s"}).first.first.gsub(/\d/, "0")' | sort | uniq -c | |
} |
package org.komamitsu.test; | |
import java.util.StringTokenizer; | |
public class ArithmeticCodeEvaluator | |
{ | |
private static int eval(StringTokenizer tokenizer) | |
{ | |
String first = tokenizer.nextToken(); | |
if (first.equals("+")) { |