Showing results for Instruments Recipe
GitHub Repo
https://github.com/soar-telescope/dragons-soar
soar-telescope/dragons-soar
This repository contains the parameters, primitives and recipes to reduce data obtained with the instruments existing at the SOAR Telescope using the DRAGONS framework.
GitHub Repo
https://github.com/paulb777/RecipeBookWithLeanplum
paulb777/RecipeBookWithLeanplum
AppCode Tutorial Instrumented with Leanplum that has a UITabBarController with UINavigationControllers
GitHub Repo
https://github.com/kirilllysenko/cookingnotes-frontend
kirilllysenko/cookingnotes-frontend
Cooking Notes is a great website with many instruments to store or share recipes
GitHub Repo
https://github.com/rymut/conan-detours
rymut/conan-detours
Conan recipe for Microsoft Detours a software package for monitoring and instrumenting API calls on Windows
GitHub Repo
https://github.com/hecanjog/hcj.py
hecanjog/hcj.py
A collection of instruments and recipes for pippi
GitHub Repo
https://github.com/TusharWoody/Xylophone
TusharWoody/Xylophone
The goal of this tutorial is to dive into a simple iOS recipe - how to play sound and use an Apple library called AVFoundation. The most important skill of a great programmer is being able to solve your own problems. We’ll do that by exploring StackOverflow, Apple Documentation and learning how to search for solutions effectively. By learning to use these tools, you’ll be able to start adding custom features to an app and get it to do what you want it to. ## What you will create You will be making your first musical instrument! Music apps are so popular on the App Store that they even get their own category. So in this module, we’re going to make a colourful XyloPhone app. Get it? Ok, the jokes are bad, but remember, I only wrote the good ones... ## What you will learn * How to play sound using AVFoundation and AVAudioPlayer. * Understand Apple documentation and how to use StackOverflow. * Functions and methods in Swift. * Data types. * Swift loops. * Variable scope. * The ViewController lifecycle. * Error handling in Swift. * Code refactoring. * Basic debugging. ## Replacement Code ``` import UIKit import AVFoundation class ViewController: UIViewController { var player: AVAudioPlayer! override func viewDidLoad() { super.viewDidLoad() } @IBAction func keyPressed(_ sender: UIButton) { playSound() } func playSound() { let url = Bundle.main.url(forResource: "C", withExtension: "wav") player = try! AVAudioPlayer(contentsOf: url!) player.play() } }
GitHub Repo
https://github.com/UCBerkeleySETI/scotti-gen
UCBerkeleySETI/scotti-gen
scotti-gen - Simulated Controlled Technosignature Testing Instrument generator. Used to generate GUPPI RAW and beamformer recipe files with simulated data and phase information respectively.
GitHub Repo
https://github.com/akaliutau/linux-dev-toolset
akaliutau/linux-dev-toolset
Useful dev instruments and recipes for performance tuning
GitHub Repo
https://github.com/Aswathy-K/Layer-Wise-Numerics-Profiler-for-LLM-Quantization-Analysis
Aswathy-K/Layer-Wise-Numerics-Profiler-for-LLM-Quantization-Analysis
A PyTorch hook-based tool that instruments every linear layer in a HuggingFace transformer model to capture weight and activation statistics during inference. Identifies quantization-sensitive layers before committing to a compression recipe — replacing the typical compress-then-eval loop with a principled, data-driven layer ranking.
GitHub Repo
https://github.com/NCAR/ucomp-configuration