Skip to content

Instantly share code, notes, and snippets.

#!/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"
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class VelocityMove : MonoBehaviour
{
[SerializeField]
private float moveSpeed = 2500f;
[SerializeField]
private float turnSpeed = 90f;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class BasicMove : MonoBehaviour
{
[SerializeField]
private float moveSpeed = 15f;
[SerializeField]
private float turnSpeed = 90f;
@pirkla
pirkla / CSVtoAPI.sh
Last active September 4, 2020 16:27
#!/bin/sh
# Set the url and credentials
jssURL="https://yoururl.jamfcloud.com"
jssUser="username"
jssPass="password"
csvPath="/path/to/some.csv"
endpoint="someendpoint"
IFS=', ' read -r -a allIDs < "$csvPath"
import json
import requests
################# REQUIRED USER DEFINED VARIABLES ############
# set network ID from https://url.jamfcloud.com/devices/enroll.html -> On device enrollment -> Network ID
networkId='networkidhere'
# set api key from https://url.jamfcloud.com/configuration/api
apiKey='apikeyhere'
import csv
import json
import requests
networkId=''
apiKey=''
baseURL='https://url.jamfcloud.com/api'
#!/usr/bin/env python3
####################################################################################################
#
# Copyright (c) 2021, JAMF Software, LLC. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
#!/usr/bin/env python3
####################################################################################################
#
# Copyright (c) 2021, JAMF Software, LLC. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
@pirkla
pirkla / jnuc2021.py
Last active November 19, 2021 15:23
import json
import requests
# Set all users' passwords in a group to 1234
################# REQUIRED USER DEFINED VARIABLES ############
# set network ID from https://url.jamfcloud.com/devices/enroll.html -> On device enrollment -> Network ID
networkId='networkidhere'
# set api key from https://url.jamfcloud.com/configuration/api
import json
import requests
################# REQUIRED USER DEFINED VARIABLES ############
# set network ID from https://url.jamfcloud.com/devices/enroll.html -> On device enrollment -> Network ID
networkId='networkidhere'
# set api key from https://url.jamfcloud.com/configuration/api
apiKey='apikeyhere'