In iTerm2, in the menu bar go to Scripts > Manage > New Python Script
Select Basic. Select Long-Running Daemon
Give the script a decent name (I chose auto_dark_mode.py)
Save and open the script in your editor of choice.
| apiVersion: v1 | |
| kind: ReplicationController | |
| metadata: | |
| name: kube-registry-v0 | |
| namespace: kube-system | |
| labels: | |
| k8s-app: kube-registry | |
| version: v0 | |
| spec: | |
| replicas: 1 |
| using System; | |
| using System.Collections.Generic; | |
| using System.Net.Http; | |
| using System.Net.Http.Headers; | |
| namespace HttpClientApproach | |
| { | |
| internal class Contributor | |
| { | |
| public string Login { get; set; } |
| using Moq; | |
| using NUnit.Framework; | |
| using RestSharp; | |
| using System; | |
| using System.Net; | |
| namespace RestsharpTests | |
| { | |
| [TestFixture] | |
| public class RestsharpExecuteAsyncMoq |