Skip to content

Instantly share code, notes, and snippets.

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class BasicMove : MonoBehaviour
{
[SerializeField]
private float moveSpeed = 15f;
[SerializeField]
private float turnSpeed = 90f;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class VelocityMove : MonoBehaviour
{
[SerializeField]
private float moveSpeed = 2500f;
[SerializeField]
private float turnSpeed = 90f;
#!/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"
#!/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"
@pirkla
pirkla / apiAuth.sh
Last active February 11, 2022 12:46
Generate a bearer token from the Jamf Pro UAPI
# 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} ')
@pirkla
pirkla / plistSample.plist
Created August 6, 2019 03:04
A plist sample
<?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>
@pirkla
pirkla / customPlistCreation.sh
Last active August 6, 2019 01:54
Create a custom plist and convert it to xml
# 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
@pirkla
pirkla / sampleArgParse.py
Last active August 4, 2019 11:41
A sample python script using argParse
#!/usr/bin/env python3
import asyncio
import aiohttp
from aiohttp import ClientSession
import argparse
import re
class StoreDictKeyPair(argparse.Action):
@pirkla
pirkla / asyncCalls.py
Created July 30, 2019 21:42
A script that can make asynchronous calls using curl-like syntax on the command line
#!/usr/bin/env python3
import asyncio
import aiofiles
import aiohttp
from aiohttp import ClientSession
import base64
import timeit
@pirkla
pirkla / pythonSampleURLParse.py
Last active July 30, 2019 21:56
A sample script to parse a url with formatting into a list of urls
#!/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)