If you're coming from Windows 10/11, you may be used to being able to hit 🪟 + . on your keyboard like:

You can then search for an emoji using the emoji picker that pops up:
"use strict"; | |
var space = space || {}; | |
// For programatically creating and deleting the bootstrap modal. | |
space.modal = function() { | |
var modalSelector = '#dynamic-modal'; | |
var $modal = null; | |
var createModalHtml = function(data) { |
<?xml version="1.0" encoding="utf-8"?> | |
<configuration> | |
<system.webServer> | |
<!-- Install URL Rewrite 2.0: https://www.iis.net/downloads/microsoft/url-rewrite --> | |
<rewrite> | |
<!-- http://stackoverflow.com/questions/35047484/iis-redirect-with-cache-response-header/35279811#35279811 --> | |
<outboundRules> | |
<rule name="Require clients to revalidationpermanent redirects"> | |
<match serverVariable="RESPONSE_Cache_Control" pattern=".*" /> | |
<conditions> |
You may want to cleanup the root of your website, but Umbraco assumes that CSS and JS are stored in the /css
and /scripts
folders respectively. Further more, you may want front end users to be able to access the files as if they were not stored somewhere else. Use this guide to find out how to move the CSS and JS into a /public
folder without breaking anything.
1 - Create a /public folder in the root of your website 2 - Move the /css and /scripts folder into the /public folder 3 - Add the following rewrite rule to the Web.config:
"""""""""""""""""""""""""""""""""""""""""""""""""" | |
" Sections: | |
" -> General | |
" -> VIM user interface | |
" -> Colors and Fonts | |
" -> Files, backups and undo | |
" -> Text, tab and indent related | |
" -> Moving around, tabs and buffers | |
" -> Editing mappings | |
" -> Helper functions |
var express = require('express'); | |
var app = express(); | |
app.get('/', function (req, res) { | |
res.send('Express is working on IISNode!'); | |
}); | |
app.listen(process.env.PORT); |
using System; | |
using System.Web; | |
using System.Web.Mvc; | |
using System.IO; | |
using System.Web.Routing; | |
namespace YourNamespace | |
{ | |
/// <summary> | |
/// Class that renders MVC views to a string using the |
<?xml version="1.0" encoding="utf-8"?> | |
<packages> | |
<package id="7zip" /> | |
<package id="7zip.install" /> | |
<package id="audacity" /> | |
<package id="autohotkey" /> | |
<package id="autohotkey.install" /> | |
<package id="autohotkey.portable" /> | |
<package id="aws-iam-authenticator" /> | |
<package id="awscli" /> |
.xs-flex { @include display-flex; } | |
.xs-order-1 { @include order(1); } | |
.xs-order-2 { @include order(2); } | |
.xs-order-3 { @include order(3); } | |
@media (min-width: 768px) { | |
.sm-flex { @include display-flex; } | |
.sm-order-1 { @include order(1); } | |
.sm-order-2 { @include order(2); } | |
.sm-order-3 { @include order(3); } |
using Umbraco.Web; | |
using System.Web.Http; | |
using System.Web; | |
using System.IO; | |
namespace Examples.Service | |
{ | |
public class DownloadServiceController : Umbraco.Web.Mvc.SurfaceController | |
{ | |
// Use this if you only want logged in users to access these methods. |