So far, most of this is from https://wiki.debian.org/CrossToolchains.
Add the Debian Cross-toolchains Repository
Create the file /etc/apt/sources.list.d/crosstools.list with the following contents:
So far, most of this is from https://wiki.debian.org/CrossToolchains.
Create the file /etc/apt/sources.list.d/crosstools.list with the following contents:
| /** | |
| * @version: 1.0 Alpha-1 | |
| * @author: Coolite Inc. http://www.coolite.com/ | |
| * @date: 2008-05-13 | |
| * @copyright: Copyright (c) 2006-2008, Coolite Inc. (http://www.coolite.com/). All rights reserved. | |
| * @license: Licensed under The MIT License. See license.txt and http://www.datejs.com/license/. | |
| * @website: http://www.datejs.com/ | |
| */ | |
| Date.CultureInfo={name:"en-US",englishName:"English (United States)",nativeName:"English (United States)",dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],abbreviatedDayNames:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],shortestDayNames:["Su","Mo","Tu","We","Th","Fr","Sa"],firstLetterDayNames:["S","M","T","W","T","F","S"],monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],abbreviatedMonthNames:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],amDesignator:"AM",pmDesignator:"PM",firstDayOfWeek:0,twoDigitYearMax:2029,dateElementOrder:"mdy",formatPatterns |
| #cVim-command-bar, #cVim-command-bar-mode, #cVim-command-bar-input, #cVim-command-bar-search-results, | |
| .cVim-completion-item, .cVim-completion-item .cVim-full, .cVim-completion-item .cVim-left, | |
| .cVim-completion-item .cVim-right { | |
| /* font-family: Helvetica, Helvetica Neue, Neue, sans-serif, monospace, Arial; */ | |
| font-family: "M+ 1m","Input","PragmataPro","Consolas","Incosoloata","TheMixMono","Monospace"; | |
| font-size: 10pt !important; | |
| -webkit-font-smoothing: antialiased !important; | |
| } | |
| #cVim-command-bar { |
| diff -r 94df797ed6b0 -r e86e08d8e7af src/gui_gtk_x11.c | |
| --- a/src/gui_gtk_x11.c Sat Apr 12 13:12:24 2014 +0200 | |
| +++ b/src/gui_gtk_x11.c Sun Apr 20 14:50:35 2014 +0200 | |
| @@ -4311,7 +4311,7 @@ get_styled_font_variants(void) | |
| static PangoEngineShape *default_shape_engine = NULL; | |
| /* | |
| - * Create a map from ASCII characters in the range [32,126] to glyphs | |
| + * Create a map from ASCII characters [ ,0-9,a-z,A-Z] to glyphs | |
| * of the current font. This is used by gui_gtk2_draw_string() to skip |
| * research vim-gista |
| #!/bin/bash | |
| sudo apt-get install transmission-daemon | |
| service_path=/lib/systemd/system/transmission-daemon@.service | |
| if ! [ -s "$service_path" ] | |
| then | |
| sudo tee "$service_path" <<-UNIT | |
| [Unit] |
| urlencode() { | |
| # urlencode <string> | |
| local LANG=C | |
| local length="${#1}" | |
| for (( i = 0; i < length; i++ )); do | |
| local c="${1:i:1}" | |
| case $c in | |
| [a-zA-Z0-9.~_-]) printf "$c" ;; | |
| *) printf '%%%02X' "'$c" ;; |
| javascript:(function(xs)%7Bfor(var%20i%3D0%3Bi%3Cxs.length%3B%2B%2Bi)%7Bif(xs%5Bi%5D.currentSrc)%7Breturn%20window.open(xs%5Bi%5D.currentSrc)%3B%7D%7D%7D)(document.querySelectorAll('audio%2Cvideo'))%3B |
| "set numerichints | |
| "set typelinkhints | |
| set nativelinkorder | |
| let hintcharacters = "asonetuhid" | |
| yankText(link) -> {{ | |
| var text = link.text; | |
| text = text.replace(/^(\s|\n)+|(\s|\n)+$/g,''); |