Skip to content

Instantly share code, notes, and snippets.

@ssledz
ssledz / asus-bt400-linux-install.md
Last active March 10, 2024 11:13
Linux Installation guide for Asus USB-BT400

Download driver

curl 'https://dlcdnets.asus.com/pub/ASUS/wireless/USB-BT400/DR_USB_BT400_1201710_Windows.zip' \
  -o bt400-driver.zip

Driver & tools for bt400 can be found here

Find out what is a filename for your driver

Plug device and do

import java.util.function.Function;
public class CurryingExample {
static String f(String a, String b, int c) {
return "a=" + a + ", b=" + b + ", c=" + c;
}
public static void main(String[] args) {
@ssledz
ssledz / Dependencies.scala
Last active December 4, 2019 20:06
MetricsService driven by io.dropwizard.metrics
val dropwizardMetrics = Seq(
"metrics-graphite",
"metrics-core",
"metrics-jvm"
).map("io.dropwizard.metrics" % _ % "4.0.5")
val logging = "com.typesafe.scala-logging" %% "scala-logging" % "3.9.2"
val logback = "ch.qos.logback" % "logback-classic" % "1.2.3"
@ssledz
ssledz / dummy-web-server.py
Last active February 19, 2020 08:36
Very simple HTTP server in python.
#!/usr/bin/env python
"""
Very simple HTTP server in python.
Usage::
./dummy-web-server.py [<port>]
Send a GET request::
curl http://localhost
Send a HEAD request::
curl -I http://localhost
Send a POST request::
@ssledz
ssledz / pom.xml
Created September 21, 2019 12:43
Local mvn & git repos
<?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>pl.softech.example.mvn</groupId>
<artifactId>mm-example</artifactId>
<version>0.0.1</version>
<packaging>pom</packaging>
<name>mm-example</name>

Defining Functions

user=> (defn force-it
       "The first function a young Jedi needs"
       [jedi]
       (str "Use the force," jedi))

user=> (force-it "Luke")
"Use the force,Luke"
@ssledz
ssledz / intellj-update.sh
Created August 26, 2019 14:59
Update Intellj Idea from .tar.gz, using symlink
#!/bin/bash
IDEA=`tar -tzf $1 | head -1 | cut -f1 -d"/"`
sudo tar -xf $1 -C /opt/
sudo chown $(whoami):$(whoami) /opt/$IDEA -R
sudo rm /opt/idea-IU
sudo ln -s /opt/$IDEA /opt/idea-IU
sudo chown $(whoami):$(whoami) /opt/idea-IU

How do I get ssh-agent to work in all terminals?

export SSH_AUTH_SOCK=~/.ssh/ssh-agent.$HOSTNAME.sock
ssh-add -l 2>/dev/null >/dev/null
if [ $? -ge 2 ]; then
  ssh-agent -a "$SSH_AUTH_SOCK" >/dev/null
fi

How do I configure the search domain correctly?

List all intalled packages

apt list --installed
dpkg -l

Search for all packages consisting of java keyword