- (Not sure if really needed)
brew tap gcenx/wine
brew install --cask --no-quarantine gcenx/wine/wine-crossover
wine tappio-setup.exe
wine ~/.wine/drive_c/Program\ Files\ \(x86\)/Tappio/tappio.exe
# Add these lines to /system/batocera.conf to remap save state and load state to [Hotkey]+[DPad left/right] | |
global.retroarch.input_save_state_btn=h0right | |
global.retroarch.input_save_state_axis=+0 | |
global.retroarch.input_load_state_btn=h0left | |
global.retroarch.input_load_state_axis=-0 | |
global.retroarch.input_hold_fast_forward_btn=nul | |
global.retroarch.input_hold_fast_forward_axis=nul | |
global.retroarch.input_rewind_btn=nul |
- Download the latest DietPI image
- Write the image to an SD card (eg. with BalenaEtcher on MacOS)
- Edit WiFi details to
/boot/dietpi-wifi.txt
, if you plan to use WiFi. I wasn't able to get WiFI to work later on anymore, so please fill the details already now. - Start the RPi3 with the SD card
- Find out the IP address of the device, and log in via SSH (username
root
, passworddietpi
) - Setup utility starts on login, and guides you through via the steps needed. This will take some time though.
/usr/local/bin/speedtest-cli --json | \ | |
jq '{ Value1: (.download/1024/1024), Value2: (.upload/1024/1024), Value3: .ping }' | \ | |
curl -sS -X POST -H 'Content-Type: application/json' -d @- https://maker.ifttt.com/trigger/your_event_name/with/key/your_secret_key |
- Asenna XQuartz 2.7.9. Tämä vanhempi versio toimii paremmin fonttien kanssa.
- Asenna/Päivitä homebrew
- Asenna xcode ja komentorivityökalut (
sudo xcodebuild -license
,xcode-select --install
) brew install wine winetricks
- Luo uusi 32-bittinen wine prefix (
WINEARCH=win32 WINEPREFIX=~/.wine32prefix winecfg
) - Lataa Tappion asennusohjelma ja asenna se:
WINEARCH=win32 WINEPREFIX=~/.wine32prefix wine tappio-setup.exe
WINEARCH=win32 WINEPREFIX=~/.wine32prefix winetricks settings fontsmooth=rgb
WINEARCH=win32 WINEPREFIX=~/.wine32prefix wine ~/.wine32prefix/drive_c/Program\ Files/Tappio/tappio.exe
#!/bin/bash | |
set -e | |
if [[ "$1" != /* ]]; then | |
# Relative path name | |
FILENAME_WITH_EXT=$(basename "$1") | |
FILENAME="${FILENAME_WITH_EXT%.*}" | |
ABSPATH=$(unset CDPATH && cd "$(dirname "$0")" && echo $PWD) | |
DIRNAME="$ABSPATH/$FILENAME" | |
FILEEXT="${FILENAME_WITH_EXT##*.}" |
A co-worker of mine is switching her career from user interface more into front-end development. She asked me: "From your Point-of-View, what should I focus on? Should I learn to code better, so I could work on both design and development? Or should I focus on finetuning the user interactions, animations, and things like those?"
Let's be frank: I'm a developer, I've always been a developer, and thus I have a developer's mindset. I can not talk too much about design, but I figured out, that I can talk about is what I see happening around. And from my Point-of-View, that is that designers are shifting more and more into prototyping in code and designing ready-to-be-used UI components.
I think that is a tremendously good way to go, because then co-operation with different disciplines increase, designers can more ensure that their designs are being used more correctly, and stuff doesn't need to be implemented "twice" in
// ==UserScript== | |
// @name Facebook Blocker (by Jouni Kaplas) | |
// @namespace net.kaplas.fb-blocker | |
// @include https://*.facebook.com/* | |
// @include https://facebook.com/* | |
// @include http://*.facebook.com/* | |
// @include http://facebook.com/* | |
// @version 1 | |
// @grant none | |
// @downloadURL https://gist.github.com/kaplas/31cf00f605667f7430d9/raw/ |