Create a script called Terminal (yes, without a extension) inside the folder ~/.local/share/nautilus/scripts with the following content:
#!/bin/sh
gnome-terminal
Make it executable, then close any Nautilus instance:
{ | |
"3166-1": [ | |
{ | |
"alpha_2": "AW", | |
"alpha_3": "ABW", | |
"name": "Aruba", | |
"numeric": "533" | |
}, | |
{ | |
"alpha_2": "AF", |
// 2 classes de métodos de extensão: StringExtensions e ModelBuilderExtensions | |
// 1 - String Extensions | |
using System.Text.RegularExpressions; | |
using Microsoft.EntityFrameworkCore; | |
namespace HelloWorldAspNetCore.Extensions | |
{ | |
public static class StringExtensions | |
{ |
""" | |
https://stackoverflow.com/a/60024346/6521523 | |
Edit on Jan 02, 2020 | |
@author: the_RR | |
Adapted for python 3.4+ | |
Requires pywin32 | |
original: http://code.activestate.com/recipes/474121/ | |
# HtmlClipboard | |
# An interface to the "HTML Format" clipboard data format |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge" /> | |
<title>HTML inputmode attribute</title> | |
<style> | |
* { | |
padding: 0; |
Create a script called Terminal (yes, without a extension) inside the folder ~/.local/share/nautilus/scripts with the following content:
#!/bin/sh
gnome-terminal
Make it executable, then close any Nautilus instance:
# Based on http://nuts4.net/post/automated-download-and-installation-of-visual-studio-extensions-via-powershell | |
param([String] $PackageName) | |
$ErrorActionPreference = "Stop" | |
$baseProtocol = "https:" | |
$baseHostName = "marketplace.visualstudio.com" | |
$Uri = "$($baseProtocol)//$($baseHostName)/items?itemName=$($PackageName)" |
import { html, LitElement } from 'https://unpkg.com/lit-element@latest/lit-element.js?module'; | |
import { observable, action, autorun, reaction } from 'https://unpkg.com/mobx@latest/lib/mobx.es6.js?module'; | |
const store = observable({ | |
title: 'Hello, World!', | |
count: 0, | |
incrementCount: action(() => { | |
store.count += 1; | |
}), |
{ | |
"AF": "Afghanistan", | |
"AX": "Aland Islands", | |
"AL": "Albania", | |
"DZ": "Algeria", | |
"AS": "American Samoa", | |
"AD": "Andorra", | |
"AO": "Angola", | |
"AI": "Anguilla", | |
"AQ": "Antarctica", |
using System; | |
using System.Linq; | |
using System.Text; | |
using System.Collections.Generic; | |
using System.Globalization; | |
public static partial class StringExtensions | |
{ | |
public static sbyte ToSByte(this string s) | |
{ |