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
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
public class BasicMove : MonoBehaviour | |
{ | |
[SerializeField] | |
private float moveSpeed = 15f; | |
[SerializeField] | |
private float turnSpeed = 90f; |
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
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
public class VelocityMove : MonoBehaviour | |
{ | |
[SerializeField] | |
private float moveSpeed = 2500f; | |
[SerializeField] | |
private float turnSpeed = 90f; |
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
#!/bin/sh | |
# This is an example only, and is not a valid script | |
# Set the url and credentials | |
jssURL="https://tryitout.jamfcloud.com/JSSResource" | |
endPoint="/computers" | |
jssUser="admin" | |
jssPass="password" |
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
#!/bin/sh | |
# This is an example only, and is not a valid script | |
# Set the url and credentials | |
jssURL="https://tryitout.jamfcloud.com/JSSResource" | |
endPoint="/computers" | |
jssUser="admin" | |
jssPass="password" |
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
# Generate a token | |
tokenResp=$(curl -k -u "username:password" -X POST "https:/yoururl.jamfcloud.com/uapi/auth/tokens" -H "accept: application/json") | |
# parse the token from the response | |
token=$(echo $tokenResp | awk -F '[:,{"}]' ' {print $6} ') | |
# pass the token into a cURL command | |
curl -k -X GET "https://yoururl.jamfcloud.com/uapi/v1/inventory-preload" -H "accept: application/json" -H "Authorization: Bearer $token" | |
# The expiration time can be found with the following | |
time=$(echo $tokenResp | awk -F "[:,{}]" ' {print $5} ') |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>someKey</key> | |
<valueType>someValue</valueType> | |
</dict> | |
</plist> |
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
# Create the plist and place it on the desktop | |
defaults write ~/Desktop/com.domain.name key value | |
# additional key value pairs can be added as follows | |
defaults write ~/Desktop/com.domain.name key2 value2 | |
# Convert the plist to xml1 formatting for easy viewing and editing | |
plutil -convert xml1 ~/Desktop/com.domain.name.plist |
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
#!/usr/bin/env python3 | |
import asyncio | |
import aiohttp | |
from aiohttp import ClientSession | |
import argparse | |
import re | |
class StoreDictKeyPair(argparse.Action): |
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
#!/usr/bin/env python3 | |
import asyncio | |
import aiofiles | |
import aiohttp | |
from aiohttp import ClientSession | |
import base64 | |
import timeit |
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
#!/usr/bin/env python3 | |
import re | |
someURL = 'https://someurl.com/[1-10:2]/id/[11-20]/more/{a,b}' | |
def parseURLList(url): | |
urlList = [] | |
subString = re.search(r"\[(.*?)\]|\{(.*?)\}", url) | |
if subString == None: | |
urlList.append(url) |