- Visual Studio Code
- Android SDK - sdk-tools-linux-4333796.zip (not needed it installing Android Studio)
- Android Studio
- Flutter SDK
If installing only android sdk without studio:
| /* | |
| * XCSoar Glide Computer - http://www.xcsoar.org/ | |
| * Copyright (C) 2000-2012 The XCSoar Project | |
| * A detailed list of copyright holders can be found in the file "AUTHORS". | |
| * | |
| * Redistribution and use in source and binary forms, with or without | |
| * modification, are permitted provided that the following conditions | |
| * are met: | |
| * | |
| * - Redistributions of source code must retain the above copyright |
| actions: | |
| ========= | |
| "fetch" : { | |
| "type" : "$require", | |
| "options" : { | |
| "stops" : "http://10.0.2.2:8080/fake_stops.json" | |
| }, | |
| "success" : { | |
| "type" : "$global.set", |
| { | |
| "$jason": { | |
| "head": { | |
| "title": "Laggy Scrolling", | |
| "description": "", | |
| "icon": "", | |
| "actions": { | |
| "$load": { | |
| "trigger": "fetch_data" | |
| }, |
| a |
| BEGIN:VCALENDAR | |
| VERSION:2.0 | |
| PRODID:-//Mks//Schedule 0.3//EN | |
| CALSCALE:GREGORIAN | |
| METHOD:PUBLISH | |
| X-WR-CALDESC;VALUE=TEXT:iCal | |
| X-WR-CALNAME;VALUE=TEXT:iCal | |
| X-WR-TIMEZONE;VALUE=TEXT:Australia/Melbourne | |
| BEGIN:VEVENT | |
| METHOD:PUBLISH |
| // Place your key bindings in this file to overwrite the defaults | |
| [ | |
| { | |
| "key": "ctrl+alt+left", | |
| "command": "workbench.action.navigateBack" | |
| }, | |
| { | |
| "key": "ctrl+alt+-", | |
| "command": "-workbench.action.navigateBack" | |
| }, |
| <application | |
| android:allowBackup="true" | |
| android:icon="@mipmap/ic_launcher" | |
| android:label="@string/app_name" | |
| android:roundIcon="@mipmap/ic_launcher_round" | |
| android:supportsRtl="true" | |
| android:theme="@style/AppTheme" | |
| android:networkSecurityConfig="@xml/network_security_config"> |
| #!/bin/sh | |
| # args: start-time length video-file | |
| # ref: https://engineering.giphy.com/how-to-make-gifs-with-ffmpeg/ | |
| ffmpeg -ss $1 -t $2 -i $3 -filter_complex "[0:v] palettegen" /tmp/palette.png | |
| ffmpeg -ss $1 -t $2 -i $3 -i /tmp/palette.png -filter_complex "[0:v][1:v] paletteuse" $3.gif |