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
| chflags -R nouchg [directory] | |
| # Example | |
| # chflags -R nouchg ~/documents |
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
| {"lastUpload":"2021-04-12T08:52:09.378Z","extensionVersion":"v3.4.3"} |
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 Foundation | |
| import PromiseKit | |
| public class PromiseOperation<T>: Operation { | |
| public enum State: String { | |
| case executing | |
| case finished | |
| case ready | |
| fileprivate var keyPath: String { |
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 Foundation | |
| import PromiseKit | |
| /// Create a Promise pending execution | |
| /// | |
| /// By default Promises will execute on creation and | |
| /// wait to be resolved. In general this behaviour is fine, | |
| /// however there may be circumstances where this causes | |
| /// unexpected behaviour. | |
| /// For example when using nested promises. |
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
| using Newtonsoft.Json; | |
| using Newtonsoft.Json.Linq; | |
| using System; | |
| using System.Collections.Generic; | |
| using System.IO; | |
| using System.Linq; | |
| using System.Web; | |
| using System.Web.Script.Serialization; | |
| namespace Test.Models |
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
| using System; | |
| using System.Collections.Generic; | |
| using System.IO; | |
| using System.Linq; | |
| using System.Web; | |
| using System.Xml; | |
| namespace Test.Models | |
| { | |
| /// <summary> |
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
| /// List of internal urls / not deemed external | |
| /// @type list | |
| $domains: ( | |
| ('github.com'), | |
| ('google.com') | |
| ); | |
| /// Build chained :not() for internal domains | |
| /// @param {list} $list [$domains] - List of approved domains | |
| /// @requires $domains |
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 { magenta, yellow, red } from 'ansicolors'; | |
| import { writeFile } from 'fs'; | |
| import glob from 'glob'; | |
| import Ora from 'ora'; | |
| import { resolve, basename } from 'path'; | |
| import { parse } from 'sassdoc'; | |
| import '../../Scripts/env.es6'; | |
| import { Debug, Error } from '../../Scripts/debug.es6'; |
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 { magenta, yellow, red } from 'ansicolors'; | |
| import { buildSync, formats } from 'documentation'; | |
| import { writeFile } from 'fs'; | |
| import glob from 'glob'; | |
| import Ora from 'ora'; | |
| import { resolve, basename } from 'path'; | |
| import '../../Scripts/env.es6'; | |
| import { Debug, Error } from '../../Scripts/debug.es6'; |
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 { green, yellow, magenta, red } from 'ansicolors'; | |
| import { readFileSync, writeFile } from 'fs'; | |
| import mkdirp from 'mkdirp'; | |
| import Ora from 'ora'; | |
| import { resolve, basename } from 'path'; | |
| import { parseString } from 'xml2js'; | |
| import '../../Scripts/env.es6'; | |
| import { Debug, Error } from '../../Scripts/debug.es6'; |
NewerOlder