sudo add-apt-repository ppa:stebbins/handbrake-releases # to get latest
sudo apt update
sudo apt install handbrake-gtk
sudo apt install ubuntu-restricted-extras # to install a collection of codecs
sudo apt install libdvd-pkg # to install a library that plays DVDs in Ubuntu
sudo dpkg-reconfigure libdvd-pkg # do reconfigured if needed
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
Plug device and do
This file contains 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
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) { |
This file contains 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
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" |
This file contains 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
#!/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:: |
This file contains 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
<?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> |
This file contains 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/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 |