How to use:
./wordle.sh
Or try the unlimit mode:
| -- Find PUBLISHED content with macros in Umbraco 13 | |
| SELECT DISTINCT | |
| n.text AS 'Content Name', | |
| n.id AS 'Node ID', | |
| pt.Alias AS 'Property Alias', | |
| SUBSTRING(pd.textValue, 1, 500) AS 'Preview' | |
| FROM umbracoPropertyData pd | |
| INNER JOIN umbracoContentVersion cv ON pd.versionId = cv.id | |
| INNER JOIN umbracoDocumentVersion dv ON cv.id = dv.id AND dv.published = 1 | |
| INNER JOIN umbracoNode n ON cv.nodeId = n.id |
| #!/bin/sh | |
| # dfn: df normalized, or df not noisy, or df nicely, or df new | |
| # | |
| # Whatever you want to call it, this script makes df useful again. | |
| # It removes read-only disks for Time Machine backups, system volumes | |
| # that can't be modified, unbrowsable volumes, and other stuff you don't | |
| # really care about. | |
| # | |
| # Instead, you get the same drives that you see on your Mac desktop in an |
| using Umbraco.Forms.Core; | |
| using Umbraco.Forms.Core.Enums; | |
| using Microsoft.Extensions.Logging; | |
| using Microsoft.AspNetCore.Http; | |
| using Umbraco.Forms.Core.Attributes; | |
| using Umbraco.Cms.Core; | |
| using Umbraco.Extensions; | |
| using Microsoft.Extensions.DependencyInjection; | |
| namespace Example.Forms.Workflows |
| // | |
| // MIT License | |
| // | |
| // Copyright (c) 2024 Sophiestication Software, Inc. | |
| // | |
| // Permission is hereby granted, free of charge, to any person obtaining a copy | |
| // of this software and associated documentation files (the "Software"), to deal | |
| // in the Software without restriction, including without limitation the rights | |
| // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| // copies of the Software, and to permit persons to whom the Software is |
| // | |
| // ColorSchemeApp.swift | |
| // ColorScheme | |
| // | |
| // Created by Craig Hockenberry on 9/11/24. | |
| // | |
| import SwiftUI | |
| @main |
| #!/bin/sh | |
| defaults read com.apple.finder CreateDesktop > /dev/null 2>&1 | |
| enabled=$? | |
| if [ "$1" = "off" ]; then | |
| if [ $enabled -eq 1 ]; then | |
| osascript -e 'tell application "Finder" to quit' | |
| defaults write com.apple.finder CreateDesktop false | |
| open -a Finder |
| import UIKit | |
| import Foundation | |
| // NOTE: This playground shows how to use Swift's AttributedString with Markdown. | |
| // | |
| // This code was used to display Markdown content in the Tot iOS Widget <https://tot.rocks> | |
| // MARK: - Helpful Links | |
| // NOTE: The following links helped me figure this stuff out. |
| #!/bin/sh | |
| # ks_changeset v0.9 - 2022-05-03 | |
| # Enable "safe" mode - see http://redsymbol.net/articles/unofficial-bash-strict-mode/ | |
| set -euo pipefail | |
| IFS=$'\n\t' | |
| if [[ $# -lt 3 ]]; then | |
| echo "Usage: ks_changeset.sh <FolderA> <FolderB> <DestinationGit>" |
| public class MovieSerivce : IMovieService | |
| { | |
| private readonly IAppPolicyCache _runtimeCache; | |
| private const string MOVIES_CACHE_KEY = "Movies.API.Cache"; | |
| public MovieSerivce(AppCaches appCaches) | |
| { | |
| _runtimeCache = appCaches.RuntimeCache; | |
| } |