$ find . -name '.DS_Store' -type f -delete
This file contains hidden or 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
from __future__ import print_function | |
import argparse | |
import codecs | |
import hashlib | |
import os | |
import subprocess | |
import sys | |
import time | |
try: |
This file contains hidden or 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
import re | |
import itertools | |
from maya import cmds | |
from maya.app.renderSetup.model import selector as rs_selector | |
from maya.app.renderSetup.model import renderSettings as rs_render_settings | |
if float(cmds.about(version=True)) >= 2020.0: | |
_attr_highest_col = "containerHighest" |
This file contains hidden or 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
let emojis = ['๐','๐','๐','๐','๐','๐','๐','๐','โฃ๏ธ','๐','โค๏ธ','๐งก','๐','๐','๐','๐','๐ค','๐ค','๐ค','โค๏ธโ','๐ฅ','โค๏ธโ','๐ฉน','๐ฏ','โจ๏ธ','๐ข','๐ฌ','๐๏ธโ๐จ๏ธ','๐จ๏ธ','๐ฏ๏ธ','๐ญ','๐ค','๐','โ ๏ธ','โฅ๏ธ','โฆ๏ธ','โฃ๏ธ','๐','๐๏ธ','๐ด','๐ญ๏ธ','๐','๐๏ธ','๐','๐','๐','๐','๐ผ','๐ต','๐ถ','๐น','๐ง','๐ฎ','๐ฐ','โฟ๏ธ','๐น๏ธ','๐บ๏ธ','๐ป','๐ผ๏ธ','๐พ','๐','๐','๐','๐ ','โ ๏ธ','๐ธ','โ๏ธ','๐ซ','๐ณ','๐ญ๏ธ','๐ฏ','๐ฑ','๐ท','๐ต','๐','โข๏ธ','โฃ๏ธ','โฌ๏ธ','โ๏ธ','โก๏ธ','โ๏ธ','โฌ๏ธ','โ๏ธ','โฌ ๏ธ','โ๏ธ','โ๏ธ','โ๏ธ','โฉ๏ธ','โช๏ธ','โคด๏ธ','โคต๏ธ','๐','๐','๐','๐','๐','๐','๐','๐','โ๏ธ','๐๏ธ','โก๏ธ','โธ๏ธ','โฏ๏ธ','โ๏ธ','โฆ๏ธ','โช๏ธ','โฎ๏ธ','๐','๐ฏ','โ๏ธ','โ๏ธ','โ๏ธ','โ๏ธ','โ๏ธ','โ๏ธ','โ๏ธ','โ๏ธ','โ๏ธ','โ๏ธ','โ๏ธ','โ๏ธ','โ','๐','๐','๐','โถ๏ธ','โฉ๏ธ','โญ๏ธ','โฏ๏ธ','โ๏ธ','โช๏ธ','โฎ๏ธ','๐ผ','โซ','๐ฝ','โฌ','โธ๏ธ','โน๏ธ','โบ๏ธ','โ๏ธ','๐ฆ','๐ ','๐','๐ถ','๐ณ','๐ด','โ๏ธ','โ๏ธ','โง','โ๏ธ','โ','โ','โ','โพ๏ธ','โผ๏ธ','โ๏ธ','โ๏ธ','โ','โ','โ๏ธ','ใฐ๏ธ','๐ฑ','๐ฒ','โ๏ธ','โป๏ธ','โ๏ธ','๐ฑ','๐','๐ฐ','โญ๏ธ','โ ','โ๏ธ','โ๏ธ','โ','โ','โฐ','โฟ','ใฝ๏ธ','โณ๏ธ','โด๏ธ','โ๏ธ','ยฉ๏ธ','ยฎ๏ธ','โข๏ธ','#๏ธโฃ','*๏ธโฃ','0๏ธโฃ','1๏ธโฃ','2๏ธโฃ','3๏ธโฃ','4๏ธโฃ','5๏ธโฃ','6๏ธโฃ','7๏ธโฃ','8๏ธโฃ','9๏ธโฃ','๐','๐ ','๐ก','๐ข','๐ฃ','๐ค','๐ ฐ๏ธ','๐','๐ ฑ๏ธ','๐','๐','๐','โน๏ธ','๐','โ๏ธ','๐','๐','๐ พ๏ธ','๐','๐ ฟ๏ธ','๐','๐','๐','๐' |
Here we want to deploy a SvelteKit app, which has server-side code or do Server-Side Rendering (SSR) (data endpoints, load
function in components).
For a SvelteKit app which is a pure browser-only SPA or a static website, with no server-side code (as one generated with adapter-static
): you don't need an Azure app service instance, an Azure storage blob container ($web
) is all you need.
Note:
In theory, a Sveltekit app with a server-side should be deployable on the new "Azure Static Webapps" product, but we still need to have a dedicated adapter converting the server code to something compatible with Azure functions.
OlderNewer