This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Style: Enhance | |
Positive: breathtaking {prompt} . award-winning, professional, highly detailed | |
Negative: ugly, deformed, noisy, blurry, distorted, grainy | |
Style: Anime | |
Positive: anime artwork {prompt} . anime style, key visual, vibrant, studio anime, highly detailed | |
Negative: photo, deformed, black and white, realism, disfigured, low contrast | |
Style: Photographic | |
Positive: cinematic photo {prompt} . 35mm photograph, film, bokeh, professional, 4k, highly detailed |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Param( | |
[Parameter(Mandatory=$true, Position=1)] | |
[string]$SvnFolderPath, | |
[Parameter(Mandatory=$true, Position=2)] | |
[string]$TargetFolder, | |
[Parameter(Mandatory=$true, Position=3)] | |
[string]$GitUrl | |
) | |
git svn clone --stdlayout --no-metadata -A users.txt $SvnFolderPath "$TargetFolder-tmp" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function getFeed() { | |
var cache = CacheService.getPublicCache(); | |
var cachedFeed = cache.get("gas-relnotes-feed"); | |
if(cachedFeed == null) { | |
var URL = "https://developers.google.com/apps-script/release_notes"; | |
var feedSize = 25; | |
var data = UrlFetchApp.fetch(URL).getContentText(); | |