#Sitefinity Feather PageTitle widget
Sitefinity Feather widget for auto Page Titles.
TODO:
- I'll update it at some point to make the enclosing tag configurable.
{ | |
"$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json", | |
"blocks": [ | |
{ | |
"alignment": "left", | |
"segments": [ | |
{ | |
"type": "path", | |
"background": "#ff479c", | |
"foreground": "#ffffff", |
var mockserver = require('mockserver-node'); | |
var mockServerClient = require('mockserver-client').mockServerClient; | |
var mockserver_port = 1234; | |
mockserver | |
.start_mockserver({ serverPort: mockserver_port, verbose: true }) | |
.then( | |
function () { | |
mockServerClient("localhost", mockserver_port).mockWithCallback( |
# Access to localhost through docker.for.win.localhost | |
# A hack to hit that IP as localhost | |
# note that ip may change so could be fragile? | |
docker run --add-host localhost:192.168.65.2 ... etc | |
#dynamically as part of dockerfile | |
#Ugly but working for local stuff. | |
ENTRYPOINT echo "$(dig +short docker.for.win.host.internal) localhost" >> /etc/hosts && exec python ./end2end_dev.py |
git reset --soft HEAD~4 && | |
git commit --edit -m"$(git log --format=%B --reverse HEAD..HEAD@{1})" |
//Set Language to "C# Program" in linqPad | |
void Main() | |
{ | |
var peopleWithPics = TblPersons | |
.Where(p => p.ProfilePicture != null) | |
.Select(p => new { p.PersonID, p.ProfilePicture }); | |
foreach(var p in peopleWithPics) | |
{ |
USE DB | |
GO | |
CREATE PROCEDURE dbo.spMySpName | |
@param1 int, | |
@param2 int, | |
@paramWithDefault nvarchar(20) = null | |
AS | |
BEGIN | |
DECLARE @someVar nvarchar(100); |
#Sitefinity Feather PageTitle widget
Sitefinity Feather widget for auto Page Titles.
TODO:
#Sitefinity - Fixed Header in edit mode
This is a simple change to stop your fixed nav bars from breaking the page editor.